November 22, 2014

Pack Slip Generating Issues

During Ship confirmation, below error is coming and Pack Slip is not generating

Error

Error: There is an error generating/validating the sequence number. Please check the assignments are defined and are valid.
------------------------------------
Warning: Pack Slip information could not be automatically created for delivery 115506201.
------------------------------------
Error: There is an error generating/validating the sequence number. Please check the assignments are defined and are valid.
------------------------------------
Warning: Bill of Lading information could not be automatically created for Delivery 115506201.
------------------------------------
Submitted 1 out of 1 documents for this document set. (REQ_IDS=293613)
------------------------------------
Warning: Failed to submit document set for delivery 115506201
------------------------------------
Interface Trip Stop request 293614 has been submitted
------------------------------------
Warning: 1 deliveries will be marked as In-Transit/Closed.

Issue:

This order will be able to ship confirm, if re-queried but Pack Slip will not be generated.

Solution:

As in this case, this is not able to properly generate the sequence number, it cannot insert record into WSH_DOCUMENT_INSTANCES table
In most business, Delivery Name been used as the pack slip number.
So for every pack slip document, data being inserted into the table with entity_id as the delivery name.
So as in this case, it is not able to generate the sequence number, this will not be inserted in the table and pack slip canot be generated.
So for this issue, the solution is to do the below profile option setup in following level
Profile OptionSequential Numbering
ValueAlways Used
LevelApplication
Application Level valuesShipping Execution and Order Management
If you don’t want to use the same value across all sites, then you can do the setup at specific responsibility levels too.

Read More

October 31, 2014

Label Printing in MSCA/WMS

Labels

Either we can use the existing labels or we can design new labels

Label Types:

There are different label types depending on the different business and requirement with data elements.

Label Format:

A single design of a label that may include fixed data (such as field prompts) and variable data (such as Part Number). A Label Format is associated to a Label Type. It includes a subset of the available data elements from a particular Label Type. A label type can have multiple label formats, however each Label Format belongs to only one label type. Label Formats are registered within Oracle Warehouse Management after you create the label design in the third party software package.
Either you can use the seeded label format or you can design your own label format
We can customize the label as per our requirement with required and customized fields

Printing Modes

Asynchronous:

An integration mode between Oracle Warehouse Management and the third party software supplier that is handled through dropping an XML file into a watched directory. When using this mode, Oracle Warehouse Management has no knowledge of the status of the print request after creation of the XML file.

Synchronous:

Generic:

A real-time integration mode between Oracle Warehouse Management and the third party software vendor that is handled through a PL/SQL API. When using this mode, the third party supplier is able to return success or failure messages regarding the status of the label print request. Oracle Warehouse Management stores those messages in the label print history so label printing problems can be easily identified and diagnosed.

TCP/IP:

A real-time integration mode between Oracle Warehouse Management and the 3rd Party software vendor that is handled through a standard Ethernet TCP/IP connection. When using this mode, Oracle ensures that the printer or print server is listening to the IP and port and has successfully received the message, but no knowledge of the detailed status of the print request beyond acceptance of the XML message is known by Oracle Warehouse Management.
Example Printer vendors like Zebra, Intermec, Cognitive Solutions, Datamax, Toshiba TEC, Printronix and Sato

Printer

·        Define the printer details in Oracle system (Sysadmin) with proper styles and drivers and with unique name

·         Assign IP and Port to printers

Assigning Label Types to Business Flow

Business Flow: An identifiable business process that occurs as part of material handling within Oracle Warehouse Management. Oracle Warehouse Management recognizes a pre-determined list of Business Flows you can set up to include label printing as part of the transaction processing.

Defining Label Format Rules

Creating label format rules is an optional step. Some implementations may require only a single label format for each label type. If this is the case, the system picks the default label format for each type. The system also picks the default if there are no applicable rules. If the implementation requires more than one label format for a label type label format rules are necessary.

Assigning Printer to the Required Level

Printers can be assigned to Site level, responsibility level, user level.


Read More

September 7, 2014

Below are the basic tables used during Drop Ship flow

apps.oe_order_headers_all 
apps.oe_order_lines_all
apps.oe_drop_ship_sources
apps.po_requisitions_interface_all
apps.po_interface_errors
apps.po_requisition_headers_all
apps.po_headers_all
apps.po_lines_all
apps.po_line_locations_all
apps.po_distibutions_all
apps.po_releases_all

Below is the SQL Statement to find out the Drop Ship SO and corresponding Requistiona and PO details along with their status

