Reputation: 477
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
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
Reputation: 43533
Typing:
ifrun60.exe help=Y
Tells me what you need is:
ifrun60.exe userid=<uid/pwd> module=<form name> [parameters]
Upvotes: 2