Advertisement
Guest User

Untitled

a guest
Mar 26th, 2019
168
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
ABAP 0.89 KB | None | 0 0
  1.     i_po_header_in = VALUE #( vendor    = |{ '1000097' ALPHA = IN }|
  2.                               purch_org = 'ADM'
  3.                               pur_group = '210'
  4.                               comp_code = 'PL01' ).
  5.  
  6.     i_po_items_in = VALUE #( ( po_item = 10
  7.                               short_text = 'Zlec. transp. 11151 / 700062 GRANT'
  8.                               matl_group = 'G403002'
  9.                               acctasscat = 'K'
  10.                               plant = '01'
  11.                               quantity = 1
  12.                               po_unit = 'ST'
  13.                               net_price = 40 ) ).
  14.  
  15.     i_po_schedules_in = VALUE #( ( po_item = 10
  16.                                    delivery_date = sy-datum
  17.                                    quantity = 1 ) ).
  18.  
  19.     i_po_accounts_in = VALUE #( ( po_item = 10
  20.                                   costcenter = '01TRA3' ) ).
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement