SAP PMIQBP_GR_PAYT_EVALT_02 Function Module for Grant Payment Evaluating









PMIQBP_GR_PAYT_EVALT_02 is a standard pmiqbp gr payt evalt 02 SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for Grant Payment Evaluating 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 pmiqbp gr payt evalt 02 FM, simply by entering the name PMIQBP_GR_PAYT_EVALT_02 into the relevant SAP transaction such as SE37 or SE38.

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



Function PMIQBP_GR_PAYT_EVALT_02 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 'PMIQBP_GR_PAYT_EVALT_02'"Grant Payment Evaluating
EXPORTING
IV_PERYR = "Academic Year
* IV_GRANT = "Förderung
* IV_DETLSEQNR = "Laufende Nummer
IV_PERID = "Academic Session
IV_AMODE = "temp: Grant Processing Mode
IV_COOBGRP = "Contract Object Type Group
IV_PAYTYPE = "Payment Type
* IV_PAYPART = "Payment Part
* IV_PAYAMT = "Payment Amount
IV_DEFAMT = "Default Payment Amount
IS_STINFO = "Student information

CHANGING
CS_PAYMENT = "Interface for grant payment

TABLES
IT_SCINFO = "Program of Study
IT_SMINFO = "Modules information
.



IMPORTING Parameters details for PMIQBP_GR_PAYT_EVALT_02

IV_PERYR - Academic Year

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

IV_GRANT - Förderung

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

IV_DETLSEQNR - Laufende Nummer

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

IV_PERID - Academic Session

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

IV_AMODE - temp: Grant Processing Mode

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

IV_COOBGRP - Contract Object Type Group

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

IV_PAYTYPE - Payment Type

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

IV_PAYPART - Payment Part

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

IV_PAYAMT - Payment Amount

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

IV_DEFAMT - Default Payment Amount

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

IS_STINFO - Student information

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

CHANGING Parameters details for PMIQBP_GR_PAYT_EVALT_02

CS_PAYMENT - Interface for grant payment

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

TABLES Parameters details for PMIQBP_GR_PAYT_EVALT_02

IT_SCINFO - Program of Study

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

IT_SMINFO - Modules information

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

Copy and paste ABAP code example for PMIQBP_GR_PAYT_EVALT_02 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_iv_peryr  TYPE PIQPERYR, "   
lt_it_scinfo  TYPE STANDARD TABLE OF CMAC_SC, "   
lv_cs_payment  TYPE CMAC_GRANT_PAYMENT, "   
lv_iv_grant  TYPE PSGRANT_PS, "   
lv_iv_detlseqnr  TYPE SEQNP, "   
lv_iv_perid  TYPE PIQPERID, "   
lt_it_sminfo  TYPE STANDARD TABLE OF CMAC_SM, "   
lv_iv_amode  TYPE CMAC_AMODE, "   
lv_iv_coobgrp  TYPE CMAC_COOBGRP, "   
lv_iv_paytype  TYPE CMAC_PAYTYPE, "   
lv_iv_paypart  TYPE CMAC_PAYPART, "   
lv_iv_payamt  TYPE CMAC_PAYAMT, "   
lv_iv_defamt  TYPE CMAC_PAYAMTDFLT, "   
lv_is_stinfo  TYPE CMAC_ST. "   

  CALL FUNCTION 'PMIQBP_GR_PAYT_EVALT_02'  "Grant Payment Evaluating
    EXPORTING
         IV_PERYR = lv_iv_peryr
         IV_GRANT = lv_iv_grant
         IV_DETLSEQNR = lv_iv_detlseqnr
         IV_PERID = lv_iv_perid
         IV_AMODE = lv_iv_amode
         IV_COOBGRP = lv_iv_coobgrp
         IV_PAYTYPE = lv_iv_paytype
         IV_PAYPART = lv_iv_paypart
         IV_PAYAMT = lv_iv_payamt
         IV_DEFAMT = lv_iv_defamt
         IS_STINFO = lv_is_stinfo
    CHANGING
         CS_PAYMENT = lv_cs_payment
    TABLES
         IT_SCINFO = lt_it_scinfo
         IT_SMINFO = lt_it_sminfo
. " PMIQBP_GR_PAYT_EVALT_02




ABAP code using 7.40 inline data declarations to call FM PMIQBP_GR_PAYT_EVALT_02

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!