Interview Questions Oracle Apps Functional and Technical
Interview Questions Oracle Apps Functional and Technical
Descriptions
In R12, We Can't just directly get the Code Combination ( i.e Accounting Flex Field) Description from a
single table. But Oracle has provided a package, which will help to get the description easily.
Script:
SELECT GCC.CODE_COMBINATION_ID,
GCC.SEGMENT1,
GCC.SEGMENT2,
GCC.SEGMENT3,
GCC.SEGMENT4,
GCC.SEGMENT5,
GCC.SEGMENT6,
GCC.SEGMENT7,
GCC.SEGMENT8,
SUBSTR (
APPS.GL_FLEXFIELDS_PKG.GET_DESCRIPTION_SQL (
GCC.CHART_OF_ACCOUNTS_ID,
1,
GCC.SEGMENT1),
1,
40)
SEGMENT1_DESC,
SUBSTR (
APPS.GL_FLEXFIELDS_PKG.GET_DESCRIPTION_SQL (
GCC.CHART_OF_ACCOUNTS_ID,
2,
GCC.SEGMENT2),
1,
40)
SEGMENT2_DESC,
DECODE (
GCC.SEGMENT3,
NULL, '',
SUBSTR (
APPS.GL_FLEXFIELDS_PKG.GET_DESCRIPTION_SQL (
GCC.CHART_OF_ACCOUNTS_ID,
3,
GCC.SEGMENT3),
1,
40))
SEGMENT3_DESC,
DECODE (
GCC.SEGMENT4,
NULL, '',
SUBSTR (
APPS.GL_FLEXFIELDS_PKG.GET_DESCRIPTION_SQL (
GCC.CHART_OF_ACCOUNTS_ID,
4,
GCC.SEGMENT4),
1,
40))
SEGMENT4_DESC,
DECODE (
GCC.SEGMENT5,
NULL, '',
SUBSTR (
APPS.GL_FLEXFIELDS_PKG.GET_DESCRIPTION_SQL (
GCC.CHART_OF_ACCOUNTS_ID,
5,
GCC.SEGMENT5),
1,
40))
SEGMENT5_DESC,
DECODE (
GCC.SEGMENT6,
NULL, '',
SUBSTR (
APPS.GL_FLEXFIELDS_PKG.GET_DESCRIPTION_SQL (
GCC.CHART_OF_ACCOUNTS_ID,
6,
GCC.SEGMENT6),
1,
40))
SEGMENT6_DESC,
DECODE (
GCC.SEGMENT7,
NULL, '',
SUBSTR (
APPS.GL_FLEXFIELDS_PKG.GET_DESCRIPTION_SQL (
GCC.CHART_OF_ACCOUNTS_ID,
7,
GCC.SEGMENT7),
1,
40))
SEGMENT7_DESC,
DECODE (
GCC.SEGMENT9,
NULL, '',
SUBSTR (
APPS.GL_FLEXFIELDS_PKG.GET_DESCRIPTION_SQL (
GCC.CHART_OF_ACCOUNTS_ID,
8,
GCC.SEGMENT8),
1,
40))
SEGMENT8_DESC,
GCC.CHART_OF_ACCOUNTS_ID CHART_OF_ACCOUNTS_ID,
GCC.ACCOUNT_TYPE
FROM GL_CODE_COMBINATIONS GCC
WHERE CODE_COMIBINATION_ID = :P_ID
Where: P_ID, you can pass Code Combination Id to get description for particular Accounting Combination.
2-Way Match: In 2-Way Match PO Quantity Should Match with Invoice Quantity and PO Unit Price
should match with Invoice Unit Price. All the matching should be with in the tolerance limits allowed in
the Receiving Control options.
3-Way Match: In 3-Way Match PO Quantity should match with Invoice Quantity and Receipt
Quantity. Also PO Unit Price should match with Invoice Unit Price. All the matching should be with in
the tolerance limits allowed in the Receiving Control options.
4-Way Match: In 4-Way Match PO Quantity should match with Invoice Quantity and Receipt
Quantity and also Accepted Quantity Also PO Unit Price should match with Invoice Unit Price. All the
matching should be with in the tolerance limits allowed in the Receiving Control options.
PO Unit Price = Invoice Unit Price
PO Quantity = Invoice Quantity
Invoice Quantity = Accepted Quantity
Invoice Quantity = Receipt Quantity
Are generated by applications including Inventory, Work in Process (WIP), Material Requirements Planning
(MRP) and Order Management.
Purchasing lets you control the items you order through receiving, inspection, transfer, and internal
delivery. You can use these features to control the quantity, quality, and internal delivery of the items you
receive.
4. Creation of Payables Invoice
Once youve received goods or service from your supplier, youll also receive an
invoice. UsingPayables you can record invoices in a number of different ways.
Use Quick Invoices for rapid, high-volume entry of standard invoices and credit memos that are not
complex and do not require extensive online validation.
Automate invoice creation for periodic invoices using the Recurring Invoice functionality.
Match invoices to purchase orders or receipts to ensure you only pay what youre supposed to be paying
for.
5. Payment to Supplier
Once invoices are validated, they can be paid. Payables integrates with Oracle Payments, the E-Business
Suite payment engine, to handle every form of payment, including checks, manual payments, wire transfers,
EDI payments, bank drafts, and electronic funds transfers. Payables also integrates with Oracle Cash
Management to support automatic or manual reconciliation of your payments with bank statements sent by
the bank.
This is how the P2P Cycle occurs in Oracle Apps.
We can specify both order credit limit (which is specific to an order)or credit
limit(which is entire credit limit).
5).What are Deliveries and Delivery Lines, and which one is created first?
Lets take an example. Let us say there is a sales order which consists of
two lines. Once the order is booked, two delivery lines are created automatically.
If there are two order lines, there will be two delivery lines,so for each
order line, there is a delivery line. Then as a next step, we assign these
delivery lines to a delivery. And if the autocreate is checked, then automatically
a delivery is created after pick relase and the two delivery lines are assigned
to the newly created delivery.
We can also set the item as a Vehicle as the case may be.
Here you specify the relationship between the regular items (like say Printer)
and the container items (like Box, Carton)and the maximum quantity that can
be filled in that container etc.
9) What is splitting the order lines and how does pick release help in the case
of split lines ?
Let us say we have an order which requires multiple shipments over time, then
you would split the order line, rather than creating multiple order lines.
So in each split line, we specify the quantity and the request data,warehouse
from where it should be shipped. Based on this, the scheduled ship dates are
also populated accordingly for each split line.
Once this is done, during the pick release process, we can specify up to which
schedule date /request date we want the lines to be released and then accordingly
the lines will be released.
10. What are line sets,ship sets, arrival set, fulfillment sets?
Line set is a generic term,which you specify at the order header level,
which can be a ship set, arrival set or fulfillment set.
If you specify a ship set,say 1, for a group of lines, then during pick
release we can release the lines based on that ship set number.
Also a line can belong to a ship set or arrival set,but not both.
15) What are trips and stops and how they are related to deliveries.
A trip consists of atleast two stops, one the pick-up point and one a drop-off
point. When we ship confirm a delivery,a program called "Interface Trip Stop"
is automatically run which creates a trip stop and the delivery is assigned
to that trip.
17) What are the possible reasons the inventory quantity can be driven negative
for reservable items.
Usually when we pick release, a quantity is reserved and if there is not enough
quantity then the reservation does not happen, and the pick release will fail.
However after a successful reservation , when we come to the delivery lines,
we can change the shipped quantity on the delivery lines as well. If that shipped
qauntity is more than the requested quantity and if that quantity is more than
the available quantity, (and if negative quantities are allowed) then the
inventory quantity can be made negative. if negative quantities are allowed for
that inventory organization, then those records might be stuck in the inventory
interface.
19) What is the difference between Pick Release and Pick confirmation.
Pick release is the process that you do in Order Management which will create a
move order and it goes thru approval, allocation and transaction.
Pick Confirmation is an inventory operation which is basically transacting a
move order which results in a subinventory transfer of the material from the source
subinventory to staging subinventory.
will have to manually do a receipt for that item and have enough quantity onhand.
27) What are the different modules which Order Management will interact with ?
28) If aline is stuck at Shipped status, and is not closed, then what is the
difference between running Workflow Background Process in Inventory versus
Order management,coz running from Inventory is pushing to AR ?
29) Does Order Header close immediately once all the order lines statuses are closed?
No. The standard functionality of the Order header closed an order header at
the month end even if all the lines are closed in the middle of the month. So
even if we run the Workflow Background Process for Order Header, the status
will not change to Closed for the Order Header. However this does not stop
interfacing the lines to AR.
30) Can you explain the difference between the Subinventory Transfer,Move Order,
Inter-org Transfer And Internal Sales Order?
31) Explain the process of backorder during the ship confirm process.
We know that during the pick release process ,if there is not enough quantity
the delivery line status will automatically change to backordered. Now even
during the ship confirm, we can do a back order. During pick release the quantity
has moved from source to staging subinventory.
Sometimes we may not ship the entire quantity that is pick released. The business
reason for this could be that we need that material for some urgent or important
customers and hence we might partially ship the quantity. And this is done in
the following steps as follows.
-- In the delivery line, the requested qty(say 100) and shipped qty is null. Let
us say we want to ship only 60 and not the remaining 40. So in the shipped qty
you enter 60, so the backordered quatity will be 40
-- In the ship confirm window, in the unspecified quantities list box change it
to "Backorder". Then the 60 will be shipped and the remaning 40 will need to be
pick released.
-- Now come to the sales order and look at the lines, the original line will be
split into two lines one with 60 ,having status of shipped and one with 40 having
a status of "Awaiting shipping".
Hence understand the status "backordered" ,the quantity needs to be pick released
again.
35) What is customer conversion and how does it affect order management ?
Basically when we are integrating two systems, then we need to bring in the
customers of one system to another,so we can transact in the new system
i.e we can create orders.
Hence if we are bringing open orders from system A to B, then we need to
do the item/customer conversion, because the open orders in the new system
will be referring to the old item numbers or customer numbers. For new
orders, that means the orders themselves are created in the new system.
38). What are the checklist of items that happen while booking the order ?
Scheduling,
Credit check,
Checking Hold if they exists,
Repricing,
Process Price adjustments (apply modifiers),
Payments (Authorization of credit cards)
Sales credit verified,
Constraints are validated,
System parameters are validated,
tax calculation,
Configuration Validation,
Workflow progress based on the type of order,
Shipping data are populated,
IB(Install Base), CZ(Configurator) are populated.
39). How do you fulfill the software Orders versus tangible item orders ?
For tangible items orders, fulfilment is shipping the order; and the IB instances are
created once the item is shipped. For software orders; the two ways of fulfillment are
Ship the cd box or fulfill it online (by downloading etc);
If it is fulfilled online, the IB instance is immediately created with out the serial number;
And once the product is shipped, that is when the IB instance can be updated
with the right serial#.(you cant put a serial# on the box).
40). How do you ship the orders which you frequently ship the items together ?
For ex, let us say you very frequently ship the order consisiting of one cd, one hardware
token and one user manual. Then it makes sense to group them into a BOM(bill of material)
Kit. That is a BOM of the type of Kit. A kit is a group of components,but a kit itself is not
shippable although the component items are shippable. Also ensure that the on hand exists
for all the component items so the pick release/ship confirm will not fail.
43). Once the order is shipped, how can we see the delivery lines ?
Once the order is shipped, we can pull up that order in the shipping transactions find form,
by selecting null from the line status field.
We can also run the report like "Shipped Delivery Lines report" and provide the order number to
see the delivery# details etc.
Shipping => Interfaces => Run => Shipped Delivery Lines report
45). you can have an item which is not inventory item, but it could be a customer orderable item?
Yes. for ex, service item, which are not inventory items (because they are not stockable/shippable) however a customer
can order the service item.
50). Why is that in OM, once a sales order is created for a customer, a credit hold is
automatically applied?
It may or may not be. It is decided by the workflow process.
51). I understand that BOM's should be defined if the warranty has to be automatically
created upon purchase of a product. What if the customer does not implement BOM?
When you purchase OM, the basic functionality of BOM is provided by default.
52). Does the workflow background process need to be run with deferred processes yes?
Yes to clear the waiting processes,if any.
53). Can the delivery lines in Shipping module be sourced from Other modules than OM?
The sources for the delivery lines are Order Management,Project Contracts and Shipping.
However when a order with a non-reservable item is pick released, then during
during the pick release process,then there is no allocation required.
56) What are the conditions under which the inventory quantity can be driven
negative(for non-reservable items)?
Usually when the items are non-reservable, then the pick release process will
not check for the item quantity and there is no reservation involved. Hence
when you shipconfirm ,there is a chance that sufficient quantity might not be
there to ship.
So if there is insufficient quantity in an inventory organization ,&
if negative quantities are allowed in that organization , &
if the item and subinventory both are reservable (if an item is reservable
but a subinventory is not, the item quantity in that subinventory is not
reservable),
Then if the above conditions are satisifed, the inventory quantity can be
driven negative.
57). What are the consequences of allowing /disallowing negative balances in inventory?
If you do not allow negative balances in your inventory it will block any shipment
(delivery) where a line is shipping more than the quantity available in inventory.
The error is generally human. You accidentally enter a larger Ship Quantity than you picked.
The whole delivery will be stuck in the Inventory Open Interface.
To solve the problem either go through the entire delivery and find out which line
was overshipped. Then move the required quantity to the staging area and resubmit
all the lines in the Inventory Open Interface. Now run the Interface Trip Stop - SRS
in Order Management. This should do the trick.
Otherwise, allow negative balances in your inventory. And resubmit etc. When the
delivery has been processed there will be a negative balance in the staging area.
Research onthis. if the shipped quantity is more than the requested quantity for the reservable vs non reservable items
do a copmlete flow on this. ??
This can be understood in the way that when we create a customer, the first thing
that comes up is the customer search screen,so that we can find existing customers,so
that there are no duplicate customer entries.
Actually the difference is when you are creating Automatically, the system will
create one delivery for the lines involved but if you want to do it your way i.e.
either club deliveries or may be have a delivery for each line seperately then it's of use.
To my knowledge if you don't have a seperate Trip Planning or Delivery Planning department
it should be left to create aumoatically as you won't be getting benefited much by that.
into inventory. check to see if the onhand has increased,ensure that the
receving transaction processor is running.
For ATO model you cannot ship the item immediately after booking. Please
find the following steps.
Click the actions button and select progress order. This will run a concurrent
program called autocreate final assembly. If you see the output of the
request you will get the job no.
Query the job in discrete job window and check whether it is released.
If not release it.
Now query your sale order and check the line status. It will be Awaiting
Shipping.
62). What is the difference between Operating Unit Id and Inventory Org id?
As mentioned before, usually whenever we are dealing with org id's in the
Purchasing,OM, we are referring to the operating unit id, while in the
inventory we are referring to the inventory org id.Now when we enter lines
in OM, we choose an inventory item id. Now this inventory item is corresponding
to the inventory organization id that is specified in the Warehouse id.
Actually the warehouse id corresponds to the Inventory Organization Id.
Incidentally the warehouse id is present both at the header level as well
as the line level. Also we can even mention what is the subinventory from
which this item should come at the order line level.
So what this effectively means is that we can place sales orders having
two lines corresponding to the two different inventory organization ids as the
warehouse id is present also at the line level.
65). How does the receiving system recognize the difference between receipt of a regular PO
versus drop ship PO???? i.e what is that specific flag that recognizes the difference ?
I believe when an order line is marked as with source type "External", then it make
an entry into a drop ship sources store(i.e oe_drop ship sources which stores the
order header and line id info).
And when the receiving system looks for a PO, it looks in this table if it is a drop
ship PO, and if it is then it does a logical receipt of the goods.
67).How do you do a drop ship order across operating units i.e you create an drop ship
order in US to ship a product from an australia supplier to your australia customer?
Basically cross OU/ledger functionality is available only in R12 and not in 11i.
The only difference is a couple of steps
First, set the receiving or in the sales order line as cross OU,receiving org.
second, receive the PO in the desitination OU/ledger and follow the same stepsfrom thereon.
Third, intercompany transactions for this transfer.
Ans:
Quick Codes(Order Management Lookups):14. What are various set ups for which we can create Quick Codes
Ans: Cancellation Codes Credit Cards Freight Terms Hold Types Note Usage Formats Release Reasons Sales
Channels Shipment Priorities, etc.
15. What is the navigation to define Quick codes
Ans: Order Management > Setup > Quick Codes > Order Management.
automatically creates a document category with the same name. This is used to assign the numbering sequence to the
order type.
23. What is the navigation to assign Document sequence to Order Transaction Type
Ans: To assign your order type to a document sequence navigate to Setup -> Documents -> Assign.
24. Can you change the Document sequence assignment for an order type
Ans: No. you cannot change the assignment for an order type and set of books. To change the assignment you must
assign an end date to the existing assignment and create a new one for the new assignment. You cannot have more than
one assignment for the same date range, document type and set of books.
Ans: The Entity field displays the name of the object for which defaulting rules and conditions are being defined such as
the order line.
Entity means a group of related attributes that correspond to a table or forms in Order Management. Examples of
Entities : Line Payment, Order Header, Order Line, Order Payment,
An Attribute is a field or column that belongs to that entity. Fox example: Ordered Quantity UOM is an attribute of
Order Line Entity
32. Can you create new record in Attribute Region
No. You are not allowed to enter new record
33. What is defaulting source and mention those sources
A defaulting rule source is the location from which you obtain a defaulting value; Defaulting sources: Constant Value,
Application Profile (Profile Options), Same record, Related record, System Variable, PL/SQL API, WAD Attribute,
WAD Object Attribute
34. Defaulting are set at which responsibility? ***
Ans: Defaulting rules are defined at Application Level.
Operating Unit Default: Enables you to set credit limits and terms, by currency, within a given operating unit
Credit Profile Limits Hierarchy when performing credit checking:
Customer Site Profile
Customer Credit Profile
Operating Unit Default Credit Profile
41. What is the purpose of Credit Profile Window?
Ans: The Credit Profile window enables users to create and maintain credit information for Operating Units and Item
Categories and assigning credit usage rules to that profile.
You cannot define Credit Profiles for Customer or Customer Site by directly navigating to the Credit Profile window.
Credit Profiles for Customer and Customer Sites are initially defined when entering credit information in
the Credit section of theProfile-Transactions tab of the Customer and Customer Site windows. You must then assign a
Credit Usage Rule to your Customer or Customer Site if you want to enable multi currency credit check.
42. What are the methods to deactivate Credit Checking
Ans: There are three ways to deactivate Credit Checking on an order:
Use an order type that does not have an assigned credit rule
Define the Customer Profile so that the Credit Check box is not checked
Use payment terms for which the Credit Check box is not checked
Deactivating Credit Checking does not automatically release orders previously on credit hold. However, the next time
you attempt to Book, Pick Release or Purchase Release (for drop shipments), Pack, or Ship Confirm an order which
utilizes a Order Management Transaction type that enables credit checking to occur at the specified order points, or you
perform an order change that trigger credit checking in the Sales Orders window, Order Management will releases the
credit check hold if the order or line meets the requirements for successful credit check
43. Which hold will be applied while checking credit/
Ans: Credit check failure hold will be automatically applied when he credit check evaluation fail on orders set up to be
credit checked.
Holds:
44. What are holds?
Ans: When you prevent further processing on an order through an exception, you are placing a hold on the order.
For each hold, you can specify hold security by responsibility to control which responsibilities have authority to apply
and/or remove the holds you define. Holds can be defined to be specific to pick, pack, ship, or invoice interface activities.
Order Management Hold database tables are striped by organization ID. Therefore, you will need to define holds for
each operating unit within your enterprise structure. However, hold type quick codes only need to be defined once.
45. Which profile options enables to modify seeded hold attributes.
Ans: OM: Modify Seeded Holds : This profile enables you to modify seeded hold attributes. Options are Yes or No. The
default is No or Null.
46. How many ways you can create holds?
Ans: You can create holds based on a combination of two criteria, such as customer and item, or item and warehouse.
47. Can Generic Hold applied at line level?
No. Generic hold can be applied at header level only.
48. What are various profile options that are to be considered while setting up holds
OM: Prevent Booking for Line Generic Holds : This profile controls whether a transaction will fail booking if a generic
hold has been applied.
OM: Schedule Line on Hold This profile controls whether scheduling should attempt to schedule lines that are on hold.
The default is set to No.
OM: Promotion Limit Violation Action : This profile controls how and where holds are placed on order lines and
headers when promotion limits are exceeded in Advanced Pricing or Trade Management. Available options are: Place
holds where violated, place order on hold when any violation occurs, or no holds applied. No holds applied is the default.
OM: Schedule Line on Hold This profile controls whether scheduling should attempt to schedule lines that are on hold.
OM: Modify Seeded Holds This profile, when set to yes, allows a user to modify seeded hold attributes. Use caution
when activating this profile as other system parameters may interact with the seeded hold values.
49. What is hold source
Ans: A hold source allows you to apply a particular hold to a group of existing orders, returns or lines and to new orders
and lines meeting your hold criteria. Hold Sources are created to hold all current and future orders for an item,
customer, order, warehouse or customer site (Bill to or Ship To locations), Blanket Sales Agreement No or a
combination two attributes.
To define a hold source, navigate to (N) Order Management > Orders, Returns > Order Organizer.
Select the Tools menu, and choose Create Hold Source.
Order Management supports Hold Sources with up to two entities. The combinations of two supported entities are as
follows:
Item > Customer : Item > Ship To Site : Item > Bill To Site
Item > Warehouse Item > Blanket Number Warehouse > Customer
Warehouse > Ship To Site Warehouse > Bill To Site
Blanket Number > Ship To Site Blanket Number > Bill To Site
Blanket Number > Warehouse Blanket Number > Ship To Site
Blanket Line Number
Attachments:
50. What is the navigation to create attachments?
Order Management: Setup > Orders> Attachments >Documents
51. Defining Attachment Addition Rules
Using standard Oracle Attachment functionality, you can specify rules for automatically attaching of all types of
documents to orders and order lines. You can specify that documents be applied to orders or lines for a
certainCustomer, Bill To customer, Ship To customer, item, order type, and/or purchase order.
For Order Management, you can specify attachment addition rules at the order level for the following attributes for
orders, quotes, or returns:
Customer Customer PO Invoice To Order Category Order Type Ship To
At the order line level, you can specify your attachment addition rules by specifying values for the following attributes
on the order, order line, quote line, or return line:
Customer Inventory Item Invoice To Line Category Line Type Purchase Order Ship To
52. How you will enable automatic attachments to Sales Orders?
Ans: By setting the profile option OM: Apply Automatic Attachments: to Yes
Order Management Work Flows:
53. What is Workflow?
Ans: Workflow technology supports routing information of any type according to user defined business rules. Business
transactions, such as order placements or purchase requests, which involve various controls, routings, and approvals,
can be managed more efficiently by leveraging Workflow technology.
An order and each of its lines can follow different workflow processes,
new window opens and displays the workflow status as an activities list.
From the Activities List window you can select the order header workflow Process or the order line workflow processes
associated with the order. Selecting an order line workflow process opens a new activities list for thatprocess.
Select View Diagram under the activities list to view the actual workflow diagram.
59. What are various work flow item types
Ans: Order Management (OM) comes seeded with the following workflow item types:
1) OM Order Header (OEOH) - All Order Header level activities and sub-processes, are seeded under this WF Item
type. Header flows are started using this item type, with the header ID as the Item Key. An order flow is started when an
order header is created and saved.
2) OM Order Line (OEOL) - All order line level activities and sub-processes, are seeded under this WF item type. Line
flows are started using this item type, with the line ID as the item key. An order line flow is started when an order line is
created and saved.
3) OM Standard (OESTD) - Common functions and lookups are seeded under this item type. No flows are started using
this item type.
4) OM Change Order (OECHGORD) - Change Order Notification flows are started using this item type.
60. What are workflows associated with OM Order Header Item Type
Order Flow Generic
Order Flow - Generic with Header Level Invoice Interface
Order Flow - Return with Approval
61. What is Order Flow Generic
The Order Flow - Generic workflow process is the most often used workflow in Oracle Order Management. This process
includes activities that book and close the order header. This can be used with any line flow for any item type with
outbound lines and return lines
Sub Process: Book Order Manual, Close Order
62. What is Order Flow Generic with Header level Invoice Interface
Ans: This work flow is used when business requires that all lines on the order invoice together at the header level. Order
Flow Generic with Header Level Invoice Interface first ensures that the order is booked before generating the invoice.
After booking is complete, the process interfaces with Oracle Receivables to generate an invoice for the order. Upon
completion of the invoice interface, the process closes the order.
This process must be used in conjunction with Line Flow - Generic with Header Level Invoice Interface.
Sub Processes: Book Order Manual, Header Level Invoice Interface, Close
63. What is Order Flow- Return with Approval
Ans: This workflow is used when all lines on the order are returns and header level approval is required.
64. What are various item types for which line flows can be assigned
1) ATO Models, Classes, Options, Items 2) Configured Item 3) Kits 4) Included Items 5) PTO Models, Classes, Options
6) Standard Items 7) Service Items
If the item type code is left blank, the specified workflow assignment applies to all item types for which there is no
specific assignment. Specify an assignment for the configured item type if you plan to use the line type for ATO
configurations.
65. What are seeded line item flows associated with OM Order Line Type.
Ans The Oracle seeded processes associated with OM Order Line include the following:
Generic Processes:
1) Line Flow Generic 2) Line Flow - Generic with Header Level Invoice Interface
3) Line Flow - Generic, With Export Compliance 4) Line Flow - Generic, Bill Only
5) Line Flow - Generic, Bill Only with Inventory Interface
6) Line Flow - Generic, Ship Only Use this process if you must ship a product but an invoice is not necessary. This flow
decrements inventory. For example, this process Selecting Workflows could be used when shipping free samples for a
new product, or for shipping a non-billable toolset to repair a previously invoiced item.
Sub Processes: Enter Line, Schedule Line, Create Supply Order Line. Maual,
Ship Line, Manual, Close-Line
68. Explain various line level processes used for inbound or return processes:
Ans: The following line level workflow processes are used for returns or inbound lines:
1) Line Flow - Return for Credit Only This process is used only for incoming lines. The process runs an activity that
issues credit without waiting for a receipt of goods or an approval. This flow could be used, for example, if you give
credit for a product shipped on a CD, but you do not want the CD to be returned.
2) Line Flow - Return for Credit Only with Approval This processes is used only for incoming lines that requires
approval. This process could be used, for example, when a return must be approved by a manager or a customer service
representative before credit is issued.
3) Line Flow - Return for Credit with Receipt This process is used only for incoming order lines that require receipt of
goods before credit can be issued. Once the returned items are received by Oracle Purchasing, the process continues
through invoicing and credit is issued. This process is useful when the returned items are expensive; credit should not be
issued until the items are received.
4) Line Flow - Return for Credit with Receipt and Approval This process is the most restrictive for incoming lines. The
process requires both receipt of goods and an approval. This process is commonly used when items such as modems are
returned. The modem is received then inspected to ensure that no mistreatment or neglect of the item occurred. Once
inspected and approved, credit is issued.
69. Which line flow is used for service and support items
Ans: Line Flow - Standard Service Use this process for service items such as support. Once the line is fulfilled, invoice
interfacing occurs.
70. What is ATO Item
Ans: It is an item you make in response to a customer order.Also know as Assemeble to Order
71. What is ATO Model
Ans: A configuration you create for customer order that includes optional items.
72. What do you mean by Available to Promise (ATP)
Ans: ATP (Available to Promise) typically refers to the ability to promise finished goods availability based on a
statement of current and planned material supply.
Ans: The quantity of on-hand stock, outstanding receipts and planned production which are not committed through a
reservation or placing demand. In Oracle Inventory, you define the types of supply and demand that should be included
in your ATP calculation.
73. What is the difference between Item and Model
Model : An item whose bill of material lists options and option classes available when you place an order for the model
item.
Order Entry:
74. What is standard Order process?
Ans: A Standard Sales order can contain the following process steps:
Order Entry:
Order Booking:
Pick Release:
Ship Confirm
Invoicing
Closing
These are dependent upon Order type and Line type that are associated with appropriate work flow process
75. What do you mean Booking of Order in OM
Ans: Booking a sales order indicates that the order entry process is complete and that the customer has committed to the
order. Booking is required before the order or return can advance to the next workflow activity.
76. What is schedule arrive date
Ans: Schedule arrival date means the date returned by the system on which your customer can receive the products.
77. What is scheduling
Ans: Order scheduling includes assigning demand or reservations, warehouses, shipment dates, and lots or
subinventories to an order line. This will cause the demand to be planned in Material Planning Systems.
78. What is schedule date
Ans: For Order Management, it is considered the date the order line should be ready to ship, the date communicated
from Order Management to Inventory as the required date any time you reserve or place demand for an order line.
79. Various Terms
Ship to contact: This is the person that Customer Service and Shipping Personal should be contacting to make delivery
appointments and pass rescheduling notifications.
80. What is Internal Sales Order
Ans: A request within your company for goods or services. An internal sales order originates from an employee or from
another process as a requisition, such as inventory or manufacturing, and becomes an internal sales order when the
information is transferred from Purchasing to Order Management.
Activities
Order
Header
Status
Order Line
Status
Delivery Lines
Entry
Entered
Entered
-----
Booked
Booked
Awaiting
Shipping
Ready to
Release
Remarks
Pick
Release
Ship
Confirm
Booked
Picked
Picked
Partially
Booked
Shipped
Staged/Pick
Confirmed
Released to
Warehouse
Back Ordered
Deliveries are
in open status
Shipped or
Interfaced
Back Ordered
Deliveries are
in closed status
Invoicing
Booked
Interfaced to
receivables
---
Awaiting
fulfillment
Closed
Closed
Closed
---
Picking Shipping
81. What is Picking
Ans: The process of withdrawing items from inventory to be shipped to a customer.
82. What is pick release rule
Ans: A user-defined set of criteria to define what order lines should be selected during pick release.
83. What is pick release sequence rule?
84. What is pick slip
Ans: Internal shipping document used by pickers to locate items to ship for an order.
85. What is pick slip grouping rules?
Criterion for grouping together various types of pick slips. The rule dictates how the Pick Slip Report program groups
released lines into different pick slips.
86. What
is
Ans: Return Materials Authorization: Permission for a customer to return item,
87. What is back order and back ordered lines>
Ans: Back Order: An unfulfilled customer order or commitment.
RMA
Backordered lines: Unfulfilled order line details which have failed to be released at least once by Pick
Release or have been backordered by Ship Confirm.
88. What is delivery
A set of order lines to be shipped to a customers ship-to location on a given date in a given vehicle. Multiple deliveries
can be grouped into a single departure. A single delivery may include items from different sales orders and may include
back orders as well as regular orders.
89. What is delivery line
Ans: Delivery line means a shippable and booked line
90. What is drop shipment
Ans: A method of fulfilling sales orders by selling products without handling, stocking, or delivering them. The selling
company buys a product from a supplier and has the supplier ship the product directly to customers.
91. What is fulfillment set
Ans: Items in a fulfillment set will be available for scheduling and shipping only when all the items are available and
ready to be scheduled/shipped.
92. What is Outbound and Inbound Lines
In the Oracle Order Management, lines on a header are either outbound (sales order lines in which material on the
header is leaving the warehouse to go to a customer) or inbound (return lines in which material on the header is arriving
at the warehouse to be credited back to the customer). In Order Management, headers can be Return (all inbound),
Order (all outbound), or Mixed (both inbound and outbound lines).
93. What is scheduling
Order scheduling includes assigning demand or reservations, warehouses, shipment dates, and lots or sub inventories to
an order line.
94. What is ship confirm
A process in Shipping Execution which allows you to identify shipped quantities, assign inventory control information
for released lines, assign freight charges, and specify whether or not to back order unfulfilled quantities of released line
items.
95. What are the general activities involved in Ship confirm?
Ans: Preparing the orders for shipment
Includes the packing the items
Includes the weighing the shipment
After the Quality Inspector finishes with her/his inspection: Confirm the delivery in Oracle
Includes additions of any special charges
After shipment documents print, after labels to containers or pallets
Seal Containers
Release shipments to Carrier
Submit request for Bill of Lading copy
Forward copy of Bill of Lading to accounts payable for reconciliation of carrier invoices
File Shipping documents
96. Various Shipping terms
Ship Set A group of order lines, linked by a common number, for which you want the full quantity to ship all together.
Shippable lines: The lines that have pick released and are now eligible for Ship Confirm.
Ship Method: It is the combines of carrier, mode, and level of service.
Shipping documents: Shipping related reports, such as the Bill of Lading, Commercial Invoice, Mailing
Label, Pack Slip, Vehicle Load Sheet Summary, and Waybill.
Shipping instructions: Notes that print on the pick slip. These instructions are intended for internal use.
Sold to contact: This is the person that the Customer service representative will contact at the Customer Site in the event
of Ordering queries.
Sub inventory: Subdivision of an organization, representing either a physical area or a logical grouping of items, such as
a storeroom or receiving dock.
Locator: Physical area within a sub inventory where you store material, such as a row, aisle, bin, or shelf.
Serial number control : A manufacturing technique for enforcing use of serial numbers during a material
transaction.
Waybill A document containing a list of goods and shipping instructions relative to a shipment.
97. What is Revenue Recognition ?
Ans: The schedule for which revenue for a particular transaction is recorded in your general ledger.
98. What is Sales group
Ans: Sales Group represents a managerial unit for sales resources and can be defined as a team of sales people. Sales
groups make up enterprise sales organizations.
99. What is sales tax structure
Ans: The collection of taxing bodies that you will use to determine your tax authority. State.County.City is an example
of a Sales Tax Structure.
100.
What is Standard Item
Ans: Any item that can have a bill or be a component on a bill except planning items, option classes, or models. Standard
items include purchased items, subassemblies, and finished products.
101.
102.
What is invoicing rules
Ans: Rules that Oracle Receivables uses to determine when you bill your invoices. You can bill In Advance or In
Arrears.
Pricing
103. What is list price : Ans: In Oracle Pricing, the base selling price per unit of the item, item category or service
offered. You define the list price on a price list. All price adjustments are applied against the list price.
Modifier: Defines the terms of how Oracle Pricing will make adjustments. For example, a modifier can take the form of:
discounts, or surcharges. In Oracle Pricing, when you setup modifiers, you define the adjustments your customers may
receive. You control the application of modifiers by the pricing engine by also setting up rules that specify qualifiers and
attributes governing their use.
Modifier list A grouping of modifiers in Oracle Pricing.
Price list A list containing the base selling price per unit for a group of items, item categories or service offered. All
prices in a price list are for the same currency.