Summer Sale Limited Time 65% Discount Offer - Ends in 0d 00h 00m 00s - Coupon code: ecus65

Oracle 1z0-900 - Java EE 7 Application Developer

Page: 1 / 5
Total 142 questions

You face a supply request exception due to some reason. You realize that you need to make some changes to the Manage Supply Request Exceptions page.

Which action will you perform?

A.

The supply request cannot be updated. The only way is to resolve the error in the source application and resubmit the request.

B.

The supply request can be updated using a third-party application only.

C.

Update the supply request and submit it. The errors will be resolved automatically.

D.

Update the supply request and make sure errors are resolved before resubmitting it.

Give the code fragment:

And the code fragment:

The sendConfirmation() and reserve() methods should be executed in the same transactional context.

Which transaction attributes do you ensure this?

A.

Add annotations:@TransactionAttribute (TransactionAttributeType.REQUIRES_NEW) at line 2,@Transactional at line 9 and@TransactionAttribute ((TransactionAttributeType.MANDATORY) at line 12

B.

No additional annotations are required.

C.

Add annotations:@TransactionAttribute (TransactionAttributeType.REQUIRED) at line 2,@Transactional at line 9 and@TransactionAttribute ((TransactionAttributeType.REQUIRES_NEW) at line 12

D.

Add annotations:@TransactionAttribute (TransactionAttributeType.MANDATORY) at line 2,@Transactional at line 9 and@TransactionAttribute ((TransactionAttributeType.REQUIRES_NEW) at line 12

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.

Which combination meets this requirement?

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

You have been asked to implement internationalization in your JSF web application.

Where do you configure the supported locales?

A.

in the tag of the Facelet page

B.

in the web.xml file

C.

in the faces-config.xml file

D.

in the src folder

While performing the task “Create Chart of Accounts, Ledger, Legal Entities, and Business Units in Spreadsheet Task”, you mentioned that the legal entity country is the United States of America.

What will be the functional currency of the ledger you are defining?

A.

The system will ask the user to provide functional currency at the time of uploading the spreadsheet if it is not provided in the first place.

B.

The system will automatically pick “USD” as functional currency from the legal entity country.

C.

The system will pock the first available currency from the list of Values.

D.

It is mandatory to provide functional currency, because ledger cannot be defined without functional currency. The system will throw an error upon processing.

E.

It is mandatory to provide functional currency because ledger cannot be defined without functional currency. The system will throw an error upon upload of the spreadsheet because all required fields are not populated.

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

Which three statements are true for an expense destination transfers that does NOT require a receipt at destination inventory organization?

A.

There is no cost associated to the transaction.

B.

There is no put away transaction in Inventory since the item is expensed.

C.

A receipt is required on interorganization expense destination transfer orders between the from and to organizations.

D.

The transfer order is considered received and delivered at the time of shipment.

E.

The destination inventory is not incremented.

Given the JPQL code fragment:

Select pub.title, pub.author, pub.pages FROM Publisher pub

Which two clauses do you add to this JPQL query to retrieve only those books with between 500 and 750 total pages? (Choose two.)

A.

WHERE MIN(pages) >= 500 AND MAX(pages) <= 750

B.

WHERE pub.pages <= 500 OR pub.pages >= 750

C.

WHERE pub.pages BETWEEN 500 AND 750

D.

WHERE pub.pages <= 500 AND pub.pages >=750

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.

What is the ideal way to handle this process?

A.

Transfer Order

B.

Requisitions

C.

Move Request

D.

Miscellaneous Transaction

E.

Subinventory Transfer

Given the code fragment:

Assuming this bean is used only in the code fragment above, how long will the injected Bean instance be available?

A.

for the lifetime of the enterprise application

B.

for the lifetime of the request

C.

for the lifetime of the session

D.

for the lifetime of the Service object