QIRF_SEND_CATALOG_DATA2 SAP Method of class /BCV/IF_SIN_BAPI_QN
Below is documentation, parameters and attributes of ABAP Method QIRF_SEND_CATALOG_DATA2 within SAP class /BCV/IF_SIN_BAPI_QN. There is also a number of example ABAP code snipts to help you use the functionality of this method.
This method is available within SAP systems depending on your version and release level, you can view further information by entering the class name /BCV/IF_SIN_BAPI_QN into the relevant SAP transactions such as SE24 or SE80, and then selecting the method you are interested in.
Method Type - Static
This is a Static Method so you can call it directlyThe following technical details of method QIRF_SEND_CATALOG_DATA2 can also be found below:
- Importing parameters
- Exporting parameters
- Changing parameters
- Returning parameters
- Exceptions
- Coding Examples
Parameters of Method QIRF_SEND_CATALOG_DATA2
.| Name | Type | Data Type | Description | Default Value |
| IV_CATALOG | Importing | TYPE /BCV/SIN_CODEGRP | Code Group Problem | |
| IV_CATALOG_TYPE | Importing | TYPE /BCV/SIN_D_CAT_TYP | Catalog Type Problem | |
| IV_LANGUAGE | Importing | TYPE SYLANGU | Language Key of Current Text Environment | |
| IV_SYSTEM | Importing | TYPE LOGSYS | Logical system | |
| ES_RETURN | Exporting | TYPE BAPIRETURN1 | Return Parameter | |
| ET_QAICATAB | Exporting | TYPE /BCV/T_SIN_QAICA | /BCV/T_SIN_QAICA | |
| ET_QIERRTAB | Exporting | TYPE /BCV/T_SIN_QIERR | /BCV/S_SIN_QIERR |
Exceptions of Method QIRF_SEND_CATALOG_DATA2
This method does not have any exceptionsExample ABAP coding
DATA: lv_ES_RETURN TYPE BAPIRETURN1,
lv_ET_QAICATAB TYPE /BCV/T_SIN_QAICA,
lv_ET_QIERRTAB TYPE /BCV/T_SIN_QIERR,
lv_IV_CATALOG TYPE /BCV/SIN_CODEGRP,
lv_IV_CATALOG_TYPE TYPE /BCV/SIN_D_CAT_TYP,
lv_IV_LANGUAGE TYPE SYLANGU,
lv_IV_SYSTEM TYPE LOGSYS,
lv_other TYPE c.
CALL METHOD /BCV/IF_SIN_BAPI_QN=>QIRF_SEND_CATALOG_DATA2(
EXPORTING
IV_CATALOG = lv_IV_CATALOG
IV_CATALOG_TYPE = lv_IV_CATALOG_TYPE
IV_LANGUAGE = lv_IV_LANGUAGE
IV_SYSTEM = lv_IV_SYSTEM
IMPORTING
ES_RETURN = lv_ES_RETURN
ET_QAICATAB = lv_ET_QAICATAB
ET_QIERRTAB = lv_ET_QIERRTAB ).
Links to Related Class(s)
/BCV/IF_...Full list of available SAP object classes
Search for further information about these or an SAP related objects