SAP POSITION_INDICATOR_SECACC_READ Function Module for Read Position Indicator for Securities Account
POSITION_INDICATOR_SECACC_READ is a standard position indicator secacc read SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for Read Position Indicator for Securities Account 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 position indicator secacc read FM, simply by entering the name POSITION_INDICATOR_SECACC_READ into the relevant SAP transaction such as SE37 or SE38.
Function Group: FPM_BEST_KZ
Program Name: SAPLFPM_BEST_KZ
Main Program: SAPLFPM_BEST_KZ
Appliation area: F
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function POSITION_INDICATOR_SECACC_READ 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 'POSITION_INDICATOR_SECACC_READ'"Read Position Indicator for Securities Account.
EXPORTING
* I_MIGRATION = "'X'=Aufruf durch die Migration
I_BUKRS = "Company Code
* I_RANL = "ID Number
I_RLDEPO = "Securities Account
* I_FLG_BYPASS_BUFFER = "Checkbox
IMPORTING
E_VWPDEPO = "Bestandskennzeichen Depot
EXCEPTIONS
I_BUKRS_INITIAL = 1 I_RANL_INITIAL = 2 I_RLDEPO_INITIAL = 3 ENTRY_NOT_FOUND = 4
IMPORTING Parameters details for POSITION_INDICATOR_SECACC_READ
I_MIGRATION - 'X'=Aufruf durch die Migration
Data type: CHAR1Optional: Yes
Call by Reference: Yes
I_BUKRS - Company Code
Data type: VWPDEPO-BUKRSOptional: No
Call by Reference: No ( called with pass by value option)
I_RANL - ID Number
Data type: VVRANLWOptional: Yes
Call by Reference: No ( called with pass by value option)
I_RLDEPO - Securities Account
Data type: VWPDEPO-RLDEPOOptional: No
Call by Reference: No ( called with pass by value option)
I_FLG_BYPASS_BUFFER - Checkbox
Data type: XFELDOptional: Yes
Call by Reference: No ( called with pass by value option)
EXPORTING Parameters details for POSITION_INDICATOR_SECACC_READ
E_VWPDEPO - Bestandskennzeichen Depot
Data type: VWPDEPOOptional: No
Call by Reference: No ( called with pass by value option)
EXCEPTIONS details
I_BUKRS_INITIAL - Company code has initial value
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
I_RANL_INITIAL - Kennnummer initial
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
I_RLDEPO_INITIAL - Depot initial
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
ENTRY_NOT_FOUND - Table entry not found
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
Copy and paste ABAP code example for POSITION_INDICATOR_SECACC_READ 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_vwpdepo | TYPE VWPDEPO, " | |||
| lv_i_migration | TYPE CHAR1, " | |||
| lv_i_bukrs_initial | TYPE CHAR1, " | |||
| lv_i_bukrs | TYPE VWPDEPO-BUKRS, " | |||
| lv_i_ranl_initial | TYPE VWPDEPO, " | |||
| lv_i_ranl | TYPE VVRANLW, " | |||
| lv_i_rldepo_initial | TYPE VVRANLW, " | |||
| lv_i_rldepo | TYPE VWPDEPO-RLDEPO, " | |||
| lv_entry_not_found | TYPE VWPDEPO, " | |||
| lv_i_flg_bypass_buffer | TYPE XFELD. " |
|   CALL FUNCTION 'POSITION_INDICATOR_SECACC_READ' "Read Position Indicator for Securities Account |
| EXPORTING | ||
| I_MIGRATION | = lv_i_migration | |
| I_BUKRS | = lv_i_bukrs | |
| I_RANL | = lv_i_ranl | |
| I_RLDEPO | = lv_i_rldepo | |
| I_FLG_BYPASS_BUFFER | = lv_i_flg_bypass_buffer | |
| IMPORTING | ||
| E_VWPDEPO | = lv_e_vwpdepo | |
| EXCEPTIONS | ||
| I_BUKRS_INITIAL = 1 | ||
| I_RANL_INITIAL = 2 | ||
| I_RLDEPO_INITIAL = 3 | ||
| ENTRY_NOT_FOUND = 4 | ||
| . " POSITION_INDICATOR_SECACC_READ | ||
ABAP code using 7.40 inline data declarations to call FM POSITION_INDICATOR_SECACC_READ
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 BUKRS FROM VWPDEPO INTO @DATA(ld_i_bukrs). | ||||
| "SELECT single RLDEPO FROM VWPDEPO INTO @DATA(ld_i_rldepo). | ||||
Search for further information about these or an SAP related objects