SAP ISP_HELP_TJI05 Function Module for Input Help for IVW Category in Sales Order









ISP_HELP_TJI05 is a standard isp help tji05 SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for Input Help for IVW Category in Sales Order 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 isp help tji05 FM, simply by entering the name ISP_HELP_TJI05 into the relevant SAP transaction such as SE37 or SE38.

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



Function ISP_HELP_TJI05 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_HELP_TJI05'"Input Help for IVW Category in Sales Order
EXPORTING
IJKAK = "Order Header
IAUART = "
IJKAP = "Order Item
IPOART = "
IJKKD = "
ITJD57 = "
* INCL_IVWKNFREI = ' ' "
* TRTYP = 'V' "Transaction Type
* RABGRENZE = 0 "

IMPORTING
FIELD_IVWKN = "Selected Category
FIELD_IVWKNFREI = "

TABLES
IVWKN_TAB = "
ITJKEP = "Schedule Lines

EXCEPTIONS
NO_DATA_FOUND = 1 NO_SELECTION = 2
.



IMPORTING Parameters details for ISP_HELP_TJI05

IJKAK - Order Header

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

IAUART -

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

IJKAP - Order Item

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

IPOART -

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

IJKKD -

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

ITJD57 -

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

INCL_IVWKNFREI -

Data type: SY-DATAR
Default: ' '
Optional: Yes
Call by Reference: No ( called with pass by value option)

TRTYP - Transaction Type

Data type:
Default: 'V'
Optional: Yes
Call by Reference: No ( called with pass by value option)

RABGRENZE -

Data type: TJI01-RABGRENZE
Optional: Yes
Call by Reference: No ( called with pass by value option)

EXPORTING Parameters details for ISP_HELP_TJI05

FIELD_IVWKN - Selected Category

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

FIELD_IVWKNFREI -

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

TABLES Parameters details for ISP_HELP_TJI05

IVWKN_TAB -

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

ITJKEP - Schedule Lines

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

EXCEPTIONS details

NO_DATA_FOUND - No data available

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

NO_SELECTION -

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

Copy and paste ABAP code example for ISP_HELP_TJI05 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_ijkak  TYPE JKAK, "   
lt_ivwkn_tab  TYPE STANDARD TABLE OF RLJI03, "   
lv_field_ivwkn  TYPE RLJI03, "   
lv_no_data_found  TYPE RLJI03, "   
lv_iauart  TYPE JKAK-AUART, "   
lt_itjkep  TYPE STANDARD TABLE OF JKEPVB, "   
lv_no_selection  TYPE JKEPVB, "   
lv_field_ivwknfrei  TYPE JKEPVB, "   
lv_ijkap  TYPE JKAP, "   
lv_ipoart  TYPE JKAP-POART, "   
lv_ijkkd  TYPE JKKD, "   
lv_itjd57  TYPE TJD57, "   
lv_incl_ivwknfrei  TYPE SY-DATAR, "   ' '
lv_trtyp  TYPE SY, "   'V'
lv_rabgrenze  TYPE TJI01-RABGRENZE. "   0

  CALL FUNCTION 'ISP_HELP_TJI05'  "Input Help for IVW Category in Sales Order
    EXPORTING
         IJKAK = lv_ijkak
         IAUART = lv_iauart
         IJKAP = lv_ijkap
         IPOART = lv_ipoart
         IJKKD = lv_ijkkd
         ITJD57 = lv_itjd57
         INCL_IVWKNFREI = lv_incl_ivwknfrei
         TRTYP = lv_trtyp
         RABGRENZE = lv_rabgrenze
    IMPORTING
         FIELD_IVWKN = lv_field_ivwkn
         FIELD_IVWKNFREI = lv_field_ivwknfrei
    TABLES
         IVWKN_TAB = lt_ivwkn_tab
         ITJKEP = lt_itjkep
    EXCEPTIONS
        NO_DATA_FOUND = 1
        NO_SELECTION = 2
. " ISP_HELP_TJI05




ABAP code using 7.40 inline data declarations to call FM ISP_HELP_TJI05

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 AUART FROM JKAK INTO @DATA(ld_iauart).
 
 
 
 
 
"SELECT single POART FROM JKAP INTO @DATA(ld_ipoart).
 
 
 
"SELECT single DATAR FROM SY INTO @DATA(ld_incl_ivwknfrei).
DATA(ld_incl_ivwknfrei) = ' '.
 
DATA(ld_trtyp) = 'V'.
 
"SELECT single RABGRENZE FROM TJI01 INTO @DATA(ld_rabgrenze).
 


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!