SAP ISP_JVVLFBGP_SELECT Function Module for









ISP_JVVLFBGP_SELECT is a standard isp jvvlfbgp select 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 isp jvvlfbgp select FM, simply by entering the name ISP_JVVLFBGP_SELECT into the relevant SAP transaction such as SE37 or SE38.

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



Function ISP_JVVLFBGP_SELECT 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 'ISP_JVVLFBGP_SELECT'"
EXPORTING
* AB_DAT_GP = CON_TIME_BEGIN "
LIEFBAR_PAR = "
* BIS_DAT_GP = CON_TIME_INFINITY "
* FLG_ADR_AUFLOESEN = ' ' "
* FLG_COUNT_ONLY = ' ' "
* FLG_SAETZE = 'I' "
* GUELTIGAB = CON_TIME_BEGIN "
* GUELTIGBIS = CON_TIME_INFINITY "
* JGPARTNER = CON_MASKE_STERN "
* JSERVGES = CON_MASKE_STERN "

IMPORTING
LINE_COUNT = "

TABLES
DATEN_TAB = "
GP_NAME_TAB = "

EXCEPTIONS
NO_GENERATE = 1
.



IMPORTING Parameters details for ISP_JVVLFBGP_SELECT

AB_DAT_GP -

Data type: RJV1301-AB_DAT_GP
Default: CON_TIME_BEGIN
Optional: Yes
Call by Reference: No ( called with pass by value option)

LIEFBAR_PAR -

Data type: RJV1001
Optional: No
Call by Reference: No ( called with pass by value option)

BIS_DAT_GP -

Data type: RJV1301-BIS_DAT_GP
Default: CON_TIME_INFINITY
Optional: Yes
Call by Reference: No ( called with pass by value option)

FLG_ADR_AUFLOESEN -

Data type: JVTLIEFBAR-XSTRUAKTIV
Default: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)

FLG_COUNT_ONLY -

Data type: JVTLIEFBAR-XSTRUAKTIV
Default: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)

FLG_SAETZE -

Data type: JVTLIEFBAR-XSTRUAKTIV
Default: 'I'
Optional: Yes
Call by Reference: No ( called with pass by value option)

GUELTIGAB -

Data type: JVTLIEFBAR-GUELTIGAB
Default: CON_TIME_BEGIN
Optional: Yes
Call by Reference: No ( called with pass by value option)

GUELTIGBIS -

Data type: JVTLIEFBAR-GUELTIGBIS
Default: CON_TIME_INFINITY
Optional: Yes
Call by Reference: No ( called with pass by value option)

JGPARTNER -

Data type: JVTLFBARGP-JGPARTNER
Default: CON_MASKE_STERN
Optional: Yes
Call by Reference: No ( called with pass by value option)

JSERVGES -

Data type: JVTLFBARGP-JSERVGES
Default: CON_MASKE_STERN
Optional: Yes
Call by Reference: No ( called with pass by value option)

EXPORTING Parameters details for ISP_JVVLFBGP_SELECT

LINE_COUNT -

Data type: SY-DBCNT
Optional: No
Call by Reference: No ( called with pass by value option)

TABLES Parameters details for ISP_JVVLFBGP_SELECT

DATEN_TAB -

Data type: RJV0601
Optional: No
Call by Reference: No ( called with pass by value option)

GP_NAME_TAB -

Data type: RJV1301
Optional: No
Call by Reference: No ( called with pass by value option)

EXCEPTIONS details

NO_GENERATE -

Data type:
Optional: No
Call by Reference: No ( called with pass by value option)

