Interview questions for smart forms in ABAP.
1. What is smart form?
* Smart forms are used to design the business documents such as invoices, purchase orders, sales orders.
* Smart form is introduced from 4.6C version onwards.
2. What is Form attributes
* These are used to maintain the administrative information that is form name, language, page format, default style.
3. What is Form Interface
* This is used to declare the variables, work areas and internal tables which are needed to transfer the data from print program to layout
4. What is Global definition?
* These are used to declare the variables, work area, internal tables which are needed to implement the logic in the form or layout.
5. What are components of smart forms?
* Global settings.
- Form attribute.
- Form interface.
- Global definition.
* Pages and windows.
- These are used to design the smart form layout.
6. What are event in smart forms?
1. Event on sort begin
* It's an event which is triggered at the first record of each block.
* ADV: - It's used to display the individual headings.
* This is similar as at new field name in the control break statement.
2. Event on sort end
* It's an event which is triggered at the last record of each block.
* ADV: - It's used to display the subtotals.
* This is similar as at end of field name in the control break statement.
Comments
Post a Comment