Vous êtes sur la page 1sur 4

10/19/12

ABAP Quiz No. 3 | ABAP Interview Questions | SAP Techies


Post Article Learn n Earn

Search e.g. ABAP, FICO All


Interview Questions Transaction Codes Institutes Jobs
21

New User? Register | Login


News Announcements

Home SAP R/3 ABAP BASIS

Tutorials

Forums

Books

Classifieds

Home Interview Questions ABAP

AdWord Certification Test Enroll In The Free AdWords Training Program For SEM Professionals! www.Google.co.in/Engage Learn from the #1 guru watch the infamous "Catch 22" video and learn how to get your first job sapcookbook.com
Post your Article

FICO (Financial Accounting & Controling) Business One EC (Enterprise Controlling) TR (Treasury) IM (Investment Management) HR (Human Resource) SD (Sales and Distribution) Logistics Information System MM (Materials Management) PM (Plant Maintenance) PP (Production Planning) QM (Quality Management) BW (Business Warehousing) IS (Industry Solutions) CS (Customer Service) PS (Project Systems) SEM (Strategic Enterprise Management Software) CRM (Customer Relationship Management) SCM (SAP Supply Chain Management) Netweaver SRM (Supplier Relationship Management) Oracle APO Advanced Planner and Optimizer

ABAP Quiz No. 3

This webpage

ShareThis

By: amit butola | 29 Dec 2011 1:15 pm | 334 times viewed | 1 Comments

ABAP Quiz No. 3 Time:15 Minutes 1. ON CHANGE OF can refer to one field only. a) True b) False 2. The number of loop iterations can be controlled via SY-INDEX field. a) True b) False 3. If suppose the condition fails then a) DO loop will be executed once as well as WHILE loop will be executed once. b) DO loop will be executed once as well as WHILE loop will be executed zero times. c) DO loop as well as WHILE loop will be executed zero times. d) none of the above. 4. If CHECK statement is outside the loop structure and if the condition fails, a) subsequent statements in the cun-ent processing block are executed. b) subsequent statements in the cun-ent processing block are not executed. c) the program gets terminated. d) there is an en-or message. e) none of the above. 5. EXIT statement inside the loop tenninates the cun-ent loop. a) True b) False 6. If there are several nested loops then EXIT a) brings you out of innermost loop. b) report processing is terminated and the list is displayed. c) there is abnormal termination of program. d) none of the above. 7. Field-string consists of 4 fields with types Numeric, Character, Packed, Integer, then field- string is of type --------------a) Numeric b) Character c) Packed d) Integer. 8. The field- string does not contain header- line a) True b) False 9. Internal table can be shared by every-one. a) True b) False 10. State one example of field- string , Internal table ( syntactically ) . 11. FILLER is a reserve word in ABAP/4. a) True b) False 12. MOVE-CORRESPONDING < f 1 > to < f2 > transports values a) field by field b) string by string c) table by table. 13. The size of the table can be changed dynamically. a) True b) False 14. If you want to refer to an SAP table structure when declaring an internal table, you can use --------------- statement within BEGIN OF < tab > ---- ENDOF < tab >. 15. The only difference between field- string and internal table is --------------parameter.

Ads by Google

Sap One Sap ABAP Support What Is Sap

www.saptechies.com/abap-quiz-3/

1/4

10/19/12

ABAP Quiz No. 3 | ABAP Interview Questions | SAP Techies


a) COUNT b) OCCURSc) NUMBERd) LIKE. 16. Answer in brief difference between APPEND and COLLECT statement. 17. APPEND SORTED BY sorts the table by field in --------------order by default. a) Ascending b) Descending c) Bothd) none. 18. SORT statement can sort, a) external as well as internal table. b) only database table . c) only internal table. 19. Can you restrict the processing of internal table. a) True b) False 20. You can read internally tables, a) only sequentially, b) only direct, c) both, sequentially as well as direct, d) none of the above. 21. --------------- , system field keeps track of each loop pass in LOOP statement. a) SY-TABIX b) SY-INDEX c) SY-STEPL . 22. Name the control breaks used during processing of an internal table with the LOOP statement. 23. With INSERT, a new line is inserted with the contents of header line --------------the current line. a) on b) after c) before d) none of them. 24. --------------- deletes all table lines, but storage space is not released. --------------- initializes the header line. --------------- releases the storage space. 25. Answer in brief the difference between LINES parameter and OCCURSparameter in DESCRIBE statement. 26. Within an ABAP/4 editor can you invoke another editor? a) Yes b) No. ANSWERS TO Quiz 3 1. False 2. False 3. b) 4. b) , subsequent statements in the current processing block are not executed. 5. True 6. a) 7. Character 8. True 9. False 10. Field string : BEGIN OF REC, Name (10) , END OF REC. Internal table : BEGIN OF REC OCCURS 10, Name (10) , END OF REC. 11. False. 12. a) . 13. False. 14. INCLUDE STRUCTURE. 15. OCCURS. 16. The APPEND statement appends the contents of the header line at the end of the internal table. The COLLECT statement includes the header line of an internal table in the table as the new entry or adds it to an existing entry of the same type. 17. Descending. 18. c) , only internal table.

