|
Retrieving the deleted program
I recently deleted a custom program (which is already transported to production) accidentally and was wondering if there is any method of retrieving the program back. After some research, I found a way of getting back the program. Following are the steps in getting back the program: 1) Create a program with the same name as earlier (which
is deleted)
Find out in what all Tables a specified field is available. You can find out through transaction code SE15. 1) Give SE15 on command prompt.
The system will list out all the tables which contain your desired field name. or 1) using transaction Code SE11 (ABAP Dictionary)
There you can see entire list of tables containing the desired field. Here the difficulty is that one should know at least the name of the one of the data tables which contain the desired field. With Compliment by: Manohar TS & Kotha ********** Find the Table Name For a Field. I know couple of ways to find the table name for a field.
If you will tell other methods it will be appreciate. ********** *
DATA: LINE(20). CONCATENATE 'You''' 'll be there.' INTO LINE. WRITE:/ LINE. ********** Given a transaction code, how can I find the menu path? In 4.6c, you can used tcode search_sap_menu to find the SAP MENU tcode. Please note that there are no tcode available to find the path of the IMG transaction. ********** How to un-encrypt SAP user password? It is not possible to un-encrypt the SAP password, because a one-way encoding (with strong 1024 bit key) is used for this. The result is stored and each time one has entered the password the encoding result is checked. ********** When you delete an entry from an internal table in ABAP, the system has to re-generate the index for all entries after your delete, slowing the report if you have many records to eliminate. It is much quicker to do an insert of the correct records into a second table than to delete entries from the first. The reason for this is because the index is only generated for the newest element. ********** If you want to protect a program against debugging, you just have to set the STATUS = S in the attributes view of the main program. ********** When you use a call transaction
and populate the BDCDATA table.
********** If you need to find out the Okcodes for BDC sessions, look for program RSBDCCUA and run it for any platform say 'WN' for windows or MC for Mac and it will generate list of function codes ********** To save the contents of an internal table as a Microsoft
Excel Worksheet when debugging code in SAP R/3 Enterprise:
********** Starts with a Z is homegrown program
********** Can line-size of abap report large than 255? You can have line-size upto 1023.
********** How to find out the number of days between a given date, excluding Saturdays and Sundays and public holidays? Try functions,
|
|
100 ABAP FAQ
Get help for your ABAP problems
ABAP Books
ABAP Tips
Main Index
All the site contents are Copyright © www.erpgreat.com
and the content authors. All rights reserved.
|