select ooh.order_number
       ,ool.ordered_item
       ,ool.ordered_quantity
       ,ooh.flow_status_code header_status                   
       ,ool.flow_status_code line_status
       ,prha.segment1 requisition
       ,poh.segment1 po_number
       ,poh.closed_code po_status
       ,pll.quantity
       ,pll.quantity_received
       ,pll.closed_code po_shipment_status
from apps.oe_order_headers_all                   ooh
    ,apps.oe_order_lines_all                     ool
    ,apps.oe_drop_ship_sources                   odss
    ,apps.po_requisition_headers_all             prha
    ,apps.po_headers_all                         poh
    ,apps.po_lines_all                           pol
    ,apps.po_line_locations_all                  pll
              
where ool.header_id = ooh.header_id
and   odss.header_id = ooh.header_id
and   odss.line_id = ool.line_id
and   prha.requisition_header_id = odss.requisition_header_id
and   poh.po_header_id = odss.po_header_id
and   pol.po_line_id = odss.po_line_id
and   pol.po_header_id = poh.po_header_id
and   pll.po_line_id = pol.po_line_id
and   ooh.order_number = '66411';
Read More

Setting up the Item first

Master Level:
Inventory:
Inventory Item, Stockable, Transactable
Purchasing:
Purchased, Purchasable, List Price

Order Management:
Customer Ordered, Customer Order Enabled, Shippable, OE Transactable
Default SO Source Type should be External
Internal Ordered, Internal Order Enabled (These 2 if the drop ship will happen from internal organization)

Invoicing

Organization Level Setup:
Inventory

Costing

Receiving

Now create the Sales Order



Make sure source type is External
Now Book the order

Now the line is in Booked


Workflow is deferred for Purchase Release
Run the workflow Background
After the program completes, re query the SO

Now the time, you can see the record both in Drop Ship table and Po Req Interface table
select * from apps.oe_order_headers_all where order_number = '66411';
select * from apps.OE_DROP_SHIP_SOURCES where header_id = 190500;
select * from apps.po_requisitions_interface_all where creation_date >= sysdate-1/24;
Now run the Requisition Import Program

If this program not able to create the requisition, then please check the error if any in below table
select * from apps. PO_INTERFACE_ERRORS where transaction_id = <transaction_id from po_requisition_interface_all table>
Once the program, completes, lets check the Req details in Sales order line, additional Information , Drop Ship tab

PO Creation

Now take this Requisition and Auto Create PO from this using the Purchasing responsibility

Click Automatic

Select the supplier and Site and click Create
This will create the PO

Now check the details and Submit for Approval

Wait till you get the confirmation from supplier for the shipments either by ASN or any EDI communication.
Now you can see this PO details in SO Line, Drop Ship tab

PO Receiving

Once confirmed, then go ahead and do the receipt

Once received, check the transaction completion.
Once the receiving transaction completed, go and check the SO line status

Now run the workflow background program, this will close the line

This will interface the record to Receivable
Now run the Autoinvoice Master program to create the Receivable Invoice
Read More

August 23, 2014

1. Create an Item, should be Customer ordered, customer orderable, purchased, purchase order enabled
2. Give the buyer details
3. OM: Population of Buyer Code for Drop Ship should be Order Creator
4. Now add the buyer Employee to the user who will crete the PO
5. Create a sales order, line source type should be external(this can be setiup at item level too)
6. Once you book the order, workflow will be deferred.
7. Run the Workflow background, this will change the line status to Awaiting Receipt
8. Run the PO Requistion Import program from the PO responsibility with parameter Source as ORDER ENTRY and Initiate Approval after ReqImport as Yes.
9. Go to the sales order and in additoional information, drop ship tab, you can see the PO/PO req details
10.Go to Purchasing --> Autocreate, Goahead and create the PO Document and Approve the same.
11.Now go and receive the PO, this will automatically trigger the Sales order issue transaction for the drop ship SO
Read More
To achieve this, you have to follow below steps
1. Define the Picking and Shipping Document set
2. Define a Ship confirm rule and add the shipping document here.
3. Define a a Pick Release rule
    (Make sure Auto Pick Confirm, Auto Create Delivery, Auto Pack Delivery are set as Yes)
4. Add the ship confirm rule in the shipping tab
5. Add the Picking Document set in Pick release rule
6. Make sure Auto allocate is Yes in Inventory tab.
7. Now use "Release Sales Order SRS" and Schedule it as per the frequency you need for the Pick release rule you have created.
Read More

July 30, 2014

