‎2009 Nov 16 2:00 AM
Hi,
If i give v_field = '222' in the program,
in debugging i wil get v_field = 222.
how can i get v_field = '222' in debugging including the symbol?
Regards,
Arun.
‎2009 Nov 16 2:12 AM
Hi Arun,
I guess the field type should be of Char if you want to include the single quotes.
give it a try
Regards
Farheen
‎2009 Nov 16 2:12 AM
Hi Arun,
I guess the field type should be of Char if you want to include the single quotes.
give it a try
Regards
Farheen
‎2009 Nov 16 2:15 AM
‎2009 Nov 16 2:22 AM
Then may be you need to concatenate the single quotes explicitly. But not sure why do you need the value in single quotes in debugg mode?
Code Snippet
DATA:v_field TYPE char20.
CONCATENATE '''' '222' '''' INTO v_field.
WRITE v_field.
Regards
Farheen
‎2009 Nov 16 2:24 AM
Issue solved by giving V_IND(4) VALUE ''''. So i debugging it will come as single quote.