0% found this document useful (0 votes)
9 views1 page

5

The method GET_CONDITION_VALUES retrieves condition values related to a change request. It utilizes the zcl_mdg_mm_utilities class to read the change request type and step based on the provided change request number. The results are then stored in the cs_cond_values structure for further processing.

Uploaded by

14mervekaya01
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
9 views1 page

5

The method GET_CONDITION_VALUES retrieves condition values related to a change request. It utilizes the zcl_mdg_mm_utilities class to read the change request type and step based on the provided change request number. The results are then stored in the cs_cond_values structure for further processing.

Uploaded by

14mervekaya01
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
You are on page 1/ 1

method GET_CONDITION_VALUES.

DATA: lt_werks TYPE werks_table.


DATA: lo_app_context TYPE REF TO if_usmd_app_context,
lv_cr_type TYPE usmd_crequest_type,
lv_cr_step TYPE usmd_crequest_appstep,
lv_data_cr TYPE usmd_crequest.
CALL METHOD zcl_mdg_mm_utilities=>read_crequest_govapi
EXPORTING
iv_cr_number = iv_cr_number " Change Request
IMPORTING
iv_cr_type = lv_cr_type " Type of Change Request
iv_cr_step = lv_cr_step. " Change Request Step Number
cs_cond_values-creq_type = lv_cr_type.
cs_cond_values-creq_wfs = IV_CREQ_WFS.

endmethod.

You might also like