COGNOiSe.com - The IBM Cognos Community

Legacy Business Intelligence => COGNOS ReportNet => Report Studio => Topic started by: Janine on 17 Sep 2008 01:56:46 PM

Title: Passing the value of a date prompt into tabular SQL
Post by: Janine on 17 Sep 2008 01:56:46 PM
Hi,

I need the value of a date prompt in a tabular SQL, but ?Start Date? and #prompt('Start Date','DATE')# don't work for me. I got the error:

QE-DEF-0177 An error occurred while performing operation 'sqlPrepareWithOptions' status='-9'. UDA-SQL-0446 Oracle returned an error message. ORA-00932: inconsistent datatypes: expected DATE got NUMBER UDA-SQL-0450 An unexpected error encountered during the "prepare" operation.

Any suggestion around it?

Thanks a lot

Janine
Title: Re: Passing the value of a date prompt into tabular SQL
Post by: jethro89 on 20 Sep 2008 12:04:23 PM
Hi, I'm not sure how you're using your prompt, but you need to make sure that on your filter, you're using a to_date (or whatever database function your database uses), and the native date format in Cognos is yyyy-mm-dd.
Hope that helps.
Title: Re: Passing the value of a date prompt into tabular SQL
Post by: CVR on 26 Sep 2008 02:52:46 AM
Hi
I too have similar problem. I used DatePrompt, but has given the error " QE-DEF-0381 Invalid format for prompt 'start_date'. Expected format for date: CCYY-MM-DD.
QE-DEF-0381 Invalid format for prompt 'end_date'. Expected format for date: CCYY-MM-DD. " in validation. But when run the report is giving results correctly. Could any one knows whey this validation is failing here???

Thanks in advance for any help.

CVR
Title: Re: Passing the value of a date prompt into tabular SQL
Post by: dfite on 15 Oct 2008 10:26:48 AM
I use an Oracle database, and to reformat date prompt values, I always have to use:

TO_DATE(?pRecipDate?, 'YYYY-MM-DD')

Of course, this doens't seem to work in all circumstances for me, as I can use this to put the date value in the body on my report, but it errors out when I put it into a page header (which makes absolutely no sense to me).
Title: Re: Passing the value of a date prompt into tabular SQL
Post by: Suraj on 10 Nov 2008 09:19:53 AM
I use the following and works fine.
to_date(#prompt('Start_Date')#,'yyyy-mm-dd')
Title: Re: Passing the value of a date prompt into tabular SQL
Post by: iamcognosuser on 21 Dec 2011 03:13:46 AM
Hi,

Thank you very much suraj. Your suggestion really helped me a lot.