www.saptechies.com/abap-quiz-3/

2/4

10/19/12
19. Yes

ABAP Quiz No. 3 | ABAP Interview Questions | SAP Techies

20. c) both, sequentially as well as direct. 21. SY-TABIX. 22. AT FIRST --- ENDAT. AT NEW ------ ENDAT. AT END OF ------ENDAT. AT LAST------ENDAT. 23. before. 24. Refresh , Clear, Free. 25. The LINES parameter allows you to find out the number of existing table entries. The OCCURS parameter contains the OCCURS value as specified in the definition. 26. Yes.

Ads by Google

Sap SD Modules

Process Sap

Sap Basics

Sap Application

Comments
Good Ques & Ans dear Amit . Thank u By: vishal singh | 18 May 2012

Leave a comment
Sign up for SAPTechies

Submit Comment

Related
Tutorials Forum Books Interview Questions

SCHEDMAN: Trace for background processing


1. Implement the program changes described below. 2. Create the ABAP ZSM TRACE (see the correction instructions for the source code). 3. After that you can activate a trace by starting the ABAP...

ABAP Dumps T-Code ST22


In ABAP Dump Log Analysis we have to create logs for previous day. And we have to report for Critical and No critical errors. Run T-code ST22 1. Click on Yesterday radio button. 2. Click on Edit...

Hiding UI element libraries in Web Dynpro ABAP View Designer


In the Web Dynpro ABAP View Designer, the system offers user interface (UI) elements from the following libraries: EP_INTERNAL M OBILE PROPOSALS SAP_HOM E The UI elements are modeled but...

Is SAP ABAP a career sand trap?


I'm a recent graduate with a BSCS. M y areas of interest include C++, Java, C# and systems type programming. I've had one job offer so far. They want an SAP BW ABAP programmer. They provide 4 weeks...

Page Numbers - ABAP


Code: REPORT Y_PAGE_NUM BER_EXERCISE NO STANDARD PAGE HEADING LINE-SIZE 80 LINE-COUNT 55. TABLES: VBAP. SELECTOPTIONS: ORDER FOR VBAP-VBELN. DATA: IVBAP TYPE STANDARD TABLE OF VBAP...

What is difference between Open SQL & Native SQL?


Open SQL Open SQL allows developers to control SQL statements directly. Open SQL encapsulates the semantics for statement execution, parameter binding and results fetching provided by each database...

Using Different Color in ABAP


* * Different Color in ABAP * * REPORT ZCOLOR LINE-SIZE 90 NO STANDARD PAGE HEADING. DATA: BEGIN OF TP OCCURS 10, ID, NR(8), TEXT(255), END OF TP. DATA: LENGTH TYPE I VALUE 8, " Length...

ABAP short dump with "CNTL_ERROR"


I am getting an ABAP short dump with "CNTL_ERROR" while using an input script. What do I do? The message "CNTL_ERROR" appear when you are using some ot the SAP enjoy...

How to work around with the retraction of data into R/3 from SEM www.saptechies.com/abap-quiz-3/ 3/4

10/19/12

ABAP Quiz No. 3 | ABAP Interview Questions | SAP Techies


SEM BPS provides standard retraction functionality for certain functional areas, like cost center planning. If you want to retract data for these functional areas, you can use standard functions...

Parameters Issue
I have 3 parameters in my ABAP Program: Parameters: p_date like ZSTATS_CUM L2-zdate , p_user like ZSTATS_CUM L2-account, p_tcode like ZSTATS_CUM L2-tcode. and I put...

Drill Down on ALV Grid using ABAP OO


I'm trying to do a drill down on Sales Order number when displaying my output using ALV Grid implementing ABAP OO. As you can see there's no exporting of i_callback_user_command and it_events on...

ABAP Certification Exam Format


Hi all, Here are the format of SAP ABAP Certification Exam Deeply Concentrate on following topics: Advance ABAP Enhancement and M odification Dialog programming List creation...

Program to Mass display Purchase Order and print history


Program to mass display or print customized abap report Instead of checking your Purchase Order History one at a time. M ass check PO history instead of doing it one at time via...

Missing output of the RFC caller data with runtime error


Problem In certain cases, the RFC data of the calling program may not be logged if ABAP runtime errors occur in an RFC context. Reason and Prerequisites If an external program triggers one...

Which SAP module do I select for my Career in SAP?


M any people come to me and they say that which SAP module is best for me? This is a very common Question for an person who is new to SAP and want to make his carrier in SAP. If some one asks this...

Ads by Google

Sap Fi Co

Sap Gui

Sap Transaction

Sap MM

Tutorials | Forum | Books | Interview Questions | Transaction C odes | Institutes | Jobs | C lassifieds | News | Announcements | SAP Notes RSS/Syndication | C ontact Us | Terms Of Use | Terms & C onditions 2005-2012 SAPTechies. All rights reserved. SAP Techies

www.saptechies.com/abap-quiz-3/

4/4

Vous aimerez peut-être aussi