SlideShare ist ein Scribd-Unternehmen logo
1 von 43
SAP ABAP Multiple Choice
Questions and Answers

Learning IT Courses Has Never Been This Easy

www.ITLearnMore.com
1. When using Open SQL statements in an
ABAP/4 program, you must ensure the
following ?
a) The database system being addressed must be
supported by SAP.
b) The database tables being addressed must be defined in
the ABAP/4 dictionary.
c) Both a and b
d) None of these
1. When using Open SQL statements in an
ABAP/4 program, you must ensure the
following.
a) The database system being addressed must be
supported by SAP.
b) The database tables being addressed must be defined in
the ABAP/4 dictionary.
c) Both a and b
d) None of these
Answer : c) Both a and b
2. Which of the following statements are
correct?
a) A database interface translates SAP’s Open SQL
statements into SQL commands specific to the database in
use. Native SQL statements access the database directly.
b) When you use Native SQL, the addressed database tables
do not have to be known to the ABAP/4 dictionary. In
Open SQL, the addressed database tables must be defined
in the ABAP/4 dictionary.
c) There is automatic client handling in Native SQL
whereas clients must always be specified in Open SQL.
d) Both a and b
2. Which of the following statements are
correct?
a) A database interface translates SAP’s Open SQL
statements into SQL commands specific to the database in
use. Native SQL statements access the database directly.
b) When you use Native SQL, the addressed database tables
do not have to be known to the ABAP/4 dictionary. In
Open SQL, the addressed database tables must be defined
in the ABAP/4 dictionary.
c) There is automatic client handling in Native SQL
whereas clients must always be specified in Open SQL.
d) Both a and b
Answer : d) Both a and b
3. Which of the following are true?
a) TABLE is used as a synonym for STANDARD TABLE
b) Explicit or implicit index operations
c) All hashed tables are index tables.
d) both a and b
3. Which of the following are true?
a) TABLE is used as a synonym for STANDARD TABLE
b) Explicit or implicit index operations
c) All hashed tables are index tables.
d) both a and b
Answer : d) both a and b
4. Can a transparent table exist in data
dictionary but not in the database physically?
a) True
b) False
4. Can a transparent table exist in data
dictionary but not in the database physically?
a) True
b) False
Answer : a) True
5.Can you create a table with fields not referring
to data elements?
a) TRUE
b) FALSE
5.Can you create a table with fields not referring
to data elements?
a) TRUE
b) FALSE
Answer : a) TRUE
6.How do you create a batch input session for a
transaction?
a)‘Call transaction’ in background mode.
b)‘Call transaction’ in error mode.
c)‘Bdc_insert’ for the transaction.
d)None of the above.
6.How do you create a batch input session for a
transaction?
a)‘Call transaction’ in background mode.
b)‘Call transaction’ in error mode.
c)‘Bdc_insert’ for the transaction.
d)None of the above.
Answer : c)‘Bdc_insert’ for the transaction.
7.What is the alternative to batch input session?
a) Load module
b) Call transaction
c) BAPI
d) Idoc segment
7.What is the alternative to batch input session?
a) Load module
b) Call transaction
c) BAPI
d) Idoc segment
Answer : b) Call transaction
8.The following are true about ‘EXEC SQL’ ?
a)You can end the Native SQL with a semicolon.
b)You can end the Native SQL with a period.
c)You cannot perform reliable authorization checks using
EXEC SQL.
d)Both a and c
8.The following are true about ‘EXEC SQL’.
a)You can end the Native SQL with a semicolon.
b)You can end the Native SQL with a period.
c)You cannot perform reliable authorization checks
using EXEC SQL.
d)Both a and c
Answer : d)Both a and c
9.Which of the following is true about database
locking ?
a) Database systems set physical locks on all lines affected by
a database call.
b) Read locks prevent the setting of further read locks for the
objects in question.
c) Read locks prevent other transactions from setting write
locks for the objects in question.
d)Both a and c
9.Which of the following is true about database
locking.
a) Database systems set physical locks on all lines affected by
a database call.
b) Read locks prevent the setting of further read locks for the
objects in question.
c) Read locks prevent other transactions from setting write
locks for the objects in question.
d)Both a and c
Answer : d)Both a and c
10. What are field symbols?
a) Field symbols are like pointers in C that can point to any
data object in ABAP/4 and to structures defined in ABAP/4
dictionary.
b)Field symbols have to be created with type specifications
only.
c)All operations you have programmed with the field
symbol are carried out with the assigned field.
d) Both a and c
10. What are field symbols?
a) Field symbols are like pointers in C that can point to any
data object in ABAP/4 and to structures defined in ABAP/4
dictionary.
b)Field symbols have to be created with type specifications
only.
c)All operations you have programmed with the field
symbol are carried out with the assigned field.
d) Both a and c
Answer : d) Both a and c
11. What is EXTRACT statement?
a) The first EXTRACT statement extracts the first extract
record.
b) The first EXTRACT statement creates the extract dataset
and adds the first extract record.
c) Each extract record contains, if specified, the fields of the
field group.
b) Both a and c
11. What is EXTRACT statement?
a) The first EXTRACT statement extracts the first extract
record.
b) The first EXTRACT statement creates the extract dataset
and adds the first extract record.
c) Each extract record contains, if specified, the fields of the
field group.
b) Both a and c
Answer : b) Both a and c
12. You cannot assign a local data object defined
in a subroutine or function module to a field
group ?
a) True
b) False
12. You cannot assign a local data object defined
in a subroutine or function module to a field
group.
a) True
b) False
Answer : a) True
13. Which of the following are true?
a) COLLECT can only be used with STANDARD TABLE.
b) To use COLLECT, the internal table should be derived
from a database table with an explicit key.
c) If the system finds a numeric component, that is not part
of the key, the numeric fields that are not part of the table
key (see ABAP number types) are added to the sum total of
the existing entries. If it does not find an entry, control
passes on to the next record in the internal table.
d) If the system finds a numeric component, that is not part
of the key, the numeric fields that are not part of the table
key (see ABAP number types) are added to the sum total of
the existing entries. If it does not find an entry, the system
creates a new entry instead.
13. Which of the following are true?
a) COLLECT can only be used with STANDARD TABLE.
b) To use COLLECT, the internal table should be derived
from a database table with an explicit key.
c) If the system finds a numeric component, that is not part
of the key, the numeric fields that are not part of the table
key (see ABAP number types) are added to the sum total of
the existing entries. If it does not find an entry, control
passes on to the next record in the internal table.
d) If the system finds a numeric component, that is not part
of the key, the numeric fields that are not part of the table
key (see ABAP number types) are added to the sum total of
the existing entries. If it does not find an entry, the system
creates a new entry instead.
Answer : D
14. Which of the following are true?
a)ABAP queries are created by associating them to a logical
database or through a direct read/data retrieval program.
b) ABAP queries are created from functional areas that are
created from a logical database or through a direct
read/retrieval program.
c)ABAP queries are created from user groups attached to
the functional areas that are created from a logical
database or through a direct read/retrieval program.
d)ABAP queries are created through the regular report
program.
14. Which of the following are true?
a)ABAP queries are created by associating them to a logical
database or through a direct read/data retrieval program.
b) ABAP queries are created from functional areas that are
created from a logical database or through a direct
read/retrieval program.
c)ABAP queries are created from user groups attached to
the functional areas that are created from a logical
database or through a direct read/retrieval program.
d)ABAP queries are created through the regular report
program.
Answer : C
15. A logical unit of work (LUW or transaction)
begins …….. ?
a) Each time you start a transaction.
b) Each time you end a transaction.
c) Before the database changes of the previous LUW
have been cancelled (database rollback).
d) Both a and c
15. A logical unit of work (LUW or transaction)
begins
a) Each time you start a transaction.
b) Each time you end a transaction.
c) Before the database changes of the previous LUW
have been cancelled (database rollback).
d) Both a and c
Answer : d) Both a and c
16. The following are true about SAP script
control commands ?
a)If a control command is unknown or it contains syntax
errors, the line containing it will be printed out as it is.
b)If a control command is unknown or it contains syntax
errors, the line containing it will be treated as a comment
line.
c)A maximum of one control command may appear in each
line.
d) Both b and c
16. The following are true about SAP script
control commands.
a)If a control command is unknown or it contains syntax
errors, the line containing it will be printed out as it is.
b)If a control command is unknown or it contains syntax
errors, the line containing it will be treated as a comment
line.
c)A maximum of one control command may appear in each
line.
d) Both b and c
Answer : d) Both b and c
17. To output SAP script layout sets, in the print
program ?
a) You must always start the output with OPEN_FORM and
end it with CLOSE_FORM.
b) Within one transaction, you can use only one
OPEN_FORM and CLOSE_FORM to open and close a
layout set.
c) WRITE_FORM should be used within an OPEN_FORM
and CLOSE_FORM.
d) Both a and c
17. To output SAP script layout sets, in the print
program ?
a) You must always start the output with OPEN_FORM and
end it with CLOSE_FORM.
b) Within one transaction, you can use only one
OPEN_FORM and CLOSE_FORM to open and close a
layout set.
c) WRITE_FORM should be used within an OPEN_FORM
and CLOSE_FORM.
d) Both a and c
Answer : d) Both a and c
18. The transaction CMOD and SMOD are….. ?
a) Used to create enhancements to standard SAP
programs.
b) Used to create enhancements to ABAP queries.
c) Used to create the user exits, menu exits and screen
exits.
d) Both a and c
18. The transaction CMOD and SMOD are
a) Used to create enhancements to standard SAP
programs.
b) Used to create enhancements to ABAP queries.
c) Used to create the user exits, menu exits and screen
exits.
d) Both a and c
Answer : d) Both a and c
19. ABAP Query tool is used to………… ?
a) Enquire about a running-program status
b) Automatically generate code for reporting
c) Perform database operations for user-written programs
d) None of the above
19. ABAP Query tool is used to:
a) Enquire about a running-program status
b) Automatically generate code for reporting
c) Perform database operations for user-written programs
d) None of the above
Answer : b) Automatically generate code for reporting
20. Logical databases must be used to create an
ABAP Query……….. ?
a) True
b) False
20. Logical databases must be used to create an
ABAP Query
a) True
b) False

