Oracle - Practicetest.1z0 900.v2019!08!05.by - Danielle.71q
Oracle - Practicetest.1z0 900.v2019!08!05.by - Danielle.71q
71q
Number: 1z0-900
Passing Score: 800
Time Limit: 120 min
1z0-900
https://www.gratisexam.com/
https://www.gratisexam.com/
Exam A
QUESTION 1
Given the code fragment:
https://www.gratisexam.com/
Which code can be added to register both of these methods to receive BankEvent notifications only if an instance of BankActivityService is already instantiated in
the current context?
Correct Answer: A
Section: (none)
Explanation
https://www.gratisexam.com/
Explanation/Reference:
Reference https://docs.oracle.com/javaee/7/tutorial/cdi-adv005.htm
QUESTION 2
Which code snippet prints the exception error message as part of the page output?
Correct Answer: D
Section: (none)
Explanation
Explanation/Reference:
Reference: https://www.geeksforgeeks.org/3-different-ways-print-exception-messages-java/
QUESTION 3
Java EE’s support for WS-Security includes handling which two types of security credentials? (Choose two.)
A. X.509 certificates
B. SAML tokens
C. OAuth Bearer tokens
D. Two-factor authentication tokens
Correct Answer: AB
Section: (none)
Explanation
Explanation/Reference:
QUESTION 4
Given the code fragment from a Facelet page:
https://www.gratisexam.com/
On Line 1, you ae asked to insert a search box that displays the text “Search Here” via a placeholder.
Assume searchMB is a valid Managed Bean.
Which two options enable you to create a search box with a placeholder attribute on Line 1? (Choose two.)
A. <h:inputText value=“#(searchMB.query)”>
<f:param name=“placeholder” value=“Search Here”/>
</h:inputText>
B. <h:inputText value=“#(searchMB.query)” placeholder=“Search here”/>
C. <input jsf:id=“search” placeholder=“Search here” jsf:value=“# (searchMB.query)”></input>
D. <h:inputText pt:placeholder=“Search Here” value=“#(searchMB.query)”/>
E. <input id=“search” jsf:placeholder=“Search Here” value=“$(searchMB.query)”></input>
Correct Answer: CE
Section: (none)
Explanation
Explanation/Reference:
QUESTION 5
Given the code fragment:
https://www.gratisexam.com/
Which method should be used on line 3 to enable default validation mechanism?
A. u.setProperty(String, Object)
B. u.setProperty(Schema)
C. u.setEventHandler(ValidationEventHandler)
D. u.setAdapter(XmlAdapter)
Correct Answer: D
Section: (none)
Explanation
Explanation/Reference:
Reference: https://docs.oracle.com/javaee/6/api/javax/xml/bind/Unmarshaller.html
QUESTION 6
How do you specify a default error page in your web.xml file?
A. <on-error>
<location>/general-error.html<location>
</on-error>
B. <error-page>
<error-code>*</error-code>
<location>/general-error.html</location>
</error-page>
C. <on-error>
<error-code>*</error-code>
<location>/general-error.html</location>
</on-error>
D. <error-page>
<location>/general-error.html</location>
</error-page>
https://www.gratisexam.com/
Correct Answer: B
Section: (none)
Explanation
Explanation/Reference:
Reference: http://www.codejava.net/java-ee/servlet/how-to-handle-error-in-web-xml-for-java-web-applications
QUESTION 7
Given the code fragment:
And
Which two steps, when performed independently, enable the index.xhtml page to print the following text: The Id is 12345? (Choose two.)
https://www.gratisexam.com/
A. Replace line 2 with: @Inject public void setAcc(Account acc)
B. Replace line 3 with: @Inject public Account getAcc()
C. Replace line 1 with: @Inject private Account acc;
D. Replace line 3 with: public @Inject Account getAcc()
E. Replace line 1 with: private @Inject Account acc;
F. Replace line 2 with: public void setAcc(@Inject Account acc)
Correct Answer: DF
Section: (none)
Explanation
Explanation/Reference:
QUESTION 8
Given the code fragments:
https://www.gratisexam.com/
What code should you add to the body of the updateEmployee method in order to save pending changes to the database?
A. entityManager.merge(emp);
B. Context. Ctx = new InitialContext();
UserTransaction utx = (UserTransaction)ctx.lookup(“java:comp/UserTransaction”);
utx.begin();
entityManager.merge(emp);
utx.commit();
https://www.gratisexam.com/
C. entityManager.lock(emp);
EntityManager.merge(emp);
D. entityManager.getTransaction().begin();
entityManager.merge(emp);
entityManager.getTransaction().commit();
Correct Answer: B
Section: (none)
Explanation
Explanation/Reference:
QUESTION 9
When handling a JSF request, your application code decided to redirect the call to another URL by using HTTP redirect. Which action should you take to correctly
complete the handling of the JSF life cycle?
A. Set the immediate=“true” attribute on the command button that was used to perform this call.
B. Invoke the dispatch() method on the ExternalContext object.
C. Invoke the setCurrentPhaseId(RENDER_RESPONSE) method on the FacesContext object.
D. Invoke the responseComplete() method on the FacesContext object.
Correct Answer: C
Section: (none)
Explanation
Explanation/Reference:
QUESTION 10
Given the code fragment:
https://www.gratisexam.com/
When the context root is requested http://host:port/context, how does the container resolve this mapping?
Correct Answer: C
Section: (none)
Explanation
Explanation/Reference:
QUESTION 11
Given the code fragments:
https://www.gratisexam.com/
Which action completes this composite primary key implementation?
Correct Answer: D
Section: (none)
Explanation
Explanation/Reference:
QUESTION 12
https://www.gratisexam.com/
Given the code fragment:
Correct Answer: A
Section: (none)
Explanation
Explanation/Reference:
QUESTION 13
Which class do you use to handle an incoming JSON Message as a stream?
A. JsonReader
B. JsonObjectBuilder
https://www.gratisexam.com/
C. JsonParser
D. JsonObject
Correct Answer: A
Section: (none)
Explanation
Explanation/Reference:
Reference: https://docs.oracle.com/javaee/7/tutorial/jsonp002.htm
QUESTION 14
Which two approaches would result in the current date being added to the output of a JSP? (Choose two.)
Correct Answer: AC
Section: (none)
Explanation
Explanation/Reference:
Reference: http://www.ntu.edu.sg/home/ehchua/programming/java/javaserverpages.html
QUESTION 15
Given the code fragment:
https://www.gratisexam.com/
How are transactions managed?
Correct Answer: D
Section: (none)
Explanation
Explanation/Reference:
QUESTION 16
You need to exchange large binary messages using chunks in a WebSocket application. Identify two ways in which you can receive partial messages. (Choose
two.)
Correct Answer: CD
https://www.gratisexam.com/
Section: (none)
Explanation
Explanation/Reference:
Reference: https://abhirockzz.gitbooks.io/java-websocket-api-handbook/content/Receiving%20Messages.html
QUESTION 17
Given:
Which client-side Java method will send the employee object to the WebSocket Server Endpoint?
A. session.post(employee);
B. container.send(employee);
C. session.send(employee);
D. remote.sendObject(employee);
Correct Answer: A
Section: (none)
Explanation
Explanation/Reference:
QUESTION 18
You are working with JMS publish-subscribe operations.
What happens when a producer publishes a message to a topic for which a durable subscription exists but there are no subscribers available?
https://www.gratisexam.com/
A. The publisher waits for a subscriber, who then consumes it. However, the publisher will time out if no consumer arrives within the given timeout period.
B. The publisher sends the message. However, it is never consumed because there wasn’t anything listening when it arrived, regardless of the message timeout
length.
C. The publisher successfully sends a message, which will be consumed later, once there is a subscriber, assuming the message hasn’t timed out.
D. The message publisher is immediately notified about the lack of subscribers and can decide for itself if, and when, to resend.
Correct Answer: C
Section: (none)
Explanation
Explanation/Reference:
Reference: https://www.ibm.com/support/knowledgecenter/en/SSAW57_8.5.5/com.ibm.websphere.nd.multiplatform.doc/ae/tjn0012_.html
QUESTION 19
On your JSF page, you have a form in which you have a command button:
A user submits the form by clicking the button, and no errors occur while processing the request. Which statement is true?
Correct Answer: B
Section: (none)
Explanation
Explanation/Reference:
QUESTION 20
Given the code fragment:
https://www.gratisexam.com/
https://www.gratisexam.com/
How can you get all property names of a JMS message in the JMS consumer onMessage operation?
Correct Answer: A
Section: (none)
Explanation
Explanation/Reference:
QUESTION 21
Given a JSL document describing a batch job:
https://www.gratisexam.com/
How do you initiate a batch job?
A. Get the JobExecution object from BatchRuntime and call its start() method.
B. Get the JobExecution object from BatchRuntime and set its status to JobStatus.INITIATED.
C. Get the JobOperator object from BatchRuntime and call its start() method.
D. Call BatchRunTime.initialize(“ProductLoadJob”);
Correct Answer: A
Section: (none)
Explanation
Explanation/Reference:
QUESTION 22
Given the code fragment:
https://www.gratisexam.com/
C. this request
D. until browser shutdown
Correct Answer: D
Section: (none)
Explanation
Explanation/Reference:
Reference: https://docs.oracle.com/javaee/6/api/javax/servlet/http/Cookie.html
QUESTION 23
When should a JPA entity implement the Serializable interface?
Correct Answer: D
Section: (none)
Explanation
Explanation/Reference:
Reference: https://stackoverflow.com/questions/2020904/when-and-why-jpa-entities-should-implement-serializable-interface
QUESTION 24
Which statement is true about JAX-RS resource implementation?
A. The REST resource implementation class must extend the javax.ws.rs.core.Application class
B. The REST resource class can be implemented as a stateful Enterprise JavaBean (EJB).
C. The REST resource class can be implemented as a Plain Old Java Object (POJO).
D. The REST resource implementation class must not be final.
Correct Answer: A
Section: (none)
Explanation
https://www.gratisexam.com/
Explanation/Reference:
Reference: https://docs.oracle.com/javaee/7/tutorial/jaxrs002.htm
QUESTION 25
How can you inject a target web service into an EJB?
Correct Answer: A
Section: (none)
Explanation
Explanation/Reference:
QUESTION 26
How can you configure, in a portable way, the number of threads used by a ManagedExecutorService?
Correct Answer: A
Section: (none)
Explanation
Explanation/Reference:
QUESTION 27
Given an HttpServletRequest request and an EJB SessionContext ctx.
https://www.gratisexam.com/
A. request.getCallerPrincipal() and ctx.getCallerPrincipal()
B. request.getUserPrincipal() and ctx.getUserPrincipal()
C. request.getCallerPrincipal() and ctx.getUserPrincipal()
D. request.getUserPrincipal() and ctx.getCallerPrincipal()
Correct Answer: A
Section: (none)
Explanation
Explanation/Reference:
QUESTION 28
Given the set of navigation rules:
https://www.gratisexam.com/
Which two define a valid flow of view IDs through the application? (Choose two.)
https://www.gratisexam.com/
A. home > goodbye > list-widgets
B. dashboard > home > add-widget > list-widgets
C. list-widgets > add-widget > home > dashboard > home
D. home > list-widgets > add-widget > goodbye
Correct Answer: CD
Section: (none)
Explanation
Explanation/Reference:
QUESTION 29
Identify two valid WebSocket message types for which you can register handlers. (Choose two.)
A. Error Message
B. Binary Message
C. Pong Message
D. Ping Message
Correct Answer: BC
Section: (none)
Explanation
Explanation/Reference:
Reference: https://docs.oracle.com/javaee/7/api/javax/websocket/Session.html
QUESTION 30
Given the following code:
https://www.gratisexam.com/
What should you do at line 1 to enable this servlet receive request data without blocking?
Correct Answer: D
Section: (none)
Explanation
Explanation/Reference:
QUESTION 31
Which two elements CANNOT be injected by using an @Inject annotation? (Choose two.)
A. static fields
B. instance fields declared final
C. concrete methods
D. abstract methods
Correct Answer: BD
Section: (none)
Explanation
https://www.gratisexam.com/
Explanation/Reference:
Reference: https://docs.oracle.com/javaee/6/api/javax/inject/Inject.html
QUESTION 32
Which code snippet indicates that the page you are designing is capable of handling errors?
A.
Correct Answer: C
Section: (none)
Explanation
Explanation/Reference:
QUESTION 33
A Java EE application that uses an EJB container must communicate with a legacy system developed using non-Java technologies.
Which two Java EE technologies can be used in the integration tier of the application? (Choose two.)
A. JMS
B. JSF
C. JPA
D. JCA
Correct Answer: AB
Section: (none)
Explanation
Explanation/Reference:
QUESTION 34
Which statement is true about the relationship between HTTP and WebSockets?
https://www.gratisexam.com/
A. A WebSocket connection is a bi-directional HTTP session with message-handling support.
B. A WebSocket connection is initialized with an HTTP handshake.
C. A WebSocket connection can be initialized by either client or server.
D. A WebSocket connection uses HTTP protocol to exchange data with the browser.
Correct Answer: D
Section: (none)
Explanation
Explanation/Reference:
QUESTION 35
Which is a valid description of REST?
Correct Answer: D
Section: (none)
Explanation
Explanation/Reference:
Reference: https://docs.oracle.com/javaee/6/tutorial/doc/giepu.html
QUESTION 36
Given the code fragment:
https://www.gratisexam.com/
Assuming this bean is used only in the code fragment above, how long will the injected Bean instance be available?
Correct Answer: D
Section: (none)
Explanation
Explanation/Reference:
QUESTION 37
You want to allow one set of roles to POST to a resource and another set of roles to GET it.
Correct Answer: BD
Section: (none)
Explanation
https://www.gratisexam.com/
Explanation/Reference:
QUESTION 38
Your class requires multiple resources defined, as shown in the following:
Which annotation do you use to group multiple @Resource declarations together for class-based injection, replacing <XXXX> in the code above?
A. @Resources
B. @Resource
C. @ResourceGroup
D. @ResourceCollection
Correct Answer: B
Section: (none)
Explanation
Explanation/Reference:
QUESTION 39
Your web application requires logic to remember items that a user placed into a shopping cart.
Which two mechanisms should you use to associate that information with the user? (Choose two.)
A. HttpServletResponse objects
B. ServletContext objects
C. HttpSession objects
D. a database
https://www.gratisexam.com/
Correct Answer: BC
Section: (none)
Explanation
Explanation/Reference:
QUESTION 40
Given the following class definition with numbered lines:
How do you specify to use this mock CDI bean implementation instead of the regular implementation class?
A. Use the alternatives element in the beans.xml file and specify the class name in the class element within it.
B. Start up the server with the optional –alternative command-line option, specifying any alternative class names in a comma-separated list.
C. Reorder the implementation names in the beans.xml file such that the desired alternative is listed earlier.
D. Delete the regular implementation class from the WAR.
Correct Answer: B
Section: (none)
Explanation
Explanation/Reference:
QUESTION 41
You have a high value item that you want to audit on an unscheduled basis to deter pilfering.
A. ABC Count
B. Physical Inventory Count
https://www.gratisexam.com/
C. Automated Cycle Count
D. Manual Cycle Count
E. Blind Inventory Count
Correct Answer: D
Section: (none)
Explanation
Explanation/Reference:
QUESTION 42
Which three applications originate a buy request that is received by supply chain orchestration?
A. Purchasing
B. Inventory
C. Order Management
D. Planning
E. Self Service Procurement
F. Accounts Payable
Explanation/Reference:
QUESTION 43
Your customer has defined three business units: two of the them require the same set of receivables payment terms whereas the third needs a separate set of
receivables payment terms.
A. Define one data set with common payment terms and exclude the payment terms feature from the third business unit.
B. Define one reference data set and modify the business unit security.
C. Define two reference data sets, assign the first set to the two business units which will share the same payment terms and second set to the business unit which
need separate payment terms.
https://www.gratisexam.com/
D. Define three reference data sets and assign each data set to each business unit.
Correct Answer: C
Section: (none)
Explanation
Explanation/Reference:
QUESTION 44
What are two outcomes when a lot expires on an item with lot control enabled?
A. It remains an inventory, but is not considered on-hand when the user is performing min-max or reorder point planning calculations.
B. It is issued out of stores.
C. It cannot be transacted.
D. It is not included in cycle counts.
E. It cannot be reserved for a date beyond the expiration date.
Correct Answer: AE
Section: (none)
Explanation
Explanation/Reference:
QUESTION 45
Your organization is planning for a periodic counting of individual items automatically throughout the course of the year. As part of this activity, the user has loaded
items to the cycle count but some of the items are not being considered when count schedules and count sequences are not generated.
Identify two reasons that explain why the items are not being considered.
Correct Answer: DE
Section: (none)
https://www.gratisexam.com/
Explanation
Explanation/Reference:
QUESTION 46
Your client wants the purchasers to be able to run the min-max for items under their control and then manage the POs created out of these.
A. Planning Level
B. Sort by
C. From Item to Item
D. From Buyer to Buyer
E. From Planner to Planner
Correct Answer: C
Section: (none)
Explanation
Explanation/Reference:
QUESTION 47
You are a shop floor manager and you have received an order which is a back-to-back order in nature. You need to reserve 100 pieces of an item in order to finish
you order. However, there are only 50 pieces available for reservation.
If you process this request, how many pieces are provided as the fulfillment for the order?
Correct Answer: C
Section: (none)
Explanation
Explanation/Reference:
https://www.gratisexam.com/
QUESTION 48
A shipment has not yet been created for a pick that you are running.
Correct Answer: B
Section: (none)
Explanation
Explanation/Reference:
QUESTION 49
Your organization is using min-max planning to replenish stock and the planning parameters are set at item organization level with a default subinventory.
Item: A, Min Qty: 25, Max Qty: 150 and Current Level: 20
The item above is purchased from a supplier. Although there is subinventory on hand, the subinventory is below the minimum required level. This should trigger a
Min-Max report entry, but the requisition is not generated. Why?
Correct Answer: E
Section: (none)
Explanation
Explanation/Reference:
https://www.gratisexam.com/
QUESTION 50
Which three statements are true for an expense destination transfers that does NOT require a receipt at destination inventory organization?
Explanation/Reference:
QUESTION 51
Your client wants certain inventory items of high importance to be counted periodically to improve the average level of inventory accuracy.
A. Physical Count
B. Manual Count
C. Serialized Count
D. Cycle Count
E. Blind Count
F. Zero Quantity Count
Correct Answer: D
Section: (none)
Explanation
Explanation/Reference:
QUESTION 52
The physical inventory process is carried out for a particular inventory organization with the following parameters:
https://www.gratisexam.com/
Negative quantity Tolerance Percentage is set to 10%
Approval Type = ‘Always’
The system says that there are 100 on band, but you only counted 95. What will happen?
Correct Answer: B
Section: (none)
Explanation
Explanation/Reference:
QUESTION 53
Your supplier sent you stock against a consigned agreement. You transferred at the stock to owned and generated a consumption advice. An invoice was raised by
the supplier and the payment made. A few days after using some of the quantities of the stock, you realized that some of the stock sent by the supplier is not of
suitable quality and you need to send the stock back.
A. You have to cancel the invoice and send the material back without changing the ownership.
B. Return the material and create a debit memo for the supplier.
C. You cannot return consigned items that are invoiced and paid. Treat the material as scrap.
D. You have to transfer the ownership of item and perform the return transaction.
Correct Answer: B
Section: (none)
Explanation
Explanation/Reference:
QUESTION 54
During Cloud Inventory implementation your customer requires you to enable the Oracle Transactional Business Intelligence (OTBI) KPI to review the list of
standard reports which is useful for their current business scenario. When navigating to reports and analytics, the warehouse dashboard doesn’t show any KPI
https://www.gratisexam.com/
watchlist.
Correct Answer: BE
Section: (none)
Explanation
Explanation/Reference:
QUESTION 55
Your customer is a very large organization spanning across multiple countries. Their legal requirements, Human Resource Policies, and Functional Currencies for
Ledger are different for each country. Your customer wants to maintain 10 different companies in the system.
A. 1 Enterprise, 10 Divisions, where each division has its own ledger with common legal entity across all divisions
B. 10 Enterprises, 10 Divisions, where each division has its own legal entity and ledger
C. 1 Enterprise, 10 Divisions, where each division has its own legal entity and ledger
D. 10 Enterprises, 1 Division, where each division has 10 legal entities and 1 ledger
Correct Answer: C
Section: (none)
Explanation
Explanation/Reference:
QUESTION 56
The Applications Development Framework Desktop Integration (ADFdi) user interface is supported in Oracle Fusion Receiving, Inventory Management, and
Shipping products.
https://www.gratisexam.com/
Identify four ADFdi user interfaces that are supported.
Explanation/Reference:
QUESTION 57
Which two statements are true in regard to using the Enterprise Structures Configuration? (Choose two.)
Correct Answer: BD
Section: (none)
Explanation
Explanation/Reference:
QUESTION 58
Which two tasks must be defined to a set up the Facilities Schedule? (Choose two.)
https://www.gratisexam.com/
D. Manage Facility Time Cards
E. Manage Facility Shifts
Correct Answer: AE
Section: (none)
Explanation
Explanation/Reference:
QUESTION 59
Your client is about to define their primary ledger.
https://www.gratisexam.com/
Which set of three primary attributes do they need to know in order to complete this?
Correct Answer: C
Section: (none)
Explanation
Explanation/Reference:
QUESTION 60
Which three types of jurisdictions should be considered while designing the Enterprise Structure?
A. Labor Jurisdiction
B. Obligatory Jurisdiction
https://www.gratisexam.com/
C. Local Jurisdiction
D. Income Tax Jurisdiction
E. Transaction Tax Jurisdiction
F. Identifying Jurisdiction
Explanation/Reference:
QUESTION 61
Which execution document is created by supply chain orchestration when a make request is received?
A. Transfer Order
B. Work Order
C. Routing Create
D. Movement Request
E. Purchase Order
Correct Answer: B
Section: (none)
Explanation
Explanation/Reference:
QUESTION 62
Your customer has two warehouses (Inventory organizations) located in two different regions. They have a consigned agreement in place with the supplier. Your
customer requests that whenever consumption advice is created, it should be created separately for each inventory organization.
https://www.gratisexam.com/
Correct Answer: A
Section: (none)
Explanation
Explanation/Reference:
QUESTION 63
What are the four steps for the move request process flow?
A. Create shipment
B. Create Movement Request
C. Confirm pick slips
D. Run the Movement Request Pick Slip Report
E. Physically move the material
F. Run pick slip allocation
Explanation/Reference:
QUESTION 64
A third-party service equipment is used for various purposes in a manufacturing facility and needs to be overhauled once a year. This equipment is charged based
on its consumption without a project dependency.
At this point, it should be transferred out of the vendor’s warehouse for maintenance and then returned back in the future depending upon the requirement.
The material stock transfer should happen with an offline approval and with an account alias as a logical reference.
A. Transfer Order
B. Requisitions
C. Move Request
D. Miscellaneous Transaction
https://www.gratisexam.com/
E. Subinventory Transfer
Correct Answer: D
Section: (none)
Explanation
Explanation/Reference:
QUESTION 65
You have a set up min-max planning at the subinventory level with the following to source item AS12312 for Organization: M1:
A. Movement request
B. Internal Requisition
C. Purchase Requisition
D. None; this is an invalid setup
E. Intraorganization transfer order
Correct Answer: E
Section: (none)
Explanation
Explanation/Reference:
QUESTION 66
Your customer has a requirement across their 10 warehouses, each with different users. They would like that whenever a warehouse user logs in, their warehouse
should get populated.
https://www.gratisexam.com/
D. Set up the profile option INV_DEFAULT_ORG_ID at user level for each user.
E. Set up the profile option INV_DEFAULT_ORG_ID at role level (different roles for different warehouses).
F. Set up the profile option INV_DEFAULT_ORG_ID at site level.
Correct Answer: E
Section: (none)
Explanation
Explanation/Reference:
QUESTION 67
While negotiating the terms of the consignment agreement, the buyer and the supplier mutually agree to set aging onset point as receipt and the aging period as
five days. The terms also say that the consumption advice will be generated daily.
In which three scenarios will the goods be transferred from the supplier’s ownership to buyer’s ownership?
A. You received the goods today and you decided to issue the goods after days without transferring the ownership.
B. You received the goods today and for the next one week you do not plan any action on the same.
C. You received the goods today after six days you decide to transfer the ownership using the “create transfer to consigned transaction” task.
D. You received the goods today and you transfer the ownership using the “create transfer to owned transaction” task.
E. You received the goods and after four days you return the material to the supplier.
F. You received the goods today and after three days you transfer the ownership using the “create transfer to consigned transaction” task.
Explanation/Reference:
QUESTION 68
Which statement is false about generating an Internal Material Transfer for expense destination Transfer Order?
A. Expense destination transfers are expensed upon delivery hitting an expense account instead of an inventory asset account as would be the case for inventory
destination transfers.
B. If the receipt is not required Cost Accounting will pick up both the issue and receipt activity from the single inventory transaction “Transfer Order Issue”
C. If the receipt is required, the accounting of the receipt delivery transaction will happen only on Receipt Accounting because there will not be a delivery
transaction in inventory.
https://www.gratisexam.com/
D. Costs for Lot and serial numbers are tracked at put away time when the items are recorded in a destination inventory location.
E. Cost Management will pick up the delivery transaction directly from Receiving and process the expense accounting from that transaction.
Correct Answer: D
Section: (none)
Explanation
Explanation/Reference:
QUESTION 69
Identify three statements that are true about reservations in back-to-back processing.
Explanation/Reference:
QUESTION 70
As part of implementing Oracle Cloud for your customer, you defined multiple Business Units. The customer wants you to define an Inventory Organization that is
associated with all the business units and not just one particular business unit.
Correct Answer: D
Section: (none)
https://www.gratisexam.com/
Explanation
Explanation/Reference:
QUESTION 71
What three Key Performance Indicators are available in the Warehouse Operations Dashboard?
A. Shipment Value
B. Hit or Miss Accuracy
C. Cycle Count
D. Inventory Value
E. Distributed Value
F. Exact Matches Rate
Explanation/Reference:
https://www.gratisexam.com/
https://www.gratisexam.com/