14 Oracle JD Edwards EnterpriseOne Functional Module

This chapter provides a complete listing and reference for the methods in the OpenScript EnterpriseOneService Class of EnterpriseOne Module Application Programming Interface (API).

14.1 EnterpriseOneService API Reference

The following section provides an alphabetical listing of the methods in the OpenScript EnterpriseOneService API.

14.1.1 Alphabetical Command Listing

The following table lists the EnterpriseOneService API methods in alphabetical order.

Table 14-1 List of EnterpriseOneService Methods

Method Description

eone.grid

Identifies an EnterpriseOne Grid Control by its recorded ID and path.


The following sections provide detailed reference information for each method and enum in the EnterpriseOneService Class of EnterpriseOne Module Application Programming Interface.

eone.grid

Identifies an EnterpriseOne Grid Control by its recorded ID and path.

Format

The eone.grid method has the following command format(s):

eone.grid(path);

eone.grid(recId, path);

Command Parameters

path

a String specifying the object path.

recId

the ID of a previously recorded navigation, used for comparison purposes.

Throws

AbstractScriptException

represents an exception that may be thrown during the execution of a script where the exception should be reported to an end user through the controller.

Example

Performs an action on an EOneGrid object specified by its recorded ID and path.

eone.grid(11,
 "/web:window[@index='0' or @title='Work With Leave Verification Rules']" +
 "/web:document[@index='7' or @name='e1menuAppIframe']" +
 "/web:EOneGrid[@gridId='0_1' or @gridName='Work With Leave Verification Rules']")
 .selectRow(3);