If I want to excute a program only in background not in forground is there any option for this?
What is usage of Datasets.
Where we can use mostly.
Using function modules gui_download and gui_upload.
What is the structure of bdcmsgcoll?
Go to se11 and enter bdcmsgcoll in database table filed and click on display it will displayed all the fields that are existing in the bdcmsgcall structure.
While doing bdc exp va01 transaction sometime in the item level data shows only 4 items and other times it will show 6 line items, how will you maintain this kind of screen resolutions scenerio?
Fill the CTUPARAM structure for Screen resolutions , and call this structure using options from CTUPARAM in Call Transaction Syntax
How to handle error in session method ?
Hi,
In session method the system automatically handled the error.
goto sm35
select the session name ,then select the analysis tab button in the top after that
select the Log created,Here we can see the error record.
Thanks
Sankaran R
You can use the function module to upload data from Excel file. If it is difficult we can save excel file as text file then use GUIUPLOAD
Session and call transaction method
Power is interrupted while transferring data from internal table to application server. How will you determine many records are transfered in session method and call transaction method?
What should be the approach for writing a bdc program?
1. Create recording
2. Transfer the data from legacy system to internal term
3. From internal table transfer the data to BDC structure
4. Create session or use call transaction method to update data to database table.
Heres the approach.. 1. Analysis the Data. 2. Generate SAP structure. 3. Develop transfer program 4. Create sequential fi...
What are the types of records that are transferred to SAP r/3 and used by interfaces?
Your question is not clear. As per my understanding, any type of records can be transferred to SAP R/3
Explain about SAP FICO testing and the tools used.
If you want to do FICO testing, you need to know the FICO process in SAP and also need to be familiar with the T-Codes and their functionality. A bit of Configuration knowledge is also required to tes...
How can we use multiple transactions by using bdc_insert.
If you talking about multiple T-code then we can write code for multiple t-code using perform an form in call transaction.
in the function module tcode here mention transaction code, and dynprotab here mentioning internal table name ,calling no of times a FM and assing TCODE and INTERNALTABLENAME
How to write a code in tab control
For tab control we have to use concodinate options in your coding.
In actual BDC table control is concept and seprate from screen teble control.How? like sales order (va01), you creates only one sale order but sale order may have no of material's inside it .so trans...
table control is used to main data under one header details we r maintain no of item details
with the help of concatenate
How to write a code for multiple transactions
What is the use of table control in bdc is it same in module pool table control?
ya that table control is same as that used in module pool here we do recording
Are you facing any problem in it ?
How do you write manual bdc session method
Steps to create manual BDC session
1) Use BDC_OPEN_GROUP to open the session
2) loop on the internal table which you will use in transaction ,
stps of BDC transaction recording
Use BDC_INSERT to insert 1 transaction in Session
endloop
3) Use BDC_CLOSE_GROUP to close the session ,
How can we handle table control in bdc?
We can handle table control using line index ,
Line index indicates which line of Table control is to be use for BDC transaction,
Ex -
perform bdc_field using 'RC29K-AUSKZ(01)'
Where can you find error log for call transaction
You can find it in BDCMSGCOLL structure which you will be defining in your program.
Update types in call transaction method. What is the difference ?
All synchronous update the sy-subrc is set to 0 only when the particular transaction is executed and also the changes have done to the database,
But in asynchronous update the sy-subrc is set to 0 if the transaction is executed without any fail, not the database changes.
In synchronous method incase if there is any change in the table all the related tables will be changed accordingly and then sy-subrc will be returned.In asynchronous method in case if there is any c...
Can we handle two transaction codes in the same program using call transaction bdc input method?
Hi...
we can handle more than one transaction using call transaction method. If the transactions are depend we have to use this method only.
Dear Friend, By using Call transaction Syntax in two times.With Regards,Guruprasad.
Using program RSBDCSUB to excute a program in background.
SM36, SE38, SA38 to run the program in background.