1.Have you created custom table? Do you always use existing
data elements and domains or create new ones? whatis the
transaction code to see existing data elements and domains?
2.Performance wise inner join is better or For..ALL
entries? why?
3.Where will you place data element domain and field
together in an ABAP Program?
4.How will you pass the data/programs from one system to
other system?
5.How will you print TOP-OF-PAGE in ALV Report?How will you
make ALV Report interactive?
6.In Interactive report if i try to go to 20th list and my
report has only 19 list what will be output?
7.Have you worked on Function Modules?How will you raise
EXCEPTIONS in function modules?
8.Why you say Call transaction is faster than session?
9.How the business is carried out in your organisation?How
did you get specs for coding ? Explain me complete step by
step scenario from client deciding to switch SAP to your
role of coding and after coding explain me how the object
reaches back to client? Dont explain me about 5 phases like
Business blueprint,realization etc?
10.To find User exit in SD module we can use development
class VMOD and find out related exits. Which development
class you use for MM FICO and PP Modules?
Answer Posted / g.shankar
2 - FOR ALL ENTRIES IS ALWAYS BETTER BCOS IT AVOIDS NESTED
SELECTED STATEMENTS AND ALSO REMOVES ANY DUPLICATE
ENTRIES IN THE TABLE
3- IN SE-11 WE CAN DO THAT
4- ASSIGHN THE DATA FIRST TO A PACKAGE SO THAT IT IS
AUTHORISED FOR TRANSPORTATION AND THEN USE TCODE LIKE SE01
OR SE09
5- I THINK WE CAN USE REUSE_ALV_FIELD_CATALOGUE_MERGE .IT
HOLDS THE COLUMN HEADINGS
6- THE CONTROL WILL LEAD TO DUMP.
7-RAISING EXCEPTION IS USED TO CATCH ERRORS IN FUNCTION MODULES.
8-CT IS FASTER BCOS DATA GETS TRANSFERRED TO DATABASE
IMMEDIATELY WHERE AS IN SM DATA IS NOT TRANSFERRED UNTIL THR
SESSION IS PROCESSED.
9-ARE YAAR YEHI 5 PHASE KO HI EXPLAIN KAR DENA..
10- PATA NAHI YAAR..
| Is This Answer Correct ? | 4 Yes | 2 No |
Post New Answer View All Answers
Power is interrupted while transferring data from internal table to application server. How will you determine many records are transferred in session method and call transaction method? : abap bdc
What are the steps to execute session method?
A field containing currency amounts (data type curr) must be assigned to a reference table and a reference field. Explain.? : abap data dictionary
Difference between .Include and .append?
What is Buffering Concept? When should a Table be buffered?
1)can any body tell the transport request number concept and 2)there are 3 screens in one screen u have uploaded the resume and second screen also u have done the same thing but when u are uploading the resume in third screen u got some error in somewhere else but whatever u have uploaded the resume in 1 and 2 should not
Write the bdc table structure? : abap bdc
Explain the use of insert and append statement in sap abap?
I am trying to automate a manual processing of iDOCs in BD87. I used the following code to pass idoc-id to global variable 'DCN' and then skip the first screen of BD87 to go to processing directly. After running this code SET PARAMETER ID 'DCN' FIELD itabhdr-idoc_id. CALL TRANSACTION 'BD87' AND SKIP FIRST SCREEN. it takes me to the first screen because it cannot recognize my idoc-id. How I can pass idoc-id to global? I have used the above code to goto VA02 with VBELN and it worked perfectly.
BDC program to migrate data to SAP R/3 database. The data will be uploaded using transaction ME11. (Session Method) plz mention the detail coding Tahnks, Rahul
10) How to get Item Header in Sales Order?
Name the abap/4 modularization techniques? : abap modularization
A field containing currency amounts (data type curr) must be assigned to a reference table and a reference field. Explain?
What are the types of table fields in the sap abap?
How do you get the number of lines in an internal table? How to use a specific number occurs statement?