Advertisement
hxxxrz

Untitled

Dec 11th, 2020
325
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.83 KB | None | 0 0
  1. *Объем перевозки м3
  2. mo_tor_srv->retrieve_by_association(
  3. EXPORTING
  4. iv_node_key = /scmtms/if_tor_c=>sc_node-item_tr
  5. it_key = lt_item_tr_keys
  6. iv_association = /scmtms/if_tor_c=>sc_association-item_tr-bo_resource
  7. iv_fill_data = abap_true
  8. IMPORTING
  9. et_target_key = DATA(lt_resource_key) ).
  10.  
  11. IF lt_resource_key IS INITIAL.
  12. RETURN.
  13. ENDIF.
  14.  
  15. mo_res_srm->retrieve_by_association(
  16. EXPORTING
  17. iv_node_key = /scmtms/if_resource_c=>sc_node-root
  18. it_key = lt_resource_key
  19. iv_association = /scmtms/if_resource_c=>sc_association-root-description
  20. iv_fill_data = abap_true
  21. IMPORTING
  22. et_data = lt_description ).
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement