Skip to main content

How to Transfer Inventory Directly to a Project and Task in Oracle EBS R12 Project Manufacturing

Due to this mix of both project related manufacturing and the traditional discrete manufacturing, the customer choose to keep the purchases of the materials segregated within their production facility. Purchases that were made to support a special project and task were received and stored in a separate location in the facility and then shipped to the customer site when all of the project’s product and services were complete.
The dilemma occurred when they needed a specific component for a project and determined that they also had that same component in their regular inventory to support the traditional sales order products.
The question remains: How do we just take the inventory and transfer this to our Project and Task so that we don’t need to create a new purchase order for this project?
How to Transfer Inventory directly to a Project and Task
We will utilize the miscellaneous transaction to issue the material from the inventory location directly to the project accounts. First, you will need to create a new user defined transaction type that will be associated with the miscellaneous transaction. This transaction type will have the Project flag turned on which indicates that it will be associated with a project.
As with all transactions that are project related, you must make sure that the project manufacturing parameters are set for the project to allow these issues and costs to flow over to the project costing. You will assign the organization and the cost group that will be used for the miscellaneous transaction in the project manufacturing parameters form.
Next, we also will create an account alias that we will be able to use for the transaction source when we perform the miscellaneous issue of the material. This will define the account that will be debited when we issue the material.
Now, we are ready to perform the material transaction to remove the material from the regular inventory accounts and transfer the material directly to the project and the project accounts.
Navigate:  Inventory > Transactions > Miscellaneous Transaction
  1. Tab from the date field (accept default)
  2. In the Transaction Type field, select Inventory Issue to Projects
  3. In the Source field, select PROJECT WIP as the source
  4. Click on the Transaction Lines button (the Inventory Issue to Projects window will open)

  1. Enter the item number that you are transferring to the Project in the Item field
  2. Tab to the Subinventory field, select the subinventory where the item is currently located
  3. Tab to the Locator field, select the locator for the subinventory
  4. Tab to the Quantity field, enter the quantity to be transferred
  5. Tab to the Source Project field, select the project number to be charged
  6. Tab to the Source Task field, select the task number to be charged
  7. Tab to the Expenditure Type field, select the expenditure type (ex. Misc. Charge)
  8. Tab to the Expenditure Org field, select the expenditure organization (ex. Milwaukee Service Center)
  9. Save the record

This will remove the item from inventory and perform a credit to the inventory account and debit the Project WIP account.
Using this simple transaction, we were able to allow this client the ability to handle a specific exception to their standard rule;
All project related material will be purchased as expense to the project on a separate purchase order.
In some cases, especially where the material might have a longer lead time, the client was able to satisfy the immediate project requirement by using existing material that they already had in their inventory.

Comments

Popular posts from this blog

Create Accounting for a Payment generates errors 95333 and 95359

Create Accounting for a Payment generates errors 95333 and 95359 Error: 95333: A conversion rate does not exist to convert USD to AUD for the conversion type Corporate and conversion date 20-MAR-09 for line -25. Please use the Daily Rates form in General Ledger to enter a conversion rate for these currencies, conversion date and conversion type. 95359: There is no accounted amount for the subledger journal entry line. Please inform your system administrator or support representative that: The source assigned to the accounting attribute Accounted Amount has no value for extract line number 88547. Please make sure the source assigned to the accounting attribute Accounted Amount has a valid value, or assign a different source to this accounting attribute. Solution: 1. Specify a conversion rate for the currencies and conversion date mentioned in the error message 95333 Navigation under the General Ledger responsibility: Setup > Currencies > Currency Rates Manager > Daily Rates ...

Public API’s for FA Transactions

Public API’s for FA Transactions So far Oracle FA is have all the good things except the lack on reporting.Oracle FA is now offer lot of public API's that can be used to interfacing with third party or Oracle application other modules. Here are some of transaction's API's:   Additions API if you have requirement to add assets directly via PL/SQL then use  FA_ADDITION_PUB.DO_ADDITION. If you have selected the Allow CIP Assets check box on the Book Controls window of a tax book when adding CIP assets using the Additions API, the this API automatically adds those CIP assets to that tax book at the same time that they are added to the corporate book. Adjustments API you can make cost adjustments to your assetsdirectly via PL/SQL using  FA_ADJUSTMENT_PUB.DO_ADJUSTMENT  for any  process adjustment. Detail can be found in appendix H) You can use this API if you have a custom interface that makes it difficult to use with the existing Oracle Assets interfaces for adjusti...

AP Table Relation Oracle Apps

AP Table Relation Oracle Apps ORACLE PAYABLE TABLE RELATION Source Table Dependent Table Condition AP_INVOICE_LINES_ALL AIL ZX_LINES_SUMMARY ZLS AIL.invoice_id = ZLS.trx_id and  ZLS.application_id  = 200 and  ZLS.entity_code  = 'AP_INVOICES' and  ZLS.event_class_code  in ('STANDARD INVOICES', 'PREPAYMENT INVOICES', 'EXPENSE REPORTS') and  AIL.summary_tax_line_id = ZLS.summary_tax_line_id AP_INVOICE_LINES_ALL AIL ZX_LINES ZL AIL.invoice_id = ZL.trx_id and  ZL.application_id  = 200 and  ZL.entity_code  = 'AP_INVOICES' and  ZL.event_class_code  in ('STANDARD INVOICES', 'PREPAYMENT INVOICES', 'EXPENSE REPORTS') and  AIL.line_number = ZL.trx_line_number AP_INVOICE_DISTRIBUTIONS_ALL AID ZX_REC_NREC_DIST ZD AID.invoice_id = ZD.trx_id and  ZD.application_id  = 200 and  ZD.entity_code  = 'AP_INVOICES' and  ZD.event_class_code  in ('STANDARD INVOICES', 'PREPAYMENT INVOICES', 'EXPENSE REPORTS') and...