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: 

Transaction Codes

Former Member
0 Kudos
124

Hi ALL,

I have come across a few objects which i need to check for consistency or syntax(if applicable). I need to know the transaction codes for these object types.

The object types are as follows:

<b>Gen. hierarchy storage extension name</b>

<b>Page Formats</b>

Thanks and Regards,

Navaneeth

5 REPLIES 5

Former Member
0 Kudos
78

Hi Murli

If u want any transaction goto table TSTC & search wt Transaction u want.

Regards

Abhishek

Former Member
0 Kudos
78

hi,

In se30 transaction you can look for

Tip&TRicks button on application toolbar

apart from below conventions.

Follow below steps

1) Remove corresponding from select satement

2) Remove * from select

3) Select field in sequence as defined in database

4) Avoid unnecessary selects

i.e check for internal table not initial

5) Use all entries and sort table by key fields

6) Remove selects ferom loop and use binary search

7) Try to use secondary index when you don't have

full key.

😎 Modify internal table use transporting option

9) Avoid nested loop . Use read table and loop at itab

from sy-tabix statement.

10) free intrenal table memory wnen table is not

required for further processing.

11)

Follow below logic.

if not it_plant[] is initial.

it_plant1[] = it_plant[].

sort it_plant1 by werks.

delete adjacent duplicates from it_plant1 comparing werks

SELECT AUFNR KTEXT USER4 OBJNR INTO CORRESPONDING FIELDS OF TABLE I_AUFKTAB

FROM AUFK

FOR ALL ENTRIES IN it_plant1

WHERE AUFNR IN S_AUFNR AND

KTEXT IN S_KTEXT AND

  • WERKS IN S_WERKS AND

AUART IN S_AUART AND

USER4 IN S_USER4 AND

werks eq it_plant1-werks.

free it_plant1.

Endif.

with regards

chetan vishnoi

Former Member
0 Kudos
78

Hi

For finding Txn codes u can use table TSTC and also Txn- SE93 jus write between * to find the T-code.

Hope this helps,

Regards,

Seema.

Manohar2u
Active Contributor

Former Member
0 Kudos
78

Hi,

Use the following transaction code to find the transaction code for any string you pass,

1. search_sap_menu

2. sdmo,

Tcode for page format is SPAD,

Rgds,