Answer : b) False
Contact Us:
For more details, please log on to www.ITLearnMore.com

You can also Find us on :
Thank you !

Weitere ähnliche Inhalte

Was ist angesagt?

Fiori for s4 hana troubleshooting tips and tricks
Fiori for s4 hana  troubleshooting tips and tricksFiori for s4 hana  troubleshooting tips and tricks
Fiori for s4 hana troubleshooting tips and tricksJasbir Khanuja
 
0104 abap dictionary
0104 abap dictionary0104 abap dictionary
0104 abap dictionaryvkyecc1
 
Step by step procedure for loading of data from the flat file to the master d...
Step by step procedure for loading of data from the flat file to the master d...Step by step procedure for loading of data from the flat file to the master d...
Step by step procedure for loading of data from the flat file to the master d...Prashant Tyagi
 
Table maintenance generator and its modifications
Table maintenance generator and its modificationsTable maintenance generator and its modifications
Table maintenance generator and its modificationsscribid.download
 
Sap abap modularization interview questions
Sap abap modularization interview questionsSap abap modularization interview questions
Sap abap modularization interview questionsPradipta Mohanty
 
SAP ABAP HR TRAINING
SAP ABAP HR TRAININGSAP ABAP HR TRAINING
SAP ABAP HR TRAININGJoshiRavin
 
Beginner’s guide to sap abap 1
Beginner’s guide to sap abap 1Beginner’s guide to sap abap 1
Beginner’s guide to sap abap 1Panduka Bandara
 
Sap abap interview questions
Sap abap interview questionsSap abap interview questions
Sap abap interview questionskssr99
 
Technical Overview of CDS View - SAP HANA Part II
Technical Overview of CDS View - SAP HANA Part IITechnical Overview of CDS View - SAP HANA Part II
Technical Overview of CDS View - SAP HANA Part IIAshish Saxena
 
Object oriented approach to ALV Lists in ABAP
Object oriented approach to ALV Lists in ABAPObject oriented approach to ALV Lists in ABAP
Object oriented approach to ALV Lists in ABAPNoman Mohamed Hanif
 
SAP SD interview questions
SAP SD interview questions SAP SD interview questions
SAP SD interview questions IT LearnMore
 
Sap abap database table
Sap abap database tableSap abap database table
Sap abap database tableDucat
 
End to-end sap fiori extensibility use case
End to-end sap fiori extensibility use caseEnd to-end sap fiori extensibility use case
End to-end sap fiori extensibility use casedkr786
 

Was ist angesagt? (20)

