‎2008 Jan 23 7:20 AM
hi experts
i have an issue with the FM:
DATA: v_class LIKE klah-class,
v_classtype LIKE klah-klart,
v_object LIKE ausp-objek,
v_objecttable LIKE tcla-obtab,
v_langu LIKE sy-langu,
v_datum LIKE sy-datum,
v_atnam TYPE atnam.
v_langu = 'EN'.
v_datum = sy-datum.
*
v_class = 'PACK'.
v_classtype = '001'.
v_object = '1PACK'.
v_objecttable = 'MARA'.
CALL FUNCTION 'CLAF_CLASSIFICATION_OF_OBJECTS'
EXPORTING
class = v_class
classtext = 'X'
classtype = v_classtype
clint = 0
features = 'X'
language = v_langu
object = v_object
objecttable = v_objecttable
key_date = v_datum
initial_charact = 'X'
change_service_clf = 'X'
TABLES
t_objectdata = i_clobjdat
EXCEPTIONS
no_classification = 1
no_classtypes = 2
invalid_class_type = 3
OTHERS = 4.
i got this dump message,plse help me to fix this
An exception occurred that is explained in detail below.
The exception, which is assigned to class 'CX_SY_DYN_CALL_PARAM_MISSING', was
not caught and
therefore caused a runtime error.
The reason for the exception is:
When calling the function module "CLAF_CLASSIFICATION_OF_OBJECTS", one of the
parameters
needed according to the interface description was not specified.
This parameter was "T_CLASS".
with regards
aaryaa
‎2008 Jan 23 7:25 AM
Hi
You have not filled the table T_CLASS and taht is why the exception is raised..
Fill the table and pass it to the function module. For the input on T_CLASS table, see the following description:
Table T_CLASS contains the class and a characteristic counter for each
entry. The counter determines the characteristic records for a class in
table T_OBJECTDATA.
Reward points if useful
Shakir
‎2008 Jan 23 7:25 AM
Hi
You have not filled the table T_CLASS and taht is why the exception is raised..
Fill the table and pass it to the function module. For the input on T_CLASS table, see the following description:
Table T_CLASS contains the class and a characteristic counter for each
entry. The counter determines the characteristic records for a class in
table T_OBJECTDATA.
Reward points if useful
Shakir