2006 Jul 27 6:18 AM
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
2006 Jul 27 6:28 AM
Hi Murli
If u want any transaction goto table TSTC & search wt Transaction u want.
Regards
Abhishek
2006 Jul 27 6:38 AM
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
2006 Jul 27 7:10 AM
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.
2006 Jul 27 7:14 AM
List of all transactions
http://www.easymarketplace.de/transactions-a-e.php
Pageformats
http://help.sap.com/saphelp_nw04/helpdata/en/d9/4a959551ea11d189570000e829fbbd/content.htm
Regds
Manohar
2006 Jul 27 8:28 AM
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,