Fiori for s4 hana troubleshooting tips and tricks
Fiori for s4 hana  troubleshooting tips and tricksFiori for s4 hana  troubleshooting tips and tricks
Fiori for s4 hana troubleshooting tips and tricks
 
0104 abap dictionary
0104 abap dictionary0104 abap dictionary
0104 abap dictionary
 
Index in SAP ABAP
Index in SAP ABAPIndex in SAP ABAP
Index in SAP ABAP
 
BRF+ Walk through
BRF+ Walk throughBRF+ Walk through
BRF+ Walk through
 
Step by step procedure for loading of data from the flat file to the master d...
Step by step procedure for loading of data from the flat file to the master d...Step by step procedure for loading of data from the flat file to the master d...
Step by step procedure for loading of data from the flat file to the master d...
 
Table maintenance generator and its modifications
Table maintenance generator and its modificationsTable maintenance generator and its modifications
Table maintenance generator and its modifications
 
Abap Questions
Abap QuestionsAbap Questions
Abap Questions
 
Sap abap modularization interview questions
Sap abap modularization interview questionsSap abap modularization interview questions
Sap abap modularization interview questions
 
SAP ABAP HR TRAINING
SAP ABAP HR TRAININGSAP ABAP HR TRAINING
SAP ABAP HR TRAINING
 
Beginner’s guide to sap abap 1
Beginner’s guide to sap abap 1Beginner’s guide to sap abap 1
Beginner’s guide to sap abap 1
 
Sap abap interview questions
Sap abap interview questionsSap abap interview questions
Sap abap interview questions
 
Technical Overview of CDS View - SAP HANA Part II
Technical Overview of CDS View - SAP HANA Part IITechnical Overview of CDS View - SAP HANA Part II
Technical Overview of CDS View - SAP HANA Part II
 
Object oriented approach to ALV Lists in ABAP
Object oriented approach to ALV Lists in ABAPObject oriented approach to ALV Lists in ABAP
Object oriented approach to ALV Lists in ABAP
 
SAP SD interview questions
SAP SD interview questions SAP SD interview questions
SAP SD interview questions
 
Abap hr programing
Abap hr programingAbap hr programing
Abap hr programing
 
Abap dictionary 1
Abap dictionary 1Abap dictionary 1
Abap dictionary 1
 
Sap abap database table
Sap abap database tableSap abap database table
Sap abap database table
 
sap script overview
sap script overviewsap script overview
sap script overview
 
Module pool programming
Module pool programmingModule pool programming
Module pool programming
 
End to-end sap fiori extensibility use case
End to-end sap fiori extensibility use caseEnd to-end sap fiori extensibility use case
End to-end sap fiori extensibility use case
 

Andere mochten auch

SAP ABAP Latest Interview Questions with Answers by Garuda Trainings
SAP ABAP Latest Interview Questions with Answers by Garuda TrainingsSAP ABAP Latest Interview Questions with Answers by Garuda Trainings
SAP ABAP Latest Interview Questions with Answers by Garuda TrainingsGaruda Trainings
 
SAP ADMINISTRATION
SAP ADMINISTRATIONSAP ADMINISTRATION
SAP ADMINISTRATIONAly Adel
 
Sap transaction-codes-list
Sap transaction-codes-listSap transaction-codes-list
Sap transaction-codes-listRaj p
 
Sap abap online training By Keylabstraining
Sap abap online training By KeylabstrainingSap abap online training By Keylabstraining
Sap abap online training By Keylabstrainingkeylabstraining
 
Maximizing SAP ABAP Performance
Maximizing SAP ABAP PerformanceMaximizing SAP ABAP Performance
Maximizing SAP ABAP PerformancePeterHBrown
 
Day1 Sap Basis Overview V1 1
Day1 Sap Basis Overview V1 1Day1 Sap Basis Overview V1 1
Day1 Sap Basis Overview V1 1Guang Ying Yuan
 
Yash technologies interview questions and answers
Yash technologies interview questions and answersYash technologies interview questions and answers
Yash technologies interview questions and answersGarySpeed1234
 
Exclusive SAP Basis Training Book | www.sapdocs.info
Exclusive SAP Basis Training Book | www.sapdocs.infoExclusive SAP Basis Training Book | www.sapdocs.info
Exclusive SAP Basis Training Book | www.sapdocs.infosapdocs. info
 
Lsmw ppt in SAP ABAP
Lsmw ppt in SAP ABAPLsmw ppt in SAP ABAP
Lsmw ppt in SAP ABAPAabid Khan
 
Introduction to ABAP
Introduction to ABAPIntroduction to ABAP
Introduction to ABAPsapdocs. info
 
Sap abap ale idoc
Sap abap ale idocSap abap ale idoc
Sap abap ale idocBunty Jain
 

Andere mochten auch (16)

SAP ABAP Latest Interview Questions with Answers by Garuda Trainings
SAP ABAP Latest Interview Questions with Answers by Garuda TrainingsSAP ABAP Latest Interview Questions with Answers by Garuda Trainings
SAP ABAP Latest Interview Questions with Answers by Garuda Trainings
 
Smart form
Smart formSmart form
Smart form
 
SAP ADMINISTRATION
SAP ADMINISTRATIONSAP ADMINISTRATION
SAP ADMINISTRATION
 
Sap transaction-codes-list
Sap transaction-codes-listSap transaction-codes-list
Sap transaction-codes-list
 
Sap abap online training By Keylabstraining
Sap abap online training By KeylabstrainingSap abap online training By Keylabstraining
Sap abap online training By Keylabstraining
 
Maximizing SAP ABAP Performance
Maximizing SAP ABAP PerformanceMaximizing SAP ABAP Performance
Maximizing SAP ABAP Performance
 
Day1 Sap Basis Overview V1 1
Day1 Sap Basis Overview V1 1Day1 Sap Basis Overview V1 1
Day1 Sap Basis Overview V1 1
 
SAP Smart forms
SAP Smart formsSAP Smart forms
SAP Smart forms
 
Manoj Vazirani_CV
Manoj Vazirani_CVManoj Vazirani_CV
Manoj Vazirani_CV
 
Sap abap
Sap abapSap abap
Sap abap
 
Yash technologies interview questions and answers
Yash technologies interview questions and answersYash technologies interview questions and answers
Yash technologies interview questions and answers
 
Exclusive SAP Basis Training Book | www.sapdocs.info
Exclusive SAP Basis Training Book | www.sapdocs.infoExclusive SAP Basis Training Book | www.sapdocs.info
Exclusive SAP Basis Training Book | www.sapdocs.info
 
