SAP QIFI_SEND_REQUIRMENTS Function Module for









QIFI_SEND_REQUIRMENTS is a standard qifi send requirments 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 qifi send requirments FM, simply by entering the name QIFI_SEND_REQUIRMENTS into the relevant SAP transaction such as SE37 or SE38.

Function Group: QIFI
Program Name: SAPLQIFI
Main Program:
Appliation area: Q
Release date: N/A
Mode(Normal, Remote etc): Remote-Enabled
Update:



Function QIFI_SEND_REQUIRMENTS 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 'QIFI_SEND_REQUIRMENTS'"
EXPORTING
* I_IND_EVALUATE_CHARACTERISTIC = ' ' "Indicator: Valuation allowed in subsystem
* I_IND_SORT_ASCENDING_TO_DATE = 'X' "
* I_IND_SORT_DESCENDING_TO_DATE = ' ' "
* I_IND_TRANSFER_CHAR_CODES = ' ' "Transfer of characteristic catalogs
* I_IND_TRANSFER_USAGE_DEC_CODES = ' ' "Transfer usage decision catalog
I_QAILS = "
* I_IND_MULTI_TRANSFER_POSSIBLE = ' ' "
* I_IND_ONLY_OBLIGATORY_CHARACT = ' ' "Ind.: Transfer required characteristics only
* I_IND_READ_PURCHASING_INFO = 'X' "Fill purchase info fields of the download structure
* I_IND_READ_SALES_INFO = 'X' "Input fields for sales information data
* I_IND_READ_VENDOR_AND_PRODUCER = 'X' "Input manufacturer and supplier fields
* I_IND_READ_WORK_CENTER = 'X' "Input work center
* I_IND_SEND_PROTOCOL_MAIL = ' ' "Indicator: Valuation allowed in subsystem
* I_IND_SET_BLOCK_INDICATORS = 'X' "Set lock entry in QM

EXCEPTIONS
NO_SUBSYS_DEFINED = 1 WORKLIST_EMPTY = 2
.



IMPORTING Parameters details for QIFI_SEND_REQUIRMENTS

I_IND_EVALUATE_CHARACTERISTIC - Indicator: Valuation allowed in subsystem

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

I_IND_SORT_ASCENDING_TO_DATE -

Data type: QM00-QKZ
Default: 'X'
Optional: Yes
Call by Reference: No ( called with pass by value option)

I_IND_SORT_DESCENDING_TO_DATE -

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

I_IND_TRANSFER_CHAR_CODES - Transfer of characteristic catalogs

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

I_IND_TRANSFER_USAGE_DEC_CODES - Transfer usage decision catalog

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

I_QAILS -

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

I_IND_MULTI_TRANSFER_POSSIBLE -

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

I_IND_ONLY_OBLIGATORY_CHARACT - Ind.: Transfer required characteristics only

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

I_IND_READ_PURCHASING_INFO - Fill purchase info fields of the download structure

Data type: QM00-QKZ
Default: 'X'
Optional: Yes
Call by Reference: No ( called with pass by value option)

I_IND_READ_SALES_INFO - Input fields for sales information data

Data type: QM00-QKZ
Default: 'X'
Optional: Yes
Call by Reference: No ( called with pass by value option)

I_IND_READ_VENDOR_AND_PRODUCER - Input manufacturer and supplier fields

Data type: QM00-QKZ
Default: 'X'
Optional: Yes
Call by Reference: No ( called with pass by value option)

I_IND_READ_WORK_CENTER - Input work center

Data type: QM00-QKZ
Default: 'X'
Optional: Yes
Call by Reference: No ( called with pass by value option)

I_IND_SEND_PROTOCOL_MAIL - Indicator: Valuation allowed in subsystem

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

I_IND_SET_BLOCK_INDICATORS - Set lock entry in QM

Data type: QM00-QKZ
Default: 'X'
Optional: Yes
Call by Reference: No ( called with pass by value option)

EXCEPTIONS details

NO_SUBSYS_DEFINED -

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

WORKLIST_EMPTY -

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

