Substitution Variables [message #444511] |
Mon, 22 February 2010 05:27 |
eight8ball@gmail.com
Messages: 20 Registered: February 2010
|
Junior Member |
|
|
Hi,
Can someone tell me how I go about writing a query that doesnt see the '&' symbol as a substition character. The problem I have is:
select replace
( fnd_profile.value( 'XXBPO_URL')
, '&DOCID'
, ai_dfv.bpo__document_link
) document_link
from ap_invoices_all ai
, ap_invoices_all_dfv ai_dfv
where 1=1
-- where clause
The problem above is that instead of replacing the characters &DOCID with the required value, it is prompting for input.
Thanks
Joe
|
|
|
|
|
|
Re: Substitution Variables [message #448043 is a reply to message #444517] |
Fri, 19 March 2010 03:36 |
n_prabhakar
Messages: 3 Registered: March 2010 Location: Singapore
|
Junior Member |
|
|
Got this from where. pls try this
* Right click in the editor and uncheck the "Prompt for substitution variables" option.
* Menu view-->toad options: go to the "execute/compile" node and uncheck the "Prompt for substitution variables" option.
|
|
|