|
|
ABAP Interview questions
Home »ABAP Interview questions Q. What is Smart Forms? ans. Smart Forms allows you to create forms using a graphical design tool with robust functionality, color, and more. Additionally, all new forms developed at SAP will be created with the new Smart Form solution. Q. How can I make a differentiation between dependent and independent data?- ans. Client dependent or independent transfer reQuirements include client specific or cross client objects in the change reQuests. Workbench objects like SAPscripts are client specific, some entries in customizing are client independent. If you display the object list for one change reQuest, and then for each object the object attributes, you will find the flag client specific. If one object in the task list has this flag on, then that transport will be client dependent. Q. What is the difference between macro and subroutine? ans. Macros can only be used in the program the are defined in and only after the definition are expanded at compilation / generation. Subroutines (FORM) can be called from both the program the are defined in and other programs . A MACRO is more or less an abbreviation for some lines of code that are used more than once or twice. A FORM is a local subroutine (which can be called external). A FUNCTION is (more or less) a subroutine that is called external. Since debugging a MACRO is not really possible, prevent the use of them (I’ve never used them, but seen them in action). If the subroutine is used only local (called internal) use a FORM. If the subroutine is called external (used by more than one program) use a FUNCTION. Q. How data is stored in cluster table?ans. Each field of cluster table behaves as tables which contains the no. of entries. Q. What are client dependant objects in
abap/sap? Q. On which even we can validate the input
fields in module progams? Q. In selection screen I have three fields, plant mat no and material group. If I input plant how do I get the mat no and material group based on plant dynamically? ans. AT SELECTION-SCREEN ON VALUE-REQUEST FOR
MATERIAL. Q. How do you get output from IDOC? Q. When top of the page event is
triggered? Q. Can we create field without data
element and how? Q. How do we debug sapscript? Q. Which transaction code can I used to
analyze the performance of ABAP program. Q. How can I copy a standard table to
make my own z_table.
|
|
|