2.1 EA1 Bug No promt for substitution variables

Didn't see a post for this yet. In this release, I am not being prompted for replacement variables when I use & in my query.
SELECT &1 from dual;
ORA-01008: not all variables bound
01008. 00000 -  "not all variables bound"
*Cause:   
*Action:
SELECT &&1 from dual;
ORA-01745: invalid host/bind variable name
01745. 00000 -  "invalid host/bind variable name"
*Cause:   
*Action:

Substitution variables have to be defined:
define 1 = 'Defined'
select '&1' from dual;A current 2.1 EA1 bug will let you only execute this as script (F5).
Bind variables have to be given through the dialog:
select ':1' from dual;A current 2.1 EA1 bug will let you only run this as statement (F9).
To the development team:
Please log the bug that bind variables can't be used when executing as script.
Regards,
K.

Similar Messages

  • Error When Prompting for Substitution Variable

    Hi - I'm receiving an error when I try to run the following using the substitution variable - but only when I enter a string; when I enter a numeric value it runs fine.
    DECLARE
        l_SCR_Info            VARCHAR2(50) := '''SCR'||&SCR_NUM||'-'||'''';
    begin
    dbms_output.put_line(l_SCR_Info);
    end;Here is the error I receive when I supply a string value when prompted:
    ORA-06550: line 3, column 52:
    PLS-00201: identifier 'AB' must be declared
    ORA-06550: line 3, column 27:
    PL/SQL: Item ignored
    ORA-06550: line 10, column 22:
    PLS-00320: the declaration of the type of this expression is incomplete or malformed
    ORA-06550: line 10, column 1:
    PL/SQL: Statement ignoredCan anyone shed some light on what I'm missing here?
    Thanks!
    Christine

    Hi,
    It looks like you just want one string there:
    l_SCR_Info            VARCHAR2(50) := '''SCR&SCR_NUM-''';Remeber how substitution variables work: SQL*Plus replaces them with values before sending the code to the back end to be compiled.
    If you give a value like AB for the variable, the code you posted is equivalent to:
         l_SCR_Info            VARCHAR2(50) := '''SCR'|| AB ||'-'||'''';by the time it reaches the compiler. AB is not inside quotes, so the compiler looks for a variable or function called AB.
    If you gave a number:
         l_SCR_Info            VARCHAR2(50) := '''SCR'|| 123 ||'-'||'''';there's no problem; the compile knows what the literal number 123 is.

  • MaxL statement for substitution variables

    Hi,I'm trying get a script together that changes all my substitution variables, and I'm able to do this using:alter database application.database set variable string;but how do I set the substitution variables for (all apps) and (all dbs)?Any help appreciated.ThanksSunil

    I don't think MaxL is going to do this for you, although you could always use a positional parameter to set the value.
    I'm not a big fan of passing the system date to an Essbase process as it so often varies from the data date.
    Usually, I create an external scripting process (in my case, in the past, usually VBScript, I would probably tilt towards perl now) that read the file, found the year and month, and then called the MaxL with parameter lne variables to set the Substitution Variables. This is not fancy code -- the error checking is the majority of the work.
    Regards,
    Cameron Lackpour

  • Maxl statement for substitution variable..

    Friends,
    Do we have a maxl command that will return substitution variables at the server level along with their values.
    This would help us do a quick check of the system at all environments using VLOOKUP before the cycle starts..
    The manual check seems boring :(
    Thanks,
    RN.

    Sir, I love the way u write your blogs :)
    this blog was just awsome with the conversation with JJ explaining with such details..^^^Thank you for your kind words. It really makes my day when I hear that people get real value out of my blog. But to be honest, I am but a conduit for Jason's knowledge. :)
    Regards,
    Cameron Lackpour
    P.S. You should check out his death-to-Load-Rules post. Very cool stuff.

  • Prompted for Substitution Variable at Startup?

    Ever since I've been on version 1.2.0.29.98, when I start up SQL Developer and attempt connection to one of my databases, I get a modal popup window titled "Enter Substitution Variable" with OK and Cancel buttons. The name of the substitution variable I'm prompted for is GNAME.
    I have a couple of different Oracle homes on my machine, and I recognize gname as a lexical parameter I use in "login.sql" scripts for SQL*Plus (see http://asktom.oracle.com/pls/asktom/f?p=100:11:0::::P11_QUESTION_ID:446220075876). Can you tell me from where SQL Developer might be picking up this lexical parameter for which it insists on substituting a value? The popup is annoying, and I'd prefer to make it go away.
    At first I thought it may have been due to a login.sql I have that lives in the same directory as the one I specified containing SQL*Plus (Tools -> Preferences; SQL*Plus -> SQL*Plus Executable), but even after I rename that login.sql's filename, the GNAME substitution persists.
    Thank you.
    Windows XP SP 2
    SQL Developer 1.2.0.29.98
    Database 9.2.0.6

    Someone else asked the same thing this morning:
    Replacement Variables/Column formatting in SQL*Developer
    At the moment, sqldev tries executing a "login.sql" from the Script Directory. If that doesn't exist, he looks for it in the sqlplus path. No other possibilities nor preferences.
    K.

  • Multiple members in a substitution variable

    <p>Hi,</p><p> </p><p>I use substitution variables in Planning forms to choose wichyear to display.  I would like to have FY06, FY07 andFY08 in the same variable.  I just tried to add it in AAS(separeted by commas) and there is no problems, but when I open myPlanning form, I got this error : "</p><center><table style=" margin-bottom: 2px; margin-right: 75px; margin-left: 75px; margin-top: 2px;" border="0" id="bannerMsg" cellspacing="0"cellpadding="0"><tr><td align="left" valign="center" class="verysmalltext">Asubstitution variable required for this calculation is undefined.Variable: RFFcstYears</td><td style=" padding-top: 5px; padding-bottom: 0px; padding-left: 5px; padding-right: 0px;" valign="center"><img title="Close" src= "http://malbicl01a:8300/HyperionPlanning/ui_themes/tadpole/images_global/task_tabs_close_sel.gif" onclick="hideBannerMessage()"></td></tr></table></center><p>If I change it for FY06 only, all works fine.</p><p> </p><p>I don't want to use 3 variables as some times we will need only2 years (it's a rolling forecast over a 18 monhs period).</p><p> </p><p>Any ideas how to set the variable ?</p><p> </p><p>Thanks</p>

    Hi,
    You cannot provide multiple values to single substitution variable. If you want that a variable can contain multiple values then you can use User Variable.
    Request you to please look into the below links
    for Substitution variable - http://docs.oracle.com/cd/E17236_01/epm.1112/hp_admin/frameset.htm?ch07s05.html
    For user variable- http://docs.oracle.com/cd/E17236_01/epm.1112/hp_admin/frameset.htm?ch07s05.html
    Hope this helps.
    Regards
    SST.....
    Edited by: ss1988 on Mar 9, 2013 11:14 PM

  • Substitution variables (DEFINE)

    First of all : thanks for this product!!!
    It would be appreciated to have the possibility of DEFINEing substitution variables in SQL scripts and to call scripts with their parameters.
    Thanks in advance.
    null

    In iSQL*Plus 9.2 there is a subtle interaction
    between the iSQL*Plus interface and SQL*Plus engine
    code. Both do some parsing for substitution
    variables. See:
    http://otn.oracle.com/docs/products/oracle9i/doc_library/release2/server.920/a90842/ch6.htm#1007141
    In your example I would remove the DEFINE 'x' and 'y'
    variables and just use '&user' and '&password'
    everywhere in your script.
    -- CJ

  • Isql*plus 9.2 problem: Substitution variables

    hi, i'm new to using isql*plus.
    i have written the following script to setup my the structure of a database, it works but when i execute it it asks me to:
    Substitution Variables
    Enter values for substitution variables in the script to execute:
    Variable      Value
    d
    I cant work out why, please help.
    here's the script:
    --author: daniel smith
    --student number: 2235592
    --date: 17/02/2005
    --isql plus
    --Application Development and Database (AD&D)
    --Assessment 3
    --drop existing tables
    drop table expense;
    drop table sess;
    drop table assignment;
    drop table task;
    drop table stage;
    drop table project;
    drop table task_type;
    drop table employee;
    drop table grade;
    --create new tables
    create table grade
    grade_no number(6) primary key,
    description varchar2(50),
    rate_per_hour number(5,2)
    create table employee
    employee_no number(6) primary key,
    surname varchar2(50),
    first_name varchar2(50),
    grade_no number(6),
    foreign key (grade_no) references grade(grade_no)
    create table task_type
    task_type_no number(6) primary key,
    description varchar2(50),
    grade_no number(6),
    foreign key (grade_no) references grade(grade_no)
    create table project
    project_no number(6) primary key,
    project_code varchar2(50),
    client varchar2(50),
    description varchar2(50),
    manager number(6),
    foreign key (manager) references employee(employee_no)
    create table stage
    project_no number(6),
    stage_no number(6),
    description varchar2(50),
    Start_date date,
    planned_Duration number(6,1),
    fees_basis varchar2(2),
    primary key (project_no,stage_no),
    foreign key (project_no) references project(project_no),
    constraint fees_basis_ck check(fees_basis IN ('fq','vs','vn','cs','cn'))
    create table task
    project_no number(6),
    stage_no number(6),
    task_no number(6),
    description varchar2(50),
    estimated_hours number(6,2),
    planned_start_date date,
    max_duration number(6,2),
    task_type_no number(6),
    primary key (project_no,stage_no,task_no),
    foreign key (project_no,stage_no) references stage(project_no,stage_no),
    foreign key (task_type_no) references task_type(task_type_no)
    create table Assignment
    project_no number(6),
    stage_no number(6),
    task_no number(6),
    employee_no number(6),
    estimated_hours number(6),
    primary key (project_no,stage_no,task_no,employee_no)
    create Table Sess
    Session_no number(6),
    Session_date date,
    actual_Hours number(6),
    chargeable char(1),
    project_no number(6),
    stage_no number(6),
    task_no number(6),
    employee_no number(6),
    primary key (Session_no),
    Foreign key (project_no, stage_no, task_no, employee_no)
    references Assignment(project_no, stage_no, task_no, employee_no),
    constraint chargeable_sess check(chargeable IN ('y','n'))
    create table expense
    expense_no number(6),
    description varchar2(50),
    quantity number(4),
    unit_cost number(4,2),
    chargeable char(1),
    project_no number(6),
    primary key(expense_no),
    foreign key(project_no) references project(project_no),
    constraint chargeable_exp check(chargeable IN ('y','n'))
    **********************************************************

    << ..
    << --Application Development and Database (AD&D)
    << --
    take the '&' off your script,
    oracle thinks you want to define variable D,
    and obviously you don't want that

  • Software bug in OneDrive for Business 1.2.2 (IOS)

    I found a software bug in OneDrive for Business 1.2.2 (iOS) and is related to the space characters inside the logon name. I am using SharePoint 2013 (15.0.4617.1000 June 2014 CU) and my setup
    corresponds with the OneDrive for Business App requirements.
    I am not able to connect using OneDrive for Business 1.2.2 (iOS) to the SharePoint 2013 OneDrive personal site if the logon name has space characters in it. With the same user account, but this time with the logon name changed (removed all
    the space characters) the authentication works and I am able to configure the app (OneDrive for Business 1.2.2 - iOS).
    I wrote more details here
    http://www.vioreliftode.com/index.php/software-bug-in-onedrive-for-business-1-2-2-ios/.
    Any other of you in the same situation? 

    Hi,
    I understand that the issue occurred in OneDrive for Business 1.2.2 (iOS).
    If this is a suspicious bug, I recommend you to open a ticket with Microsoft.
    In the meanwhile, you can post the thread at the OneDrive support forum:
    http://answers.microsoft.com/en-us/onedrive/forum/ .
    More experts will assist you, then you will get more information relation to OneDrive for Business.
    Thanks,
    Victoria
    Forum Support
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact
    [email protected]
    Victoria Xia
    TechNet Community Support

  • Is this a bug in Safari for iOS ??

    http://www.clfsrpm.net/sample/
    The control buttons above playlist display just fine in every Android, Linux, and Windows browser I have used - including Safari for Windows.
    However they do not display properly in Safari for iOS as tested on my iPod (but they do display correctly in Opera Mini for iPod)
    Is this a bug in Safari for iOS ??

    Why was this moved to "Using iPhone" ??
    It is a question about Safari for iOS - not iPhone/iPod usage.

  • Creating a range with Substitution Variables for Report Script

    Is it possible to create a range with substituion varables for use in a report script. For example instead of listing "Jan" "Feb" "Mar" "Apr" in the report script can I use a sub varaible like Jan:Apr that will list them all out?

    while I have not had luck with ranges in report scripts, others have. You could have a substitution variable the is "Jun" "Jul " "Aug" or whatever you want the members to be. and it will replace jusr fine

  • Business area not picking up for substitution...

    Hi
    I have created susbstitution for GL account..for substituting business area for GL account....(tax GL account
    Tax line item is automatically created in document.....i want business area to be pickep up for the same.
    We want substitution create for Business area updating ;- When Document has 4 line item at the time of TAX and TDS line item the Business area not update, MIRO Document also not update the Business area.
    Please reply
    thanks

    Dear Vijay,
    Please kindly read the SAP note number 199886     Business area in tax line
    In the value-added tax line items, the field "Business area" is NEITHER
    automatically filled NOR can you enter a value manually.
    Postings to VAT accounts must be made WITHOUT business area. The reason
    for this is that the field "Business area" does NOT exist in the tax
    data. Therefore,the advance return for tax on sales/purchases can also
    only generate postings WITHOUT business area and these postings must
    correspond exactly to the original tax postings in your account
    assignments. Otherwise, the tax accounts would have steadily increasing
    business area balances.
    Unfortunately I must inform you that the business area is not available
    for substitution because it can cause inconsistences in AM,CO and MM
    modules.
    Substituting the B.A.field is a modification to the standard SAP
    system. To make the business area field substitutable you must have
    written an ABAP to update table GB01 for the GSBER field, this is
    all explained in SAP note 42615.
    I hope this helps.
    Mauri

  • Bug in iCloud for Windows

    Bug in iCloud for Windows.
    Es gibt einen Bug in iCloud für Windows. In diesem Forum wird er beschrieben:
    https://forums.adobe.com/thread/1587466?start=200&tstart=0
    Please have a look to the Adobe Forum.
    Premiere Pro Project will be destroid when you install iCloud for Windows.
    After deinstalling Cloud - everything is ok.
    Please make a bugfix!
    Cu Jürgen

    On Bug in iCloud 4.0 control panel - decimal places Office 2013 / Outlook 2013
    they mentioned the same Bug.
    Apple do you hear us?

  • A method for passing in the system date to either a substitution variable or directly into a calc script for use on the fix statement

    Does anyone have an idea of how to pass in the server system date into a calc script or into a substitution variable so that I can fully automate my calc script to only calculate the current day? Thanks very much for any assistance on this.

    unsure why cannot att bat<BR>below is raw code meant to insert into .bat file<BR>================================================<BR><BR>code starts below this line<BR>================================================<BR>:: <BR>:: pls ensure essbase server up and running <BR>:: batch file to upd subs var <BR>:: insert correct values below<BR>:: <BR>:: substitution variables set up in cube: curryr, lastyr <BR>:: substitution variables set up in cube: currmth, prevmth ... <BR>::<BR><BR>:: setting of local env vars<BR>setlocal<BR>::<BR><BR>:: setting of job control vars<BR>set svr=<< insert value here >><BR>set uid=<< insert value here >><BR>set pwd=<< insert value here >><BR>::<BR><BR>:: setting of date and time vars<BR>for /F "tokens=1-4 delims=/ " %%i in ('date /t') do (<BR>set dayofweek=%%i<BR>set day=%%k<BR>set month=%%j<BR>set year=%%l<BR>set datestamp=%%l_%%j_%%k<BR>)<BR>for /F "tokens=1-2 delims=: " %%i in ('time /t') do (<BR>set hour=%%i<BR>set minute=%%j<BR>set timestamp=%%i_%%j<BR>)<BR>::<BR><BR>:: setting year vars<BR>set /a curryr=%year%<BR>set /a lastyr=(%year% - 1)<BR>::<BR><BR>:: setting paths and files<BR>set destpath=<< insert path here >><BR>set errpath=<< insert path here >><BR>set errfiles=%errpath%\*.err<BR>set errfiledir=%errpath%\%datestamp%_%timestamp%_err.dir<BR>set errfile=%destpath%\%datestamp%_%timestamp%_err.err<BR>set logfile=%destpath%\%datestamp%_%timeStamp%_log.log<BR>set upd_var_file=%destpath%\upd_var.txt<BR>::<BR><BR>:: initial housekeeping<BR>if exist %errfile% del %errfile%<BR>if exist %logfile% del %logfile%<BR>if exist %upd_var_file% del %upd_var_file%<BR>if exist %errfiledir% del %errfiledir%<BR>::<BR><BR>:: start all<BR>echo. >> %logfile%<BR>echo rem &0 >> %logfile%<BR>echo. >> %logfile%<BR>echo rem --- start all --- >> %logfile%<BR>date/t >> %logfile%<BR>time/t >> %logfile%<BR><BR>:: dates<BR>echo rem --- dates --- >> %logfile%<BR>echo Curr Year = %curryr% >> %logfile%<BR>echo Last Year = %lastyr% >> %logfile%<BR><BR>:: gen temp txt to upd subs vars<BR>echo rem --- upd subs vars start --- >> %logfile%<BR>echo. >> %upd_var_file%<BR>echo. >> %upd_var_file%<BR>echo login "%svr%" "%uid%" "%pwd%"; >> %upd_var_file%<BR>if %month% == 01 (<BR> echo updatevariable "CurrMth" "%svr%" "" "" "Dec"; >> %upd_var_file%<BR> echo updatevariable "PrevMth" "%svr%" "" "" "Nov"; >> %upd_var_file%<BR> echo updatevariable "CurrQtr" "%svr%" "" "" "Q4"; >> %upd_var_file%<BR>)<BR>if %month% == 02 (<BR> echo updatevariable "CurrMth" "%svr%" "" "" "Jan"; >> %upd_var_file%<BR> echo updatevariable "CurrQtr" "%svr%" "" "" "Q1"; >> %upd_var_file%<BR> echo updatevariable "CurrYr" "%svr%" "" "" "FY%curryr%"; >> %upd_var_file%<BR> echo updatevariable "NextYr" "%svr%" "" "" "FY%nextyr%"; >> %upd_var_file%<BR> echo updatevariable "NextY2" "%svr%" "" "" "FY%nexty2%"; >> %upd_var_file%<BR> echo updatevariable "LastYr" "%svr%" "" "" "FY%lastyr%"; >> %upd_var_file%<BR> echo updatevariable "LastY2" "%svr%" "" "" "FY%lasty2%"; >> %upd_var_file%<BR> echo updatevariable "LastY3" "%svr%" "" "" "FY%lasty3%"; >> %upd_var_file%<BR> echo updatevariable "PrevYr" "%svr%" "" "" "FY%lastyr%"; >> %upd_var_file%<BR> echo updatevariable "PrevMth" "%svr%" "" "" "Dec"; >> %upd_var_file%<BR>)<BR>if %month% == 03 (<BR> echo updatevariable "CurrMth" "%svr%" "" "" "Feb"; >> %upd_var_file%<BR> echo updatevariable "PrevMth" "%svr%" "" "" "Jan"; >> %upd_var_file%<BR> echo updatevariable "CurrQtr" "%svr%" "" "" "Q1"; >> %upd_var_file%<BR> echo updatevariable "PrevYr" "%svr%" "" "" "FY%curryr%"; >> %upd_var_file%<BR>)<BR>if %month% == 04 (<BR> echo updatevariable "CurrMth" "%svr%" "" "" "Mar"; >> %upd_var_file%<BR> echo updatevariable "PrevMth" "%svr%" "" "" "Feb"; >> %upd_var_file%<BR> echo updatevariable "CurrQtr" "%svr%" "" "" "Q1"; >> %upd_var_file%<BR>)<BR>if %month% == 05 (<BR> echo updatevariable "CurrMth" "%svr%" "" "" "Apr"; >> %upd_var_file%<BR> echo updatevariable "PrevMth" "%svr%" "" "" "Mar"; >> %upd_var_file%<BR> echo updatevariable "CurrQtr" "%svr%" "" "" "Q2"; >> %upd_var_file%<BR>)<BR>if %month% == 06 (<BR> echo updatevariable "CurrMth" "%svr%" "" "" "May"; >> %upd_var_file%<BR> echo updatevariable "PrevMth" "%svr%" "" "" "Apr"; >> %upd_var_file%<BR> echo updatevariable "CurrQtr" "%svr%" "" "" "Q2"; >> %upd_var_file%<BR>)<BR>if %month% == 07 (<BR> echo updatevariable "CurrMth" "%svr%" "" "" "Jun"; >> %upd_var_file%<BR> echo updatevariable "PrevMth" "%svr%" "" "" "May"; >> %upd_var_file%<BR> echo updatevariable "CurrQtr" "%svr%" "" "" "Q2"; >> %upd_var_file%<BR>)<BR>if %month% == 08 (<BR> echo updatevariable "CurrMth" "%svr%" "" "" "Jul"; >> %upd_var_file%<BR> echo updatevariable "PrevMth" "%svr%" "" "" "Jun"; >> %upd_var_file%<BR> echo updatevariable "CurrQtr" "%svr%" "" "" "Q3"; >> %upd_var_file%<BR>)<BR>if %month% == 09 (<BR> echo updatevariable "CurrMth" "%svr%" "" "" "Aug"; >> %upd_var_file%<BR> echo updatevariable "PrevMth" "%svr%" "" "" "Jul"; >> %upd_var_file%<BR> echo updatevariable "CurrQtr" "%svr%" "" "" "Q3"; >> %upd_var_file%<BR>)<BR>if %month% == 10 (<BR> echo updatevariable "CurrMth" "%svr%" "" "" "Sep"; >> %upd_var_file%<BR> echo updatevariable "PrevMth" "%svr%" "" "" "Aug"; >> %upd_var_file%<BR> echo updatevariable "CurrQtr" "%svr%" "" "" "Q3"; >> %upd_var_file%<BR>)<BR>if %month% == 11 (<BR> echo updatevariable "CurrMth" "%svr%" "" "" "Oct"; >> %upd_var_file%<BR> echo updatevariable "PrevMth" "%svr%" "" "" "Sep"; >> %upd_var_file%<BR> echo updatevariable "CurrQtr" "%svr%" "" "" "Q4"; >> %upd_var_file%<BR>)<BR>if %month% == 12 (<BR> echo updatevariable "CurrMth" "%svr%" "" "" "Nov"; >> %upd_var_file%<BR> echo updatevariable "PrevMth" "%svr%" "" "" "Oct"; >> %upd_var_file%<BR> echo updatevariable "CurrQtr" "%svr%" "" "" "Q4"; >> %upd_var_file%<BR>)<BR>echo. >> %upd_var_file%<BR>echo exit; >> %upd_var_file%<BR><BR>:: run temp txt to upd subs vars <BR>esscmd %upd_var_file%<BR>echo rem --- update subs vars end --- >> %logfile%<BR> date/t >> %logfile%<BR> time/t >> %logfile%<BR><BR>:: end all<BR>echo rem --- end all --- >> %logfile%<BR> date/t >> %logfile%<BR> time/t >> %logfile%<BR><BR>: end_all<BR>endlocal<BR><BR>===============================<BR>

  • Essbase substitution variable used for SQL Dimension load-URGENT

    Hi All,
    I am creating one dimension through SQL Dimension load rule writing by parent child build rule. The SQL query is like below---
    distinct trim(dist_mobile),trim(ret_mobile) from dist_retailer al1 where al1.proc_dt=to_date(&Proc_date,'dd/mm/yyyy')
    When I fixed the value of proc_date (e.g.- '27/09/2008') then it is retrieving data properly, but when I try to make the same as a essbase variable as shown above (to give user the priviledge to select for which date data will be fetched from RDBMS to create the dim) and after setting the aforesaid value of that variable in essbase subs var screen and click 'OK/Retrieve' in rule,it is returning no rows executing the query as well as no error coming.
    I guess in query nothing is wrong but the subs variable part is not working. Can anybody please give some insight to resolve the problem.
    In this context, I would like to mention that I will have to use substitution variable in some other rule file also to automate the load process. How can I use essbase subs variable in SQL load rule? Could you please show me a proper summarise query illustrating how to use the subs var in aforesaid purpose for the sake of understanding?
    Thanks in advance.

    Hi,
    Sorry for delayed response. Appreciate your inputs. At last I have found out the solution which is as below----
    distinct trim(dist_mobile),trim(ret_mobile) from dist_retailer al1 where al1.proc_dt=to_date('&Proc_Dt','dd/mm/yyyy')
    after setting the substitution variable as Proc_Dt and set the value as 27/09/2008 (without any quotation mark or such sign) now I checked and now it is retrieving fine.
    Thanks & Regards.

Maybe you are looking for