
Written by admin on May 29th, 2008 | Filed under:
ABAP,
ABAP Keywords
Authorization Object are a group of fields used to check if an particular transaction/events/steps can be executed or not.
AUTHORITY-CHECK is the statement used in the ABAP program to perform the authorization check by passing a authorization object. All the relevant fields must be addressed or you have to use the keyword DUMMY to bypass the check and you can have a maximum of 10 fields defined in the authorization object.
To create the authorization object use the transaction SU21. Refer the ABAP Keywords to know more about it.
COPYRIGHT: SAP Database

Written by admin on Apr 18th, 2008 | Filed under:
ABAP,
ABAP Keywords,
ABAP Programs
ABAP Tutorials for Beginners

Here is a Complete Guide of all the training manuals for SAP ABAP freshers. This is a organized set of all the documents which you need to learn from start to finish. The ABAP Tutorials are categorised sequentially from start to finish.
Download the Complete Tutorial from Rapidshare or Mediafire.
SAP ABAP Tutorial Contents
- ABAP Programming
- Dictionary
- Internal Tables
- ALV Grid Control
- SAP List Viewer
- Screen and Menu Painter
- BDC Concepts
- BDC Files
- BDC Recording
- BAPI Introduction & Programming
- Object Oriented Programming
- SAP Scripts/SmartForms
- Enhancements
- ALE Introduction/Programming/Steps
- EDI & IDOC
- IDOC Book
- LSMW Introduction & Steps
- Transport Management Systems
- Workflow
SAP Tutorials : SAP Database of Certification, Tutorials, Articles.

Written by admin on Feb 7th, 2008 | Filed under:
ABAP Keywords
EXTRACT
Basic form
EXTRACT fg.
Effect
Writes all fields of the field group fg (see FIELD-GROUPS) as one record to a sequential dataset (paging). If a field group HEADER has been defined, its fields prefix each record to form a sort key. You can sort this dataset with SORT and process it with LOOP … ENDLOOP. After this, EXTRACT cannot be execuuted again.
Continue Reading …

Written by admin on Feb 6th, 2008 | Filed under:
ABAP Keywords
EXPORT
1
2
3
4
| *Export data
- EXPORT obj1 ... objn TO MEMORY.
- EXPORT obj1 ... objn TO DATABASE dbtab(ar) ID key.
- EXPORT obj1 ... objn TO DATASET dsn(ar) ID key. |
Export a screen
- EXPORT DYNPRO h f e m ID id.
Export a structure description
- EXPORT NAMETAB h f ID id.
Continue Reading …

Written by admin on Jan 31st, 2008 | Filed under:
ABAP Keywords