Book Image

Oracle JD Edwards EnterpriseOne 9.0: Supply Chain Management Cookbook

By : Kashif Rasheed
Book Image

Oracle JD Edwards EnterpriseOne 9.0: Supply Chain Management Cookbook

By: Kashif Rasheed

Overview of this book

Oracle's JD Edwards Enterprise One Supply Chain Management (SCM) aids your business in enhancing your interactions with enterprise suppliers, and this practical cookbook provides essential implementation sequences to make the most of the suite. The functionality across the application described in this comprehensive guide allows you to be proactive in reacting to real-time information and developing procurement strategies and best practices. "Oracle JD Edwards EnterpriseOne 9.0: Supply Chain Management Cookbook" explains with step by step instructions how to fully implement the EnterpriseOne Supply Chain suite, set up Inventory Management, Procurement Management and Sales Order Management, and much more. Each chapter will provide you the details of setup-related information, and instructions which will direct you in configuring your company's business processes. This business-ready cookbook provides you with all the instructions you need to set up the SCM application, and utilize it based on your company's individual business requirements. It begins by demonstrating how to review inventory quantity information and perform physical inventory through cycle count and tag count, and later moves onto how to configure the interactive application, and how to set up the batch versions. Along the way it will also cover the item master information, classification, AAI setup, and system integration. Ultimately, "Oracle JD Edwards EnterpriseOne 9.0: Supply Chain Management Cookbook" will equip you with the knowledge to configure and take advantage of the entire SCM system.
Table of Contents (20 chapters)
Oracle JD Edwards EnterpriseOne 9.0: Supply Chain Management Cookbook
Credits
About the Author
About the Reviewers
www.PacktPub.com
Preface

Reconciliation of the item ledger with the account ledger report


The account ledger report must be processed to any item ledger and account ledger discrepancies, based on the invoice number and the invoice document type.

Getting ready

You should install the fat client in order to use JD Edwards object library workbench.

How to do it...

The following steps are the detailed technical specifications that you need to follow in order to develop the item ledger and account ledger reconciliation report. Tables used are F4111 and F0901:

  1. 1. Business Unit: Fetch from F4111.MCU.

  2. 2. Doc Type: Fetch from F4111.DCT.

  3. 3. Document Number: Fetch from F4111.DOC.

  4. 4. GL Date: Fetch F4111.DGL.

  5. 5. Extended Cost: Fetch from F4111.PAID.

  6. 6. Document Number: Fetch from F0901.DOC.

  7. 7. Doc Type: Fetch from F0901.DCT.

  8. 8. Account Number: F0901.ANI.

  9. 9. Amount: F0901.AA.

How it works...

The development of this report is based on the preceding specification. In the Initialize Section of the following code, you will...