Lsmw ppt in SAP ABAP
Lsmw ppt in SAP ABAPLsmw ppt in SAP ABAP
Lsmw ppt in SAP ABAP
 
Introduction to ABAP
Introduction to ABAPIntroduction to ABAP
Introduction to ABAP
 
Sap abap ale idoc
Sap abap ale idocSap abap ale idoc
Sap abap ale idoc
 
SAP ABAP data dictionary
SAP ABAP data dictionarySAP ABAP data dictionary
SAP ABAP data dictionary
 

Ähnlich wie SAP ABAP Practice exam

Top 10 sap abap faqs-www.bigclasses.com
Top 10 sap abap faqs-www.bigclasses.comTop 10 sap abap faqs-www.bigclasses.com
Top 10 sap abap faqs-www.bigclasses.combigclasses.com
 
Interview qq
Interview qqInterview qq
Interview qqsuryaaaaq
 
Top 35-interview-questions-on-sap-abap
Top 35-interview-questions-on-sap-abapTop 35-interview-questions-on-sap-abap
Top 35-interview-questions-on-sap-abapprathamesh4865
 
Prueba de conociemientos Fullsctack NET v2.docx
Prueba de conociemientos  Fullsctack NET v2.docxPrueba de conociemientos  Fullsctack NET v2.docx
Prueba de conociemientos Fullsctack NET v2.docxjairatuesta
 
15 questions sql advance
15 questions sql   advance15 questions sql   advance
15 questions sql advanceNaviSoft
 
Oracle dba interview questions with answer
Oracle dba interview questions with answerOracle dba interview questions with answer
Oracle dba interview questions with answerupenpriti
 
SBI IT (Systems) Assistant Manager Question Paper
SBI IT (Systems) Assistant Manager Question PaperSBI IT (Systems) Assistant Manager Question Paper
SBI IT (Systems) Assistant Manager Question PaperHarish Rawat
 
Db2考试测试题
Db2考试测试题Db2考试测试题
Db2考试测试题fm2008
 
200 mcq c++(Ankit dubey)
200 mcq c++(Ankit dubey)200 mcq c++(Ankit dubey)
200 mcq c++(Ankit dubey)Ankit Dubey
 
MCQ Select the correct answer.1. What does SQL stand fora.pdf
MCQ  Select the correct answer.1. What does SQL stand fora.pdfMCQ  Select the correct answer.1. What does SQL stand fora.pdf
MCQ Select the correct answer.1. What does SQL stand fora.pdfsaxenaavnish1
 
Java questions1
Java questions1Java questions1
Java questions1yash4884
 
Qtp certification questions2
Qtp certification questions2Qtp certification questions2
Qtp certification questions2Ramu Palanki
 
Qtp certification questions2
Qtp certification questions2Qtp certification questions2
Qtp certification questions2Ramu Palanki
 
C tadm51 70_sample_items
C tadm51 70_sample_itemsC tadm51 70_sample_items
C tadm51 70_sample_itemsdilip12_mcp
 
Goals1)Be able to work with individual bits in java.2).docx
Goals1)Be able to work with individual bits in java.2).docxGoals1)Be able to work with individual bits in java.2).docx
Goals1)Be able to work with individual bits in java.2).docxjosephineboon366
 
Name _______________________________ Class time __________.docx
Name _______________________________    Class time __________.docxName _______________________________    Class time __________.docx
Name _______________________________ Class time __________.docxrosemarybdodson23141
 
Dat 305 dat305 dat 305 education for service uopstudy.com
Dat 305 dat305 dat 305 education for service   uopstudy.comDat 305 dat305 dat 305 education for service   uopstudy.com
Dat 305 dat305 dat 305 education for service uopstudy.comULLPTT
 

Ähnlich wie SAP ABAP Practice exam (20)

Top 10 sap abap faqs-www.bigclasses.com
Top 10 sap abap faqs-www.bigclasses.comTop 10 sap abap faqs-www.bigclasses.com
Top 10 sap abap faqs-www.bigclasses.com
 
Interview qq
Interview qqInterview qq
Interview qq
 
Top 35-interview-questions-on-sap-abap
Top 35-interview-questions-on-sap-abapTop 35-interview-questions-on-sap-abap
Top 35-interview-questions-on-sap-abap
 
Prueba de conociemientos Fullsctack NET v2.docx
Prueba de conociemientos  Fullsctack NET v2.docxPrueba de conociemientos  Fullsctack NET v2.docx
Prueba de conociemientos Fullsctack NET v2.docx
 
50058334 informatica
50058334 informatica50058334 informatica
50058334 informatica
 
15 questions sql advance
15 questions sql   advance15 questions sql   advance
15 questions sql advance
 
Sap abap Q&A
Sap abap Q&A Sap abap Q&A
Sap abap Q&A
 
Oracle dba interview questions with answer
Oracle dba interview questions with answerOracle dba interview questions with answer
Oracle dba interview questions with answer
 
SBI IT (Systems) Assistant Manager Question Paper
SBI IT (Systems) Assistant Manager Question PaperSBI IT (Systems) Assistant Manager Question Paper
SBI IT (Systems) Assistant Manager Question Paper
 
Db2考试测试题
Db2考试测试题Db2考试测试题
Db2考试测试题
 
200 mcq c++(Ankit dubey)
200 mcq c++(Ankit dubey)200 mcq c++(Ankit dubey)
200 mcq c++(Ankit dubey)
 
MCQ Select the correct answer.1. What does SQL stand fora.pdf
MCQ  Select the correct answer.1. What does SQL stand fora.pdfMCQ  Select the correct answer.1. What does SQL stand fora.pdf
MCQ Select the correct answer.1. What does SQL stand fora.pdf
 
Java questions1
Java questions1Java questions1
Java questions1
 
Qtp certification questions2
Qtp certification questions2Qtp certification questions2
Qtp certification questions2
 
Qtp certification questions2
Qtp certification questions2Qtp certification questions2
Qtp certification questions2
 
C tadm51 70_sample_items
C tadm51 70_sample_itemsC tadm51 70_sample_items
C tadm51 70_sample_items
 
Goals1)Be able to work with individual bits in java.2).docx
Goals1)Be able to work with individual bits in java.2).docxGoals1)Be able to work with individual bits in java.2).docx
Goals1)Be able to work with individual bits in java.2).docx
 
Mcq tableau.docx
Mcq tableau.docxMcq tableau.docx
Mcq tableau.docx
 
