How could a developer control the size of the rollback segments in a BDC
Use Commit Work after a specified number of BDC_INSERT calls
Use Commit Work after a determined amount of CPU processing time
Use Commit Work after a specified number of BDC_OPEN calls
Mark the items that are true about BDC
(More than one answer is correct)
the online transaction is used to transfer data to R/3
user dialogs are simulated
they do not update the database
it is a technique that allows dialog free transfer of data
it is an automated process used to simulate batch processes
On the UPLOAD function what parameter must be included
FileName
Filesize
DATA_TAB
FileType
In each call of function BDC_INSERT the BDC table contains data for:
Dynpro screen conversion
More than 1 transaction
Only 1 transaction
Only 1 dynpro screen
What can be generated by the Batch Input recorder
(More than one answer is correct)
Job
Session
Program
Transaction
Identify the task types of a DX project
MAP, LOA, MSC, CHK
Load, Check, Validate, Other
MAP, LOAD, MSC, CHECK
MAP, LOA, MISC, CHECK
With Batch Input Processing, what FNAM field is the same for all screens that
identifies the command field
FNAM-OKCODE
BDC_OKCODE
TCODE
DYNPRO
Mark the one process that does not close a file in your program.
When READ DATASET reaches end of file
Explicitly using the CLOSE DATASET
After the program ends
When another OPEN DATASET is issued for the same file
How are standard SAP transfer programs organized
By the Business Object Repository
By the Method
By the Transaction
By the BAPI
Which is not a valid field assignment rule type in LSMW
Assignment
DDIC
Format
ABAPABAP
For standard transfer programs, what kind of information would typically be found in
a TYPE 0 record of the SAP record layout
Transaction Header data for the transaction being loaded
Master Data for the Batch Input session
Admin Data of the Batch input about to be created
Transactional Data for the Batch Input Session
IN a DX project, what is it that gets assigned to a subproject
Busines Object Method
Business Object Program
Business Object Interface
Business Object Type
The default mode when Opening a dataset is:
Sequential
TEXT
Hex
Binary
Which export parameters is not required in function BDC_OPEN_GROUP
Keep
Group
Client
User
What does the Direct Input Method use to perform the data transfer
Call Transaction
Batch input
Controls
Functions
In the transaction of a Batch Input Session, what message type would cause an
error.
(More than one answer is correct)
What relationships are defined through the LSMW structure relationships
source and target relationships
target relationships only
none of the answers are correct
source relationships only
When Executing RSBDCSUB and you specify session name only, what is the
effect:
Only the first session of the specified name will be executed
Will not run because it will ask you for more qualifying parameters
All session of the same name will be released
File ABC DOES NOT Exist on the Application server. What is the effect of "OPEN
DATASET ABC FOR APPENDING":
A new file is created
File cannot be created and SY-SUBRC is set to 8
File is opened but cannot be written to
What transaction will take you to the Data Transfer Workbench
SM35
SHDB
TXDA
SXDA
Which is not a valid Call Transaction processing mode.
Which is not part of the BDCDATA structure
Program
Fnam
Dynbegin
Start
Dynpro
Fval
Identify the valid LSMW import techologies
(More than one answer is correct)
Transaction Recorder
Enjoy Controls
Standard Transfer program
EDI
Class Objects
File ABC contains 10 records. How many records will be read in the following code
PERFORM READ_RECORDS_FROM_FILE.
…..
…..
FORM READ_RECORDS_FROM_FILE.
READ DATASET ABC INTO REC.
IF SY-SUBRC = 0. EXIT. ENDIF.
DO.
READ DATASET ABC INTO REC.
IF SY-SUBRC = 0. EXIT. ENDIF.
ENDDO.
ENDFORM.
10
11
Mark the one process that does not close a file in your program.
Explicitly using the CLOSE DATASET
When READ DATASET reaches end of file
After the program ends
When another OPEN DATASET is issued for the same file
What is one of the first things the developer/user should do before a customer
transfer program is developed
Make sure your Sap license is valid
Record the transaction that is to be loaded
Write a conversion program
How can field names for the batch input structure BDCDATA be determined.
(More than one answer is correct)
Element List
System status
Menu painter
Help key function on each field
Graphical Screen painter
What are worksteps of a LSMW project dependant on
Object Function
Object Type
Object Model
Object Method
What is true about BDC_CLOSE_GROUP
Once a session is closed you can reopen it with BDC_OPEN
It closes the currently opened BDC session in your program
It closes all open BDC sessions in your program
What is true about a program executing a CALL TRANSACTION USING.
Documents errors in the log file
Can be executed in background
Uses the same roll area
Requires the batch input queue
What is the advantage of using the "OPEN DATASET" prior to issuing a "READ
DATASET" .
(More than one answer is correct)
There is no difference
The record position is stored in a system variable
You can avoid program termination
Cursor positioning is guaranteed to be set at the beginning of the file
What happens if an error occurs on the processing of the BDC Session with the
following code
Call Function ‘BDC_OPEN_GROUP’
Exporting
…
…
KEEP = ‘ ’
The BDC session is kept by the system
The BDC Session is Deleted
The BDC Session gets locked
What will happen if a Transfer statement is issued on a file that has not yet been
opened.
ABAP will attempt to open the file for input
ABAP will issue a runt time error
ABAP will attempt to open the file for output
ABAP will issue a syntax error
How could a developer control the size of the rollback segments in a BDC
Use Commit Work after a determined amount of CPU processing time
Use Commit Work after a specified number of BDC_OPEN calls
Use Commit Work after a specified number of BDC_INSERT calls
How are fields handled that are not used in a SAP record layout structure
They must be filled with a NODATA character
They must be initialized to spaces
They must be deleted from the structure
They must be initialized to spaces or zero depending on their data type
What is a requirement of the legacy data, in order for the standard SAP transfer
programs to work properly
It must be delivered in character format
It must be initialized to blanks first
It must be received in upper case.
It must be delivered in binary format
It must be padded with the NODATA character after the fields are filled
Which fields of the BDCDATA structure are case-sensitvie
Program
Dynpro
Fnam
Fval
Dynbegin