SAP /ACCGO/CAK_GET_SNAPSHOT_BY_KEY Function Module for Get Snapshots Details for a Trading Contract by Key









/ACCGO/CAK_GET_SNAPSHOT_BY_KEY is a standard /accgo/cak get snapshot by key SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for Get Snapshots Details for a Trading Contract by Key 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/cak get snapshot by key FM, simply by entering the name /ACCGO/CAK_GET_SNAPSHOT_BY_KEY into the relevant SAP transaction such as SE37 or SE38.

Function Group: /ACCGO/CAK_SNP
Program Name: /ACCGO/SAPLCAK_SNP
Main Program: /ACCGO/SAPLCAK_SNP
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:



Function /ACCGO/CAK_GET_SNAPSHOT_BY_KEY 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/CAK_GET_SNAPSHOT_BY_KEY'"Get Snapshots Details for a Trading Contract by Key
EXPORTING
IV_CONTRACT_NUM = "Trading Contract: Item Number
* IV_CONTRACT_ITEM_NUM = "Trading Contract: Item Number
* IV_DATE = "Field of type DATS
* IV_TIME = "Time in CHAR Format
* IV_TIME_ZONE = "Time Zone

IMPORTING
ET_SNAPSHOTS = "Snapshots: Strcuture to get fields changed in a Snapshot
EV_SUCCESS = "Data element for domain BOOLE: TRUE (='X') and FALSE (=' ')
ES_ERROR = "Return Parameter
.



IMPORTING Parameters details for /ACCGO/CAK_GET_SNAPSHOT_BY_KEY

IV_CONTRACT_NUM - Trading Contract: Item Number

Data type: TKONN
Optional: No
Call by Reference: Yes

IV_CONTRACT_ITEM_NUM - Trading Contract: Item Number

Data type: TPOSN
Optional: Yes
Call by Reference: Yes

IV_DATE - Field of type DATS

Data type: DATS
Optional: Yes
Call by Reference: Yes

IV_TIME - Time in CHAR Format

Data type: TIMS
Optional: Yes
Call by Reference: Yes

IV_TIME_ZONE - Time Zone

Data type: TZNZONE
Optional: Yes
Call by Reference: Yes

EXPORTING Parameters details for /ACCGO/CAK_GET_SNAPSHOT_BY_KEY

ET_SNAPSHOTS - Snapshots: Strcuture to get fields changed in a Snapshot

Data type: /ACCGO/CAK_TT_SNP_CHG_TRACK
Optional: No
Call by Reference: Yes

EV_SUCCESS - Data element for domain BOOLE: TRUE (='X') and FALSE (=' ')

Data type: BOOLE_D
Optional: No
Call by Reference: Yes

ES_ERROR - Return Parameter

Data type: BAPIRET1
Optional: No
Call by Reference: Yes

Copy and paste ABAP code example for /ACCGO/CAK_GET_SNAPSHOT_BY_KEY 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_et_snapshots  TYPE /ACCGO/CAK_TT_SNP_CHG_TRACK, "   
lv_iv_contract_num  TYPE TKONN, "   
lv_ev_success  TYPE BOOLE_D, "   
lv_iv_contract_item_num  TYPE TPOSN, "   
lv_iv_date  TYPE DATS, "   
lv_es_error  TYPE BAPIRET1, "   
lv_iv_time  TYPE TIMS, "   
lv_iv_time_zone  TYPE TZNZONE. "   

  CALL FUNCTION '/ACCGO/CAK_GET_SNAPSHOT_BY_KEY'  "Get Snapshots Details for a Trading Contract by Key
    EXPORTING
         IV_CONTRACT_NUM = lv_iv_contract_num
         IV_CONTRACT_ITEM_NUM = lv_iv_contract_item_num
         IV_DATE = lv_iv_date
         IV_TIME = lv_iv_time
         IV_TIME_ZONE = lv_iv_time_zone
    IMPORTING
         ET_SNAPSHOTS = lv_et_snapshots
         EV_SUCCESS = lv_ev_success
         ES_ERROR = lv_es_error
. " /ACCGO/CAK_GET_SNAPSHOT_BY_KEY




ABAP code using 7.40 inline data declarations to call FM /ACCGO/CAK_GET_SNAPSHOT_BY_KEY

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.

 
 
 
 
 
 
 
 


Search for further information about these or an SAP related objects



Comments on this SAP object

What made you want to lookup this SAP object? Please tell us what you were looking for and anything you would like to be included on this page!