1) What is SAP R/3?
Ans: The name SAP a German company is an acronym for "Systeme, Anwendungen, Produkte in der Datenverarbeitung." This is translated in English as "Systems, Applications, and Products in Data Processing."
2) Can you create a table with fields not referring to data elements?
Ans: YES. Eg: - ITAB LIKE SPFLI.here we are referencing to a data object (SPFLI) not data element.
3) What are the different types of data dictionary objects?
Ans: Tables, structures, views, domains, data elements, lock objects, Match code objects.
4) What should be the approach for writing a BDC program?
Ans:
Step 1: Converting the legacy system data to a flat file to internal table called” conversion".
Step 2: Transferring the flat file into sap system called "sap data transfer".
Step 3: depending upon the bdc type
Step 2: Transferring the flat file into sap system called "sap data transfer".
Step 3: depending upon the bdc type
i) call transaction (Write the program explicitly)
ii) create sessions (sessions are created and processed. If success data will transfer).
5) What are the problems in processing batch input sessions and How is batch input process
different from processing online?
Ans:
PROBLEMS:
i) If the user forgets to opt for keep session then the session will be automatically removed from the session queue (log remains). However if session is processed we may delete it manually.
ii) If session processing fails data will not be transferred to SAP database table.
6) What does an extract statement do in the ABAP program?
Ans: Once you have declared the possible record types as field groups and defined their structure, you can fill the extract dataset using the following statements: EXTRACT. When the first EXTRACT statement occurs in a program, the system creates the extract dataset and adds the first extract record to it. In each subsequent EXTRACT statement, the new extract record is added to the dataset EXTRACT HEADER.
When you extract the data, the record is filled with the current values of the corresponding fields. As soon as the system has processed the first EXTRACT statement for a field group, the structure of the corresponding extract record in the extract dataset is fixed. You can no longer insert new fields into the field groups and HEADER.
If you try to modify one of the field groups afterwards and use it in another EXTRACT statement, a runtime error occurs. By processing EXTRACT statements several times using different field groups, you fill the extract dataset with records of different length and structure. Since you can modify field groups dynamically up to their first usage in an EXTRACT statement, extract datasets provide the advantage that you need not determine the structure at the beginning of the program.
7) Can a transparent table exist in data dictionary but not in the data base physically?
Ans: No. Transparent table do exist with the same structure both in the dictionary as well as in the database, exactly with the same data and fields.
8) What is the step by step process to create a table in data dictionary?
Ans: Step 1: creating domains (data type, field length, range).
Step 2: creating data elements (properties and type for a table field).
Step 3: creating tables (SE11).
Step 2: creating data elements (properties and type for a table field).
Step 3: creating tables (SE11).
9) What is the typical structure of an ABAP/4 program?
Ans: HEADER, BODY, FOOTER.
10) A situation: An ABAP program creates a batch input session. We need to submit the
program and the batch session in back ground. How to do it?
Ans: Go to SM36 and create background job by giving job name, job class and job steps (JOB SCHEDULING)
11) What are the domains and data elements?
Ans: Domains: formal definition of the data types. They set attributes such as data type, length, and
range. Data element: a field in r/3 system is a data element.
12) What is the alternative to batch input session?
Ans: Call transaction.
13) What is a batch input session?
Ans: BATCH INPUT SESSION is an intermediate step between internal table and database table. Data along with the action is stored in session i.e data for screen fields, to which screen it is passed, program name behind it, and how next screen is processed.
14) What is the advantage of structures? How do you use them in the ABAP programs?
Ans: Adv: - GLOBAL EXISTANCE (these could be used by any other program without creating it again).
15) How many types of tables exist and what are they in data dictionary?
Ans: There are 4 types of tables:
i) Transparent tables - Exists with the same structure both in dictionary as well as in database exactly with the same data and fields. Both Opensql and Nativesql can be used.
ii) Pool tables & Cluster tables - These are logical tables that are arranged as records of transparent tables. One cannot use native sql on these tables (only open sql).They are not manageable directly using database system tools.
iii) Internal tables
16) What is the command in subscript?
17) In ver 3.0b how is the print program to layout set?
18) What’s an effective way of using an internal table record? What are the types of internal tables?
19) In production what is the user exit?
20) What type of user exits have you written?
21) Have you worked with field groups? Have you used Import/Export statements?
22) In the ‘select’ statement what is group by?
23) Have you used performance tuning? What major steps will you use for these?
24) On ABAP: Did you set up a workflow? Are you familiar with all steps for setting up a workflow?
25) Have you created Maintenance dialog or Table Maintenance?
26) How to create client independent tables
27) Difference between client dependent and client independent tables?
28) Have you created database tables?
29) Difference between Search Helps and Match Codes?
30) Elementary search helps, Collective search help.
31) What does an EXEC SQL stmt do in ABAP? What is the disadvantage of using it?
32) What is open sql vs. native sql?
33) What is a collect statement? How is it different from append?
34) If an entry with the same key already exists, the COLLECT statement does not append a new line, but adds the contents of the numeric fields in the work area to the contents of the numeric fields in the existing entry.
35) How can I copy a standard table to make my own z_table?
36) Which transaction code can I used to analyze the performance of ABAP program?
37) How do we debug sap script?
38) Can we create field without data element and how?
39) When top of the page event is triggered?
40) How do you get output from IDOC?
41) 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?
42) On which even we can validate the input fields in module programs?
43) What are client dependant objects in abap/sap?
44) How data is stored in cluster table?
45) What is the difference between Upload and Ws_Upload?
46) Open datasets, Read datasets (Reading and writing data to files)?
Question: Have you processed BDC’s?
48) How do you send files to the legacy systems from SAP and vice versa? How does one know that the legacy files have come on to the SAP server you are working on?
49) What kind of BDC programs is written?
0 comments:
Post a Comment