SAP OFF_NUMBER_LOCAL_SCREEN_PH Function Module for
OFF_NUMBER_LOCAL_SCREEN_PH is a standard off number local screen ph 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 off number local screen ph FM, simply by entering the name OFF_NUMBER_LOCAL_SCREEN_PH into the relevant SAP transaction such as SE37 or SE38.
Function Group: FIN2
Program Name: SAPLFIN2
Main Program: SAPLFIN2
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function OFF_NUMBER_LOCAL_SCREEN_PH 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 'OFF_NUMBER_LOCAL_SCREEN_PH'".
EXPORTING
I_FIN1_PARAM_EX = "
I_INPUT = "
I_OUTPUT = "
I_INVISIBLE = "
IMPORTING
O_INPUT = "
O_OUTPUT = "
O_INVISIBLE = "
EXCEPTIONS
INPUT_INCOMPLETE = 1
IMPORTING Parameters details for OFF_NUMBER_LOCAL_SCREEN_PH
I_FIN1_PARAM_EX -
Data type: FIN1_PARAM_EXOptional: No
Call by Reference: No ( called with pass by value option)
I_INPUT -
Data type: BPIB0-BP_FLAGOptional: No
Call by Reference: No ( called with pass by value option)
I_OUTPUT -
Data type: BPIB0-BP_FLAGOptional: No
Call by Reference: No ( called with pass by value option)
I_INVISIBLE -
Data type: BPIB0-BP_FLAGOptional: No
Call by Reference: No ( called with pass by value option)
EXPORTING Parameters details for OFF_NUMBER_LOCAL_SCREEN_PH
O_INPUT -
Data type: BPIB0-BP_FLAGOptional: No
Call by Reference: No ( called with pass by value option)
O_OUTPUT -
Data type: BPIB0-BP_FLAGOptional: No
Call by Reference: No ( called with pass by value option)
O_INVISIBLE -
Data type: BPIB0-BP_FLAGOptional: No
Call by Reference: No ( called with pass by value option)
EXCEPTIONS details
INPUT_INCOMPLETE -
Data type:Optional: No
Call by Reference: Yes
Copy and paste ABAP code example for OFF_NUMBER_LOCAL_SCREEN_PH 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_o_input | TYPE BPIB0-BP_FLAG, " | |||
| lv_i_fin1_param_ex | TYPE FIN1_PARAM_EX, " | |||
| lv_input_incomplete | TYPE FIN1_PARAM_EX, " | |||
| lv_i_input | TYPE BPIB0-BP_FLAG, " | |||
| lv_o_output | TYPE BPIB0-BP_FLAG, " | |||
| lv_i_output | TYPE BPIB0-BP_FLAG, " | |||
| lv_o_invisible | TYPE BPIB0-BP_FLAG, " | |||
| lv_i_invisible | TYPE BPIB0-BP_FLAG. " |
|   CALL FUNCTION 'OFF_NUMBER_LOCAL_SCREEN_PH' " |
| EXPORTING | ||
| I_FIN1_PARAM_EX | = lv_i_fin1_param_ex | |
| I_INPUT | = lv_i_input | |
| I_OUTPUT | = lv_i_output | |
| I_INVISIBLE | = lv_i_invisible | |
| IMPORTING | ||
| O_INPUT | = lv_o_input | |
| O_OUTPUT | = lv_o_output | |
| O_INVISIBLE | = lv_o_invisible | |
| EXCEPTIONS | ||
| INPUT_INCOMPLETE = 1 | ||
| . " OFF_NUMBER_LOCAL_SCREEN_PH | ||
ABAP code using 7.40 inline data declarations to call FM OFF_NUMBER_LOCAL_SCREEN_PH
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 BP_FLAG FROM BPIB0 INTO @DATA(ld_o_input). | ||||
| "SELECT single BP_FLAG FROM BPIB0 INTO @DATA(ld_i_input). | ||||
| "SELECT single BP_FLAG FROM BPIB0 INTO @DATA(ld_o_output). | ||||
| "SELECT single BP_FLAG FROM BPIB0 INTO @DATA(ld_i_output). | ||||
| "SELECT single BP_FLAG FROM BPIB0 INTO @DATA(ld_o_invisible). | ||||
| "SELECT single BP_FLAG FROM BPIB0 INTO @DATA(ld_i_invisible). | ||||
Search for further information about these or an SAP related objects