SAP Reports / Programs | Product Lifecycle Management | Recipe Management(PLM-RM) SAP PLM

RM_LABELING_SAMPLE_DATA SAP ABAP Report - Generated Test Data for Labeling







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


ABAP code to call this SAP report using the submit statement

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.






SUBMIT RM_LABELING_SAMPLE_DATA. "Basic submit
SUBMIT RM_LABELING_SAMPLE_DATA AND RETURN. "Return to original report after report execution complete
SUBMIT RM_LABELING_SAMPLE_DATA VIA SELECTION-SCREEN. "Display selection screen of submitted report to user
    See more syntax options for the ABAP SUBMIT statement


Text pool values


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


INCLUDES used within this REPORT RM_LABELING_SAMPLE_DATA

INCLUDE RM_LABELING_SAMPLE_DATA01.
INCLUDE RM_LABELING_SAMPLE_DATA02.


TABLES used within REPORT and the associated SELECT statement:





No SAP DATABASE tables are accessed within this REPORT code!


Function Modules used within report and the associated call statement:

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.



Contribute (Add Comments)

Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.







The contribute/comments section below therefore offer's an opportunity for anyone to add additional information. This can be anything from useful hints, tips and screen shots to relevant SAP notes or anything else you feel is relevant to this report.

This will then be available for everyone to easily find by simply searching on the report name RM_LABELING_SAMPLE_DATA or its description.