1. Find an organization which is WMS enabled
2. Take any item assigned to this org, make sure you have onhand present
3. Make sure you have your Pick and Put away rules defined for that org
4. If you are defining stratergy then assign those in the work rule bench also
5. Create a sales order
6. use the item and source it from the WMS enabled org
7. Do Release Sales order
8. Make sure during pick release, you keep Auto Pick confirm as No and Auto allocate as No.
9. Then run the Pick release by Execute Now/Concurrent 
10. Go to shipping transaction form and copy the move order for this line
11. Now go to the WMS responsibility
12. Select Rules Simulation (Setup>Warehouse Configuration>Rules>Warehouse execution>Rule Simulation)
13. Select "Pick & Putaway" in the rule simulation form left panel, then Find Move Order button will be active
14. Click on Find Move order, enter the move order and click on Simulate.
15. Now you can see which Pick rule is used in Source Loc tab and Staging Putaway rule used in Destination Loc tab.

Read More

May 28, 2014

Run this script giving inventory org as the parameter
SELECT mp.organization_id,
       MP.ORGANIZATION_CODE,
       hl.address_line_1,
       hl.address_line_2,
       hl.address_line_3,
       hl.town_or_city,
       hl.country,
       hl.postal_code,
       HAOU.NAME,
       HAOUBG.NAME BUSINESS_GROUP,
       GSOB.SET_OF_BOOKS_ID,
       GSOB.NAME SOB_NAME, /*gsob.short_name,*/
       GSOB.CURRENCY_CODE,
       GSOB.PERIOD_SET_NAME,
       (SELECT SEGMENT1 || '.' || SEGMENT2 || '.' || SEGMENT3 || '.' ||
               SEGMENT4 || '.' || SEGMENT5 || '.' || SEGMENT6 || '.' ||
               SEGMENT7 || '.' || SEGMENT8 || '.' || SEGMENT9
          FROM APPS.GL_CODE_COMBINATIONS
         WHERE CODE_COMBINATION_ID = GSOB.CHART_OF_ACCOUNTS_ID) CHART_OF_ACCOUNT,
       HLE.NAME LE_NAME,
       HLE.VAT_REGISTRATION_NUMBER,
       HOU.NAME OU_NAME

  FROM APPS.HR_ALL_ORGANIZATION_UNITS   HAOU,
       APPS.HR_ORGANIZATION_INFORMATION HRI,
       APPS.MTL_PARAMETERS              MP,
       APPS.GL_SETS_OF_BOOKS            GSOB,
       APPS.HR_LEGAL_ENTITIES           HLE,
       APPS.HR_OPERATING_UNITS          HOU,
       APPS.HR_ALL_ORGANIZATION_UNITS   HAOUBG,
       APPS.HR_ORGANIZATION_INFORMATION HRIBG,
       apps.hr_locations                hl

 WHERE HRI.ORGANIZATION_ID = HAOU.ORGANIZATION_ID
   AND HAOU.ORGANIZATION_ID = MP.ORGANIZATION_ID
   AND MP.ORGANIZATION_CODE IN ('V1')
   AND HRI.ORG_INFORMATION_CONTEXT = 'Accounting Information'
   AND GSOB.SET_OF_BOOKS_ID = HRI.ORG_INFORMATION1
   AND HLE.ORGANIZATION_ID = HRI.ORG_INFORMATION2
   AND HOU.ORGANIZATION_ID = HRI.ORG_INFORMATION3
   AND HAOUBG.ORGANIZATION_ID = HLE.BUSINESS_GROUP_ID
   AND HRIBG.ORG_INFORMATION_CONTEXT = 'Business Group Information'
   AND HRIBG.ORGANIZATION_ID = HAOUBG.ORGANIZATION_ID
   and haou.location_id = hl.location_id

;
Read More

May 19, 2014

Purchasing

Q. What are the approval hierarchy

Q. What approval hierarchy you use in your implementation?

Q. How to check what is the approval hierarchy used in your system?
Ans: If Use Approval Hierarchy option is enabled in the Financial Options form, it will use the position based hierarchy. If it is disabled then it will use the supervisor based hierarchy.

Q. How to send the PO to a person before even approval who has that approval limit not through workflow hierarchy

Q. Where to do the setup for specific approval limit for a person?

Q: What is Charge Account?
A: Charge account in PO distribution is used as a debit account during the PO delivery process(the account to charge for the cost of the item).
If PO is for an inventory item, then mostly the charge account will be defaulted from the subinventory or organization material account.
If it is for an expense item, then the account will be defaulted from the subinventory or organization item expense account

Q: How Charge Acount default?
A: PO Charge account, in fact all purchasing accounts will be derived from the Account generator workflow items

