SAP ISCDFUN_BR_SAMPLE_0630 Function Module for Brazil: Payment- Additional Data for Payment (PAYH)









ISCDFUN_BR_SAMPLE_0630 is a standard iscdfun br sample 0630 SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for Brazil: Payment- Additional Data for Payment (PAYH) 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 iscdfun br sample 0630 FM, simply by entering the name ISCDFUN_BR_SAMPLE_0630 into the relevant SAP transaction such as SE37 or SE38.

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



Function ISCDFUN_BR_SAMPLE_0630 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 'ISCDFUN_BR_SAMPLE_0630'"Brazil: Payment- Additional Data for Payment (PAYH)
EXPORTING
I_SRT1 = "Sort key for paid group
I_PAYH = "Payment Data
* I_DPAYC = "
* I_EXCEPTION_DATA = ' ' "
* I_BASICS = "Mass Activities: Global Values for All Mass Activities
I_FKKVKP = "Contract account data for payment transactions
I_GPSHAD = "
I_BNKA_BUS = "Payee bank data
I_BNKA_HB = "House bank data
I_T012 = "House bank data
I_T012K = "House bank account data
I_FKKCLBT = "Amounts paid
I_FKKOPK = "Bank line item generated by payment program

IMPORTING
E_0630 = "Additional payment data

TABLES
T_FKKCL = "Paid Items
.



IMPORTING Parameters details for ISCDFUN_BR_SAMPLE_0630

I_SRT1 - Sort key for paid group

Data type: FKKPY_SRT1
Optional: No
Call by Reference: No ( called with pass by value option)

I_PAYH - Payment Data

Data type: PAYH
Optional: No
Call by Reference: No ( called with pass by value option)

I_DPAYC -

Data type: DPAYC
Optional: Yes
Call by Reference: No ( called with pass by value option)

I_EXCEPTION_DATA -

Data type: BOOLE-BOOLE
Default: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)

I_BASICS - Mass Activities: Global Values for All Mass Activities

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

I_FKKVKP - Contract account data for payment transactions

Data type: FKKVKP
Optional: No
Call by Reference: No ( called with pass by value option)

I_GPSHAD -

Data type: FKK_GPSHAD
Optional: No
Call by Reference: No ( called with pass by value option)

I_BNKA_BUS - Payee bank data

Data type: BNKA
Optional: No
Call by Reference: No ( called with pass by value option)

I_BNKA_HB - House bank data

Data type: BNKA
Optional: No
Call by Reference: No ( called with pass by value option)

I_T012 - House bank data

Data type: T012
Optional: No
Call by Reference: No ( called with pass by value option)

I_T012K - House bank account data

Data type: T012K
Optional: No
Call by Reference: No ( called with pass by value option)

I_FKKCLBT - Amounts paid

Data type: FKKCLBT
Optional: No
Call by Reference: No ( called with pass by value option)

I_FKKOPK - Bank line item generated by payment program

Data type: FKKOPK
Optional: No
Call by Reference: No ( called with pass by value option)

EXPORTING Parameters details for ISCDFUN_BR_SAMPLE_0630

E_0630 - Additional payment data

Data type: FKKPY_0630
Optional: No
Call by Reference: No ( called with pass by value option)

TABLES Parameters details for ISCDFUN_BR_SAMPLE_0630

T_FKKCL - Paid Items

Data type: FKKPY_0630_ITEMS
Optional: No
Call by Reference: No ( called with pass by value option)

Copy and paste ABAP code example for ISCDFUN_BR_SAMPLE_0630 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_0630  TYPE FKKPY_0630, "   
lv_i_srt1  TYPE FKKPY_SRT1, "   
lt_t_fkkcl  TYPE STANDARD TABLE OF FKKPY_0630_ITEMS, "   
lv_i_payh  TYPE PAYH, "   
lv_i_dpayc  TYPE DPAYC, "   
lv_i_exception_data  TYPE BOOLE-BOOLE, "   SPACE
lv_i_basics  TYPE FKK_MAD_BASICS, "   
lv_i_fkkvkp  TYPE FKKVKP, "   
lv_i_gpshad  TYPE FKK_GPSHAD, "   
lv_i_bnka_bus  TYPE BNKA, "   
lv_i_bnka_hb  TYPE BNKA, "   
lv_i_t012  TYPE T012, "   
lv_i_t012k  TYPE T012K, "   
lv_i_fkkclbt  TYPE FKKCLBT, "   
lv_i_fkkopk  TYPE FKKOPK. "   

  CALL FUNCTION 'ISCDFUN_BR_SAMPLE_0630'  "Brazil: Payment- Additional Data for Payment (PAYH)
    EXPORTING
         I_SRT1 = lv_i_srt1
         I_PAYH = lv_i_payh
         I_DPAYC = lv_i_dpayc
         I_EXCEPTION_DATA = lv_i_exception_data
         I_BASICS = lv_i_basics
         I_FKKVKP = lv_i_fkkvkp
         I_GPSHAD = lv_i_gpshad
         I_BNKA_BUS = lv_i_bnka_bus
         I_BNKA_HB = lv_i_bnka_hb
         I_T012 = lv_i_t012
         I_T012K = lv_i_t012k
         I_FKKCLBT = lv_i_fkkclbt
         I_FKKOPK = lv_i_fkkopk
    IMPORTING
         E_0630 = lv_e_0630
    TABLES
         T_FKKCL = lt_t_fkkcl
. " ISCDFUN_BR_SAMPLE_0630




ABAP code using 7.40 inline data declarations to call FM ISCDFUN_BR_SAMPLE_0630

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 BOOLE FROM BOOLE INTO @DATA(ld_i_exception_data).
DATA(ld_i_exception_data) = ' '.
 
 
 
 
 
 
 
 
 
 


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!