|
what is '1000 projects'?
'fullinterview.com' is a educational content website dedicated to finding and realizing final year projects for btech, be, mtech, mca students, here you can search, find your projects and get guidance from experts the below are the different technological projects.
visual Studio projects
.net projects,
asp projects,
c & ds projects,
c++ projects (all),
cold fusion projects,
delphi projects,
java projects,
perl projects,
php projects,
sql projects,
vc++ projects,
visual basic projects.
how it works?
well, everything on this site is submitted by the student and professional community. after you submit your project, it is being verified and approved by our administrator. after approval, other people can read/discuss it, save to favorites.
more number of projects?
here you can find morethan 1000 projects on different technologies, if u want to get more projects please visit our sister sites www.fullinterview.com & Chetanasprojects.com
Category Articles
In session method sy-subrc is not returned whereas in call transaction method sy-subrc is returned . what does it mean?
Added on Wed, Dec 23, 2009
While to transfer the data from the through if any errors occurs until the errors are the complete the data is not transfer to the SAP system. the system compulsory shows the errors. that errors are stored into the error logs (Transaction is SM35).... Read More
What is the difference between Upload and WS_Upload ?
Added on Wed, Dec 23, 2009
The diffrence between WS_Upload and Upload is when you use function Upload it prompts for a dailog box where in you need to key in the file location.Where as in case of WS_Upload you specify the file location in the function input parameters itself Read More
What are the table controls in BDC ? What is the difference between bdc and lsmw ? What is the difference between bdc and rfc ?
Added on Wed, Dec 23, 2009
BDC - Batch data communication in which there are 2 processes 1. in bound 2. outbound RFC - remote fucntion call(or) calling Read More
How to load data from MS Excel sheet to SAP by using BDC method ?
Added on Wed, Dec 23, 2009
KCD_EXCEL_OLE_TO_INT_CONVERT even takes care of blank cells and is available in older versions of SAP * Add values to internal table SORT t_cells BY row col. LOOP AT t_cells INTO wa_cells. MOVE : wa_cells-col TO l_index. ASSIGN COMPONENT l_index OF... Read More
Data conversion experience?
Added on Wed, Dec 23, 2009
DATA CONVERSIONS: SAP HAS PROVIDED A TOOL NAMED LSMW WHICH CONVERTS THE LEGACY DATA INTO THE REQUIRED SAP FORMAT AND UPDATES THE DATABASE. Read More
Open datasets, Read datasets ( Reading and writing data to files)?
Added on Wed, Dec 23, 2009
Date Sets are nothing but files on Application Server,they can even be called as Sequential files. Open Dataset Is used to open required file on the application Server. Read Dataset. Is used to read the contents required file on the application... Read More
If want execute a program only in background not in foreground is there any option for this?
Added on Wed, Dec 23, 2009
The sm37 transaction can be used for running a program in the background. Also in the session method while processing the session you can specify the processing type as background or foreground. Read More
Explain BDC vs Direct Loads?
Added on Wed, Dec 23, 2009
Direct loads is 5 times faster than uploading by normal BDC method. but some times while updating the database referential integrity is violated. Read More
What is the difference between call transaction and session method?
Added on Wed, Dec 23, 2009
Session method: The records are not added to the database until the session is processed. sy-subrc is not returned. Error logs are created for error records. Updation in database table is always Synchronous. Call Transaction method: The records are... Read More
What is record function?
Added on Wed, Dec 23, 2009
With recording, user can avoid manual search for fields and tables required in a program including screen numbers. SHDB is the transaction code. Read More
How to create a background job without a variant ?
Added on Wed, Dec 23, 2009
1. By calling the executable program RSBDCSUB 2. Transaction Code SM37 Read More
|