SAP Interview Questions III
Can we have more than one selection-screen and how?
Ans     Yes, we can have more than one selection screen.
Â
           Selection-screen begin of block honey with frame title text-101.
           Select-options : deptno for zrekha_deptt-deptno.
           Selection-screen end of block honey.
Â
           Selection-screen begin of block honey1 with frame title text-102.
           Select-options : dname for zrekha_deptt-dname.
           Selection-screen end of block honey1.
Â
How to declare select-option as a parameter?
Ans     SELECT-OPTIONS: specify are displayed on the selection screen for the user to enter values.
Â
           Parameters: dname like dept-dname.
Â
           Select-options: dname for dept-dname.
Â
How can u write programmatically value help to a field without using search help and match codes?
Ans     By using two types of function modules to be called in SAP Script:
Â
1)Â Â Â Â Â HELP_OBJECT_SHOW_FOR_FIELD
2)Â Â Â Â Â HELP_OBJECT_SHOW
Â
What are the differences between SE01, SE09 and SE10?
Ans     SE01   -          Correction & Transport Organizer
           SE09   -          Workbench Organizer
           SE10   -          Customizing Organizer
Â
How to set destination?
Ans
Â
What are the function module types?
Ans
Â
What are tables?
Ans     Tables : ZREKHA_EMP.
Â
It creates a structure – the table work area in a program for the database tables, views or structure ZREKHA_EMP. The table work area has the same name as the object for which we created it. ZREKHA_EMP must be declared in the ABAP dictionary. The name and sequence of fields in the table work area ZREKHA_EMP corresponds exactly to the sequence of fields in the database table, view definition in the ABAP dictionary.
Â
What are client-dependant tables and independent tables?
How to distinguish client-dependant tables from independent tables?
What is the use of Table maintenance allowed?
Ans     Mark the Table maintenance allowed flag if users with the corresponding authorization may change the data in the table using the Data Browser (Transaction SE16). If the data in the table should only be maintained with programs or with the table view maintenance transaction (Transaction SM30), you should not set the flag.























