重要的函式總結。

2021-05-27 07:25:03 字數 3736 閱讀 9733

採購訂單:

1.        call function 'me_display_purchase_document'

exporting

i_ebeln              = itab-ebeln

exceptions

not_found            = 1

no_authority         = 2

invalid_call         = 3

preview_not_possible = 4

others               = 5.

2.        set parameter id 'bes' field itab-ebeln.

call function 'me_display_purchase_document'

exporting

i_ebeln      = itab-ebeln

i_ebelp      = itab-ebelp

i_enjoy      = 'x'

*          importing

*               e_ekko       =

exceptions

not_found    = 1

no_authority = 2

invalid_call = 3

others       = 4   .

物料憑證:

set parameter id 'mbn' field itab-belnr.

set parameter id 'mja' field itab-gjahr.

set parameter id 'buk' field itab-bukrs.

call function 'migo_dialog'

exporting

i_action            = 'a04'

i_refdoc            = 'r02'

i_notree            = 'x'

i_skip_first_screen = 'x'

i_okcode            = 'ok_go'

i_mblnr             = itab-belnr

i_mjahr             = itab-gjahr

exceptions

illegal_combination = 1

others              = 2.

銷售訂單:

set parameter id 'aun' field it_itab-vgbel .

call transaction 'va03' and skip first screen .

交貨單:

set parameter id 'vl' field it_itab-vbeln .

call transaction 'vl03n' and skip first screen .

po的物料:

call function 'mmpur_material_display'

exporting

im_matnr = itab-matnr.

物料:

set parameter id 'mxx' field 'e'. "table t132,決定顯示哪個檢視

set parameter id 'mat' field itab-matnr.

set parameter id 'wrk' field itab-werks.

set parameter id 'lif' field itab-lifnr.

*       set parameter id 'kar' field '001'.

*       set parameter id 'lag' field im_lgort.

call transaction 'mm03' and skip first screen.

mxx的選擇看錶t132 (同時看錶moff)

a           工作計畫

b           會計

c           分類

d           物料需求計畫

e           採購

f           生產資源/工具

g           成本核算

k           基本資料

l           儲存

p           **

q           質量管理

s           倉庫管理

v           銷售

x     x     工廠庫存

z     x     儲存位置庫存

**商:

call function 'mmpur_vendor_display'

exporting

im_lifnr = itab-lifnr

im_ekorg = 'b000'.

資訊記錄:

call function 'mmpur_info_record_display'

exporting

im_infnr = itab-infnr

im_ekorg = 'b000'

im_werks = itab-werks.

工廠:data: ls_vt001w type v_t001w.

ls_vt001w-mandt = sy-mandt.

ls_vt001w-werks = itab-werks.

call function 'view_maintenance_single_entry'

exporting

action    = 'show'

view_name = 'v_t001w'

changing

entry     = ls_vt001w.

注:一般維護檢視的介面可以用這個方法

*幾個關於"display"的function group:ck50,edi5,meext等

會計憑證:

set parameter id 'bln' field '90000046' .

set parameter id 'buk' field '1000'.

set parameter id 'gjr' field '2008'.

call transaction 'fb03' and skip first screen .

程式或者函式:

call function 'editor_program'

exporting                   

display = 'x'             

program = it_tfdir-incname

exceptions                  

others  = 1.              

函式組:

call function 'rs_function_pool_change'

exporting                           

aktion        = 'show'            

function_pool = it_tfdir-fgname   

exceptions                          

others        = 9.                

C 重要總結

1.陣列初始化 memset a,0,sizeof a 2.不需要其他變數的兩個資料互換 int a 1,b 2 cout 4.預設進製 預設狀態下,資料按十進位制輸入輸出。如果要求按八進位制或十六進製制輸入輸出,在cin或cout中必須指明相應的資料形式,oct為八進位制,hex為十六進製制,de...

lua table 重要函式

1 求長度操作 a a 3 給table新增元素a a 1 d 2 table.concat table,sep,start,end 講從start開始到end的元素以sep作為分隔符鏈結成乙個整體 例 tbl print table.concat tbl,alpha beta gamma 3 ta...

OPENCV重要函式

本節用來總結slam學習過程中,用到的重要的opencv函式 功能使用具有金字塔的迭代lucas kanade方法計算稀疏特徵集的光流。void cv calcopticalflowpyrlk inputarray previmg,inputarray nextimg,inputarray prev...