Exsort_not_enough_memory


 
Thread Tools Search this Thread
Operating Systems AIX Exsort_not_enough_memory
# 1  
Old 12-30-2008
Exsort_not_enough_memory

Can any one please help me. We are getting belwo error.

EXSORT_NOT_ENOUGH_MEMORY

ShrtText Internal error: Too litle memory for the external sort.

Error analysis The current ABAP/4 program was meant to sort a dataset (internal table or extract). For reasons of capacity, this was not possible due to insufficient main storage space. Therefore, the external sort was called and resulted in the following error: the following error: SAP runtime system internal error.

Thanks & Regards
Vinod
Login or Register to Ask a Question

Previous Thread | Next Thread
Login or Register to Ask a Question
XSLT_SETOPT(3)								 1							    XSLT_SETOPT(3)

xslt_setopt - Set options on a given XSLT processor

SYNOPSIS
mixed xslt_setopt (resource $processor, int $newmask) DESCRIPTION
xslt_setopt(3) sets the options specified by $newmask on the given $processor. PARAMETERS
o $ processor -The XSLT processor link identifier, created with xslt_create(3). o $newmask -$newmask is a bitmask constructed with the following constants: o XSLT_SABOPT_PARSE_PUBLIC_ENTITIES - Tell the processor to parse public entities. By default this has been turned off. o XSLT_SABOPT_DISABLE_ADDING_META - Do not add the meta tag "Content-Type" for HTML output. The default is set during the compilation of the processor. o XSLT_SABOPT_DISABLE_STRIPPING - Suppress the whitespace stripping (on data files only). o XSLT_SABOPT_IGNORE_DOC_NOT_FOUND - Consider unresolved documents (the document() function) non-lethal. RETURN VALUES
Returns the number of previous mask is possible, TRUE otherwise, FALSE in case of an error. EXAMPLES
Example #1 xslt_setopt(3) Example <?php $xh = xslt_create(); // Tell Sablotron to process public entities xslt_setopt($xh, XSLT_SABOPT_PARSE_PUBLIC_ENTITIES); // Let's also ask it to suppress whitespace stripping xslt_setopt($xh, xslt_getopt($xh) | XSLT_SABOPT_DISABLE_STRIPPING); ?> SEE ALSO
xslt_getopt(3). PHP Documentation Group XSLT_SETOPT(3)