Q: Can a PO be created without Item?
A: Yes you can create a purchase order without an item.
in purchase order, you can create different line type as per the types of product or services you want to buy.
Either this can be an inventory item or this can be a consulting service or labor
Ref doc: http://docs.oracle.com/cd/A60725_05/html/comnls/us/po/linety01.htm

Q: Differences between Internal Sales Orders and Inter-Organization transfer
A:  Explore more here
  • IR-ISO has approval process whereas there is no approval process for Inter-Org transfer
  • The IR cycle useful for more tracking, control (IR, SO), approvals and generating pick slips whereas Inter-Org transfer is a one step transaction, simple flow, more user friendly and no interfaces involved
  • RMA is possible in Internal Sales Order whereas in Inter-Org transfer there is no functionality to Cancel, delete or Return or not receive an In-transit Shipment
Q: When Internal Sales Order and Internal Requisition will be picked up by Inter-Company invoicing process?
A: Internal sales order and Internal requisitions will be picked by Inter-company invoice process on the following conditions:
  • In shipping method, transfer type should be Intransit
  • Profile Option INV:Inter-company Invoice for Internal Orders value is Yes on site level. This will be used for creating Account Payable in the Intercompany Invoice process.
Explore more here

Q: What validations happen for Create Release program for creating a BPA release for a requisition?
A:

  1. Sourcing rule exists or not for the item
  2. Whether ASL defined or not
  3. BPA and Line details mentioned in ASL or not
  4. BPA should be approved
  5. Corresponding BPA line should not be cancelled
  6. BPA terms effective dates should satisfy the date on release creation
  7. BPA agreement for qty or amount should satisfy the release qty
  8. Rel qty should satisfy the BPA min release qty


Questions will be Answered soon if not answered already. Meanwhile you can post more questions in the comment also you can answer to above questions in the comment.
Please help here to rectify if any of the answers are not correct.
Read More

Inventory

Part-1

1. What are different planning methods in Inventory
There are 5 different planning methods in oracle Inventory

  • Subinv Replenishment Planning
  • Min Max Planning
  • Re-order point planning
  • Kanban Planning
  • Periodic Automatic Replenishment

2.  What are the setups for different planning method (Min-Max)
Setup the item in master org and assign the item to the org for which Min-Max planning is used
  • Attributes, Inv Planning method: Min-Max
  • Min-Max Qty should have been defined
  • Safety Stock method should be non MRP Planned
  • Determine what should be the status of the Requisitions created for the planning
  • Do this with profile option INV: Minmax Reorder Approval
  • IF Use ASL has been enabled, then Requisition will populate the supplier data from the ASL setup which is assigned to the item
  • Sourcing rules can be defined for this
  • Then need to assign sourcing rule to the item
  • In Inventory responsibility, under Planning run the Min Max planning report with required parameter
3.  What is the concurrent program for the planning
Min Max planning report under planning menu in Inventory responsibility

4.       What are the setups for expense item?

  • Should not be Inventory Item
  • No Stockable
  • No Transactable
  • No Costing, Inv Asset
5.       How many key flexfields are there in Inventory?
Seven KFF are there in Inventory 

  • Account Alias
  • Item
  • Item Category
  • Item Catalogues
  • Stock Locators
  • Sales Order
  • Service Items
6.       What is the use of sales order KFF?

  • This is used during material transaction when source is Sales Order
  • Segments are Sales order Number.Sales Order Type.Sales Order Source
7.       How we can have the item key flexfield with 2 segments, is it possible, if yes then how, if no then why?

  • This can be modified using Flexfield>Key> Segments
  • Query the System Items, then you can modify the existing structure, or you can add a new one.
8.       How will you inactivate the Inventory locations
By giving Inactive date in the Location form

9.       What all setups you have done in inventory organization implementation

  • Location
  • Calendar
  • Organization
  • Parameter
  • Cost Group
  • Subinventory
  • Stock Locator
  • Receiving Options
  • Shipping Networks
  • Intercompany Transaction flows
  • Cost Subelements

10. What is the difference between purchased and purchasable flag for an item?

  • Purchasable is a status attribute flag, so based on this flag, certain transactions can be controlled for an item.
  • Purchased flag decides whether to purchase and receive this item.
  • Purchasable flag decides, whether to order this item in a purchase order.
  • If purchasable is enabled, item can be ordered in a purchase order, if not, new purchase orders cant be created and approved for the items.
  • If purchased is enabled, item can be received if already present in an approved purchase order.

