Application Development 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: 

How these transaction codes work

Former Member
0 Kudos

Hi,

Please let me know how this transaction codes work

/I,/N,/NEX,/H,/NEND and so on.

I am not asking about its funcationality, I want to know how those works.

regards,

Prabhu

points assured

1 ACCEPTED SOLUTION

Former Member
0 Kudos

Hi,

Pls Go Through Tis You will Understand-

Direct call of transactions, session handling:

/nxxxx

This terminates the current transaction, and starts transaction "xxxx", for example, "sa38" for reporting.

/n

This terminates the transaction. This generally corresponds to pressing F3 to go back.

/nend

This terminates all separate sessions and logs off (corresponds to "System -> Log off").

/nex

This terminates all separate sessions and logs off immediately (without warning!).

/oxxxx

This opens a new session and starts transaction xxxx in this session.

/o

This lists existing sessions and allows deletion or opening of a new session.

/i

This terminates the current session (corresponds to "System -> End session").

/i1, /i2,...

This terminates the session with the number given.

.xyzw

"Fast path": "xyzw" refers to the underlined letters in the menus. This type of navigation is uncommon and is provided more for emergencies (such as a defective mouse).

ABAP/4 debugging:

/h

This switches into debugging mode.

/hs

This switches into debugging mode and activates the debugging of system functions.

Regards,

Sujit

10 REPLIES 10

Former Member
0 Kudos

Hi,

Check the below link which has more in detail:

http://magic.infogami.com/sap_command_field_tips

/h start debugging

/hx stop debugging

/nxxx start in same window

/*xxx start in same window, skipping start

/oxxx start in new window

/n terminate actual transaction

/i close actual window

/in close window number n

/o show window list

/ns000 go to startmenu

/nend logout

/nex logout without asking

hope this helps

Regards,

Sharath

Edited by: sharath Girmaji on Jun 27, 2008 7:21 PM

Former Member
0 Kudos

/I-->shows a pop up to ask for the logoff

/N------->come out of the tcode and comes to initial screen

/NEX--->log off of sap

/H------> debugging

/NEND--->shows a pop up to ask for the logoff

Former Member
0 Kudos

Hi Prabhu,

/I - closes the present active session.

/N - opens a new session

/NEX - closes all the sessions and it automatically saves

eveything

/H - Starts Debugging, Using this you can start

debugging at any point of time

Hopes this helps you. If so, reward points and close this thread.

Any queries, get back to me.

Regards,

Chandra Sekhar

Edited by: Chandrasekhar Gandla on Jun 27, 2008 3:54 PM

Former Member
0 Kudos

Hi,

Pls Go Through Tis You will Understand-

Direct call of transactions, session handling:

/nxxxx

This terminates the current transaction, and starts transaction "xxxx", for example, "sa38" for reporting.

/n

This terminates the transaction. This generally corresponds to pressing F3 to go back.

/nend

This terminates all separate sessions and logs off (corresponds to "System -> Log off").

/nex

This terminates all separate sessions and logs off immediately (without warning!).

/oxxxx

This opens a new session and starts transaction xxxx in this session.

/o

This lists existing sessions and allows deletion or opening of a new session.

/i

This terminates the current session (corresponds to "System -> End session").

/i1, /i2,...

This terminates the session with the number given.

.xyzw

"Fast path": "xyzw" refers to the underlined letters in the menus. This type of navigation is uncommon and is provided more for emergencies (such as a defective mouse).

ABAP/4 debugging:

/h

This switches into debugging mode.

/hs

This switches into debugging mode and activates the debugging of system functions.

Regards,

Sujit

Former Member
0 Kudos

Hi guys,

Cool, I know that and I have clearly mentioned I am not asking about the functionality.

I want to know like what happens in the system internally, for example if you enter SE38 a program related to that will be called similarly about these tcodes.

regards,

Prabhu

0 Kudos

hi suppose if u r in the tcode mm01 if u press /h it will go to debugging ...what ever may be the tcode ....the functionality is same..

0 Kudos

Hi Prabu

Could you let me know what will happen when click the logon screen...?

Not Kidding..thats what Sap build of by speacil different languages..

So Could you tell us the reason to Find that?

so that any one can help might with appropriately.

regards

sas

0 Kudos

hi,

these are not transaction codes, but system commands. I assume, if you enter any of the above, not ABAP programs are called, but some C function(ality) is activated.

hope this helps

ec

Former Member
0 Kudos

Hi,

visit the link given below:

http://www.saptcodes.com/

regards

pritam

former_member212653
Active Contributor
0 Kudos

These are SAP commands shortcuts. They execute their respective functions at kernel level.