Name _______________________________ Class time __________.docx
Name _______________________________    Class time __________.docxName _______________________________    Class time __________.docx
Name _______________________________ Class time __________.docx
 
Dat 305 dat305 dat 305 education for service uopstudy.com
Dat 305 dat305 dat 305 education for service   uopstudy.comDat 305 dat305 dat 305 education for service   uopstudy.com
Dat 305 dat305 dat 305 education for service uopstudy.com
 

Mehr von IT LearnMore

SAP Success Factors Online Training
SAP Success Factors Online TrainingSAP Success Factors Online Training
SAP Success Factors Online TrainingIT LearnMore
 
SAP HCM Consultant
SAP HCM ConsultantSAP HCM Consultant
SAP HCM ConsultantIT LearnMore
 
SAP MM Practice exam
SAP MM Practice examSAP MM Practice exam
SAP MM Practice examIT LearnMore
 
SAP SD Practice Exam
SAP SD Practice ExamSAP SD Practice Exam
SAP SD Practice ExamIT LearnMore
 
SAP SRM Practice Exam
SAP SRM Practice ExamSAP SRM Practice Exam
SAP SRM Practice ExamIT LearnMore
 
SAP BASIS Practice Exam
SAP BASIS Practice ExamSAP BASIS Practice Exam
SAP BASIS Practice ExamIT LearnMore
 
SAP HR AND HCM Practice Exam
SAP HR AND HCM Practice ExamSAP HR AND HCM Practice Exam
SAP HR AND HCM Practice ExamIT LearnMore
 
SAP FICO Practice Exam
SAP FICO Practice ExamSAP FICO Practice Exam
SAP FICO Practice ExamIT LearnMore
 
SAP CRM Interview questions
SAP CRM Interview questions SAP CRM Interview questions
SAP CRM Interview questions IT LearnMore
 
SAP HR AND HCM Interview questions
SAP HR AND HCM Interview questionsSAP HR AND HCM Interview questions
SAP HR AND HCM Interview questionsIT LearnMore
 
SAP SRM Interview questions
SAP SRM Interview questionsSAP SRM Interview questions
SAP SRM Interview questionsIT LearnMore
 
SAP MM Interview questions
SAP MM Interview questionsSAP MM Interview questions
SAP MM Interview questionsIT LearnMore
 
SAP HANA Interview questions
SAP HANA Interview questionsSAP HANA Interview questions
SAP HANA Interview questionsIT LearnMore
 
SAP FICO Interview questions
SAP FICO Interview questionsSAP FICO Interview questions
SAP FICO Interview questionsIT LearnMore
 

Mehr von IT LearnMore (15)

SAP Success Factors Online Training
SAP Success Factors Online TrainingSAP Success Factors Online Training
SAP Success Factors Online Training
 
SAP HCM Consultant
SAP HCM ConsultantSAP HCM Consultant
SAP HCM Consultant
 
SAP MM Practice exam
SAP MM Practice examSAP MM Practice exam
SAP MM Practice exam
 
SAP SD Practice Exam
SAP SD Practice ExamSAP SD Practice Exam
SAP SD Practice Exam
 
SAP SRM Practice Exam
SAP SRM Practice ExamSAP SRM Practice Exam
SAP SRM Practice Exam
 
SAP BASIS Practice Exam
SAP BASIS Practice ExamSAP BASIS Practice Exam
SAP BASIS Practice Exam
 
SAP HR AND HCM Practice Exam
SAP HR AND HCM Practice ExamSAP HR AND HCM Practice Exam
SAP HR AND HCM Practice Exam
 
SAP FICO Practice Exam
SAP FICO Practice ExamSAP FICO Practice Exam
SAP FICO Practice Exam
 
SAP CRM Interview questions
SAP CRM Interview questions SAP CRM Interview questions
SAP CRM Interview questions
 
SAP HR AND HCM Interview questions
SAP HR AND HCM Interview questionsSAP HR AND HCM Interview questions
SAP HR AND HCM Interview questions
 
SAP SRM Interview questions
SAP SRM Interview questionsSAP SRM Interview questions
SAP SRM Interview questions
 
SAP MM Interview questions
SAP MM Interview questionsSAP MM Interview questions
SAP MM Interview questions
 
SAP HANA Interview questions
SAP HANA Interview questionsSAP HANA Interview questions
SAP HANA Interview questions
 
SAP FICO Interview questions
SAP FICO Interview questionsSAP FICO Interview questions
SAP FICO Interview questions
 
C ppt
C pptC ppt
C ppt
 

Kürzlich hochgeladen

Kodo Millet PPT made by Ghanshyam bairwa college of Agriculture kumher bhara...
Kodo Millet  PPT made by Ghanshyam bairwa college of Agriculture kumher bhara...Kodo Millet  PPT made by Ghanshyam bairwa college of Agriculture kumher bhara...
Kodo Millet PPT made by Ghanshyam bairwa college of Agriculture kumher bhara...pradhanghanshyam7136
 
