Archive for the ‘ABAP’ Category

Difference between transparent tables and pooled tables.

This item was filled under [ ABAP, SAP ]

Transparent tables: Transparent tables in the dictionary has a one-to-one relation with the table in database. Its structure corresponds to single database field. Table in the database has the same name as in the dictionary. Transparent table holds application data.

Pooled tables. Pooled tables in the dictionary has a many-to-one relation with the table in database. Table in the database ha Read More

Continue reading...

Tagged with: [ ]

SAP Projects Employee Retention Techniques

This item was filled under [ ABAP, SAP ]

Often wondered project managers like us have been struggling to keep that valuable resource hooked on the project. Here’ what something you can get from this article from best practices in SAP for employee retention. I have found this article very useful and have been able to make some positive changes in the team’s approach towards project. I am sure this will help the readers

Read More

Continue reading...

Tagged with: [ ]

What IS ABAP Development for SAP Netweaver BI

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

You must have this . ABAP Development for SAP Netweaver BI- This book from SAP press is one of the best for ABAP consultants. Please read below on what the ABAP development for SAP Netweaver BI has to offer.

Some must have SAP Resources CLICK HERE 

ABAP DEVELOPMENT FOR SAP NETWEAVER BI – USER EXITS AN Read More

Continue reading...

Tagged with: [ , ]

You many want to Know -SAP TCODE BASIS ABAP

This item was filled under [ ABAP, SAP Basis ]

Some of the BASIS ABAP Transaction code (Tcode)

DI02                                 &nb 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...