Part - 2

  1.        What are the valuation accounts used in Inventory
  •          Material      An asset account that tracks material cost. For average costing, this account holds your inventory and intransit values. Once you perform transactions, you cannot change this account.
  •          Material Overhead An asset account that tracks material overhead cost.
  •          Resource     An asset account that tracks resource cost.
  •          Overhead    An asset account that tracks resource and outside processing overheads.
  •          Outside processing An asset account that tracks outside processing cost.
  •          Expense       The expense account used when tracking a non-asset item
Other Accounts
  •          Sales             The profit and loss (income statement) account that tracks the default revenue account.
  •          Cost of Goods Sold The profit and loss (income statement) account that tracks the default cost of goods sold account.
  •          Purchase Price Variance       The variance account used to record differences between purchase order price and standard cost. This account is not used with the average cost method.
  •          Inventory A/P Accrual           The liability account that represents all inventory purchase order receipts not matched in Accounts Payable, such as the uninvoiced receipts account.
  •          Invoice Price Variance           The variance account used to record differences between purchase order price and invoice price. This account is used by Accounts Payable to record invoice price variance.
  •          Encumbrance            An expense account used to recognize the reservation of funds when a purchase order is approved.
  •          Average Cost Variance          Under average costing with negative quantity balances, this account represents the inventory valuation error caused by issuing your inventory before your receipts.

  1.        What is ABC Analysis and why it is being used
  •          ABC Analysis is an Inventory categorization method to categorize items into 3 different classes A being the most valuable and C being the least valuable ones.
  •          Using this Analysis, it will be easy to monitor and keep on track of the valuable items like frequently doing cycle counts on A class items, etc.
  1.        What are the process of cycle count
  •          Create a cycle count header with required data
  •          Assign the items to be counted
  •          Then run the required cycle count report
  •          Using the report do the cycle counts
  •          Then go and Approve the cycle count
  1.        What is the different in MO Issue and MO Transfer
  •          MO Issue will move out the stock from inventory against an account
  •          MO transfer will move the stock from one subinventory to other
  1.        What is the Picking rule in Inventory
  •          Picking Rule is used to determine the list of items for sales order/ shipping based on the revision, Lot, Subinventory and Locator.
  •          Assign the required Picking Rule to the item in Order Management tab.
  1.        What are the criteria in Cycle count
           Depending on the requirement, we can trigger cycle count.
           We can define regular cycle count of high values items.
           If back ordered or pick denied, we can trigger cycle count for those items. 
  1.        What are the diff in Lot and Serial
          Lot control is to control a whole batch of items. for example in drug industry we have batch number which           can be controlled using lot where we can track the complete batch using specific data.
          Serial control is to monitor and track every single qty of an item like electronic devices where we track by           serial number.
  1.        What are the material status in a subinventory
  2.        What is Physical Inventory

Part - 3

1What is move order in OM
Move orders generated as part of Pick Wave are the ones from Sales order
2. How a MO is diff from Subinv transfer
Ans: MO generally are the request of movement of items in one organization. It may be of from 3 sources, MO requisition, Replenish MO, Pick Wave MO. MO can be MO Issue which will issue the item from the location and MO transfer which ll transfer the item to another location.
3What is nettable in Subinventory setup
This will detrrmine whether to consider the onhands of the subinventory as available for planning tasks.
4. What are the status attributes in Item and how many of them
We can define different status for an item combination these attributes as per the business need
Following are the attributes
BOM Enabled
Build in WIP
Customer order enabled
Internal Order enabled
Invoicable
Purchasable
Stockable
Transactable 
5. What is the use of status attribute
We can define different status for an item combination these attributes as per the business need
6. Why master org is required
So that we can have an item maintained at master level with common attributes and then we can use the same item across multiple organization instead of defining it again and again. 
7. Inventory Master org is mandatory?
Yes. If you will not create any specific master org, then system will consider the same inv org as its master org.
8. What are the Lot control setups
Lot control can be setup at item attributes at organization level.
Either No Control or Full Control
9. How lot number generates
You can generate new Lot numbers during transactions
10. What is serial controlled and what are the setups
Serial control can be setup at item attributes at organization level.
11. How serial numbers are generated
Serial control can be setup at item attributes at organization level.
No Control, At Receipt, At Sales Order issue, Predefined
12. What is the predefined locator in Subinventory and how it works in business
We can setup locator control in 4 diff ways for each subinventory
None: There will not be any locator information required during any transaction
Prespecified: System will ask you to select locator combinations which already been defined in the subinventory during the transaction
Dynamic Entry: Either you can select any locator during transaction or you can create a new combination
Item Level: This will take the locator which has been defined at item attribute level
13. What are the transaction managers
Transaction manager is the inetrface managers which carry out all transaction once submitted by the users
14. Can we change the item name after it created?
Ans: Yes we can change the name in master level.

