‎2007 Jun 29 7:49 AM
Hi friends,
In SE38, pls find the code below.
DATA: BEGIN OF tkomv OCCURS 50.
INCLUDE STRUCTURE komv.
DATA: END OF tkomv.
SEARCH tkomv FOR 'HM00' AND MARK.
It works well in a client. gives only warning message as
Warning: Table "TKOMV" must have a character line type (data type C, N, D, T, or STRING).
I want the same one in another client.
Here i just copy and past the code in another client. But here it gives erro message as
Syntax error: Table "TKOMV" must have a character line type (data type C, N, D, T, or STRING).
What is the problem. ? Pls help me to do.
Thanks.
‎2007 Jun 29 7:52 AM
SEARCH tkomv-<fieldname> FOR 'HM00' AND MARK.
fieldname must be a char data type.
regards
shiba dutta
‎2007 Jun 29 7:55 AM
Hi Murugan,
I have tried same code. But i did n't get any warning or error.
can you paste your code exactly here.
Regards,
Murali Krishan K