SAP FMCA_FPF_MIGRATION_DATA_GET Function Module for FPF: returns the data of the form bundle type









FMCA_FPF_MIGRATION_DATA_GET is a standard fmca fpf migration data get SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for FPF: returns the data of the form bundle type 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 fmca fpf migration data get FM, simply by entering the name FMCA_FPF_MIGRATION_DATA_GET into the relevant SAP transaction such as SE37 or SE38.

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



Function FMCA_FPF_MIGRATION_DATA_GET 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 'FMCA_FPF_MIGRATION_DATA_GET'"FPF: returns the data of the form bundle type
IMPORTING
ES_TFMCA_FPF_FBTT = "Form Bundle Type - Text
ES_TFMCA_FPF_FBT = "Form Bundle Type
ES_TFMCA_FPF_RLGR = "FPF: Processing Variant for a Form Bundle Type
ES_TFMCA_FPF_RLGRT = "FPF: Processing Variant for a Form Bundle Type

TABLES
* ET_TFMCA_FPF_FORMT = "FPF: Form Type
* ET_TFMCA_FPF_FORMTT = "FPF: Text Form Type
* ET_TFMCA_FPF_FBTCON = "Form Bundle Type - Configuration
* ET_TFMCA_FPF_RCODE = "FPF: Connections between Reason Code and Form Bundle Types
* ET_TFMCA_REV2FPF = "FPF: relationship between revenue type and form bundle type
* ET_TFMCA_FPF_RULE = "FPF: Processing Rule for a Form Bundle Type
* ET_TFMCA_FPF_RLGRA = "FPF: Assign Rule to Processing Variant
* ET_TFMCA_FPF_RLACT = "FPF: Assign Processing Variant to Activity
.



EXPORTING Parameters details for FMCA_FPF_MIGRATION_DATA_GET

ES_TFMCA_FPF_FBTT - Form Bundle Type - Text

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

ES_TFMCA_FPF_FBT - Form Bundle Type

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

ES_TFMCA_FPF_RLGR - FPF: Processing Variant for a Form Bundle Type

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

ES_TFMCA_FPF_RLGRT - FPF: Processing Variant for a Form Bundle Type

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

TABLES Parameters details for FMCA_FPF_MIGRATION_DATA_GET

ET_TFMCA_FPF_FORMT - FPF: Form Type

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

ET_TFMCA_FPF_FORMTT - FPF: Text Form Type

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

ET_TFMCA_FPF_FBTCON - Form Bundle Type - Configuration

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

ET_TFMCA_FPF_RCODE - FPF: Connections between Reason Code and Form Bundle Types

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

ET_TFMCA_REV2FPF - FPF: relationship between revenue type and form bundle type

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

ET_TFMCA_FPF_RULE - FPF: Processing Rule for a Form Bundle Type

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

ET_TFMCA_FPF_RLGRA - FPF: Assign Rule to Processing Variant

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

ET_TFMCA_FPF_RLACT - FPF: Assign Processing Variant to Activity

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

Copy and paste ABAP code example for FMCA_FPF_MIGRATION_DATA_GET 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_es_tfmca_fpf_fbtt  TYPE TFMCA_FPF_FBTT, "   
lt_et_tfmca_fpf_formt  TYPE STANDARD TABLE OF TFMCA_FPF_FORMT, "   
lv_es_tfmca_fpf_fbt  TYPE TFMCA_FPF_FBT, "   
lt_et_tfmca_fpf_formtt  TYPE STANDARD TABLE OF TFMCA_FPF_FORMTT, "   
lv_es_tfmca_fpf_rlgr  TYPE TFMCA_FPF_RLGR, "   
lt_et_tfmca_fpf_fbtcon  TYPE STANDARD TABLE OF TFMCA_FPF_FBTCON, "   
lv_es_tfmca_fpf_rlgrt  TYPE TFMCA_FPF_RLGRT, "   
lt_et_tfmca_fpf_rcode  TYPE STANDARD TABLE OF TFMCA_FPF_RCODE, "   
lt_et_tfmca_rev2fpf  TYPE STANDARD TABLE OF TFMCA_REV2FPF, "   
lt_et_tfmca_fpf_rule  TYPE STANDARD TABLE OF TFMCA_FPF_RULE, "   
lt_et_tfmca_fpf_rlgra  TYPE STANDARD TABLE OF TFMCA_FPF_RLGRA, "   
lt_et_tfmca_fpf_rlact  TYPE STANDARD TABLE OF TFMCA_FPF_RLACT. "   

  CALL FUNCTION 'FMCA_FPF_MIGRATION_DATA_GET'  "FPF: returns the data of the form bundle type
    IMPORTING
         ES_TFMCA_FPF_FBTT = lv_es_tfmca_fpf_fbtt
         ES_TFMCA_FPF_FBT = lv_es_tfmca_fpf_fbt
         ES_TFMCA_FPF_RLGR = lv_es_tfmca_fpf_rlgr
         ES_TFMCA_FPF_RLGRT = lv_es_tfmca_fpf_rlgrt
    TABLES
         ET_TFMCA_FPF_FORMT = lt_et_tfmca_fpf_formt
         ET_TFMCA_FPF_FORMTT = lt_et_tfmca_fpf_formtt
         ET_TFMCA_FPF_FBTCON = lt_et_tfmca_fpf_fbtcon
         ET_TFMCA_FPF_RCODE = lt_et_tfmca_fpf_rcode
         ET_TFMCA_REV2FPF = lt_et_tfmca_rev2fpf
         ET_TFMCA_FPF_RULE = lt_et_tfmca_fpf_rule
         ET_TFMCA_FPF_RLGRA = lt_et_tfmca_fpf_rlgra
         ET_TFMCA_FPF_RLACT = lt_et_tfmca_fpf_rlact
. " FMCA_FPF_MIGRATION_DATA_GET




ABAP code using 7.40 inline data declarations to call FM FMCA_FPF_MIGRATION_DATA_GET

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!