SAP BBP_IV_IMS_ADS_TEXT_PREP Function Module for Text preparation for Adobe form









BBP_IV_IMS_ADS_TEXT_PREP is a standard bbp iv ims ads text prep SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for Text preparation for Adobe form 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 bbp iv ims ads text prep FM, simply by entering the name BBP_IV_IMS_ADS_TEXT_PREP into the relevant SAP transaction such as SE37 or SE38.

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



Function BBP_IV_IMS_ADS_TEXT_PREP 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 'BBP_IV_IMS_ADS_TEXT_PREP'"Text preparation for Adobe form
EXPORTING
* IV_LANGU = "R/3 System, current language
* IV_COUNTRY = "Country Key
* IV_EXCEPTION = "Event
* IV_EXCEPTION_TYPE = "
* IV_RECIP_TYPE = "Single-Character Flag
* IS_EVENT = "Struktur für Ereignisse und Ausnahmen

IMPORTING
ES_TEXT = "
EV_COUNTRY = "Country Key
ES_TXT_EXTRA = "Extra text for Adobe form

CHANGING
CS_CONFIG = "
* CS_GLOBAL = "Contaiins ADS related global variables
.



IMPORTING Parameters details for BBP_IV_IMS_ADS_TEXT_PREP

IV_LANGU - R/3 System, current language

Data type: SY-LANGU
Optional: Yes
Call by Reference: Yes

IV_COUNTRY - Country Key

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

IV_EXCEPTION - Event

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

IV_EXCEPTION_TYPE -

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

IV_RECIP_TYPE - Single-Character Flag

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

IS_EVENT - Struktur für Ereignisse und Ausnahmen

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

EXPORTING Parameters details for BBP_IV_IMS_ADS_TEXT_PREP

ES_TEXT -

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

EV_COUNTRY - Country Key

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

ES_TXT_EXTRA - Extra text for Adobe form

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

CHANGING Parameters details for BBP_IV_IMS_ADS_TEXT_PREP

CS_CONFIG -

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

CS_GLOBAL - Contaiins ADS related global variables

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

Copy and paste ABAP code example for BBP_IV_IMS_ADS_TEXT_PREP 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_es_text  TYPE BBP_IMS_IV_ADS_TXT, "   
lv_iv_langu  TYPE SY-LANGU, "   
lv_cs_config  TYPE BBP_IMS_IV_ADS_CONFIG, "   
lv_cs_global  TYPE BBP_IV_IMS_ADS_GLOBAL, "   
lv_ev_country  TYPE LAND1, "   
lv_iv_country  TYPE LAND1, "   
lv_es_txt_extra  TYPE BBP_IMS_ADS_TEXT_EXTRA, "   
lv_iv_exception  TYPE SWO_EVENT, "   
lv_iv_exception_type  TYPE BBP_WD_EXCEPTION_TYPE, "   
lv_iv_recip_type  TYPE CHAR1, "   
lv_is_event  TYPE BBPS_EVENT. "   

  CALL FUNCTION 'BBP_IV_IMS_ADS_TEXT_PREP'  "Text preparation for Adobe form
    EXPORTING
         IV_LANGU = lv_iv_langu
         IV_COUNTRY = lv_iv_country
         IV_EXCEPTION = lv_iv_exception
         IV_EXCEPTION_TYPE = lv_iv_exception_type
         IV_RECIP_TYPE = lv_iv_recip_type
         IS_EVENT = lv_is_event
    IMPORTING
         ES_TEXT = lv_es_text
         EV_COUNTRY = lv_ev_country
         ES_TXT_EXTRA = lv_es_txt_extra
    CHANGING
         CS_CONFIG = lv_cs_config
         CS_GLOBAL = lv_cs_global
. " BBP_IV_IMS_ADS_TEXT_PREP




ABAP code using 7.40 inline data declarations to call FM BBP_IV_IMS_ADS_TEXT_PREP

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 LANGU FROM SY INTO @DATA(ld_iv_langu).
 
 
 
 
 
 
 
 
 
 


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!