‎2013 Nov 12 5:13 AM
‎2013 Nov 12 5:21 AM
There is no function code, just you can left and right side arrow key.
Arivazhagan S
‎2013 Nov 12 5:21 AM
Tab key handling occurs at presentation server.
Application server does not know about it.
‎2013 Nov 12 5:26 AM
HI I dont think you have a function code for tab key.
it can be there for F* keys and cntrl+ F* and shift+ f* keys...; try to create a PF status for a simple program....and you can see which are the ones you can use...
‎2013 Nov 12 5:29 AM
Hi Sai Ganesha
There is no function key got TAB you can use WB_BACK_TB and WB_FORWARD
Shift-F6 WB_BACK_TB Previous object
Shift-F7 WB_FORWARD Next Object
‎2013 Nov 12 5:36 AM
hi sai,
i hope it's help for you ,
It can be a bit difficult to use tabulator character (hex code 0x0009) in ABAP strings.
But some object is there in abap.
like
tabulator hex code is defined in class CL_ABAP_CHAR_UTILITIES
as constants HORIZONTAL_TAB
then program like .
DATA:
tab type c value cl_abap_char_utilities=>horizontal_tab,
name TYPE string.
CONCATENATE 'ramkumar' 'k' INTO name SEPARATED BY tab.
write : name;
ans:
ramkumar k
Thanks & regards
k.ramkumar