SAP /ACCGO/EXM_COPY_EXPENSE_PTC Function Module for Copy Expense from Pricing TC to LTC Using Source TC Only
/ACCGO/EXM_COPY_EXPENSE_PTC is a standard /accgo/exm copy expense ptc SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for Copy Expense from Pricing TC to LTC Using Source TC Only processing and below is the pattern details for this FM, showing its interface including any import and export parameters, exceptions etc. there is also a full "cut and paste" ABAP pattern code example, along with implementation ABAP coding, documentation and contribution comments specific to this or related objects.
See here to view full function module documentation and code listing for /accgo/exm copy expense ptc FM, simply by entering the name /ACCGO/EXM_COPY_EXPENSE_PTC into the relevant SAP transaction such as SE37 or SE38.
Function Group: /ACCGO/EXM_PR_LG_TC
Program Name: /ACCGO/SAPLEXM_PR_LG_TC
Main Program: /ACCGO/SAPLEXM_PR_LG_TC
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Remote-Enabled
Update:

Function /ACCGO/EXM_COPY_EXPENSE_PTC pattern details
In-order to call this FM within your sap programs, simply using the below ABAP pattern details to trigger the function call...or see the full ABAP code listing at the end of this article. You can simply cut and paste this code into your ABAP progrom as it is, including variable declarations.CALL FUNCTION '/ACCGO/EXM_COPY_EXPENSE_PTC'"Copy Expense from Pricing TC to LTC Using Source TC Only.
EXPORTING
IM_SRC_TC_TAB = "Table type for trading contract number
IM_DES_TC = "Trading Contract: Trading Contract Number
IM_V_QNAME = "Name of tRFC Queue
IM_V_TIMESTAMP = "UTC Time Stamp in Short Form (YYYYMMDDhhmmss)
IM_ACTION_CODE = "GTM: Action Code Regarding Service Calls
* IM_COMMIT = 'X' "Boolean Variable (X=True, -=False, Space=Unknown)
IMPORTING Parameters details for /ACCGO/EXM_COPY_EXPENSE_PTC
IM_SRC_TC_TAB - Table type for trading contract number
Data type: /ACCGO/CMN_TT_TKONNOptional: No
Call by Reference: No ( called with pass by value option)
IM_DES_TC - Trading Contract: Trading Contract Number
Data type: TKONNOptional: No
Call by Reference: No ( called with pass by value option)
IM_V_QNAME - Name of tRFC Queue
Data type: TRFCQNAMOptional: No
Call by Reference: No ( called with pass by value option)
IM_V_TIMESTAMP - UTC Time Stamp in Short Form (YYYYMMDDhhmmss)
Data type: TIMESTAMPOptional: No
Call by Reference: No ( called with pass by value option)
IM_ACTION_CODE - GTM: Action Code Regarding Service Calls
Data type: WB2_ACTION_CODEOptional: No
Call by Reference: No ( called with pass by value option)
IM_COMMIT - Boolean Variable (X=True, -=False, Space=Unknown)
Data type: BOOLEANDefault: 'X'
Optional: No
Call by Reference: No ( called with pass by value option)
Copy and paste ABAP code example for /ACCGO/EXM_COPY_EXPENSE_PTC Function Module
The ABAP code below is a full code listing to execute function module POPUP_TO_CONFIRM including all data declarations. The code uses the original data declarations rather than the latest in-line data DECLARATION SYNTAX but I have included an ABAP code snippet at the end to show how declarations would look using the newer method of declaring data variables on the fly. This will allow you to compare and fully understand the new inline method. Please note some of the newer syntax such as the @DATA is not available until a later 4.70 service pack (SP8), which i why i have stuck to the origianl for this example.DATA: | ||||
lv_im_src_tc_tab | TYPE /ACCGO/CMN_TT_TKONN, " | |||
lv_im_des_tc | TYPE TKONN, " | |||
lv_im_v_qname | TYPE TRFCQNAM, " | |||
lv_im_v_timestamp | TYPE TIMESTAMP, " | |||
lv_im_action_code | TYPE WB2_ACTION_CODE, " | |||
lv_im_commit | TYPE BOOLEAN. " 'X' |
  CALL FUNCTION '/ACCGO/EXM_COPY_EXPENSE_PTC' "Copy Expense from Pricing TC to LTC Using Source TC Only |
EXPORTING | ||
IM_SRC_TC_TAB | = lv_im_src_tc_tab | |
IM_DES_TC | = lv_im_des_tc | |
IM_V_QNAME | = lv_im_v_qname | |
IM_V_TIMESTAMP | = lv_im_v_timestamp | |
IM_ACTION_CODE | = lv_im_action_code | |
IM_COMMIT | = lv_im_commit | |
. " /ACCGO/EXM_COPY_EXPENSE_PTC |
ABAP code using 7.40 inline data declarations to call FM /ACCGO/EXM_COPY_EXPENSE_PTC
The below ABAP code uses the newer in-line data declarations. This allows you to see the coding differences/benefits of the later inline syntax. Please note some of the newer syntax below, such as the @DATA is not available until 4.70 EHP 8.DATA(ld_im_commit) | = 'X'. | |||
Search for further information about these or an SAP related objects