ERP Database - The Unofficial ERP Knowledge Base

Facebook Twitter del.icio.us Digg it
ERP Database contains a huge collection of articles related to ERP System and Software. Many of the articles are specifically related to SAP. All these ERP/SAP articles are freely available to everyone.

If you would like to submit an article or share any document related to ERP or any specific ERP software. Please mail it to support@erpdb.info. Please make sure that the documents are not copyrighted.
Social Bookmarks:

Archive for November, 2009

Guide to Implementing SAP ALE

Print This Post Email This Post Written by admin on Nov 17th, 2009 | Filed under: Application Linking and Enabling(ALE)

The purpose of this guide on implementing SAP ALE whitepaper is to provide you with a methodology on implementing SAP R/3′s ALE technology. For the executive who is looking into deploying ALE the first chapter will be of benefit as well as the summary for each of the remaining chapters which will give a good indication as to the level of effort that will be required in order to implement ALE.

It highlights the areas to look at; it gives example documentation and describes the implementation process in detail. It is not an idiot’s guide to implementing ALE. Detailed knowledge of the ALE functionality together with project management skills will ensure a smooth ALE implementation.

The Guide is divided into the following chapters:

  1. Introduction to ALE. What is ALE? Why ALE?
  2. ALE Assessment. Putting a project team together. Deliverables of the team. Setting standards. Investigation and position papers.
  3. ALE Design. Design phase. Design document. Performance and technical implications.
  4. ALE Configuration. Configuration & related procedures.
  5. ALE Development. Describing ALE development. Development example.
  6. ALE Operations Support and Production support procedures. Production support planning. Monitoring and archiving. Disaster recovery.
  7. ALE general issues. ALE transaction codes, tables, programs… Glossary.

Download the ALE Guide (3004).


ABAP: How to create a dynamic internal table and work area

Print This Post Email This Post Written by admin on Nov 5th, 2009 | Filed under: ABAP Programs
FIELD-SYMBOLS:<fs_table> TYPE STANDARD TABLE,  <fs_table_wa> TYPE ANY.
DATA:  table_ref TYPE REF TO data, wa_ref TYPE REF TO data.
DATA: l_structure TYPE dd02l-tabname value 'VBAP'.
 
CREATE DATA table_ref TYPE STANDARD TABLE OF (l_structure).
ASSIGN table_ref->* TO <fs_table>.
CREATE DATA wa_ref LIKE LINE OF <fs_table>.
ASSIGN wa_ref->* TO <fs_table_wa>.

Now you have the table <fs_table> and the work area for it <fs_table_wa>.