Orion
Orion

Reputation: 477

How to call an Oracle Form(6i) with user parameters from command line

Is there any way to call an Oracle Form(6i) from command line with User Parameters ?

Typing

ifrun60.exe userid=<uid/pwd> module=<form name>

in the command line will launch the form, but my form is having some User Parameters to which i need to pass values while launching. Any clues ?

Upvotes: 1

Views: 9279

Answers (2)

user22883704
user22883704

Reputation: 1

As my own experience, I omitted "userid" and "module" and I put it in inverse order, like:

ifrun60.exe JOB myusername/mypswd

it works .

Upvotes: 0

DCookie
DCookie

Reputation: 43533

Typing:

ifrun60.exe help=Y

Tells me what you need is:

ifrun60.exe userid=<uid/pwd> module=<form name> [parameters]

Upvotes: 2

Related Questions