SAP FMCA_PFBB_FPP_LOGIC Function Module for









FMCA_PFBB_FPP_LOGIC is a standard fmca pfbb fpp logic SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used to perform a specific ABAP function and below is the pattern details, 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 pfbb fpp logic FM, simply by entering the name FMCA_PFBB_FPP_LOGIC into the relevant SAP transaction such as SE37 or SE38.

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



Function FMCA_PFBB_FPP_LOGIC 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_PFBB_FPP_LOGIC'"
EXPORTING
* IRT_GPART_INT = "
* I_DPSOB = "Contract Object in Collection and Disbursement
* IS_STANDARD = "Billing Documents for Object-Based Tax (Standard Fields)
* I_SIMULATION = ' ' "Data Element for BOOLE Domain: TRUE (='X') and FALSE (=' ')
* I_PROBCLASS = "Problem Class of Application Log
* IRT_GPART = "Range Table GPART
IRT_REVTYPE = "Range Table for Submission Type
IRT_PERSL = "Range Table for Periods Key
* IRT_IDNBR = "Range table for identification number
* I_FKKVK = "Contract Account Header

IMPORTING
E_FAILED = "Checkbox
ET_BILLDOCNUMBER = "Standard Table for Structure BAPI_FKKINV_BILLDOCNUMBER
ET_RETURN = "FI-CA: Standard Table for Structure BAPIRET2
E_TRC = "Trace ON

CHANGING
* C_RETURN_NUM = "Processed Tax Returns
* C_TEST_NUM = "Tested Attempts
* C_SUCCESS_NUM = "Successful Attempts
.



IMPORTING Parameters details for FMCA_PFBB_FPP_LOGIC

IRT_GPART_INT -

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

I_DPSOB - Contract Object in Collection and Disbursement

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

IS_STANDARD - Billing Documents for Object-Based Tax (Standard Fields)

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

I_SIMULATION - Data Element for BOOLE Domain: TRUE (='X') and FALSE (=' ')

Data type: BOOLE_D
Default: SPACE
Optional: Yes
Call by Reference: Yes

I_PROBCLASS - Problem Class of Application Log

Data type:
Optional: Yes
Call by Reference: Yes

IRT_GPART - Range Table GPART

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

IRT_REVTYPE - Range Table for Submission Type

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

IRT_PERSL - Range Table for Periods Key

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

IRT_IDNBR - Range table for identification number

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

I_FKKVK - Contract Account Header

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

EXPORTING Parameters details for FMCA_PFBB_FPP_LOGIC

E_FAILED - Checkbox

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

ET_BILLDOCNUMBER - Standard Table for Structure BAPI_FKKINV_BILLDOCNUMBER

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

ET_RETURN - FI-CA: Standard Table for Structure BAPIRET2

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

E_TRC - Trace ON

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

CHANGING Parameters details for FMCA_PFBB_FPP_LOGIC

C_RETURN_NUM - Processed Tax Returns

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

C_TEST_NUM - Tested Attempts

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

C_SUCCESS_NUM - Successful Attempts

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

Copy and paste ABAP code example for FMCA_PFBB_FPP_LOGIC 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_e_failed  TYPE XFELD, "   
lv_c_return_num  TYPE I, "   
lv_irt_gpart_int  TYPE FKK_RT_GPART, "   
lv_i_dpsob  TYPE DPSOB, "   
lv_c_test_num  TYPE I, "   
lv_is_standard  TYPE FMCA_PFBB_STANDARD, "   
lv_et_billdocnumber  TYPE BAPI_FKKINV_BILLDOCNUMBER_TAB, "   
lv_et_return  TYPE BAPIRET2_TAB_KK, "   
lv_i_simulation  TYPE BOOLE_D, "   SPACE
lv_c_success_num  TYPE I, "   
lv_e_trc  TYPE XFELD, "   
lv_i_probclass  TYPE XFELD, "   
lv_irt_gpart  TYPE FKK_RT_GPART, "   
lv_irt_revtype  TYPE FMCA_RT_ABTYP, "   
lv_irt_persl  TYPE FKK_RT_PERSL, "   
lv_irt_idnbr  TYPE FMCA_RT_IDNBR, "   
lv_i_fkkvk  TYPE FKKVK. "   

  CALL FUNCTION 'FMCA_PFBB_FPP_LOGIC'  "
    EXPORTING
         IRT_GPART_INT = lv_irt_gpart_int
         I_DPSOB = lv_i_dpsob
         IS_STANDARD = lv_is_standard
         I_SIMULATION = lv_i_simulation
         I_PROBCLASS = lv_i_probclass
         IRT_GPART = lv_irt_gpart
         IRT_REVTYPE = lv_irt_revtype
         IRT_PERSL = lv_irt_persl
         IRT_IDNBR = lv_irt_idnbr
         I_FKKVK = lv_i_fkkvk
    IMPORTING
         E_FAILED = lv_e_failed
         ET_BILLDOCNUMBER = lv_et_billdocnumber
         ET_RETURN = lv_et_return
         E_TRC = lv_e_trc
    CHANGING
         C_RETURN_NUM = lv_c_return_num
         C_TEST_NUM = lv_c_test_num
         C_SUCCESS_NUM = lv_c_success_num
. " FMCA_PFBB_FPP_LOGIC




ABAP code using 7.40 inline data declarations to call FM FMCA_PFBB_FPP_LOGIC

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_i_simulation) = ' '.
 
 
 
 
 
 
 
 
 


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!