Part -4

1. How WMS is helpful compared to Inventory
Ans: Warehouse Management (WMS) enables companies to maximize their utilization of labor, space and equipment investments by coordinating and optimizing resource usage and material flows. Specifically designed to support the needs of distribution, manufacturing, asset-intensive, and service businesses, Oracle WMS provides a single-platform across your entire global supply chain.
2. What functionality in inventory uses the calendar
3. What is the diff in inv and wms from accounting perspective
4. What is the use of WMS Rules Workbench

Ans: The Rules workbench enables you to assign strategies, rules and cost group values directly to any number of objects in an assignment matrix
5. Why strategy used

Ans: After you define your rules, you must set up a strategy and then associate the applicable rules. After you assign rules to a strategy, the rules engine can execute the strategies on any objects to which the strategy applies. The rules engine executes each subsequent rule in your strategy until an allocation is completely filled.
6. How many types of bar codes are there
Ans: Mainly 2 types Linear (1 dimensional) and Matrix (2D)



Part - 5


1. What is an item?
An item is a part or services where you can Purchase, Sell, Plan, Manufacture, Stock, Distribute and Prototype.
Items can also be containers for items as well as components you build into other items.

2. Explain Item Master Organization?
An item master organization is a logical entity where you define the item. After you define an item in the item master, you can assign it to any number of other organizations.

3. Define Inventory Organization?
It is a facility which will enable you to store and transact the items. It can be a manufacturing unit, ware house, distribution center etc.

4. What is a subinventory?
Subinventiries are unique physical or logical separations of material inventory. These can be raw material, finished goods or defective material subinventory. You must define at least one subinventory. Subinventories are of two types: storage and receiving
Storage subinventories are intermediate or final put away locations for material. Material that resides in a storage subinventory appears in on hand quantity, and is tracked by the system. The system can book orders against, and use manufacturing processes on material that resides in a storage subinventory. You must define at least one storage subinventory for your implementation.
Receiving type subinventory is only used for receiving items. Items in this subinventories cannot be on-hand or reserved

5. In which table does the subinventory related information for an item is stored?
MTL_SECONDARY_INVENTORIES
MTL_ITEM_SUB_INVENTORIES

6. What is a stock locator?
Locators are structures within subinventories. Locators are the third level in the enterprise structuring scheme of Oracle Inventory. Locators may represent rows, racks, or bins in warehouses. You can transact items into and out of locators. You can restrict the life of locators, establish capacity of a specific locator in weight or units, as well as specify dimensions which define a locator’s capacity by volume.

7. What are the Key flex fields in oracle Inventory?
Oracle Inventory provides the following flexfields:
System Items, Item Catalogs, Item Categories, Stock Locators, Account Alias and Sales Order

8. What are the basic steps involved in defining an item?
Create an item in the item master form
Copy the template from the tools menu to assign specific attributes to the item and save it.
Assign the item to a category from tools menu and save your work
Select organization assignment from tools menu and assign the item to different inventory organizations by ticking the checkbox next to the inventory organizations.

9. What are item attributes?
Item attributes are the collection of information about an item. These are used to store specific characteristics of an item, such as item status, unit of measure, revision control, etc. these can be controlled at either the master or the organization level. These attributes are stored in a table named MTL_ITEM_ATTRIBUTES

10. What is the use of item template?
An Item template is a set of attributes that enable the user to quickly create an Item. You can use the existing templates are you can create your custom template.

11. What is an item category and category set?

A category is a logical classification of items that have similar characteristics.
A category set is a distinct grouping scheme and consists of multiple categories. An item can belong to any number of category sets. We can assign item to one category within each category set. The categories can be retrieved from the table ‘MTL_CATEGORIES_B‘ and item category set from ‘MTL_CATEGORY_SETS_B’.

12. Explain unit of measure (UOM) and UOM class?
The unit of measure (UOM) helps us count the number of items involved in a transaction or the number of items that are stored in a subinventory or a locator.
UOM classes let you group different UMO’s into one category. Eg, quantitycould be a UOM class under which each, dozen, lot etc are separate UOM’s.

13. Explain shipping method?
Shipping methods are the way you ship material. When you create a shipping method, you must enable it before you can use it in a shipping network. If you disable a shipping method, it cannot be used in a shipping network.

