SAP UPARI_SEND_ASRTPRD Function Module for Send assortment product message type
UPARI_SEND_ASRTPRD is a standard upari send asrtprd SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for Send assortment product message type 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 upari send asrtprd FM, simply by entering the name UPARI_SEND_ASRTPRD into the relevant SAP transaction such as SE37 or SE38.
Function Group: UPARI_FG_ASRTPRD
Program Name: SAPLUPARI_FG_ASRTPRD
Main Program: SAPLUPARI_FG_ASRTPRD
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function UPARI_SEND_ASRTPRD 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 'UPARI_SEND_ASRTPRD'"Send assortment product message type.
EXPORTING
* IS_MSGTP = "Message types
IMPORTING
ET_APPL_MESSAGE = "
CHANGING
XT_CONTENT_MESSAGE = "
IMPORTING Parameters details for UPARI_SEND_ASRTPRD
IS_MSGTP - Message types
Data type: UPARI_TC_MSGTPOptional: Yes
Call by Reference: Yes
EXPORTING Parameters details for UPARI_SEND_ASRTPRD
ET_APPL_MESSAGE -
Data type: UPARI_YT_APPL_MSGOptional: No
Call by Reference: Yes
CHANGING Parameters details for UPARI_SEND_ASRTPRD
XT_CONTENT_MESSAGE -
Data type: UPARI_YT_ASRTPRD_MSGOptional: No
Call by Reference: Yes
Copy and paste ABAP code example for UPARI_SEND_ASRTPRD 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_is_msgtp | TYPE UPARI_TC_MSGTP, " | |||
| lv_et_appl_message | TYPE UPARI_YT_APPL_MSG, " | |||
| lv_xt_content_message | TYPE UPARI_YT_ASRTPRD_MSG. " |
|   CALL FUNCTION 'UPARI_SEND_ASRTPRD' "Send assortment product message type |
| EXPORTING | ||
| IS_MSGTP | = lv_is_msgtp | |
| IMPORTING | ||
| ET_APPL_MESSAGE | = lv_et_appl_message | |
| CHANGING | ||
| XT_CONTENT_MESSAGE | = lv_xt_content_message | |
| . " UPARI_SEND_ASRTPRD | ||
ABAP code using 7.40 inline data declarations to call FM UPARI_SEND_ASRTPRD
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