CHANGEDOCUMENT_READ_POSITIONS | Get the details of a change document, and store them in an internal table. This will tell you whether a field was changed, deleted, or updated. |
|
|
Example:
CALL FUNCTION 'CHANGEDOCUMENT_READ_HEADERS'
EXPORTING
objectclass = 'EINKBELEG'
objectid = l_objectid
username = space
TABLES
i_cdhdr = lt_cdhdr.
LOOP AT lt_cdhdr WHERE udate IN s_aedat.
CALL FUNCTION 'CHANGEDOCUMENT_READ_POSITIONS'
EXPORTING
changenumber = lt_cdhdr-changenr
TABLES
editpos = lt_editpos.
LOOP AT lt_editpos WHERE fname = 'LOEKZ'
AND f_new = 'L'.
p_desc = text-r01. " Cancel Contract
ENDLOOP.
ENDLOOP.
|
CLAF_CLASSIFICATION_OF_OBJECTS | Return all of the characteristics for a material |
|
CLOI_PUT_SIGN_IN_FRONT |
Move the negative sign from the left hand side of a number, to the right hand side of the number. Note that The result will be left justified (like all character fields), not right justifed as numbers normally are.
|
|
CLPB_EXPORT | Export a text table to the clipboard (on presentation server) |
|
CLPB_IMPORT | Import a Text Table from the Clipboard (on presentation server) |
|
COMMIT_TEXT | To load long text into SAP |
|
CONVERSION_EXIT_ALPHA_INPUT | converts any number into a string fill with zeroes, with the number at the extreme right |
|
Example:
input = 123
output = 0000000000000...000000000000123
|
CONVERSION_EXIT_ALPHA_OUTPUT | converts any number with zeroes right into a simple integer |