SAP /ACCGO/ACM_RECON_UPD_KONVD Function Module for Recon report
/ACCGO/ACM_RECON_UPD_KONVD is a standard /accgo/acm recon upd konvd SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for Recon report 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/acm recon upd konvd FM, simply by entering the name /ACCGO/ACM_RECON_UPD_KONVD into the relevant SAP transaction such as SE37 or SE38.
Function Group: /ACCGO/ACM_RECON_UPDATE
Program Name: /ACCGO/SAPLACM_RECON_UPDATE
Main Program: /ACCGO/SAPLACM_RECON_UPDATE
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:
Function /ACCGO/ACM_RECON_UPD_KONVD 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/ACM_RECON_UPD_KONVD'"Recon report.
EXPORTING
IT_STAT_APPDOC = "Individual Object Status
IT_KONVD = "Table Type for CMM_VLOGP_KONVD
IV_TIMESTAMP = "UTC Time Stamp in Short Form (YYYYMMDDhhmmss)
IV_GROUP_NAME = "Logon/Server Group Name
IV_MAX_PROCESSORS = "
* IT_APPDOC_ITEMS_CAD = "Table Type for RECON for Appdoc & Contract information
IT_STAT_STL = "Individual Object Status
* IT_APPDOC_ITEMS_PAD = "Table Type for RECON for Appdoc & Contract information
* IT_APPDOC_ITEMS_SAD = "Table Type for RECON for Appdoc & Contract information
* IT_APPDOC_ITEMS_RSD = "Table Type for RECON for Appdoc & Contract information
* IT_APPDOC_ITEMS_RPD = "Table Type for RECON for Appdoc & Contract information
* IT_APPDOC_ITEMS_IC = "Table Type for RECON for Appdoc & Contract information
IT_CAS_CAI = "Contract application items
IT_APPDATA = "Table type for application details
IMPORTING
EV_UNASSIGNED_APPDOC_COUNT = "
CHANGING
CT_RETURN = "Application Log: Table with Messages
IMPORTING Parameters details for /ACCGO/ACM_RECON_UPD_KONVD
IT_STAT_APPDOC - Individual Object Status
Data type: JEST_TTYOptional: No
Call by Reference: Yes
IT_KONVD - Table Type for CMM_VLOGP_KONVD
Data type: CMM_VLOGP_KONVD_TOptional: No
Call by Reference: Yes
IV_TIMESTAMP - UTC Time Stamp in Short Form (YYYYMMDDhhmmss)
Data type: TZNTSTMPSOptional: No
Call by Reference: Yes
IV_GROUP_NAME - Logon/Server Group Name
Data type: RZLLITAB-CLASSNAMEOptional: No
Call by Reference: Yes
IV_MAX_PROCESSORS -
Data type: IOptional: No
Call by Reference: Yes
IT_APPDOC_ITEMS_CAD - Table Type for RECON for Appdoc & Contract information
Data type: /ACCGO/TT_RECON_APP_CONTROptional: Yes
Call by Reference: Yes
IT_STAT_STL - Individual Object Status
Data type: JEST_TTYOptional: No
Call by Reference: Yes
IT_APPDOC_ITEMS_PAD - Table Type for RECON for Appdoc & Contract information
Data type: /ACCGO/TT_RECON_APP_CONTROptional: Yes
Call by Reference: Yes
IT_APPDOC_ITEMS_SAD - Table Type for RECON for Appdoc & Contract information
Data type: /ACCGO/TT_RECON_APP_CONTROptional: Yes
Call by Reference: Yes
IT_APPDOC_ITEMS_RSD - Table Type for RECON for Appdoc & Contract information
Data type: /ACCGO/TT_RECON_APP_CONTROptional: Yes
Call by Reference: Yes
IT_APPDOC_ITEMS_RPD - Table Type for RECON for Appdoc & Contract information
Data type: /ACCGO/TT_RECON_APP_CONTROptional: Yes
Call by Reference: Yes
IT_APPDOC_ITEMS_IC - Table Type for RECON for Appdoc & Contract information
Data type: /ACCGO/TT_RECON_APP_CONTROptional: Yes
Call by Reference: Yes
IT_CAS_CAI - Contract application items
Data type: /ACCGO/CAS_TT_CAIOptional: No
Call by Reference: Yes
IT_APPDATA - Table type for application details
Data type: /ACCGO/CAS_TT_APPLDOC_DETAILOptional: No
Call by Reference: Yes
EXPORTING Parameters details for /ACCGO/ACM_RECON_UPD_KONVD
EV_UNASSIGNED_APPDOC_COUNT -
Data type: IOptional: No
Call by Reference: No ( called with pass by value option)
CHANGING Parameters details for /ACCGO/ACM_RECON_UPD_KONVD
CT_RETURN - Application Log: Table with Messages
Data type: BAL_T_MSGOptional: No
Call by Reference: Yes
Copy and paste ABAP code example for /ACCGO/ACM_RECON_UPD_KONVD 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_ct_return | TYPE BAL_T_MSG, " | |||
lv_it_stat_appdoc | TYPE JEST_TTY, " | |||
lv_ev_unassigned_appdoc_count | TYPE I, " | |||
lv_it_konvd | TYPE CMM_VLOGP_KONVD_T, " | |||
lv_iv_timestamp | TYPE TZNTSTMPS, " | |||
lv_iv_group_name | TYPE RZLLITAB-CLASSNAME, " | |||
lv_iv_max_processors | TYPE I, " | |||
lv_it_appdoc_items_cad | TYPE /ACCGO/TT_RECON_APP_CONTR, " | |||
lv_it_stat_stl | TYPE JEST_TTY, " | |||
lv_it_appdoc_items_pad | TYPE /ACCGO/TT_RECON_APP_CONTR, " | |||
lv_it_appdoc_items_sad | TYPE /ACCGO/TT_RECON_APP_CONTR, " | |||
lv_it_appdoc_items_rsd | TYPE /ACCGO/TT_RECON_APP_CONTR, " | |||
lv_it_appdoc_items_rpd | TYPE /ACCGO/TT_RECON_APP_CONTR, " | |||
lv_it_appdoc_items_ic | TYPE /ACCGO/TT_RECON_APP_CONTR, " | |||
lv_it_cas_cai | TYPE /ACCGO/CAS_TT_CAI, " | |||
lv_it_appdata | TYPE /ACCGO/CAS_TT_APPLDOC_DETAIL. " |
  CALL FUNCTION '/ACCGO/ACM_RECON_UPD_KONVD' "Recon report |
