What you did in BDC?
Answers were Sorted based on User's Feedback
Answer / bandivenkateswarlu
bdc is used to upload the data into the sap system by using
the transaction recording SHDB.
this is structure of the bdc to upload the data into the sap
database.
1.analyze the data from the local file or flat file
2.analyze the transaction
3.declaring the internal table (BDCDATA)
programm: name of the module pool programm name
dynpro : screen number
dynbegin: it indicates for the new screen number
fname : name of the fileds in the screen
fval :values are assinged with the fields.
4.transffering the data from flat file to internal
table(BDCDATA)
5.populating the internal table (BDCDATA)
Is This Answer Correct ? | 18 Yes | 0 No |
ACTUALLY, BDC IS USED TO TRANSFER DATA FROM A NON-SAP
SYSTEM TO A SAP SYSTEM OR VICE-VERSA.
THE METHODS WE HAVE IN ABAP ARE BATCH INPUT SESSION, CALL
TRANSACTION USING AND DIRECT INPUT METHOD.
BUT NOW NO ONE IS USING DIRECT INPUT METHOD UNLESS IT IS
NECESSARY.
Is This Answer Correct ? | 5 Yes | 2 No |
In case of transfer data from non-sap to sap system:
First Upload data into internal table.
Then store that data into R3Database.Before storing data we
have to validate that data for this we have to perform
mapping logic.here if the valid data transfered to R3
database,invalid data stored in log files .
for mapping we can use predefined mapping logic method,
nothing but session,call transaction ....
Is This Answer Correct ? | 2 Yes | 0 No |
Answer / mahesh rallapalli
Bdc means batch data conversion.
Bdc is used to upload that data from flat file to sap system.
1.prepare tha flat file.
2.do tha recording thrugh SHDB Tcode.
3.upload that data.
4.collect the screen and field details.
Is This Answer Correct ? | 2 Yes | 0 No |
Bdc( Batch data communication) is the communication between sap system and non sap system in the form of data. Here data is moved from non sap to sap system in the form of bartch. means there are 1 lakh records in the flat file, then the data will be converted 10,000 records one batch and another 10,000 recors one bacth.
-> finally, BDC is used to convert or migrate the data from specified file path of legacy system into sap database. For this there are two methods. 1) session 2)call transaction
Is This Answer Correct ? | 0 Yes | 0 No |
Answer / chvpavankumar
just upload the data as per client requirement
Is This Answer Correct ? | 3 Yes | 4 No |
What are the types of the software component being deployed in the sap?
What is foreign key relationship? : abap hr
WHAT IS DIFFERENCE BETWEEN USER EXIT AND BADI
how to Implement a BADI in which it restricts the access when purchase order is created against contract using definition ME_PURCHDOC_POSTED. please tell me the answers if any one knows. thanks in advance. :ravikiran
By using which single table i can get all the detail from sale order to billing not used vbak, vbap, vbrk & vbrp.
How to display or know if the value entered contains records or not?
what next in SAP-ABAP/4 is it going to be change?
Is there any method apart from bdc for data upload to sap? : abap bdc
what is meant by idoc filtering?
What is open sql vs native sql ?
What are the components of selection table?
Hi Gurus, I have 250 records in an internal table, tell me how to randomly delete the each 5th record...i,e 5,10,15,20 like this.