‎2007 Jan 28 2:32 AM
hi all,
may i know why there is a difference for bapi structure?
for example, i define 1 structure as below, why there is a #?
types: begin of ty_msg,
id#like# bapiret2-id,
number#like#bapiret2-number,
end of ty_msg.
thanks
‎2007 Jan 28 6:45 PM
e l ,
don't know what you did.
means unknown/non-displayable character. Where did you see that and how did you define the structure?
Regards,
Clemens
‎2007 Jan 29 12:08 AM
hi,
only when i print out the source the # is showing.
may i know why only when define bapi structure it has #?
thanks
‎2007 Jan 29 12:39 AM
Hi,
You probably would have used "Tab" while coding..
Do the following code..I believe you will get it again..
DATA: "Press tab button here" BEGIN OF TEST,
ID "Press tab button here" like BAPIRET2-ID,
END OF TEST.
Now take a print out..OR check the code in debugging..You will see # in the places where you pressed tab the button..
It is not because of the bapi structure...
Thanks,
Naren
‎2007 Jan 29 12:48 AM
Hi,
Or do the following..
Open a notepad..And use tab button...Have the following code in the notepad..
parameters: p_vbeln type vbeln.
if p_vbeln "Press tab button here" is initial.
"Press tab button here" "Press tab button here" write: / p_vbeln.
endif.
Copy the code and paste it in the abap editor...
Now activate the code..
Put a break point in the IF condition..
Now execute..You will see # in the debugging..
Thanks,
Naren