|
Written by anon.
|
|
Sunday, 29 June 2008 |
In release 6.10 a new exception concept has been introduced. Please find below a basic syntax of how to code the new error-handling concept. |
|
Read more...
|
|
|
Written by Kevin Wilson
|
|
Saturday, 24 May 2008 |
The following function module is used to return the text in a readable format. Pass in the message ID, number and parameters and receive the text in MESSAGE_TEXT_OUTPUT.
CALL FUNCTION 'MESSAGE_TEXT_BUILD' EXPORTING msgid = messtab-msgid msgnr = messtab-msgnr msgv1 = messtab-msgv1 msgv2 = messtab-msgv2 msgv3 = messtab-msgv3 msgv4 = messtab-msgv4 IMPORTING message_text_output = w_textout. |
|
|
Written by Anon.
|
|
Thursday, 10 April 2008 |
|
|
|
Read more...
|
|
|
Written by Swarna S
|
|
Wednesday, 27 February 2008 |
ALV report to find the list of infotypes configured in a SAP System |
|
Last Updated ( Wednesday, 27 February 2008 )
|
|
Read more...
|
|
|
Written by Anon.
|
|
Friday, 08 February 2008 |
|
There are two cross-program memory areas to which ABAP programs have access that you can use to pass data between programs. |
|
Read more...
|
|
|
Written by Bence Toth
|
|
Tuesday, 05 February 2008 |
|
Requirement: Choose a transaction and write a Batch Input program with 'Call Transaction'. Do not use the Message tab feature of 'Call Transaction'. In this case the last error message will be at the SY-MSG* system fields. Recreate the complete error message from table T100! (This example is also used by the demonstration of SY-MSG* system fields) |
|
Read more...
|
|
|
Written by Anon.
|
|
Monday, 04 February 2008 |
|
You use the HIDE technique while creating a list level to store line-specific information for later use. To do so, use the HIDE statement as follows: HIDE <f>. |
|
Read more...
|
|
|
Written by Judit Rakovits
|
|
Saturday, 12 January 2008 |
|
Requirement: List the first 100 purchase requsitions at the plant 'PL01' (table EBAN). Then make it possible to change the purchase requisition itself from the list by clicking twice on the row or by using a push-button. |
|
Read more...
|
|
|
Written by Anon.
|
|
Wednesday, 26 December 2007 |
|
|
|
Read more...
|
|
|
Written by Anon.
|
|
Thursday, 11 October 2007 |
Move :- To assign the value of a data object <fl> to a variable < f2 >, use the following statement: MOVE < f1 > TO < f2 >. or the equivalent statement < f2 > = < f1 >. The contents of < f1 > remain unchanged. < f1 > does not have to be a variable - it can also be a literal, a text symbol, or a constant. You must always specify decimal points with a period (.), regardless of the user's personal settings. Multiple value assignments in the form < f4 > = < f3 > = <f2 > = < f1 > .
Assign :- ASSIGN < f > TO < FS >. When you assign the data object, the system checks whether the technical attributes of the data object < f > correspond to any type specifications for the field symbol < FS >. The field symbol adopts any generic attributes of < f > that are not contained in its own type specification. Following the assignment, it points to < f > in memory. |
|
|
Written by Amit khari
|
|
Monday, 17 September 2007 |
|
While doing call transaction, if an error occurs in updation, we declare bdcmsgcoll and store our messages in it, but how to retreive error message from it. |
|
Read more...
|
|
|
Written by Kevin Wilson
|
|
Thursday, 23 August 2007 |
|
Ever received that dreaded message "Time limit exceeded"? When you need to run a report that will go over the Basis timeout setting this is what you need to do.... |
|
Read more...
|
|
|
Written by Anon.
|
|
Monday, 02 July 2007 |
When printing a report, you can print the search conditions or report parameters that the user entered. For instance, if a report output was restricted to plants between 1011 and 1501, you may want to print "Plants Between 1011 and 1501" on the report. This procedure describes the selected parameters. |
|
Read more...
|
|
|
Written by Amit khari
|
|
Saturday, 30 June 2007 |
BC Basis Components-
-ABAP workbench- -BC Basis Programming interfaces --Data transfer
During data transfer, data is transferred from an external system into the SAP R/3 System. •Transfer data from an external system into an R/3 System as it is installed. •Transfer data regularly from an external system into an R/3 System. |
|
Read more...
|
|
|
Written by Amit khari
|
|
Friday, 29 June 2007 |
|
|
|
Read more...
|
|