RJVSDP_CLASS 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 RJVSDP_CLASS 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!
LVC_FIELDCATALOG_MERGE CALL FUNCTION 'LVC_FIELDCATALOG_MERGE' EXPORTING i_structure_name = mc_struc CHANGING ct_fieldcat = mt_fieldcat.
ISM_MEDIAISSUE_GET_PRODUCT CALL FUNCTION 'ISM_MEDIAISSUE_GET_PRODUCT' EXPORTING in_mediaissue = i_issue IMPORTING out_producttab = lt_mediaproduct EXCEPTIONS no_product = 1 OTHERS = 2.
ENQUEUE_EJKSDCOMP CALL FUNCTION 'ENQUEUE_EJKSDCOMP' EXPORTING mediaproduct = lv_mediaproduct EXCEPTIONS foreign_lock = 1 system_failure = 2 OTHERS = 3.
DEQUEUE_EJKSDCOMP CALL FUNCTION 'DEQUEUE_EJKSDCOMP' EXPORTING mediaproduct = lv_mediaproduct.
POPUP_TO_CONFIRM_DATA_LOSS CALL FUNCTION 'POPUP_TO_CONFIRM_DATA_LOSS' EXPORTING titel = text-007 IMPORTING answer = answer.
POPUP_TO_CONFIRM_STEP CALL FUNCTION 'POPUP_TO_CONFIRM_STEP' EXPORTING textline1 = text-016 textline2 = text-017 titel = text-018 IMPORTING answer = lv_answer.
F4IF_FIELD_VALUE_REQUEST CALL FUNCTION 'F4IF_FIELD_VALUE_REQUEST' EXPORTING tabname = 'JVSDPACKING_TAG' fieldname = 'PACKING_TAG' searchhelp = 'MJVPACKING_TAG' TABLES return_tab = lt_return EXCEPTIONS field_not_found = 1 no_help_for_field = 2 inconsistent_help = 3 no_values_found = 4 OTHERS = 5.
ISM_PACKRULE_GETDETAIL CALL FUNCTION 'ISM_PACKRULE_GETDETAIL' EXPORTING issue = i_mediaissue packing_tag = i_packing_tag split = con_split_initial ship_point = mv_ship_point dlv_type = mv_dlv_type bypassing_buffer = 'X' IMPORTING packrule = ls_packrule EXCEPTIONS OTHERS = 1.
ICON_CREATE CALL FUNCTION 'ICON_CREATE' EXPORTING name = lv_icon_name info = lv_icon_info IMPORTING result = e_rule_icon EXCEPTIONS OTHERS = 0.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.