SAP REYC_GUI_SETTL_SELECT_PBO Function Module for Ruft den Pflegedialog für die Abrechnung









REYC_GUI_SETTL_SELECT_PBO is a standard reyc gui settl select pbo SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for Ruft den Pflegedialog für die Abrechnung 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 reyc gui settl select pbo FM, simply by entering the name REYC_GUI_SETTL_SELECT_PBO into the relevant SAP transaction such as SE37 or SE38.

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



Function REYC_GUI_SETTL_SELECT_PBO 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 'REYC_GUI_SETTL_SELECT_PBO'"Ruft den Pflegedialog für die Abrechnung
EXPORTING
ID_PROCESS = "
* ID_ADJMDEPOCCRO = "
* ID_ADJMNOOCCUPYRO = "
* ID_ADJMDEPNOCCRO = "
* ID_ADJMNOOCCUPYRODATE = "
* ID_ADJMREASON = "
* IF_SELECT_STEP = ABAP_FALSE "
* IF_SETTL_PARAM = ABAP_FALSE "
IF_REVERSAL = "
* IF_ALL_PARAM_AS_SUBTAB = ABAP_FALSE "
* IO_MSGLIST = "
IO_SETTLEMENT = "CAM Settlement
IS_SETTLEMENT = "Settlement Identification with Log Reference
ID_ACTIVITY = "
* ID_ADJMVALIDFROM = "
* ID_NEXTADJMFROM = "
* ID_ADJMAPPROVALTO = "
* ID_DUEDATEUP = "
* ID_ADJMOCCUPYRO = "
.



IMPORTING Parameters details for REYC_GUI_SETTL_SELECT_PBO

ID_PROCESS -

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

ID_ADJMDEPOCCRO -

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

ID_ADJMNOOCCUPYRO -

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

ID_ADJMDEPNOCCRO -

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

ID_ADJMNOOCCUPYRODATE -

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

ID_ADJMREASON -

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

IF_SELECT_STEP -

Data type: RECABOOL
Default: ABAP_FALSE
Optional: Yes
Call by Reference: Yes

IF_SETTL_PARAM -

Data type: RECABOOL
Default: ABAP_FALSE
Optional: Yes
Call by Reference: Yes

IF_REVERSAL -

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

IF_ALL_PARAM_AS_SUBTAB -

Data type: RECABOOL
Default: ABAP_FALSE
Optional: Yes
Call by Reference: Yes

IO_MSGLIST -

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

IO_SETTLEMENT - CAM Settlement

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

IS_SETTLEMENT - Settlement Identification with Log Reference

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

ID_ACTIVITY -

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

ID_ADJMVALIDFROM -

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

ID_NEXTADJMFROM -

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

ID_ADJMAPPROVALTO -

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

ID_DUEDATEUP -

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

ID_ADJMOCCUPYRO -

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

Copy and paste ABAP code example for REYC_GUI_SETTL_SELECT_PBO 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_id_process  TYPE RECAPROCESS, "   
lv_id_adjmdepoccro  TYPE REAJADJMDEPOCCRO, "   
lv_id_adjmnooccupyro  TYPE REAJADJMNOOCCUPYRO, "   
lv_id_adjmdepnoccro  TYPE REAJADJMDEPNOCCRO, "   
lv_id_adjmnooccupyrodate  TYPE DATUM, "   
lv_id_adjmreason  TYPE REAJADJMREASON, "   
lv_if_select_step  TYPE RECABOOL, "   ABAP_FALSE
lv_if_settl_param  TYPE RECABOOL, "   ABAP_FALSE
lv_if_reversal  TYPE RECABOOL, "   
lv_if_all_param_as_subtab  TYPE RECABOOL, "   ABAP_FALSE
lv_io_msglist  TYPE IF_RECA_MESSAGE_LIST, "   
lv_io_settlement  TYPE IF_REYC_SETTLEMENT, "   
lv_is_settlement  TYPE REYCSETTLEMENT, "   
lv_id_activity  TYPE RESCSEACTIVITY, "   
lv_id_adjmvalidfrom  TYPE REAJADJMVALIDFROM, "   
lv_id_nextadjmfrom  TYPE REAJNEXTADJMFROM, "   
lv_id_adjmapprovalto  TYPE REAJADJMAPPROVALTO, "   
lv_id_duedateup  TYPE RECDDUEDATEUP, "   
lv_id_adjmoccupyro  TYPE REAJADJMOCCUPYRO. "   

  CALL FUNCTION 'REYC_GUI_SETTL_SELECT_PBO'  "Ruft den Pflegedialog für die Abrechnung
    EXPORTING
         ID_PROCESS = lv_id_process
         ID_ADJMDEPOCCRO = lv_id_adjmdepoccro
         ID_ADJMNOOCCUPYRO = lv_id_adjmnooccupyro
         ID_ADJMDEPNOCCRO = lv_id_adjmdepnoccro
         ID_ADJMNOOCCUPYRODATE = lv_id_adjmnooccupyrodate
         ID_ADJMREASON = lv_id_adjmreason
         IF_SELECT_STEP = lv_if_select_step
         IF_SETTL_PARAM = lv_if_settl_param
         IF_REVERSAL = lv_if_reversal
         IF_ALL_PARAM_AS_SUBTAB = lv_if_all_param_as_subtab
         IO_MSGLIST = lv_io_msglist
         IO_SETTLEMENT = lv_io_settlement
         IS_SETTLEMENT = lv_is_settlement
         ID_ACTIVITY = lv_id_activity
         ID_ADJMVALIDFROM = lv_id_adjmvalidfrom
         ID_NEXTADJMFROM = lv_id_nextadjmfrom
         ID_ADJMAPPROVALTO = lv_id_adjmapprovalto
         ID_DUEDATEUP = lv_id_duedateup
         ID_ADJMOCCUPYRO = lv_id_adjmoccupyro
. " REYC_GUI_SETTL_SELECT_PBO




ABAP code using 7.40 inline data declarations to call FM REYC_GUI_SETTL_SELECT_PBO

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_if_select_step) = ABAP_FALSE.
 
DATA(ld_if_settl_param) = ABAP_FALSE.
 
 
DATA(ld_if_all_param_as_subtab) = ABAP_FALSE.
 
 
 
 
 
 
 
 
 
 


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!