Archive for the ‘SAP’ Category

What is Data Recovery and why you need it?

This item was filled under [ Windows ]

What is Data Recovery and why you need it?

Data recovery well not everyone knows what it is, people who know it does not necessary bother about it until they are hit by a virus or hardware failure. Almost Everyone who owns a computer will experience the trials and tribulations of hard drive failure. The reasons behind it vary, and could include everything from a human error to damages resul Read More

Continue reading...

Tagged with: [ , ]

Some Tcode related to Financial Management (FI)

This item was filled under [ SAP ]

Some of the Tcode related to Financial management

 

FGRP          Read More

Continue reading...

Tagged with: [ ]

ABAP Interview questions for SAP ABAP Jobs

This item was filled under [ SAP ]

 

 Explain BDC vs. Call Transaction, when do you use either?

(Looking for: performance difference, can get synchronous feedback from Call Transaction in the form of messages and return code, BDC has re-execution interface(SM35), errored Call Transactions can be inserted into BDC Session for reprocessing later).

 

 

 Explain Direct I Read More

Continue reading...

Tagged with: [ ]

Remote server login

This item was filled under [ ABAP, SAP, SAP Basis ]

How do you connect to the remote server if you are working from the office for the client in remote place.


WAS web application server or ITS are generally used for this purpose. If you are sitting at your office with a server which is in the system and the other server is at the clients place you can generate IDOC, intermidiate documents which carry Read More

Continue reading...

Explain about roll area Dispatcher ABAP-Processor.

This item was filled under [ ABAP, SAP, SAP Basis ]

Explain about roll area , Dispatcher, ABAP-Processor.

Roll area is nothing but memory allocated by work process. It holds the information needed by R/3 about programs execution such as value of the variables.

Dispatcher :All the requests that come from presentation server will be directed first to dispatcher. Further dispatcher sends this requests to work process on Read More

Continue reading...

How do we debug sapscript?

This item was filled under [ ABAP, SAP ]

How do we debug sapscript?


First we need to put Break point in Print program where ever you want to stop the execution.  After in SE71 give your form name and go to Utilities–>Active De-bugger.
Then go to your transcation like VF03(for Invoice or Credit memo) etc to see the print preview or print the form execute it. When you execute Read More

Continue reading...

From Excel to ABAP – Is batch mode possible

This item was filled under [ ABAP, SAP, SAP Basis ]

From Excel to ABAP – Is batch mode possible ?

DATA w_file TYPE string.
* Convert the file path into string
w_file = p_input.

* Internal Table should have same field sequence as EXL File.

CLEAR t_upload.
REFRESH t_upload.

* Call function to upload the data into internal table
CALL FUNCTION ‘GUI_UPLOAD’
EXP Read More

Continue reading...

About internal tables

This item was filled under [ ABAP, SAP ]

About internal tables

An internal table is a run time instance. It get created when program starts execution. It get destroyed when program terminates. It has two different parts: HeaderLine(optional) and Body(Compulsory). Any value that comes to or goes from interanal table, that travels through headerline. Read More

Continue reading...