Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

This method opens the file.

Parameters

None.

Return Value

None.

Exception Handling

An Error instance will be thrown with the following properties:

  • message - The IBM i message text.
  • error - The message id.
  • help - The message help text.

Example 

Code Block
languagejavascript
titleOpen file, read first record, close file
  pjs.defineTable("productsp", { userOpen: true, read: true });
  productsp.open();
  productsp.fetchNext();
  productsp.close()

...