EXPORTING | ||
IT_STAT_APPDOC | = lv_it_stat_appdoc | |
IT_KONVD | = lv_it_konvd | |
IV_TIMESTAMP | = lv_iv_timestamp | |
IV_GROUP_NAME | = lv_iv_group_name | |
IV_MAX_PROCESSORS | = lv_iv_max_processors | |
IT_APPDOC_ITEMS_CAD | = lv_it_appdoc_items_cad | |
IT_STAT_STL | = lv_it_stat_stl | |
IT_APPDOC_ITEMS_PAD | = lv_it_appdoc_items_pad | |
IT_APPDOC_ITEMS_SAD | = lv_it_appdoc_items_sad | |
IT_APPDOC_ITEMS_RSD | = lv_it_appdoc_items_rsd | |
IT_APPDOC_ITEMS_RPD | = lv_it_appdoc_items_rpd | |
IT_APPDOC_ITEMS_IC | = lv_it_appdoc_items_ic | |
IT_CAS_CAI | = lv_it_cas_cai | |
IT_APPDATA | = lv_it_appdata | |
IMPORTING | ||
EV_UNASSIGNED_APPDOC_COUNT | = lv_ev_unassigned_appdoc_count | |
CHANGING | ||
CT_RETURN | = lv_ct_return | |
. " /ACCGO/ACM_RECON_UPD_KONVD |
ABAP code using 7.40 inline data declarations to call FM /ACCGO/ACM_RECON_UPD_KONVD
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."SELECT single CLASSNAME FROM RZLLITAB INTO @DATA(ld_iv_group_name). | ||||
Search for further information about these or an SAP related objects