SAP FSCD_EXIT_EXECUTE_V952 Function Module for FS-CD: Contract Account: Call Exit V952









FSCD_EXIT_EXECUTE_V952 is a standard fscd exit execute v952 SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for FS-CD: Contract Account: Call Exit V952 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 fscd exit execute v952 FM, simply by entering the name FSCD_EXIT_EXECUTE_V952 into the relevant SAP transaction such as SE37 or SE38.

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



Function FSCD_EXIT_EXECUTE_V952 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 'FSCD_EXIT_EXECUTE_V952'"FS-CD: Contract Account: Call Exit V952
CHANGING
ACCOUNTDATA = "FS-CD: BAPI Structure for Contract Account Data
ACCOUNTDATAX = "FS-CD: BAPI Change Structure for Contract Account Data

TABLES
ACCOUNTPARTNER = "FS-CD: BAPI Structure for Account Partner Data
EXTENSIONIN = "Reference Structure for BAPI Parameters ExtensionIn/ExtensionOut
ACCOUNTPARTNERX = "FS-CD: BAPI Change Structure for Account Partner Data
* ACCOUNTPARTNERCORR = "FS-CD: BAPI Structure for Acct-Partner Correspondence Data
* ACCOUNTPARTNERCORRX = "FS-CD: BAPI Change Structure for Acct-Partner Corr. Data
* ACCOUNTPARTNERLOCK = "FS-CD: BAPI Structure for Account-Partner Locks
* ACCOUNTPARTNERLOCKX = "FS-CD: BAPI Change Structure for Account-Partner Locks
* ACCOUNTTAX = "FS-CD: BAPI Structure for Account Tax Data
* ACCOUNTTAXX = "FS-CD: BAPI Change Structure for Account Tax Data
RETURN = "Return Parameter(s)
.



CHANGING Parameters details for FSCD_EXIT_EXECUTE_V952

ACCOUNTDATA - FS-CD: BAPI Structure for Contract Account Data

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

ACCOUNTDATAX - FS-CD: BAPI Change Structure for Contract Account Data

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

TABLES Parameters details for FSCD_EXIT_EXECUTE_V952

ACCOUNTPARTNER - FS-CD: BAPI Structure for Account Partner Data

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

EXTENSIONIN - Reference Structure for BAPI Parameters ExtensionIn/ExtensionOut

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

ACCOUNTPARTNERX - FS-CD: BAPI Change Structure for Account Partner Data

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

ACCOUNTPARTNERCORR - FS-CD: BAPI Structure for Acct-Partner Correspondence Data

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

ACCOUNTPARTNERCORRX - FS-CD: BAPI Change Structure for Acct-Partner Corr. Data

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

ACCOUNTPARTNERLOCK - FS-CD: BAPI Structure for Account-Partner Locks

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

ACCOUNTPARTNERLOCKX - FS-CD: BAPI Change Structure for Account-Partner Locks

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

ACCOUNTTAX - FS-CD: BAPI Structure for Account Tax Data

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

ACCOUNTTAXX - FS-CD: BAPI Change Structure for Account Tax Data

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

RETURN - Return Parameter(s)

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

Copy and paste ABAP code example for FSCD_EXIT_EXECUTE_V952 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_accountdata  TYPE BAPICD_ACCOUNT, "   
lt_accountpartner  TYPE STANDARD TABLE OF BAPICD_ACCOUNT_PARTNER, "   
lt_extensionin  TYPE STANDARD TABLE OF BAPIPAREX, "   
lv_accountdatax  TYPE BAPICD_ACCOUNTX, "   
lt_accountpartnerx  TYPE STANDARD TABLE OF BAPICD_ACCOUNT_PARTNERX, "   
lt_accountpartnercorr  TYPE STANDARD TABLE OF BAPICD_ACCOUNT_PARTNER_CORR, "   
lt_accountpartnercorrx  TYPE STANDARD TABLE OF BAPICD_ACCOUNT_PARTNER_CORRX, "   
lt_accountpartnerlock  TYPE STANDARD TABLE OF BAPICD_ACCOUNT_PARTNER_LOCK, "   
lt_accountpartnerlockx  TYPE STANDARD TABLE OF BAPICD_ACCOUNT_PARTNER_LOCKX, "   
lt_accounttax  TYPE STANDARD TABLE OF BAPICD_ACCOUNT_TAX, "   
lt_accounttaxx  TYPE STANDARD TABLE OF BAPICD_ACCOUNT_TAXX, "   
lt_return  TYPE STANDARD TABLE OF BAPIRET2. "   

  CALL FUNCTION 'FSCD_EXIT_EXECUTE_V952'  "FS-CD: Contract Account: Call Exit V952
    CHANGING
         ACCOUNTDATA = lv_accountdata
         ACCOUNTDATAX = lv_accountdatax
    TABLES
         ACCOUNTPARTNER = lt_accountpartner
         EXTENSIONIN = lt_extensionin
         ACCOUNTPARTNERX = lt_accountpartnerx
         ACCOUNTPARTNERCORR = lt_accountpartnercorr
         ACCOUNTPARTNERCORRX = lt_accountpartnercorrx
         ACCOUNTPARTNERLOCK = lt_accountpartnerlock
         ACCOUNTPARTNERLOCKX = lt_accountpartnerlockx
         ACCOUNTTAX = lt_accounttax
         ACCOUNTTAXX = lt_accounttaxx
         RETURN = lt_return
. " FSCD_EXIT_EXECUTE_V952




ABAP code using 7.40 inline data declarations to call FM FSCD_EXIT_EXECUTE_V952

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!