14. Describe Interorganization Shipping Networks
An inter-organization shipping network describes the relationships and accounting information between a shipping organization and a destination organization. You must define a shipping network between two organizations before you can transfer material between organizations. When you set up a shipping network you must select a transfer type:Intransit or Direct.
Intransit: Oracle Inventory moves material to an intermediary state before it reaches the destination organization. After the material arrives at the destination organization, you will need a receipt transaction to retrieve it. If intransit is selected, you can define:
Shipping Methods, GL Accounts to use in transit, Material ownership during transfer, Planning lead times and Transfer Charges
Direct: Oracle Inventory moves the material directly to the destination organization. However, for both transfer types, you can determine default receipt routing and whether internal orders are required to transfer material

15. In which tables are the transactional details are stored?

MTL_MATERIAL_TRANSACTIONS
MTL_TRANSACTIONS_INTERFACE
MTL_MATERIAL_TRANSACTIONS_TEMP
MTL_TRANSACTION_ACCOUNTS

16. What is revision control in Oracle Inventory?
A revision is a particular version of an item, bill of material, or routing. Revision control is normally enabled for identifying a modified item. Item can be placed under revision control by checking the box `Revision control` in Inventory tab while defining new item or for existing item. Base table for Item Revision is MTL_ITEM_REVISIONS.

17. What is Picking Order of Subinventory or Locator? Where will you define the order?
The value indicates the priority with which we pick items from subinventory or Locator, relative to another subinventory or locator, where a given item resides. A picking order of 1 means that order entry functions pick items from the subinventory or locator before others with a higher number (such as 2,3 and so on).
The subinventory order is defined in the subinventory definition and the locator order is defined in the locator definition. The default order for both the subinventory and the locator are defined in the organization.

18. What are the different inventory transactions?

A transaction is an item movement within, into or out of inventory. A transaction changes the quantity and location of an item
The following are the different inventory transactions:
Receive an item into an organization from GL account number
Issue an item from an organization into a GL account number
Transfer items from one subinventory to other in the same organization.
Transfer of items between various inventory organizations
Reservation of items

19. Describe various inventory transaction types?

Miscellaneous transaction: This transaction is used to do adjustments in stock due to damage, obsolescence, issuing items for R & D or issuing track able expense items.
Subinventory transfer: This transaction is used to transfer goods from one subinventory to another within the same inventory organization.
InterORG transfer: This transaction is used to transfer goods from one inventory organization to another.
Receiving transaction: This transaction is used to move goods from receiving dock to specified subinventory and locator.
Sales issue: This transaction is used to move goods from pick subinventory to staged subinventory.
WIP issue: This transaction is used to issue materials against production orders

20. What is the difference between a subinventory transfer and a move order?

Both these transactions are used for the movement of items from one subinventory to the other. The difference is that move order generates a pick slip and a subinventory transfer doesn’t.
Move order requires ‘approval’. Also, move orders create allocations. So you can place hold on the material with the intention of picking it up a little later. In subinventory transfer, there is no reservation / allocation.

21. What are the Components used in Customizing a Transaction?
The following are the three components used in a transaction
Transaction Source Type
Transaction Action
Transaction Type
A Transaction Source Type and a Transaction Action come together to form a Transaction Type.

22. What is a Transaction source type?

A Transaction Source Type is defined as an entity against which Oracle Inventory charges a transaction. The following transaction source types come seeded with Oracle Inventory:
Purchase Order
Account Alias
Move Order
Internal Order
Standard Cost Update
Internal Requisition
Sales Order
Cycle Count
Periodic Cost Update
Physical Inventory
Account
RMA (Return Material Authorization)
Inventory
Job or Schedule

23. What is a transaction type?
A transaction type is a combination of a transaction source type and a transaction action. It is used to classify a particular transaction for reporting and querying purposes. Ex:
Sales order issue (txn type) + issue from stores (txn action) = sales order (txn source type)
Move order transfer (txn type) + subinventory transfer (txn action) = move order (txn source type)

24. Name any four purposes where miscellaneous transaction can be used?

Cycle count adjustment, Physical inventory adjustment, adjusting inventory quantity within an inventory organization and decrementing on-hand balances from a subinvemtory

25. Explain inventory control?

Inventory Control is the process by which inventory is measured and regulated according to predetermined norms such as economic lot size for order or production, safety stock, minimum level, maximum level, order level etc.

26. What are the objectives of inventory control?
To meet unforeseen future demand due to variation in forecast figures and actual figures.
To average out demand fluctuations due to seasonal or cyclic variations.
To meet the customer requirement timely, effectively, efficiently, smoothly and satisfactorily.
To smoothen the production process.
To facilitate intermittent production of several products on the same facility.
To gain economy of production or purchase in lots.
To reduce loss due to changes in prices of inventory items.
To meet the time lag for transportation of goods.
To meet the technological constraints of production/process.

