difference between batch input and direct input and call
transaction ?
Answer Posted / theabapconsultant
batch input method or batch data comunication both are the same. it worls on the principle of simulating user input to the transaction screen via abap program. it can handle errors explicitly . features also include logging and synchronous processing.generally data is given in a flat file in which i undergoes through a screen and screen validation finally inserts in a database. eg: session method and bdc call transaction method
but direct input is asynchrounous.data is directly uploaded in a database by doing some field validations. errors cant be handled. it inserts data using some inbuilt function modules.
eg: LSMW
| Is This Answer Correct ? | 2 Yes | 1 No |
Post New Answer View All Answers
What is the purpose of at first and at last?
What is the function of a data element? : abap data dictionary
How to display if the value entered contains records or not?
Is there any BAPI to retrieve list of customers and their sales areas i.e., Cust No, Distr Channel and Division for all the customers.
What are user exits? What is involved in writing them? What precations are needed?
How do you send files to the legacy systems from sap and vice versa? How does one know that the legacy files have come on to the sap server you are working on? : abap bdc
How do you convert non-char field into char type fields ?
What is the difference between get and get late?
What does the extract statement do in extract datasets? : abap modularization
What is structure?
What is meant by authorization? : sap abap hr
What are the buffering options in abap?
What are the Control levels in internal tables?
What is the use of table maintenance allowed?
If i wont like to change the standard print program where i copied standard script to customer namespace,in this case is it possible to retreive the data if u connect the script with standard program.if yes how?if no why? Is it possible to print the logo in first page only,where the form consists of 10 pages.How can u do this? How can u set a table format where it cosists of fields like cust no, custname, amount ...in a script? How do u know that the particular BADI is suitable for the existed report.How do u findout this?When do u opt for BADI OR USEREXIT?did functional people tell u to adopt BADI or USEREXIT? What is the difference between SY-INDEX & SY-TABIX ? I have a report with fields Status,time & date. the contents it consists are Status Time Date AAA 01:20:15 05-06-10 AAA 11:02:32 O3-06-10 AAA 23:11:00 05-06-10 AAA 09:14:46 05-06-10 HOW DO U WRITE A CODE TO DISLAY A ROW WHICH WAS RECENTLY EXECUTED?( for this question it should display AAA 23:11:00 05-06-10 AS Output)