J_3RF_NKS_FORMS 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 J_3RF_NKS_FORMS 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!
REUSE_ALV_LIST_LAYOUT_INFO_GET call function 'REUSE_ALV_LIST_LAYOUT_INFO_GET' importing * ES_LAYOUT = * ET_FIELDCAT = * ET_SORT = * ET_FILTER = * ES_LIST_SCROLL = * ES_VARIANT = * E_WIDTH = * ET_MARKED_COLUMNS = et_filtered_entries = nds_inv_filt * ET_FILTERED_ENTRIES_HEADER = * ET_FILTERED_ENTRIES_ITEM = * TABLES * ET_OUTTAB = * ET_OUTTAB_HEADER = * ET_OUTTAB_ITEM = * ET_COLLECT00 = * ET_COLLECT01 = * ET_COLLECT02 = * ET_COLLECT03 = * ET_COLLECT04 = * ET_COLLECT05 = * ET_COLLECT06 = * ET_COLLECT07 = * ET_COLLECT08 = * ET_COLLECT09 = exceptions no_infos = 1 program_error = 2 others = 3 .
REUSE_ALV_EXTRACT_LOAD CALL FUNCTION 'REUSE_ALV_EXTRACT_LOAD' EXPORTING IS_EXTRACT = GS_EXTRACT2 TABLES ET_EXP01 = NDS_INV ET_EXP02 = DOP_DEB ET_EXP03 = NDS_TSE ET_EXP04 = MSEG_WO_NKS ET_EXP05 = D_MSEG_WO_NKS ET_EXP06 = INVOICE_ONLY ET_EXP07 = COEP_UPD ET_EXP08 = ANEP_UPD CHANGING C_EXP01 = SO_DATE C_EXP02 = WOINV_COUNT C_EXP03 = INVONLY_COUNT C_EXP04 = MISSUE_COUNT EXCEPTIONS NOT_FOUND = 1 WRONG_RELID = 2 NO_REPORT = 3 NO_EXNAME = 4 NO_IMPORT_POSSIBLE = 5 OTHERS = 6.
REUSE_ALV_EXTRACT_SAVE CALL FUNCTION 'REUSE_ALV_EXTRACT_SAVE' EXPORTING IS_EXTRACT = GS_EXTRACT1 I_GET_SELINFOS = 'X' I_EXP01 = SO_DATE I_EXP02 = WOINV_COUNT I_EXP03 = INVONLY_COUNT I_EXP04 = MISSUE_COUNT TABLES IT_EXP01 = NDS_INV IT_EXP02 = DOP_DEB IT_EXP03 = NDS_TSE IT_EXP04 = MSEG_WO_NKS IT_EXP05 = D_MSEG_WO_NKS IT_EXP06 = INVOICE_ONLY IT_EXP07 = COEP_UPD IT_EXP08 = ANEP_UPD EXCEPTIONS WRONG_RELID = 1 NO_REPORT = 2 NO_EXNAME = 3 NO_EXTRACT_CREATED = 4.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.