Copy and paste ABAP code example for ISP_JVVLFBGP_SELECT 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_ab_dat_gp  TYPE RJV1301-AB_DAT_GP, "   CON_TIME_BEGIN
lt_daten_tab  TYPE STANDARD TABLE OF RJV0601, "   
lv_line_count  TYPE SY-DBCNT, "   
lv_no_generate  TYPE SY, "   
lv_liefbar_par  TYPE RJV1001, "   
lv_bis_dat_gp  TYPE RJV1301-BIS_DAT_GP, "   CON_TIME_INFINITY
lt_gp_name_tab  TYPE STANDARD TABLE OF RJV1301, "   
lv_flg_adr_aufloesen  TYPE JVTLIEFBAR-XSTRUAKTIV, "   SPACE
lv_flg_count_only  TYPE JVTLIEFBAR-XSTRUAKTIV, "   SPACE
lv_flg_saetze  TYPE JVTLIEFBAR-XSTRUAKTIV, "   'I'
lv_gueltigab  TYPE JVTLIEFBAR-GUELTIGAB, "   CON_TIME_BEGIN
lv_gueltigbis  TYPE JVTLIEFBAR-GUELTIGBIS, "   CON_TIME_INFINITY
lv_jgpartner  TYPE JVTLFBARGP-JGPARTNER, "   CON_MASKE_STERN
lv_jservges  TYPE JVTLFBARGP-JSERVGES. "   CON_MASKE_STERN

  CALL FUNCTION 'ISP_JVVLFBGP_SELECT'  "
    EXPORTING
         AB_DAT_GP = lv_ab_dat_gp
         LIEFBAR_PAR = lv_liefbar_par
         BIS_DAT_GP = lv_bis_dat_gp
         FLG_ADR_AUFLOESEN = lv_flg_adr_aufloesen
         FLG_COUNT_ONLY = lv_flg_count_only
         FLG_SAETZE = lv_flg_saetze
         GUELTIGAB = lv_gueltigab
         GUELTIGBIS = lv_gueltigbis
         JGPARTNER = lv_jgpartner
         JSERVGES = lv_jservges
    IMPORTING
         LINE_COUNT = lv_line_count
    TABLES
         DATEN_TAB = lt_daten_tab
         GP_NAME_TAB = lt_gp_name_tab
    EXCEPTIONS
        NO_GENERATE = 1
. " ISP_JVVLFBGP_SELECT




ABAP code using 7.40 inline data declarations to call FM ISP_JVVLFBGP_SELECT

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 AB_DAT_GP FROM RJV1301 INTO @DATA(ld_ab_dat_gp).
DATA(ld_ab_dat_gp) = CON_TIME_BEGIN.
 
 
"SELECT single DBCNT FROM SY INTO @DATA(ld_line_count).
 
 
 
"SELECT single BIS_DAT_GP FROM RJV1301 INTO @DATA(ld_bis_dat_gp).
DATA(ld_bis_dat_gp) = CON_TIME_INFINITY.
 
 
"SELECT single XSTRUAKTIV FROM JVTLIEFBAR INTO @DATA(ld_flg_adr_aufloesen).
DATA(ld_flg_adr_aufloesen) = ' '.
 
"SELECT single XSTRUAKTIV FROM JVTLIEFBAR INTO @DATA(ld_flg_count_only).
DATA(ld_flg_count_only) = ' '.
 
"SELECT single XSTRUAKTIV FROM JVTLIEFBAR INTO @DATA(ld_flg_saetze).
DATA(ld_flg_saetze) = 'I'.
 
"SELECT single GUELTIGAB FROM JVTLIEFBAR INTO @DATA(ld_gueltigab).
DATA(ld_gueltigab) = CON_TIME_BEGIN.
 
"SELECT single GUELTIGBIS FROM JVTLIEFBAR INTO @DATA(ld_gueltigbis).
DATA(ld_gueltigbis) = CON_TIME_INFINITY.
 
"SELECT single JGPARTNER FROM JVTLFBARGP INTO @DATA(ld_jgpartner).
DATA(ld_jgpartner) = CON_MASKE_STERN.
 
"SELECT single JSERVGES FROM JVTLFBARGP INTO @DATA(ld_jservges).
DATA(ld_jservges) = CON_MASKE_STERN.
 


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!