
Written by admin on Jun 5th, 2008 | Filed under:
FAQs
BDC Frequently Asked Questions (FAQs)
1. What is full form of BDC Session?
Batch Data Communication Session.
2. What are the steps in a BDC session?
The first step in a BDC session is to identify the screens of the transaction that the program will process. Next step is to write a program to build the BDC table that will be used to submit the data to SAP. The final step is to submit the BDC table to the system in the batch mode or as a single transaction by the CALL TRANSACTION command.
Continue Reading …

Written by admin on Jun 5th, 2008 | Filed under:
FAQs
Transaction Frequently Asked Questions (FAQs)
1. What is a transaction?
- A transaction is dialog program that change data objects in a consistant way.
2. What are the requirements a dialog program must fulfill?
A dialog program must fulfil the following requirements
- a user friendly user interface.
- Format and consistancey checks for the data entered by the user.
- Easy correction of input errors.
- Access to data by storing it in the data bases.
Continue Reading …

Written by admin on Jun 5th, 2008 | Filed under:
FAQs
Interactive Reporting Frequently Asked Questions (FAQs)
1. What is interactive reporting?
It helps you to create easy-to-read lists. You can display an overview list first that contains general information and provide the user with the possibility of choosing detailed information that you display on further lists.
2. What are the uses of interactive reporting?
The user can actively control data retrieval and display during the session. Instead of an extensive and detailed list, you create a basic list with condensed information from which the user can switch to detailed displays by positioning the cursor and entering commands. The detailed information appears in secondary lists.
Continue Reading …

Written by admin on Jun 5th, 2008 | Filed under:
FAQs
Reporting General Frequently Asked Questions (FAQs)
1. The system field, which indicates success or failure of a SQL operation, is SY-SUBRC.
2. What is the syntax for specifying database table name at runtime in SELECT statement.
NAME = ‘SPFL1’.
SELECT * FROM (NAME).
……………….
……………….
ENDSELECT.
3. How do you read selected lines of database table into an internal table in packages of predefined size.
SELECT * FROM INTO TABLE PACKAGE SIZE.
Where n is variable.
Continue Reading …

Written by admin on Jun 5th, 2008 | Filed under:
FAQs
Report Generation - Formatting Frequently Asked Questions FAQs
1. The alignment of a type ‘c’ field in a report is left Aligned.
2. In the statement Write:/15(10) Ofal-lifnr. what do the number 15 and 10 stand for
15 stand for the offset on the screen and 10 stands for the field length displayed.
3. Specify the default alignment for the following field types:
‘D’ – Left, ‘F’-Right, ‘N’-Left, ‘I’-Right, ‘T’-Left.
4. If s_time has the value ‘123456’ how would you get an output of 12:34:56 with a single ‘Write:’ statement.
Write:s_time using edit mask’–:–:–‘.
Continue Reading …