QEEM_FEATURES_PROCESSING is a standard SAP function module available within R/3 SAP systems depending on your version and release level. Below is the pattern details for this FM showing its interface including any import and export parameters, exceptions etc as well as any documentation contributions (Comments) specific to the object.
See here to view full function module documentation and code listing, simply by entering the name QEEM_FEATURES_PROCESSING into the relevant SAP transaction such as SE37 or SE80.
Associated Function Group:
QEEM
Released Date:
Not Released
Processing type: Normal fucntion module
CALL FUNCTION 'QEEM_FEATURES_PROCESSING' "
EXPORTING
aktivitaet = " tq70-aktivitaet Transaction activity
d_teil = " qaqee-d_teil
d_teil = " qaqee-d_teil Material requires documentation
* einvorg = SPACE " qaqee-einvorg Ind.1: Operation that satisfies the selection criterion
* fktcall = SPACE " qaqee-fktcall Call transaction as function module
i_qamkr_wa = " qamkr Work area for individual results recording for the inspection characteristic
* i_pruefpunkt_neu_kz = SPACE " qm00-qkz Ind.: Inspection point was recreated internally
* i_pruefpunkt_geaendert = SPACE " qm00-qkz
* i_rueckmelnr = '00000000' " qaqee-rueckmelnr Completion Confirmation Number for Characteristic
mode = " tq78-modus
mode = " tq78-modus Processing mode
probenr = " qaqee-probenr
probenr = " qaqee-probenr Sample number for the inspection point or partial sample
pruefdatuv = " qaqee-pruefdatuv Date of examination
pruefer = " qaqee-pruefer
pruefer = " qaqee-pruefer Name of the inspector
pruefzeitv = " qaqee-pruefzeitv Time of the inspection
qals_wa = " qals
qals_wa = " qals Work area for the inspection lot
qapo_wa = " qapo Work area for the operation
qapo_wa = " qapo
steuerschluessel = " tq70-schlcode Transaction control key
* i_qapp = " qapp Work area for the inspection point
* i_qalt = " qalt Work area for the partial lot
* i_only_define_new_char = SPACE " qaqee-onlydefnew Ind.: Define only unplanned characteristics
* i_tcode = SY-TCODE " sy-tcode Transaction code
* iv_signature_process = SPACE " qkz X and Blank
IMPORTING
e_exit_fcode = " t185-fcode Function to be carried out after leaving results recording
e_sichern_flag = " qals-stat27 Flag as to whether data should be saved on the database
e_close_graphics = " qm00-qkz Ind. whether display graphic is still to be closed
* TABLES
* it_filter = " qakey Interface table for key fields sample no., indiv.result no.
EXCEPTIONS
FOREIGN_LOCK = 1 " Characteristics are already blocked for transaction
INTERNAL_ERROR_VALUATION = 2 " Internal error in valuation
NOENTRY_Q78TAB = 3 " No entry in table TQ78
NO_OPERATIONS = 4 " No operations found for the inspection lot
NO_FEATURES = 5 " No characteristics found for the transaction
NO_SAMPLE = 6 " No sample requirements record for the characteristic
NO_VALUATION_MODULE = 7 " No valuation function module for the characteristic
START_DYNPRO_NOT_FOUND = 8 " No initial screen for the transaction in the control table
SYSTEM_FAILURE = 9 " System error when blocking the characteristics
PROBLEMS_WITH_CALCULATED_CHAR = 10 " Internal error importing calculated characteristics
FOREIGN_LOCK_QASH = 11 "
ERROR_MESSAGE_QRK = 12 "
. " QEEM_FEATURES_PROCESSING
The ABAP code below is a full code listing to execute function module QEEM_FEATURES_PROCESSING including all data declarations. The code uses 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 original method of declaring data variables up front. 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).
| ld_e_exit_fcode | TYPE T185-FCODE , |
| ld_e_sichern_flag | TYPE QALS-STAT27 , |
| ld_e_close_graphics | TYPE QM00-QKZ , |
| it_it_filter | TYPE STANDARD TABLE OF QAKEY,"TABLES PARAM |
| wa_it_filter | LIKE LINE OF it_it_filter . |
The below ABAP code uses the older none in-line data declarations. This allows you to see the coding differences/benefits of the later inline syntax. It may also be useful if you are using an older version of SAP as some of the newer syntax above, such as the @DATA is not available until 4.70 EHP 8.
DATA:
| ld_e_exit_fcode | TYPE T185-FCODE , |
| ld_aktivitaet | TYPE TQ70-AKTIVITAET , |
| it_it_filter | TYPE STANDARD TABLE OF QAKEY , |
| wa_it_filter | LIKE LINE OF it_it_filter, |
| ld_e_sichern_flag | TYPE QALS-STAT27 , |
| ld_d_teil | TYPE QAQEE-D_TEIL , |
| ld_d_teil | TYPE QAQEE-D_TEIL , |
| ld_e_close_graphics | TYPE QM00-QKZ , |
| ld_einvorg | TYPE QAQEE-EINVORG , |
| ld_fktcall | TYPE QAQEE-FKTCALL , |
| ld_i_qamkr_wa | TYPE QAMKR , |
| ld_i_pruefpunkt_neu_kz | TYPE QM00-QKZ , |
| ld_i_pruefpunkt_geaendert | TYPE QM00-QKZ , |
| ld_i_rueckmelnr | TYPE QAQEE-RUECKMELNR , |
| ld_mode | TYPE TQ78-MODUS , |
| ld_mode | TYPE TQ78-MODUS , |
| ld_probenr | TYPE QAQEE-PROBENR , |
| ld_probenr | TYPE QAQEE-PROBENR , |
| ld_pruefdatuv | TYPE QAQEE-PRUEFDATUV , |
| ld_pruefer | TYPE QAQEE-PRUEFER , |
| ld_pruefer | TYPE QAQEE-PRUEFER , |
| ld_pruefzeitv | TYPE QAQEE-PRUEFZEITV , |
| ld_qals_wa | TYPE QALS , |
| ld_qals_wa | TYPE QALS , |
| ld_qapo_wa | TYPE QAPO , |
| ld_qapo_wa | TYPE QAPO , |
| ld_steuerschluessel | TYPE TQ70-SCHLCODE , |
| ld_i_qapp | TYPE QAPP , |
| ld_i_qalt | TYPE QALT , |
| ld_i_only_define_new_char | TYPE QAQEE-ONLYDEFNEW , |
| ld_i_tcode | TYPE SY-TCODE , |
| ld_iv_signature_process | TYPE QKZ . |
Please help keep this info upto date and use the comments section below to add useful hints, tips and information specific to this SAP function. This will then be available for you and other users to easily find by simply searching on the object name QEEM_FEATURES_PROCESSING or its description.