27. What are the factors that affect inventory control?
Type of product
Type of manufacture
Volume of production

28. Define ABC analysis?
ABC analysis determines the relative value of a group of inventory items based on a user specified valuation criterion.
This technique divides inventory into three categories A, B & C based on their annual consumption value.
It is also known as Selective Inventory Control Method (SIM)

29. What is consignment inventory?
Consignment Inventory is inventory that is in the possession of the customer, but is still owned by the supplier. In other words, the supplier places some of his inventory in his customer’s possession (in their store or warehouse) and allows them to sell or consume directly from his stock. The customer purchases the inventory only after he has resold or consumed it. The key benefit to the customer should be obvious; he does not have to tie up his capital in inventory. This does not mean that there are no inventory carrying costs for the customer; he does still incur costs related to storing and managing the inventory

30. What are the different planning methods available in Oracle?
Re-order point planning
Min-Max planning
Kanban cards
Subinventory replenishment planning

31. When should the material be ordered?
When on-hand quantity + supply – demand is less than safety stock (safety stock is nothing but minimum inventory level)
[On-hand quantity] + [supply] – [demand] < [min inventory level]

32. Explain re-order point planning?
Reorder point planning uses demand forecasts to decide when to order a new quantity to replenish inventory. Reorder point planning suggests a new order for an item when the available quantity (on-hand quantity plus planned receipts) drops below the item’s safety stock level plus forecast demand for the item during its replenishment lead-time. The suggested order quantity is an economic order quantity that minimizes the total cost of ordering and carrying inventory. Oracle Inventory can automatically generate requisitions to inform your purchasing department that a replenishment order is required to supply your organization.

If the forecast is correct and the order arrives on time, the inventory level should be right at the safety stock level at the time of receipt. In cases where the desired safety stock level changes during the order lead time, Oracle Inventory uses the largest safety stock quantity during the lead-time.

When an order is triggered, the EOQ is the size of the triggered order.

EOQ = square root of: [(2 X annual demand X order cost) / (carrying cost percent X Unit cost)]

Oracle Inventory calculates annual demand as the current demand rate annualized by multiplying the current period demand forecast by the number of periods per year (12 or 13).

Reorder point planning can be performed at the organization level only.

33. Explain min-max planning technique?
Min-Max planning is a tool for planning inventory that looks at user-defined minimum and maximum inventory levels. It does not consider lead times.
We can perform this technique at org level or subinventory level

34. Define cycle counting and explain its use in oracle inventory?

Cycle Counting is a process of periodic counting of individual item / all the items throughout the course of the year to ensure the accuracy of inventory quantities and values.
We can do the cycle counting at Organization / Sub Inventory Level.
Cycle count is used to:
To reconcile system on-hand balances with actual counts in inventory
Maintain control over the items that have higher value

35. When do you perform physical inventory and explain the steps involved in it?
Physical inventory can be performed, whenever there is a need to verify the accuracy of system on-hand quantities. This can be done for entire organization or can be confined to a specific subinventory.
Steps to perform physical inventory:
Define physical inventory
Take a snapshot of system on-hand quantities
Generate physical inventory tags
Enter counts
Do physical inventory adjustments by approving or rejecting
Post adjustments
Purge physical inventory information

36. When can you see such scenario, item available to qty is 0 but available to transact more than 0
If item is not reservable
If Subinventory Allow reservation is not allowed
If Item is lot controlled and lot is expired

37. From where I can see the list of time zones in oracle.
A. The list of time zones and their other details can be found from below 2 tables
fnd_timezones_b, fnd_timezones_tl

38. Can one Asset subinventory be made Non Asset subinventory once transactions created on that?
A. Yes Asset Subinventory flag can be unchecked for that subinventory provided

  • There is no onhand present in that subinventory. If present you need to issue out and change the flag and receive those back.
  • There is no accounting details pending in inventory like transaction happened but costing is not yet done.


Questions will be Answered soon if not answered already. Meanwhile you can post more questions in the comment also you can answer to above questions in the comment.
Please help here to rectify if any of the answers are not correct.
Read More
Copyright © . Oracle Apps (SCM) . All Rights Reserved
Oracle Apps (SCM) is an online knowledge sharing blog which index online free tutorials, blogs and other sources, to get easier and accessible manner. The blog has been created keeping only one intention of sharing knowledge and for learning purpose. All trademarks, trade names, service marks, copyrighted work, logos referenced herein belong to their respective owners/companies. If any of the posting is violating copyright and you want us to remove that content. Please contact Here