RJVSDPRODCOMPF40 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 RJVSDPRODCOMPF40 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.
Title: Events
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
ISM_ISSUECOMP_GEN_SAVE_DISPL CALL FUNCTION 'ISM_ISSUECOMP_GEN_SAVE_DISPL' EXPORTING in_generate_from = gen_from in_generate_until = gen_until in_delete_existing = x_delprev in_testrun = x_testrun * in_savelog = sy-binpt TABLES in_mediaproducttab = lt_prodtab.
POPUP_GET_VALUES * call function 'POPUP_GET_VALUES' * exporting * popup_title = 'Generierung der Bestandteile zu Medienausgaben'(008) * importing * returncode = returncode * tables * fields = lt_fields.
ISM_MEDIA_ISSUE_SINGLE_READ CALL FUNCTION 'ISM_MEDIA_ISSUE_SINGLE_READ' EXPORTING pvi_matnr = in_markednode-mediaissue IMPORTING pse_mara = wa_issuemara * pve_refmdprod = wa_refprod EXCEPTIONS read_not_possible = 1 no_issue = 2 OTHERS = 3.
ISM_ISSUECOMP_GENERATE CALL FUNCTION 'ISM_ISSUECOMP_GENERATE' EXPORTING in_mediaproduct = wa_refprod in_generate_from = wa_issuemara-ismpubldate in_generate_until = wa_issuemara-ismpubldate in_delete_existing = 'X' IMPORTING out_issuecomp = out_newissuecomp out_del_issuecomp = lt_del_issuecomp CHANGING out_messages = messages.
ISM_ISSUECOMP_DELETE_FOR_UPD CALL FUNCTION 'ISM_ISSUECOMP_DELETE_FOR_UPD' EXPORTING in_issuecomp = wa_issuecomp EXCEPTIONS not_existing = 1 wrong_call = 2 OTHERS = 3.
ISM_ISSUECOMP_INSERT_FOR_UPD CALL FUNCTION 'ISM_ISSUECOMP_INSERT_FOR_UPD' EXPORTING in_issuecomp = wa_issuecomp EXCEPTIONS already_exists = 1 wrong_call = 2 OTHERS = 3.
ISM_PRODCOMP_CHANGE_FOR_UPDATE CALL FUNCTION 'ISM_PRODCOMP_CHANGE_FOR_UPDATE' EXPORTING in_prodcomp = ls_prodcomp_upd.
ISM_ISSUECOMP_CHANGE_FOR_UPD CALL FUNCTION 'ISM_ISSUECOMP_CHANGE_FOR_UPD' EXPORTING in_issuecomp = ls_issuecomp_upd.
ISM_PRODCOMP_CHANGE_FOR_UPDATE CALL FUNCTION 'ISM_PRODCOMP_CHANGE_FOR_UPDATE' EXPORTING in_prodcomp = ls_prodcomp_upd.
ISM_ISSUECOMP_CHANGE_FOR_UPD CALL FUNCTION 'ISM_ISSUECOMP_CHANGE_FOR_UPD' EXPORTING in_issuecomp = ls_issuecomp_upd.
ISM_PRODCOMP_INSERT_FOR_UPDATE CALL FUNCTION 'ISM_PRODCOMP_INSERT_FOR_UPDATE' EXPORTING in_prodcomp = ls_prodcomp_upd EXCEPTIONS already_exists = 1 OTHERS = 3.
ISM_ISSUECOMP_INSERT_FOR_UPD CALL FUNCTION 'ISM_ISSUECOMP_INSERT_FOR_UPD' EXPORTING in_issuecomp = ls_issuecomp_upd EXCEPTIONS already_exists = 1 OTHERS = 3.
ISM_PRODCOMP_DELETE_FOR_UPDATE CALL FUNCTION 'ISM_PRODCOMP_DELETE_FOR_UPDATE' EXPORTING in_prodcomp = ls_prodcomp_upd.
ISM_ISSUECOMP_DELETE_FOR_UPD CALL FUNCTION 'ISM_ISSUECOMP_DELETE_FOR_UPD' EXPORTING in_issuecomp = ls_issuecomp_upd.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.