Hi All,
I have to do the Query Parameter with DLV_CREATED_ON using the below code, but its not returning any values.
APPEND INITIAL LINE TO gt_sel_param ASSIGNING FIELD-SYMBOL(<sparam>).
<sparam>-attribute_name = 'DLV_CREATED_ON'. " 'TOR_ID'.
<sparam>-sign = 'I'.
<sparam>-option = 'BT'.
<sparam>-low = '20220623193644'.
endif.
TRY.
gv_srv_tor->query(
EXPORTING
iv_query_key = /scmtms/if_tor_c=>sc_query-root-fo_data_by_attr
it_selection_parameters = gt_sel_param
IMPORTING
et_key = gt_key
).
CATCH /bobf/cx_frw_contrct_violation INTO DATA(lv_excp1).
DATA(lv_msg1) = lv_excp1->get_longtext( ).
ENDTRY.