Start of Content Area

ItCreate  Locate the document in its SAP Library structure

The ItCreate routine creates an internal table. That is, it creates a control structure for an internal table, and allocates table space for the size and shape you request. The syntax is:

ITAB_H ItCreate(char * name,
unsigned leng,
unsigned occu,
unsigned memo);

This function is defined in SAPITAB.H.

Return Values:

Function Parameters:

name of the internal table (null-terminated string) which is used to identify the table when tracing

line length for the internal table

occurs-value for internal table (amount of lines being allocated when first appending a line to the table)

Only use heap memory for allocating table lines. This field is for internal use only. Set the parmeter to 0.