SAP ISH_PNT_API_VBEWFAL1_ALL Function Module for IS-H: Replace Direct Selects on N_VBEWFAL1









ISH_PNT_API_VBEWFAL1_ALL is a standard ish pnt api vbewfal1 all SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for IS-H: Replace Direct Selects on N_VBEWFAL1 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 ish pnt api vbewfal1 all FM, simply by entering the name ISH_PNT_API_VBEWFAL1_ALL into the relevant SAP transaction such as SE37 or SE38.

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



Function ISH_PNT_API_VBEWFAL1_ALL 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 'ISH_PNT_API_VBEWFAL1_ALL'"IS-H: Replace Direct Selects on N_VBEWFAL1
EXPORTING
* I_EINRI = "Institution
* I_BEWTY = "IS-H: Movement Category
* I_PLANB = ' ' "IS-H: Planned Indicator for Date of Movement
* ITR_BEWTY = "Range Table for Movement Category
* ITR_PLANB = "Table of Ranges for Planned Indicator for Date of Movement
* I_SEL_STORN = ' ' "Select also cancelled movements
* I_RNVPPR01 = ' ' "Boolean Data Type for ON (= 'X') and OFF (= ' ')
* ITR_EINRI = "IS-H: General Range Structure for Institutions Table Type
* I_FALNR = "IS-H: Case Number
* IT_FALNR = "IS-H: Table with Case Numbers
* ITR_FALNR = "IS-H: Table Type General Range Structure for Cases
* ITR_ORGPF = "IS-H: Table Type for Range via Care Unit
* ITR_ORGFA = "IS-H: Table Type for Range via Department
* ITR_BWEDT = "Ranges for Movement End Date, Start Date of Next Movement
* ITR_BWIDT = "Table of Ranges for Date of Movement

IMPORTING
ET_VBEWFAL1 = "Table of NBEW/NFAL/NPAT-Fields (N_VBEWFAL1)
.



IMPORTING Parameters details for ISH_PNT_API_VBEWFAL1_ALL

I_EINRI - Institution

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

I_BEWTY - IS-H: Movement Category

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

I_PLANB - IS-H: Planned Indicator for Date of Movement

Data type: PLANB
Default: SPACE
Optional: Yes
Call by Reference: Yes

ITR_BEWTY - Range Table for Movement Category

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

ITR_PLANB - Table of Ranges for Planned Indicator for Date of Movement

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

I_SEL_STORN - Select also cancelled movements

Data type: ISH_ON_OFF
Default: SPACE
Optional: Yes
Call by Reference: Yes

I_RNVPPR01 - Boolean Data Type for ON (= 'X') and OFF (= ' ')

Data type: ISH_ON_OFF
Default: ' '
Optional: Yes
Call by Reference: Yes

ITR_EINRI - IS-H: General Range Structure for Institutions Table Type

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

I_FALNR - IS-H: Case Number

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

IT_FALNR - IS-H: Table with Case Numbers

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

ITR_FALNR - IS-H: Table Type General Range Structure for Cases

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

ITR_ORGPF - IS-H: Table Type for Range via Care Unit

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

ITR_ORGFA - IS-H: Table Type for Range via Department

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

ITR_BWEDT - Ranges for Movement End Date, Start Date of Next Movement

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

ITR_BWIDT - Table of Ranges for Date of Movement

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

EXPORTING Parameters details for ISH_PNT_API_VBEWFAL1_ALL

ET_VBEWFAL1 - Table of NBEW/NFAL/NPAT-Fields (N_VBEWFAL1)

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

Copy and paste ABAP code example for ISH_PNT_API_VBEWFAL1_ALL 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_i_einri  TYPE EINRI, "   
lv_et_vbewfal1  TYPE ISH_T_VBEWFAL1, "   
lv_i_bewty  TYPE BEWTY, "   
lv_i_planb  TYPE PLANB, "   SPACE
lv_itr_bewty  TYPE ISH_T_RNG_BEWTY, "   
lv_itr_planb  TYPE ISH_T_RNG_PLANB, "   
lv_i_sel_storn  TYPE ISH_ON_OFF, "   SPACE
lv_i_rnvppr01  TYPE ISH_ON_OFF, "   ' '
lv_itr_einri  TYPE RNRANGEEINRI_TT, "   
lv_i_falnr  TYPE FALNR, "   
lv_it_falnr  TYPE ISH_T_FALNR, "   
lv_itr_falnr  TYPE RNRANGEFALNR_TT, "   
lv_itr_orgpf  TYPE RNRANGEORGPF_TT, "   
lv_itr_orgfa  TYPE RNRANGEORGFA_TT, "   
lv_itr_bwedt  TYPE ISH_T_RNG_BWEDT, "   
lv_itr_bwidt  TYPE ISH_T_RNG_BWIDT. "   

  CALL FUNCTION 'ISH_PNT_API_VBEWFAL1_ALL'  "IS-H: Replace Direct Selects on N_VBEWFAL1
    EXPORTING
         I_EINRI = lv_i_einri
         I_BEWTY = lv_i_bewty
         I_PLANB = lv_i_planb
         ITR_BEWTY = lv_itr_bewty
         ITR_PLANB = lv_itr_planb
         I_SEL_STORN = lv_i_sel_storn
         I_RNVPPR01 = lv_i_rnvppr01
         ITR_EINRI = lv_itr_einri
         I_FALNR = lv_i_falnr
         IT_FALNR = lv_it_falnr
         ITR_FALNR = lv_itr_falnr
         ITR_ORGPF = lv_itr_orgpf
         ITR_ORGFA = lv_itr_orgfa
         ITR_BWEDT = lv_itr_bwedt
         ITR_BWIDT = lv_itr_bwidt
    IMPORTING
         ET_VBEWFAL1 = lv_et_vbewfal1
. " ISH_PNT_API_VBEWFAL1_ALL




ABAP code using 7.40 inline data declarations to call FM ISH_PNT_API_VBEWFAL1_ALL

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_i_planb) = ' '.
 
 
 
DATA(ld_i_sel_storn) = ' '.
 
DATA(ld_i_rnvppr01) = ' '.
 
 
 
 
 
 
 
 
 


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!