SAIAVF01 is a standard ABAP INCLUDE available within your SAP system (depending on your version and release level). Below is the basic information available for this SAP report including which OBJECTS it interacts with such as TABLES, FUNCTION MODULES, INCLUDES ETC. Also check out the submitted Comments related to this SAP report or see any standard documentation available.
If you would like to execute this report or see the full code listing simply enter SAIAVF01 into the relevant SAP transactions such as SE38 or SE80
This report can be called from another progam/report simply by using the ABAP SUBMIT statement, see below for example ABAP code snipts of how to do this.
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
AIAV_SZKART_GET CALL FUNCTION 'AIAV_SZKART_GET' EXPORTING I_SZKART = G_SZKART I_XZKART = G_XZKART EXCEPTIONS OTHERS = 1.
AIAV_JBD15_PUT CALL FUNCTION 'AIAV_JBD15_PUT' TABLES ET_FILL_JBD15 = GT_FILL_JBD15 ET_DELETE_JBD15 = GT_DELETE_JBD15 EXCEPTIONS OTHERS = 1.
AIAV_JBD15_PUT CALL FUNCTION 'AIAV_JBD15_PUT' EXPORTING I_FLAG = 'X' TABLES ET_FILL_JBD15 = GT_FILL_JBD15 ET_DELETE_JBD15 = GT_DELETE_JBD15 EXCEPTIONS OTHERS = 1.
MESSAGES_INITIALIZE CALL FUNCTION 'MESSAGES_INITIALIZE'.
MESSAGE_STORE CALL FUNCTION 'MESSAGE_STORE' EXPORTING ARBGB = 'AO' * EXCEPTION_IF_NOT_ACTIVE = 'X' MSGTY = 'W' MSGV1 = LT_JBD14-SZKART MSGV2 = LT_JBD14-WWAER * MSGV3 = ' ' * MSGV4 = ' ' TXTNR = '246' ZEILE = L_LINECOUNTER * IMPORTING * ACT_SEVERITY = * MAX_SEVERITY = EXCEPTIONS MESSAGE_TYPE_NOT_VALID = 1 NOT_ACTIVE = 2 OTHERS = 3.
MESSAGE_STORE CALL FUNCTION 'MESSAGE_STORE' EXPORTING ARBGB = 'AO' * EXCEPTION_IF_NOT_ACTIVE = 'X' MSGTY = 'W' MSGV1 = LT_JBD15-REFERENZ * msgv2 = ' ' * MSGV3 = ' ' * MSGV4 = ' ' TXTNR = '247' ZEILE = L_LINECOUNTER * IMPORTING * ACT_SEVERITY = * MAX_SEVERITY = EXCEPTIONS MESSAGE_TYPE_NOT_VALID = 1 NOT_ACTIVE = 2 OTHERS = 3.
MESSAGES_STOP CALL FUNCTION 'MESSAGES_STOP' EXCEPTIONS A_MESSAGE = 1 E_MESSAGE = 2 I_MESSAGE = 3 W_MESSAGE = 4 OTHERS = 5.
MESSAGES_SHOW CALL FUNCTION 'MESSAGES_SHOW'.
AIAV_SZKART_GET CALL FUNCTION 'AIAV_SZKART_GET' EXPORTING I_SZKART = G_SZKART I_XZKART = G_XZKART EXCEPTIONS OTHERS = 1.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.