RM_LABELING_SAMPLE_DATA is a standard Executable ABAP Report available within your SAP system (depending on your version and release level). It is used for This report generates material masters, specifications, and a recipe using the data stored in the RM_LBL_TEST_DATA test data container...see full standard documentation available for this report. Also check out the submitted Comments related to this SAP report and the details below to see which OBJECTS it interacts with such as TABLES, FUNCTION MODULES, INCLUDES ETC.
If you would like to execute this report or see the full code listing simply enter RM_LABELING_SAMPLE_DATA 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.
Selection Text: PCONTAIN = Test Data
Selection Text: PSETPID = Set Prefix for Identifier
Selection Text: PETVARID = D .
Selection Text: PPREFIX = D .
Title: Generated Test Data for Labeling
Text Symbol: 001 = Data Source
Text Symbol: 002 = Options
INCLUDE RM_LABELING_SAMPLE_DATA01.
INCLUDE RM_LABELING_SAMPLE_DATA02.
No SAP DATABASE tables are accessed within this REPORT code!
DYNP_VALUES_READ CALL FUNCTION 'DYNP_VALUES_READ' EXPORTING dyname = sy-cprog dynumb = sy-dynnr TABLES dynpfields = lt_dynpfields EXCEPTIONS OTHERS = 1.
ECATT_OBJECT_F4_REQUEST CALL FUNCTION 'ECATT_OBJECT_F4_REQUEST' EXPORTING im_object_type = 'ECTD' im_object_name = lv_etobj_name im_display_only = space im_without_personal_list = space IMPORTING ex_object_name = lv_obj_name ex_answer = lv_answer EXCEPTIONS object_type_unknown = 1 OTHERS = 2.
VRM_DELETE_VALUES CALL FUNCTION 'VRM_DELETE_VALUES' EXPORTING id = 'PETVARID' EXCEPTIONS id_not_found = 0.
VRM_SET_VALUES CALL FUNCTION 'VRM_SET_VALUES' EXPORTING id = 'PETVARID' values = gt_values EXCEPTIONS OTHERS = 0.
VRM_DELETE_VALUES CALL FUNCTION 'VRM_DELETE_VALUES' EXPORTING id = 'PETVARID' EXCEPTIONS id_not_found = 0.
VRM_SET_VALUES CALL FUNCTION 'VRM_SET_VALUES' EXPORTING id = 'PETVARID' values = gt_values 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.
RM_LABELING_SAMPLE_DATA - Generated Test Data for Labeling RM_LABELING_SAMPLE_DATA - Generated Test Data for Labeling RM_INITIAL_DATA_LOAD - Initial Data Load for Recipes RM_INITIAL_DATA_LOAD - Initial Data Load for Recipes RM_IMG_DB_PROVIDER - Display Implementation Guide for DB Providers RM_IMG_DB_PROVIDER - Display Implementation Guide for DB Providers