2007 Dec 13 8:00 AM
Please any1 tell me how to run bdc for mc88 screen with respect to date...
i can do d bdc without specification of date. but with date i can't able to do. so please give some ideas
Please any1 tell me how to run bdc for mc88 screen with respect to date...
i can do d bdc without specification of date. but with date i can't able to do. so please give some ideas
2007 Dec 13 8:17 AM
Hi Rajalaxmi,
Generally BDC is used for master data uploading purpose say BDC program for
BOM upload,Routing details,routing changes etc.The Tcode for this is SHDB -
Transaction recorder. But since creating a plan is part of Its a part in SOP Process.
If its required by the client,then get the help from ABAP consultant and go ahead.
BDC:
Batch Data Communication (BDC) is the process of transferring data from one SAP System to another SAP system or from a non-SAP system to SAP System.
Features :
BDC is an automatic procedure.
This method is used to transfer large amount of data that is available in electronic medium.
BDC can be used primarily when installing the SAP system and when transferring data from a legacy system (external system).
BDC uses normal transaction codes to transfer data.
Types of BDC :
CLASSICAL BATCH INPUT (Session Method)
CALL TRANSACTION
BATCH INPUT METHOD:
This method is also called as CLASSICAL METHOD.
Features:
Asynchronous processing.
Synchronous Processing in database update.
Transfer data for more than one transaction.
Batch input processing log will be generated.
During processing, no transaction is started until the previous transaction has been written to the database.
CALL TRANSACTION METHOD :
This is another method to transfer data from the legacy system.
Features:
Synchronous processing. The system performs a database commit immediately before and after the CALL TRANSACTION USING statement.
Updating the database can be either synchronous or asynchronous. The program specifies the update type.
Transfer data for a single transaction.
Transfers data for a sequence of dialog screens.
No batch input processing log is generated.
For BDC:
http://myweb.dal.ca/hchinni/sap/bdc_home.htm
https://www.sdn.sap.com/irj/sdn/wiki?path=/display/home/bdc&;
http://www.sap-img.com/abap/learning-bdc-programming.htm
http://www.sapdevelopment.co.uk/bdc/bdchome.htm
http://www.sap-img.com/abap/difference-between-batch-input-and-call-transaction-in-bdc.htm
http://help.sap.com/saphelp_47x200/helpdata/en/69/c250684ba111d189750000e8322d00/frameset.htm
http://www.sapbrain.com/TUTORIALS/TECHNICAL/BDC_tutorial.html
<b>Kindly award points if you found the reply helpful.</b>
Cheers,
Chaitanya.
2007 Dec 13 8:21 AM
hai ..
i know d general details abt bdc.. but i need it for mc88 screen..
here i can upload datas irrespective of date.. i want to upload data with respective to date.. i can't able to do it in mc 88.. plz help...
2007 Dec 13 8:37 AM
Hi,
Select the date format from user settings(Table USR01) and call the below perform..
FORM CONVERT_DATE_FORMAT CHANGING P_DATE.
CONSTANTS: C_DOT(1) VALUE '.',
C_SLASH(1) VALUE '/',
C_DASH(1) VALUE '-',
C_COMMA(1) VALUE ',',
C_DATE1 LIKE USR01-DATFM VALUE '1',
C_DATE2 LIKE USR01-DATFM VALUE '2',
C_DATE3 LIKE USR01-DATFM VALUE '3',
C_DATE4 LIKE USR01-DATFM VALUE '4',
C_DATE5 LIKE USR01-DATFM VALUE '5',
C_DATE6 LIKE USR01-DATFM VALUE '6'.
CASE V_DATFM.
WHEN C_DATE1. "DD.MM.YYYY
CONCATENATE: P_DATE+6(2)
P_DATE+4(2)
P_DATE(4)
INTO P_DATE
SEPARATED BY C_DOT.
WHEN C_DATE2. "MM/DD/YYYY
CONCATENATE: P_DATE+4(2)
P_DATE+6(2)
P_DATE(4)
INTO P_DATE
SEPARATED BY C_SLASH.
WHEN C_DATE3. "MM-DD-YYYY
CONCATENATE: P_DATE+4(2)
P_DATE+6(2)
P_DATE(4)
INTO P_DATE
SEPARATED BY C_DASH.
WHEN C_DATE4. "YYYY.MM.DD
CONCATENATE: P_DATE(4)
P_DATE+4(2)
P_DATE+6(2)
INTO P_DATE
SEPARATED BY C_DOT.
WHEN C_DATE5. "YYYY/MM/DD
CONCATENATE: P_DATE(4)
P_DATE+4(2)
P_DATE+6(2)
INTO P_DATE
SEPARATED BY C_SLASH.
WHEN C_DATE6. "YYYY-MM-DD
CONCATENATE: P_DATE(4)
P_DATE+4(2)
P_DATE+6(2)
INTO P_DATE
SEPARATED BY C_DASH.
WHEN OTHERS.
ENDCASE.
ENDFORM. " CONVERT_DATE_FORMAT
Reward points if found helpful....
Cheers,
Chandra Sekhar.