SAP ISU_EED_PMT_PLOT_SCREENVAL1500 Function Module for Buffer and Transfer Screen Values









ISU_EED_PMT_PLOT_SCREENVAL1500 is a standard isu eed pmt plot screenval1500 SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for Buffer and Transfer Screen Values 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 isu eed pmt plot screenval1500 FM, simply by entering the name ISU_EED_PMT_PLOT_SCREENVAL1500 into the relevant SAP transaction such as SE37 or SE38.

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



Function ISU_EED_PMT_PLOT_SCREENVAL1500 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 'ISU_EED_PMT_PLOT_SCREENVAL1500'"Buffer and Transfer Screen Values
EXPORTING
* IR_DRBEL = "Range Table for Document Number (Search Help: Not Reversed)
* IR_SENID = "Range Table Description of Sender
* IR_RECID = "Range Table for Description of Recipient
* IR_THPRD = "Range Table for Transfer Date to Third party
* IR_BCBLN = "Range Table for Description of Recipient
* IR_VKONT = "Range Table for Description of Recipient
* IR_OPBEL = "Range Table for Description of Recipient
* IR_VGROUP = "Range Table for Description of Recipient

IMPORTING
ER_DRBEL = "Range Table for Document Number (Search Help: Not Reversed)
ER_SENID = "Range Table Description of Sender
ER_RECID = "Range Table for Description of Recipient
ER_THPRD = "Range Table for Transfer Date to Third party
ER_BCBLN = "Range Table: Document Number for Posting to SP Account
ER_VKONT = "
ER_OPBEL = "
ER_VGROUP = "Range Table: Grouping Characteristics f. Aggr. Contract Acc.

TABLES
* TR_AUGBL = "
.



IMPORTING Parameters details for ISU_EED_PMT_PLOT_SCREENVAL1500

IR_DRBEL - Range Table for Document Number (Search Help: Not Reversed)

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

IR_SENID - Range Table Description of Sender

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

IR_RECID - Range Table for Description of Recipient

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

IR_THPRD - Range Table for Transfer Date to Third party

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

IR_BCBLN - Range Table for Description of Recipient

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

IR_VKONT - Range Table for Description of Recipient

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

IR_OPBEL - Range Table for Description of Recipient

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

IR_VGROUP - Range Table for Description of Recipient

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

EXPORTING Parameters details for ISU_EED_PMT_PLOT_SCREENVAL1500

ER_DRBEL - Range Table for Document Number (Search Help: Not Reversed)

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

ER_SENID - Range Table Description of Sender

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

ER_RECID - Range Table for Description of Recipient

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

ER_THPRD - Range Table for Transfer Date to Third party

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

ER_BCBLN - Range Table: Document Number for Posting to SP Account

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

ER_VKONT -

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

ER_OPBEL -

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

ER_VGROUP - Range Table: Grouping Characteristics f. Aggr. Contract Acc.

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

TABLES Parameters details for ISU_EED_PMT_PLOT_SCREENVAL1500

TR_AUGBL -

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

Copy and paste ABAP code example for ISU_EED_PMT_PLOT_SCREENVAL1500 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_er_drbel  TYPE ISU_RT_OPBEL_PD, "   
lv_ir_drbel  TYPE ISU_RT_OPBEL_PD, "   
lt_tr_augbl  TYPE STANDARD TABLE OF FKKR_AUGBL, "   
lv_er_senid  TYPE ISU_RT_SENID10, "   
lv_ir_senid  TYPE ISU_RT_SENID10, "   
lv_er_recid  TYPE ISU_RT_RECID10, "   
lv_ir_recid  TYPE ISU_RT_RECID10, "   
lv_er_thprd  TYPE ISU_RT_THPRD, "   
lv_ir_thprd  TYPE ISU_RT_THPRD, "   
lv_er_bcbln  TYPE ISU_RT_BCBLN, "   
lv_ir_bcbln  TYPE ISU_RT_BCBLN, "   
lv_er_vkont  TYPE ISU_RT_VKONT, "   
lv_ir_vkont  TYPE ISU_RT_VKONT, "   
lv_er_opbel  TYPE ISU_RT_OPBEL, "   
lv_ir_opbel  TYPE ISU_RT_OPBEL, "   
lv_er_vgroup  TYPE ISU_RT_V_GROUP, "   
lv_ir_vgroup  TYPE ISU_RT_V_GROUP. "   

  CALL FUNCTION 'ISU_EED_PMT_PLOT_SCREENVAL1500'  "Buffer and Transfer Screen Values
    EXPORTING
         IR_DRBEL = lv_ir_drbel
         IR_SENID = lv_ir_senid
         IR_RECID = lv_ir_recid
         IR_THPRD = lv_ir_thprd
         IR_BCBLN = lv_ir_bcbln
         IR_VKONT = lv_ir_vkont
         IR_OPBEL = lv_ir_opbel
         IR_VGROUP = lv_ir_vgroup
    IMPORTING
         ER_DRBEL = lv_er_drbel
         ER_SENID = lv_er_senid
         ER_RECID = lv_er_recid
         ER_THPRD = lv_er_thprd
         ER_BCBLN = lv_er_bcbln
         ER_VKONT = lv_er_vkont
         ER_OPBEL = lv_er_opbel
         ER_VGROUP = lv_er_vgroup
    TABLES
         TR_AUGBL = lt_tr_augbl
. " ISU_EED_PMT_PLOT_SCREENVAL1500




ABAP code using 7.40 inline data declarations to call FM ISU_EED_PMT_PLOT_SCREENVAL1500

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!