SAP ISH_BAPI_MAP_SAPSCRIPT_I2E Function Module for









ISH_BAPI_MAP_SAPSCRIPT_I2E is a standard ish bapi map sapscript i2e 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 ish bapi map sapscript i2e FM, simply by entering the name ISH_BAPI_MAP_SAPSCRIPT_I2E into the relevant SAP transaction such as SE37 or SE38.

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



Function ISH_BAPI_MAP_SAPSCRIPT_I2E 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_BAPI_MAP_SAPSCRIPT_I2E'"
EXPORTING
DOCREQUEST = "IS-H Request Specification for Documents
FORMAT = "IS-H: Format in Collective Representation
LANGUAGE = "IS-H: Language of SAPscript Long Text
* PARAMETER = "Parameter Name
* ROW = "Row in Parameter
* FIELD = "Field in Parameter

CHANGING
KEY = "IS-H: Document Key

TABLES
SAPSCRIPT_TEXT = "SAPscript: Text Rows
DOC_INFO = "
DOC_CONTENT = "
RETURN = "Return Parameter(s)
.



IMPORTING Parameters details for ISH_BAPI_MAP_SAPSCRIPT_I2E

DOCREQUEST - IS-H Request Specification for Documents

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

FORMAT - IS-H: Format in Collective Representation

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

LANGUAGE - IS-H: Language of SAPscript Long Text

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

PARAMETER - Parameter Name

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

ROW - Row in Parameter

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

FIELD - Field in Parameter

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

CHANGING Parameters details for ISH_BAPI_MAP_SAPSCRIPT_I2E

KEY - IS-H: Document Key

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

TABLES Parameters details for ISH_BAPI_MAP_SAPSCRIPT_I2E

SAPSCRIPT_TEXT - SAPscript: Text Rows

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

DOC_INFO -

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

DOC_CONTENT -

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

RETURN - Return Parameter(s)

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

Copy and paste ABAP code example for ISH_BAPI_MAP_SAPSCRIPT_I2E 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_key  TYPE BAPIDOCKEY, "   
lv_docrequest  TYPE BAPIDOCREQUEST, "   
lt_sapscript_text  TYPE STANDARD TABLE OF TLINE, "   
lv_format  TYPE BAPIDOCFORMAT, "   
lt_doc_info  TYPE STANDARD TABLE OF BAPIDOCCOLLINFO, "   
lv_language  TYPE BAPIDOCLANG, "   
lt_doc_content  TYPE STANDARD TABLE OF BAPIDOCCOLLCONTENT, "   
lt_return  TYPE STANDARD TABLE OF BAPIRET2, "   
lv_parameter  TYPE BAPI_PARAM, "   
lv_row  TYPE BAPI_LINE, "   
lv_field  TYPE BAPI_FLD. "   

  CALL FUNCTION 'ISH_BAPI_MAP_SAPSCRIPT_I2E'  "
    EXPORTING
         DOCREQUEST = lv_docrequest
         FORMAT = lv_format
         LANGUAGE = lv_language
         PARAMETER = lv_parameter
         ROW = lv_row
         FIELD = lv_field
    CHANGING
         KEY = lv_key
    TABLES
         SAPSCRIPT_TEXT = lt_sapscript_text
         DOC_INFO = lt_doc_info
         DOC_CONTENT = lt_doc_content
         RETURN = lt_return
. " ISH_BAPI_MAP_SAPSCRIPT_I2E




ABAP code using 7.40 inline data declarations to call FM ISH_BAPI_MAP_SAPSCRIPT_I2E

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.

 
 
 
 
 
 
 
 
 
 
 


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!