2008 Feb 25 2:59 PM
Hi everyone
I have multiple questions on BDC.Would u please answer them with explanations ASAP...
1. How do you create a batch input session for a transaction?
a) We create a bdc and use ‘call transaction’ in background mode.
b) We create a bdc and use ‘call transaction’ in error mode.
c) We create a bdc and use ‘bdc_insert’ for the transaction.
d) None of the above.
2. What is the alternative to batch input session?
a) Load module
b) Call transaction
c) BAPI
d) Idoc segment
3. Which SAP table stores the BDC session queue information?
a) APQD
b) APQL
c) APQQ
d) APQI
4. Which program can be used to release BDC sessions within a job?
a) RSBDCSUB
b) RSBDCJOB
c) RSSUBBDC
d) BDCRECXX
5. Which one of the following is output to the job log when included in an ABAP program running in the background?
a) Write statements
b) message statements
c) report parameters
d) Submit statements
6. Your program specs call for you to read the first 10 records from a text file (fname1), and write them out to another text file (fname2).
Which block of code will accomplish the result desired in the above scenario?
a) Open dataset fname2 for input in text mode.
Do 10 times.
Read dataset fname1 into hold_var.
Transfer hold_var to fname2.
Enddo.
b) open file fname1 for output.
Open file fname2 for input.
Read dataset fname1 into hold_var 10 times.
Transfer hold_var to fname2.
c) open file fname1 for input.
Open file fname2 for output.
Do 10 times.
Read file fname1 into hold_var.
Transfer hold_var into fname2.
Enddo.
d) open dataset fname1 for input in text mode.
Open dataset fname2 for output in text mode.
Do 10 times.
Read fname1 into hold_var.
Write hold_var to fname2.
Enddo.
7. sy-dynpro is
a) screen no
b) program
c) table
d) field name
8. Which of the following are NOT correct usage of BDC_cursor?
a) To position the cursor on a particular field.
<bdc_tab>-FNAM = 'BDC_CURSOR'.
<bdc_tab>-FVAL = ‘fieldx’ .
b) To position the cursor on a particular field.
<bdc_tab>-FNAM = ‘fieldx’
<bdc_tab>-FVAL = 'BDC_CURSOR'. .
c) For fifth row of Table control
<bdc_tab>-FVAL = 'fieldx(5)'.
d) For fifth row of Table control
<bdc_tab>-FNAM = 'BDC_CURSOR(5) '.
9. In case of background processing of a BI session, which authorization is checked?
a) Developer of the program that schedules BI Session
b) User who executes the BI session
c) User who executes the program that schedules BI Session
d) User ID that is passed to the BDC_OPN_GROUP function module inside the calling program
10. Which of the following are TRUE about Transaction Recorder?
a) Transaction Code is SHDB
b) Transaction Code is SM35
c) It can generate ABAP code for the BDC program automatically
d) It can generate ABAP code for the Call Transaction program automatically
Regards,
Pratibha
2008 Feb 25 5:40 PM
Hi,
1) C We create a bdc and use bdc_insert for the transaction
2) b) Call transaction
3. d) APQI
4. a) RSBDCSUB
5. b) message statements
6. d) open dataset fname1 for input in text mode.
Open dataset fname2 for output in text mode.
Do 10 times.
Read fname1 into hold_var.
Write hold_var to fname2.
Enddo.
7. a) screen no
8. b) To position the cursor on a particular field.
<bdc_tab>-FNAM = fieldx
<bdc_tab>-FVAL = 'BDC_CURSOR'. .
9.b) User who executes the BI session (or)
c) User who executes the program that schedules BI Session
10. a) Transaction Code is SHDB
c) It can generate ABAP code for the BDC program automatically
Regards
Hi everyone
I have multiple questions on BDC.Would u please answer them with explanations ASAP...
1. How do you create a batch input session for a transaction?
a) We create a bdc and use ‘call transaction’ in background mode.
b) We create a bdc and use ‘call transaction’ in error mode.
c) We create a bdc and use ‘bdc_insert’ for the transaction.
d) None of the above.
2. What is the alternative to batch input session?
a) Load module
b) Call transaction
c) BAPI
d) Idoc segment
3. Which SAP table stores the BDC session queue information?
a) APQD
b) APQL
c) APQQ
d) APQI
4. Which program can be used to release BDC sessions within a job?
a) RSBDCSUB
b) RSBDCJOB
c) RSSUBBDC
d) BDCRECXX
5. Which one of the following is output to the job log when included in an ABAP program running in the background?
a) Write statements
b) message statements
c) report parameters
d) Submit statements
6. Your program specs call for you to read the first 10 records from a text file (fname1), and write them out to another text file (fname2).
Which block of code will accomplish the result desired in the above scenario?
a) Open dataset fname2 for input in text mode.
Do 10 times.
Read dataset fname1 into hold_var.
Transfer hold_var to fname2.
Enddo.
b) open file fname1 for output.
Open file fname2 for input.
Read dataset fname1 into hold_var 10 times.
Transfer hold_var to fname2.
c) open file fname1 for input.
Open file fname2 for output.
Do 10 times.
Read file fname1 into hold_var.
Transfer hold_var into fname2.
Enddo.
d) open dataset fname1 for input in text mode.
Open dataset fname2 for output in text mode.
Do 10 times.
Read fname1 into hold_var.
Write hold_var to fname2.
Enddo.
7. sy-dynpro is
a) screen no
b) program
c) table
d) field name
8. Which of the following are NOT correct usage of BDC_cursor?
a) To position the cursor on a particular field.
<bdc_tab>-FNAM = 'BDC_CURSOR'.
<bdc_tab>-FVAL = ‘fieldx’ .
b) To position the cursor on a particular field.
<bdc_tab>-FNAM = ‘fieldx’
<bdc_tab>-FVAL = 'BDC_CURSOR'. .
c) For fifth row of Table control
<bdc_tab>-FVAL = 'fieldx(5)'.
d) For fifth row of Table control
<bdc_tab>-FNAM = 'BDC_CURSOR(5) '.
9. In case of background processing of a BI session, which authorization is checked?
a) Developer of the program that schedules BI Session
b) User who executes the BI session
c) User who executes the program that schedules BI Session
d) User ID that is passed to the BDC_OPN_GROUP function module inside the calling program
10. Which of the following are TRUE about Transaction Recorder?
a) Transaction Code is SHDB
b) Transaction Code is SM35
c) It can generate ABAP code for the BDC program automatically
d) It can generate ABAP code for the Call Transaction program automatically
Regards,
Pratibha
2008 Feb 25 5:40 PM
Hi,
1) C We create a bdc and use bdc_insert for the transaction
2) b) Call transaction
3. d) APQI
4. a) RSBDCSUB
5. b) message statements
6. d) open dataset fname1 for input in text mode.
Open dataset fname2 for output in text mode.
Do 10 times.
Read fname1 into hold_var.
Write hold_var to fname2.
Enddo.
7. a) screen no
8. b) To position the cursor on a particular field.
<bdc_tab>-FNAM = fieldx
<bdc_tab>-FVAL = 'BDC_CURSOR'. .
9.b) User who executes the BI session (or)
c) User who executes the program that schedules BI Session
10. a) Transaction Code is SHDB
c) It can generate ABAP code for the BDC program automatically
Regards
| User | Count |
|---|---|
| 4 | |
| 2 | |
| 2 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 |