Copy and paste ABAP code example for QIFI_SEND_REQUIRMENTS 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_no_subsys_defined  TYPE STRING, "   
lv_i_ind_evaluate_characteristic  TYPE QM00-QKZ, "   ' '
lv_i_ind_sort_ascending_to_date  TYPE QM00-QKZ, "   'X'
lv_i_ind_sort_descending_to_date  TYPE QM00-QKZ, "   ' '
lv_i_ind_transfer_char_codes  TYPE QM00-QKZ, "   ' '
lv_i_ind_transfer_usage_dec_codes  TYPE QM00-QKZ, "   ' '
lv_i_qails  TYPE QAILS, "   
lv_worklist_empty  TYPE QAILS, "   
lv_i_ind_multi_transfer_possible  TYPE QM00-QKZ, "   ' '
lv_i_ind_only_obligatory_charact  TYPE QM00-QKZ, "   ' '
lv_i_ind_read_purchasing_info  TYPE QM00-QKZ, "   'X'
lv_i_ind_read_sales_info  TYPE QM00-QKZ, "   'X'
lv_i_ind_read_vendor_and_producer  TYPE QM00-QKZ, "   'X'
lv_i_ind_read_work_center  TYPE QM00-QKZ, "   'X'
lv_i_ind_send_protocol_mail  TYPE QM00-QKZ, "   ' '
lv_i_ind_set_block_indicators  TYPE QM00-QKZ. "   'X'

  CALL FUNCTION 'QIFI_SEND_REQUIRMENTS'  "
    EXPORTING
         I_IND_EVALUATE_CHARACTERISTIC = lv_i_ind_evaluate_characteristic
         I_IND_SORT_ASCENDING_TO_DATE = lv_i_ind_sort_ascending_to_date
         I_IND_SORT_DESCENDING_TO_DATE = lv_i_ind_sort_descending_to_date
         I_IND_TRANSFER_CHAR_CODES = lv_i_ind_transfer_char_codes
         I_IND_TRANSFER_USAGE_DEC_CODES = lv_i_ind_transfer_usage_dec_codes
         I_QAILS = lv_i_qails
         I_IND_MULTI_TRANSFER_POSSIBLE = lv_i_ind_multi_transfer_possible
         I_IND_ONLY_OBLIGATORY_CHARACT = lv_i_ind_only_obligatory_charact
         I_IND_READ_PURCHASING_INFO = lv_i_ind_read_purchasing_info
         I_IND_READ_SALES_INFO = lv_i_ind_read_sales_info
         I_IND_READ_VENDOR_AND_PRODUCER = lv_i_ind_read_vendor_and_producer
         I_IND_READ_WORK_CENTER = lv_i_ind_read_work_center
         I_IND_SEND_PROTOCOL_MAIL = lv_i_ind_send_protocol_mail
         I_IND_SET_BLOCK_INDICATORS = lv_i_ind_set_block_indicators
    EXCEPTIONS
        NO_SUBSYS_DEFINED = 1
        WORKLIST_EMPTY = 2
. " QIFI_SEND_REQUIRMENTS




ABAP code using 7.40 inline data declarations to call FM QIFI_SEND_REQUIRMENTS

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 QKZ FROM QM00 INTO @DATA(ld_i_ind_evaluate_characteristic).
DATA(ld_i_ind_evaluate_characteristic) = ' '.
 
"SELECT single QKZ FROM QM00 INTO @DATA(ld_i_ind_sort_ascending_to_date).
DATA(ld_i_ind_sort_ascending_to_date) = 'X'.
 
"SELECT single QKZ FROM QM00 INTO @DATA(ld_i_ind_sort_descending_to_date).
DATA(ld_i_ind_sort_descending_to_date) = ' '.
 
"SELECT single QKZ FROM QM00 INTO @DATA(ld_i_ind_transfer_char_codes).
DATA(ld_i_ind_transfer_char_codes) = ' '.
 
"SELECT single QKZ FROM QM00 INTO @DATA(ld_i_ind_transfer_usage_dec_codes).
DATA(ld_i_ind_transfer_usage_dec_codes) = ' '.
 
 
 
"SELECT single QKZ FROM QM00 INTO @DATA(ld_i_ind_multi_transfer_possible).
DATA(ld_i_ind_multi_transfer_possible) = ' '.
 
"SELECT single QKZ FROM QM00 INTO @DATA(ld_i_ind_only_obligatory_charact).
DATA(ld_i_ind_only_obligatory_charact) = ' '.
 
"SELECT single QKZ FROM QM00 INTO @DATA(ld_i_ind_read_purchasing_info).
DATA(ld_i_ind_read_purchasing_info) = 'X'.
 
"SELECT single QKZ FROM QM00 INTO @DATA(ld_i_ind_read_sales_info).
DATA(ld_i_ind_read_sales_info) = 'X'.
 
"SELECT single QKZ FROM QM00 INTO @DATA(ld_i_ind_read_vendor_and_producer).
DATA(ld_i_ind_read_vendor_and_producer) = 'X'.
 
"SELECT single QKZ FROM QM00 INTO @DATA(ld_i_ind_read_work_center).
DATA(ld_i_ind_read_work_center) = 'X'.
 
"SELECT single QKZ FROM QM00 INTO @DATA(ld_i_ind_send_protocol_mail).
DATA(ld_i_ind_send_protocol_mail) = ' '.
 
"SELECT single QKZ FROM QM00 INTO @DATA(ld_i_ind_set_block_indicators).
DATA(ld_i_ind_set_block_indicators) = 'X'.
 


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!