SAP POP_VALUE_REQUEST Function Module for
POP_VALUE_REQUEST is a standard pop value request 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 pop value request FM, simply by entering the name POP_VALUE_REQUEST into the relevant SAP transaction such as SE37 or SE38.
Function Group: GLIE
Program Name: SAPLGLIE
Main Program:
Appliation area: F
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function POP_VALUE_REQUEST 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 'POP_VALUE_REQUEST'".
EXPORTING
* E_ARBGB = ' ' "Application area
* E_RSUBD = ' ' "Subgroup
* E_RVERS = ' ' "Version
* E_SORTK = ' ' "Sort criterion company maintenance
* E_TABNAME = ' ' "Table name for selection
* E_TITEL = ' ' "Popup title
* E_TVERS = ' ' "Version
* E_VOLL_QUO = ' ' "
* E_TABLE = ' ' "Table name for set directory
* E_FIELD = ' ' "Field name for set directory
* E_AREA = ' ' "Application area for set directory
* E_CHCK = ' ' "Validation group
* E_DISPLAY = ' ' "
* E_PARTIAL = ' ' "
* E_RLDNR = ' ' "Application area
* E_ONLY_SETS_WITH_12_PLACES = 'X' "
* E_CONGR = ' ' "Consolidation activity group
* E_FSCAT = ' ' "Consolidation frequency subgroup
* E_GJAHB = ' ' "Fiscal year (to)
* E_GJAHV = ' ' "Fiscal year (from)
* E_ITEM = ' ' "Item
* E_REASN = ' ' "Reason for consolidation
* E_RPGRP = ' ' "Data entry form group
IMPORTING
I_VALUE = "Selected value
I_TEXT = "Text of selected object
EXCEPTIONS
NOT_FOUND = 1
IMPORTING Parameters details for POP_VALUE_REQUEST
E_ARBGB - Application area
Data type: T879-ARBGBDefault: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)
E_RSUBD - Subgroup
Data type: T852-RSUBDDefault: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)
E_RVERS - Version
Data type: T876-RVERSDefault: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)
E_SORTK - Sort criterion company maintenance
Data type: T850A-SORTKDefault: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)
E_TABNAME - Table name for selection
Data type:Default: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)
E_TITEL - Popup title
Data type:Default: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)
E_TVERS - Version
Data type:Default: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)
E_VOLL_QUO -
Data type:Default: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)
E_TABLE - Table name for set directory
Data type: SETINFO-TABNAMEDefault: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)
E_FIELD - Field name for set directory
Data type: SETINFO-FLDDefault: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)
E_AREA - Application area for set directory
Data type: T884S-AREADefault: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)
E_CHCK - Validation group
Data type: T857P-CHCKDefault: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)
E_DISPLAY -
Data type:Default: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)
E_PARTIAL -
Data type: CDefault: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)
E_RLDNR - Application area
Data type: T879-ARBGBDefault: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)
E_ONLY_SETS_WITH_12_PLACES -
Data type: CDefault: 'X'
Optional: Yes
Call by Reference: No ( called with pass by value option)
E_CONGR - Consolidation activity group
Data type: T877-CONGRDefault: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)
E_FSCAT - Consolidation frequency subgroup
Data type: T852P-FSCATDefault: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)
E_GJAHB - Fiscal year (to)
Data type: T852G-RYEARDefault: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)
E_GJAHV - Fiscal year (from)
Data type: T852G-RYEARDefault: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)
E_ITEM - Item
Data type: T867-ITEMDefault: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)
E_REASN - Reason for consolidation
Data type: T855-REASNDefault: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)
E_RPGRP - Data entry form group
Data type: T857F-RPGRPDefault: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)
EXPORTING Parameters details for POP_VALUE_REQUEST
I_VALUE - Selected value
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
I_TEXT - Text of selected object
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
EXCEPTIONS details
NOT_FOUND - Entry not found
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
Copy and paste ABAP code example for POP_VALUE_REQUEST 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_arbgb | TYPE T879-ARBGB, " SPACE | |||
| lv_i_value | TYPE T879, " | |||
| lv_not_found | TYPE T879, " | |||
| lv_e_rsubd | TYPE T852-RSUBD, " SPACE | |||
| lv_e_rvers | TYPE T876-RVERS, " SPACE | |||
| lv_e_sortk | TYPE T850A-SORTK, " SPACE | |||
| lv_e_tabname | TYPE T850A, " SPACE | |||
| lv_e_titel | TYPE T850A, " SPACE | |||
| lv_e_tvers | TYPE T850A, " SPACE | |||
| lv_e_voll_quo | TYPE T850A, " SPACE | |||
| lv_e_table | TYPE SETINFO-TABNAME, " SPACE | |||
| lv_e_field | TYPE SETINFO-FLD, " SPACE | |||
| lv_e_area | TYPE T884S-AREA, " SPACE | |||
| lv_e_chck | TYPE T857P-CHCK, " SPACE | |||
| lv_i_text | TYPE T857P, " | |||
| lv_e_display | TYPE T857P, " SPACE | |||
| lv_e_partial | TYPE C, " SPACE | |||
| lv_e_rldnr | TYPE T879-ARBGB, " SPACE | |||
| lv_e_only_sets_with_12_places | TYPE C, " 'X' | |||
| lv_e_congr | TYPE T877-CONGR, " SPACE | |||
| lv_e_fscat | TYPE T852P-FSCAT, " SPACE | |||
| lv_e_gjahb | TYPE T852G-RYEAR, " SPACE | |||
| lv_e_gjahv | TYPE T852G-RYEAR, " SPACE | |||
| lv_e_item | TYPE T867-ITEM, " SPACE | |||
| lv_e_reasn | TYPE T855-REASN, " SPACE | |||
| lv_e_rpgrp | TYPE T857F-RPGRP. " SPACE |
|   CALL FUNCTION 'POP_VALUE_REQUEST' " |
| EXPORTING | ||
| E_ARBGB | = lv_e_arbgb | |
| E_RSUBD | = lv_e_rsubd | |
| E_RVERS | = lv_e_rvers | |
| E_SORTK | = lv_e_sortk | |
| E_TABNAME | = lv_e_tabname | |
| E_TITEL | = lv_e_titel | |
| E_TVERS | = lv_e_tvers | |
| E_VOLL_QUO | = lv_e_voll_quo | |
| E_TABLE | = lv_e_table | |
| E_FIELD | = lv_e_field | |
| E_AREA | = lv_e_area | |
| E_CHCK | = lv_e_chck | |
| E_DISPLAY | = lv_e_display | |
| E_PARTIAL | = lv_e_partial | |
| E_RLDNR | = lv_e_rldnr | |
| E_ONLY_SETS_WITH_12_PLACES | = lv_e_only_sets_with_12_places | |
| E_CONGR | = lv_e_congr | |
| E_FSCAT | = lv_e_fscat | |
| E_GJAHB | = lv_e_gjahb | |
| E_GJAHV | = lv_e_gjahv | |
| E_ITEM | = lv_e_item | |
| E_REASN | = lv_e_reasn | |
| E_RPGRP | = lv_e_rpgrp | |
| IMPORTING | ||
| I_VALUE | = lv_i_value | |
| I_TEXT | = lv_i_text | |
| EXCEPTIONS | ||
| NOT_FOUND = 1 | ||
| . " POP_VALUE_REQUEST | ||
ABAP code using 7.40 inline data declarations to call FM POP_VALUE_REQUEST
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 ARBGB FROM T879 INTO @DATA(ld_e_arbgb). | ||||
| DATA(ld_e_arbgb) | = ' '. | |||
| "SELECT single RSUBD FROM T852 INTO @DATA(ld_e_rsubd). | ||||
| DATA(ld_e_rsubd) | = ' '. | |||
| "SELECT single RVERS FROM T876 INTO @DATA(ld_e_rvers). | ||||
| DATA(ld_e_rvers) | = ' '. | |||
| "SELECT single SORTK FROM T850A INTO @DATA(ld_e_sortk). | ||||
| DATA(ld_e_sortk) | = ' '. | |||
| DATA(ld_e_tabname) | = ' '. | |||
| DATA(ld_e_titel) | = ' '. | |||
| DATA(ld_e_tvers) | = ' '. | |||
| DATA(ld_e_voll_quo) | = ' '. | |||
| "SELECT single TABNAME FROM SETINFO INTO @DATA(ld_e_table). | ||||
| DATA(ld_e_table) | = ' '. | |||
| "SELECT single FLD FROM SETINFO INTO @DATA(ld_e_field). | ||||
| DATA(ld_e_field) | = ' '. | |||
| "SELECT single AREA FROM T884S INTO @DATA(ld_e_area). | ||||
| DATA(ld_e_area) | = ' '. | |||
| "SELECT single CHCK FROM T857P INTO @DATA(ld_e_chck). | ||||
| DATA(ld_e_chck) | = ' '. | |||
| DATA(ld_e_display) | = ' '. | |||
| DATA(ld_e_partial) | = ' '. | |||
| "SELECT single ARBGB FROM T879 INTO @DATA(ld_e_rldnr). | ||||
| DATA(ld_e_rldnr) | = ' '. | |||
| DATA(ld_e_only_sets_with_12_places) | = 'X'. | |||
| "SELECT single CONGR FROM T877 INTO @DATA(ld_e_congr). | ||||
| DATA(ld_e_congr) | = ' '. | |||
| "SELECT single FSCAT FROM T852P INTO @DATA(ld_e_fscat). | ||||
| DATA(ld_e_fscat) | = ' '. | |||
| "SELECT single RYEAR FROM T852G INTO @DATA(ld_e_gjahb). | ||||
| DATA(ld_e_gjahb) | = ' '. | |||
| "SELECT single RYEAR FROM T852G INTO @DATA(ld_e_gjahv). | ||||
| DATA(ld_e_gjahv) | = ' '. | |||
| "SELECT single ITEM FROM T867 INTO @DATA(ld_e_item). | ||||
| DATA(ld_e_item) | = ' '. | |||
| "SELECT single REASN FROM T855 INTO @DATA(ld_e_reasn). | ||||
| DATA(ld_e_reasn) | = ' '. | |||
| "SELECT single RPGRP FROM T857F INTO @DATA(ld_e_rpgrp). | ||||
| DATA(ld_e_rpgrp) | = ' '. | |||
Search for further information about these or an SAP related objects