PO中的可變採購單位,在ABAP中的應用。

2021-08-17 18:11:00 字數 995 閱讀 4573

今天使用者需求,so開的銷售訂單單位是kar,轉成po時以前一直是pcs。但我通過bapi,建立po時一直引用是基本單位。並產了採購資訊記錄。若完成使用者需求,檢視了網際網路相關技術文件。總結如下:

1.維護物料主資料的單位選項:

2.採購資訊記錄的維護(可變的訂單單位):

3.abap部分的處理:

poitem-po_unit = itab_sodtl-zieme.   」zieme是從so明細從取來的 銷售訂單單位

poitemx-po_unit    = 'x'.

call 

function 

'bapi_po_create1'

exporting

poheader         = poheader

poheaderx        = poheaderx

no_price_from_po = 'x'

importing

exppurchaseorder = zexppurchaseorder

tables

return           = return

poitem           = poitem

poitemx          = poitemx

poschedule       = poschedule

poschedulex      = poschedulex

pocond           = pocond

pocondx          = pocondx.



ABAP 中的巨集

report zcp saptest2 data result type i,int1 type i value 1,int2 type i value 2.define operation.result 1 2 3.output 1 2 3 result.end of definition.def...

ABAP中的Table Control程式設計 2

上篇講了table control的基本功能,現在繼續討論它在其他方面的一些設定。4,滾動到某行某列 如果我們希望,螢幕顯示後展示在使用者面前的最上端或者左端是表內容中的某行某列,則應該修改變數top line和left col的值。一般可在pbo的tc 0100 change tc attr裡設定...

ABAP程式中的事件

事件流 6個 initialization 初始化 at selection screen 螢幕跳出前 start of selection 取資料 end of selection 展示資料 top of page 普通報表輸出頁頭 end of page 普通報表輸出頁尾 1.load of p...