TỔNG ÔN TẬP THI VÀO LỚP 10 MÔN TIẾNG ANH NĂM HỌC 2023 - 2024 CÓ ĐÁP ÁN (NGỮ Â...
TỔNG ÔN TẬP THI VÀO LỚP 10 MÔN TIẾNG ANH NĂM HỌC 2023 - 2024 CÓ ĐÁP ÁN (NGỮ Â...TỔNG ÔN TẬP THI VÀO LỚP 10 MÔN TIẾNG ANH NĂM HỌC 2023 - 2024 CÓ ĐÁP ÁN (NGỮ Â...
TỔNG ÔN TẬP THI VÀO LỚP 10 MÔN TIẾNG ANH NĂM HỌC 2023 - 2024 CÓ ĐÁP ÁN (NGỮ Â...Nguyen Thanh Tu Collection
 
How to Manage Global Discount in Odoo 17 POS
How to Manage Global Discount in Odoo 17 POSHow to Manage Global Discount in Odoo 17 POS
How to Manage Global Discount in Odoo 17 POSCeline George
 
Graduate Outcomes Presentation Slides - English
Graduate Outcomes Presentation Slides - EnglishGraduate Outcomes Presentation Slides - English
Graduate Outcomes Presentation Slides - Englishneillewis46
 
Introduction to Nonprofit Accounting: The Basics
Introduction to Nonprofit Accounting: The BasicsIntroduction to Nonprofit Accounting: The Basics
Introduction to Nonprofit Accounting: The BasicsTechSoup
 
This PowerPoint helps students to consider the concept of infinity.
This PowerPoint helps students to consider the concept of infinity.This PowerPoint helps students to consider the concept of infinity.
This PowerPoint helps students to consider the concept of infinity.christianmathematics
 
How to Create and Manage Wizard in Odoo 17
How to Create and Manage Wizard in Odoo 17How to Create and Manage Wizard in Odoo 17
How to Create and Manage Wizard in Odoo 17Celine George
 
SKILL OF INTRODUCING THE LESSON MICRO SKILLS.pptx
SKILL OF INTRODUCING THE LESSON MICRO SKILLS.pptxSKILL OF INTRODUCING THE LESSON MICRO SKILLS.pptx
SKILL OF INTRODUCING THE LESSON MICRO SKILLS.pptxAmanpreet Kaur
 
Dyslexia AI Workshop for Slideshare.pptx
Dyslexia AI Workshop for Slideshare.pptxDyslexia AI Workshop for Slideshare.pptx
Dyslexia AI Workshop for Slideshare.pptxcallscotland1987
 
Accessible Digital Futures project (20/03/2024)
Accessible Digital Futures project (20/03/2024)Accessible Digital Futures project (20/03/2024)
Accessible Digital Futures project (20/03/2024)Jisc
 
1029 - Danh muc Sach Giao Khoa 10 . pdf
1029 -  Danh muc Sach Giao Khoa 10 . pdf1029 -  Danh muc Sach Giao Khoa 10 . pdf
1029 - Danh muc Sach Giao Khoa 10 . pdfQucHHunhnh
 
Application orientated numerical on hev.ppt
Application orientated numerical on hev.pptApplication orientated numerical on hev.ppt
Application orientated numerical on hev.pptRamjanShidvankar
 
Food safety_Challenges food safety laboratories_.pdf
Food safety_Challenges food safety laboratories_.pdfFood safety_Challenges food safety laboratories_.pdf
Food safety_Challenges food safety laboratories_.pdfSherif Taha
 
Activity 01 - Artificial Culture (1).pdf
Activity 01 - Artificial Culture (1).pdfActivity 01 - Artificial Culture (1).pdf
Activity 01 - Artificial Culture (1).pdfciinovamais
 
Micro-Scholarship, What it is, How can it help me.pdf
Micro-Scholarship, What it is, How can it help me.pdfMicro-Scholarship, What it is, How can it help me.pdf
Micro-Scholarship, What it is, How can it help me.pdfPoh-Sun Goh
 
Unit-IV- Pharma. Marketing Channels.pptx
Unit-IV- Pharma. Marketing Channels.pptxUnit-IV- Pharma. Marketing Channels.pptx
Unit-IV- Pharma. Marketing Channels.pptxVishalSingh1417
 
ICT role in 21st century education and it's challenges.
ICT role in 21st century education and it's challenges.ICT role in 21st century education and it's challenges.
ICT role in 21st century education and it's challenges.MaryamAhmad92
 
On National Teacher Day, meet the 2024-25 Kenan Fellows
On National Teacher Day, meet the 2024-25 Kenan FellowsOn National Teacher Day, meet the 2024-25 Kenan Fellows
On National Teacher Day, meet the 2024-25 Kenan FellowsMebane Rash
 
SOC 101 Demonstration of Learning Presentation
SOC 101 Demonstration of Learning PresentationSOC 101 Demonstration of Learning Presentation
SOC 101 Demonstration of Learning Presentationcamerronhm
 
Sociology 101 Demonstration of Learning Exhibit
Sociology 101 Demonstration of Learning ExhibitSociology 101 Demonstration of Learning Exhibit
Sociology 101 Demonstration of Learning Exhibitjbellavia9
 

Kürzlich hochgeladen (20)

Kodo Millet PPT made by Ghanshyam bairwa college of Agriculture kumher bhara...
Kodo Millet  PPT made by Ghanshyam bairwa college of Agriculture kumher bhara...Kodo Millet  PPT made by Ghanshyam bairwa college of Agriculture kumher bhara...
Kodo Millet PPT made by Ghanshyam bairwa college of Agriculture kumher bhara...
 
TỔNG ÔN TẬP THI VÀO LỚP 10 MÔN TIẾNG ANH NĂM HỌC 2023 - 2024 CÓ ĐÁP ÁN (NGỮ Â...
TỔNG ÔN TẬP THI VÀO LỚP 10 MÔN TIẾNG ANH NĂM HỌC 2023 - 2024 CÓ ĐÁP ÁN (NGỮ Â...TỔNG ÔN TẬP THI VÀO LỚP 10 MÔN TIẾNG ANH NĂM HỌC 2023 - 2024 CÓ ĐÁP ÁN (NGỮ Â...
TỔNG ÔN TẬP THI VÀO LỚP 10 MÔN TIẾNG ANH NĂM HỌC 2023 - 2024 CÓ ĐÁP ÁN (NGỮ Â...
 
How to Manage Global Discount in Odoo 17 POS
How to Manage Global Discount in Odoo 17 POSHow to Manage Global Discount in Odoo 17 POS
How to Manage Global Discount in Odoo 17 POS
 
Graduate Outcomes Presentation Slides - English
Graduate Outcomes Presentation Slides - EnglishGraduate Outcomes Presentation Slides - English
Graduate Outcomes Presentation Slides - English
 
Introduction to Nonprofit Accounting: The Basics
Introduction to Nonprofit Accounting: The BasicsIntroduction to Nonprofit Accounting: The Basics
Introduction to Nonprofit Accounting: The Basics
 
This PowerPoint helps students to consider the concept of infinity.
This PowerPoint helps students to consider the concept of infinity.This PowerPoint helps students to consider the concept of infinity.
This PowerPoint helps students to consider the concept of infinity.
 
How to Create and Manage Wizard in Odoo 17
How to Create and Manage Wizard in Odoo 17How to Create and Manage Wizard in Odoo 17
How to Create and Manage Wizard in Odoo 17
 
SKILL OF INTRODUCING THE LESSON MICRO SKILLS.pptx
SKILL OF INTRODUCING THE LESSON MICRO SKILLS.pptxSKILL OF INTRODUCING THE LESSON MICRO SKILLS.pptx
SKILL OF INTRODUCING THE LESSON MICRO SKILLS.pptx
 
Dyslexia AI Workshop for Slideshare.pptx
Dyslexia AI Workshop for Slideshare.pptxDyslexia AI Workshop for Slideshare.pptx
Dyslexia AI Workshop for Slideshare.pptx
 
Accessible Digital Futures project (20/03/2024)
Accessible Digital Futures project (20/03/2024)Accessible Digital Futures project (20/03/2024)
Accessible Digital Futures project (20/03/2024)
 
1029 - Danh muc Sach Giao Khoa 10 . pdf
1029 -  Danh muc Sach Giao Khoa 10 . pdf1029 -  Danh muc Sach Giao Khoa 10 . pdf
1029 - Danh muc Sach Giao Khoa 10 . pdf
 
Application orientated numerical on hev.ppt
Application orientated numerical on hev.pptApplication orientated numerical on hev.ppt
Application orientated numerical on hev.ppt
 
Food safety_Challenges food safety laboratories_.pdf
Food safety_Challenges food safety laboratories_.pdfFood safety_Challenges food safety laboratories_.pdf
Food safety_Challenges food safety laboratories_.pdf
 
Activity 01 - Artificial Culture (1).pdf
Activity 01 - Artificial Culture (1).pdfActivity 01 - Artificial Culture (1).pdf
Activity 01 - Artificial Culture (1).pdf
 
Micro-Scholarship, What it is, How can it help me.pdf
Micro-Scholarship, What it is, How can it help me.pdfMicro-Scholarship, What it is, How can it help me.pdf
Micro-Scholarship, What it is, How can it help me.pdf
 
Unit-IV- Pharma. Marketing Channels.pptx
Unit-IV- Pharma. Marketing Channels.pptxUnit-IV- Pharma. Marketing Channels.pptx
Unit-IV- Pharma. Marketing Channels.pptx
 
ICT role in 21st century education and it's challenges.
ICT role in 21st century education and it's challenges.ICT role in 21st century education and it's challenges.
ICT role in 21st century education and it's challenges.
 
On National Teacher Day, meet the 2024-25 Kenan Fellows
On National Teacher Day, meet the 2024-25 Kenan FellowsOn National Teacher Day, meet the 2024-25 Kenan Fellows
On National Teacher Day, meet the 2024-25 Kenan Fellows
 
SOC 101 Demonstration of Learning Presentation
SOC 101 Demonstration of Learning PresentationSOC 101 Demonstration of Learning Presentation
SOC 101 Demonstration of Learning Presentation
 
Sociology 101 Demonstration of Learning Exhibit
Sociology 101 Demonstration of Learning ExhibitSociology 101 Demonstration of Learning Exhibit
Sociology 101 Demonstration of Learning Exhibit
 

SAP ABAP Practice exam

  • 1. SAP ABAP Multiple Choice Questions and Answers Learning IT Courses Has Never Been This Easy www.ITLearnMore.com
  • 2. 1. When using Open SQL statements in an ABAP/4 program, you must ensure the following ? a) The database system being addressed must be supported by SAP. b) The database tables being addressed must be defined in the ABAP/4 dictionary. c) Both a and b d) None of these
  • 3. 1. When using Open SQL statements in an ABAP/4 program, you must ensure the following. a) The database system being addressed must be supported by SAP. b) The database tables being addressed must be defined in the ABAP/4 dictionary. c) Both a and b d) None of these Answer : c) Both a and b
  • 4. 2. Which of the following statements are correct? a) A database interface translates SAP’s Open SQL statements into SQL commands specific to the database in use. Native SQL statements access the database directly. b) When you use Native SQL, the addressed database tables do not have to be known to the ABAP/4 dictionary. In Open SQL, the addressed database tables must be defined in the ABAP/4 dictionary. c) There is automatic client handling in Native SQL whereas clients must always be specified in Open SQL. d) Both a and b
  • 5. 2. Which of the following statements are correct? a) A database interface translates SAP’s Open SQL statements into SQL commands specific to the database in use. Native SQL statements access the database directly. b) When you use Native SQL, the addressed database tables do not have to be known to the ABAP/4 dictionary. In Open SQL, the addressed database tables must be defined in the ABAP/4 dictionary. c) There is automatic client handling in Native SQL whereas clients must always be specified in Open SQL. d) Both a and b Answer : d) Both a and b
  • 6. 3. Which of the following are true? a) TABLE is used as a synonym for STANDARD TABLE b) Explicit or implicit index operations c) All hashed tables are index tables. d) both a and b
  • 7. 3. Which of the following are true? a) TABLE is used as a synonym for STANDARD TABLE b) Explicit or implicit index operations c) All hashed tables are index tables. d) both a and b Answer : d) both a and b
  • 8. 4. Can a transparent table exist in data dictionary but not in the database physically? a) True b) False
  • 9. 4. Can a transparent table exist in data dictionary but not in the database physically? a) True b) False Answer : a) True
  • 10. 5.Can you create a table with fields not referring to data elements? a) TRUE b) FALSE
  • 11. 5.Can you create a table with fields not referring to data elements? a) TRUE b) FALSE Answer : a) TRUE
  • 12. 6.How do you create a batch input session for a transaction? a)‘Call transaction’ in background mode. b)‘Call transaction’ in error mode. c)‘Bdc_insert’ for the transaction. d)None of the above.
  • 13. 6.How do you create a batch input session for a transaction? a)‘Call transaction’ in background mode. b)‘Call transaction’ in error mode. c)‘Bdc_insert’ for the transaction. d)None of the above. Answer : c)‘Bdc_insert’ for the transaction.
  • 14. 7.What is the alternative to batch input session? a) Load module b) Call transaction c) BAPI d) Idoc segment
  • 15. 7.What is the alternative to batch input session? a) Load module b) Call transaction c) BAPI d) Idoc segment Answer : b) Call transaction
  • 16. 8.The following are true about ‘EXEC SQL’ ? a)You can end the Native SQL with a semicolon. b)You can end the Native SQL with a period. c)You cannot perform reliable authorization checks using EXEC SQL. d)Both a and c
  • 17. 8.The following are true about ‘EXEC SQL’. a)You can end the Native SQL with a semicolon. b)You can end the Native SQL with a period. c)You cannot perform reliable authorization checks using EXEC SQL. d)Both a and c Answer : d)Both a and c
  • 18. 9.Which of the following is true about database locking ? a) Database systems set physical locks on all lines affected by a database call. b) Read locks prevent the setting of further read locks for the objects in question. c) Read locks prevent other transactions from setting write locks for the objects in question. d)Both a and c
  • 19. 9.Which of the following is true about database locking. a) Database systems set physical locks on all lines affected by a database call. b) Read locks prevent the setting of further read locks for the objects in question. c) Read locks prevent other transactions from setting write locks for the objects in question. d)Both a and c Answer : d)Both a and c
  • 20. 10. What are field symbols? a) Field symbols are like pointers in C that can point to any data object in ABAP/4 and to structures defined in ABAP/4 dictionary. b)Field symbols have to be created with type specifications only. c)All operations you have programmed with the field symbol are carried out with the assigned field. d) Both a and c
  • 21. 10. What are field symbols? a) Field symbols are like pointers in C that can point to any data object in ABAP/4 and to structures defined in ABAP/4 dictionary. b)Field symbols have to be created with type specifications only. c)All operations you have programmed with the field symbol are carried out with the assigned field. d) Both a and c Answer : d) Both a and c
  • 22. 11. What is EXTRACT statement? a) The first EXTRACT statement extracts the first extract record. b) The first EXTRACT statement creates the extract dataset and adds the first extract record. c) Each extract record contains, if specified, the fields of the field group. b) Both a and c
  • 23. 11. What is EXTRACT statement? a) The first EXTRACT statement extracts the first extract record. b) The first EXTRACT statement creates the extract dataset and adds the first extract record. c) Each extract record contains, if specified, the fields of the field group. b) Both a and c Answer : b) Both a and c
  • 24. 12. You cannot assign a local data object defined in a subroutine or function module to a field group ? a) True b) False
  • 25. 12. You cannot assign a local data object defined in a subroutine or function module to a field group. a) True b) False Answer : a) True
  • 26. 13. Which of the following are true? a) COLLECT can only be used with STANDARD TABLE. b) To use COLLECT, the internal table should be derived from a database table with an explicit key. c) If the system finds a numeric component, that is not part of the key, the numeric fields that are not part of the table key (see ABAP number types) are added to the sum total of the existing entries. If it does not find an entry, control passes on to the next record in the internal table. d) If the system finds a numeric component, that is not part of the key, the numeric fields that are not part of the table key (see ABAP number types) are added to the sum total of the existing entries. If it does not find an entry, the system creates a new entry instead.
  • 27. 13. Which of the following are true? a) COLLECT can only be used with STANDARD TABLE. b) To use COLLECT, the internal table should be derived from a database table with an explicit key. c) If the system finds a numeric component, that is not part of the key, the numeric fields that are not part of the table key (see ABAP number types) are added to the sum total of the existing entries. If it does not find an entry, control passes on to the next record in the internal table. d) If the system finds a numeric component, that is not part of the key, the numeric fields that are not part of the table key (see ABAP number types) are added to the sum total of the existing entries. If it does not find an entry, the system creates a new entry instead. Answer : D
  • 28. 14. Which of the following are true? a)ABAP queries are created by associating them to a logical database or through a direct read/data retrieval program. b) ABAP queries are created from functional areas that are created from a logical database or through a direct read/retrieval program. c)ABAP queries are created from user groups attached to the functional areas that are created from a logical database or through a direct read/retrieval program. d)ABAP queries are created through the regular report program.
  • 29. 14. Which of the following are true? a)ABAP queries are created by associating them to a logical database or through a direct read/data retrieval program. b) ABAP queries are created from functional areas that are created from a logical database or through a direct read/retrieval program. c)ABAP queries are created from user groups attached to the functional areas that are created from a logical database or through a direct read/retrieval program. d)ABAP queries are created through the regular report program. Answer : C
  • 30. 15. A logical unit of work (LUW or transaction) begins …….. ? a) Each time you start a transaction. b) Each time you end a transaction. c) Before the database changes of the previous LUW have been cancelled (database rollback). d) Both a and c
  • 31. 15. A logical unit of work (LUW or transaction) begins a) Each time you start a transaction. b) Each time you end a transaction. c) Before the database changes of the previous LUW have been cancelled (database rollback). d) Both a and c Answer : d) Both a and c
  • 32. 16. The following are true about SAP script control commands ? a)If a control command is unknown or it contains syntax errors, the line containing it will be printed out as it is. b)If a control command is unknown or it contains syntax errors, the line containing it will be treated as a comment line. c)A maximum of one control command may appear in each line. d) Both b and c
  • 33. 16. The following are true about SAP script control commands. a)If a control command is unknown or it contains syntax errors, the line containing it will be printed out as it is. b)If a control command is unknown or it contains syntax errors, the line containing it will be treated as a comment line. c)A maximum of one control command may appear in each line. d) Both b and c Answer : d) Both b and c
  • 34. 17. To output SAP script layout sets, in the print program ? a) You must always start the output with OPEN_FORM and end it with CLOSE_FORM. b) Within one transaction, you can use only one OPEN_FORM and CLOSE_FORM to open and close a layout set. c) WRITE_FORM should be used within an OPEN_FORM and CLOSE_FORM. d) Both a and c
  • 35. 17. To output SAP script layout sets, in the print program ? a) You must always start the output with OPEN_FORM and end it with CLOSE_FORM. b) Within one transaction, you can use only one OPEN_FORM and CLOSE_FORM to open and close a layout set. c) WRITE_FORM should be used within an OPEN_FORM and CLOSE_FORM. d) Both a and c Answer : d) Both a and c
  • 36. 18. The transaction CMOD and SMOD are….. ? a) Used to create enhancements to standard SAP programs. b) Used to create enhancements to ABAP queries. c) Used to create the user exits, menu exits and screen exits. d) Both a and c
  • 37. 18. The transaction CMOD and SMOD are a) Used to create enhancements to standard SAP programs. b) Used to create enhancements to ABAP queries. c) Used to create the user exits, menu exits and screen exits. d) Both a and c Answer : d) Both a and c
  • 38. 19. ABAP Query tool is used to………… ? a) Enquire about a running-program status b) Automatically generate code for reporting c) Perform database operations for user-written programs d) None of the above
  • 39. 19. ABAP Query tool is used to: a) Enquire about a running-program status b) Automatically generate code for reporting c) Perform database operations for user-written programs d) None of the above Answer : b) Automatically generate code for reporting
  • 40. 20. Logical databases must be used to create an ABAP Query……….. ? a) True b) False
  • 41. 20. Logical databases must be used to create an ABAP Query a) True b) False Answer : b) False
  • 42. Contact Us: For more details, please log on to www.ITLearnMore.com You can also Find us on :