Posts Tagged ‘ABAP’

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: [ , , ]

More sap Functional glossary

This item was filled under [ ABAP, SAP ]

BC

Basis

Read More

Continue reading...

Tagged with: [ , ]

ABAP type and like

This item was filled under [ ABAP, SAP ]

What is the difference between Type and Like?

TYPE, you assign datatype directly to the data object while declaring.
LIKE,you assign the datatype of another object to the declaring data object. The datatype is referenced indirectly.

Type is a keyword used to refer to a dat Read More

Continue reading...

Tagged with: [ , ]

Performance tunning SAP

This item was filled under [ ABAP, SAP ]

Performance tunning three places 

 Disk i/o ,sql tunning , memory tunning,

Before tunning u have to get the status of your database using Oracle utility called statpack , tkprof, then you should go for tunning Read More

Continue reading...

Tagged with: [ , ]

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.

Execute Tcode 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 Read More

Continue reading...

Tagged with: [ , ]

Meta data, Master data and Transaction data ?

This item was filled under [ ABAP, SAP ]

Define Meta data, Master data and Transaction data ?


Meta Data: Data that describes the structure of data or MetaObjects is called Metadata. In other words data about data is known as Meta Data. Master Data: Master data is data that remains unchanged over a long period of time. It contains information that is always needed in the same way. Characteri Read More

Continue reading...

Tagged with: [ , ]

Internal tables check table, value table, and transparent table?

This item was filled under [ ABAP, SAP ]

What are internal tables check table, value table, and transparent table?


Internal table: It is a standard data type object, which exists only during the runtime of the program. Check table: Check table will be at field level checking. Value table: Value table will be at domain level checking ex: scarr table is check table for carrid. Transparent ta Read More

Continue reading...

Tagged with: [ , ]