Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

Function code for Tab

Former Member
0 Likes
1,798

Hi,

Is there any function code for tab(in keyboard)?

Thanks

5 REPLIES 5
Read only

arivazhagan_sivasamy
Active Contributor
0 Likes
1,114

There is no function code, just you can left and right side arrow key.

Arivazhagan S

Read only

Former Member
0 Likes
1,114

Tab key handling occurs at presentation server.

Application server does not know about it.

Read only

Former Member
0 Likes
1,114

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...

Read only

former_member209120
Active Contributor
0 Likes
1,114

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    

Read only

ramkumar007
Participant
0 Likes
1,114

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