‎2007 Nov 13 3:57 PM
Can any one explain me this function module?
What it has to do with characteristics of configuration materials?
Thanks
‎2007 Nov 13 6:33 PM
‎2007 Nov 14 12:44 AM
I see the example bellow.
But I am still not clear what it is.
What is P_TAB?, the table that I need to pass in
and same for I_CHAR_VAL and I_VAR_TAB_N
I understand this FM is used to get characteristics values right?
-
CALL FUNCTION 'CARD_TABLE_SELECT_LINES'
EXPORTING
VAR_TAB = P_TAB "table name
FL_WITH_ENTRIES = C_X
TABLES
SELECT_WHERE_VALUES = I_CHAR_VAL "Char Values
VAR_TAB_ENTRIES = I_VAR_TAB_N
EXCEPTIONS
WARNING = 1
ERROR = 2
OTHERS = 3.
IF SY-SUBRC <> 0.
MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
ENDIF.
SORT I_VAR_TAB_N BY VTLINNOINT.