Parameter not passed in error

I have Flex 3.0.214193 and CF 8,0,0,176276 and Oracle
10.2.0.3.
I've been search for several days for an answer to this one.
There is very little out there about this type of error, but then
there is very little about any problems with Flex and ColdFusion.
In Flex, I have two comment fields. the .cfc has two update
functions that update the comments, because they are in two
different tables. The first update works like a champ. The second
one consistantly shows this error in the CF application log: The
NEWENGREMARK parameter to the updateEng function is required but
was not passed in. I've used to Alert.Show to verify that Flex does
have a value in that variable when it calls the .cfc. I've even
tried passing the first variable that worked in the first update,
and then a litteral value. Everything yields the same cryptic error
message. I must be looking at the wrong thing.
The only things I've found on the web about this, say the
variables should have a scope (is that a scope in Flex or in the
.cfc) and the column names should be in upper case (because it's
Oracle).
Here's the .cfc code (is that where the error is, or is it in
Flex?). The UpdateDescription function works, but the UpdateEng
doesn't.
Thanks for any help, or spelling errors you can point out.
Scott

BKBK,
That is part of my thrashing about, trying to either make it
work or get a real error message. I changed the Flex and .cfc to
pass the previously missing parameter to the descriptionUpdate
function. If I pass the newENGRemark variable to the first update
function, everything is fine; if I pass it to the second update
function, it is missing.
I changed the Flex and .cfc be all upper case and all lower
case, but there was no difference.
I created a .cfm page to cfinvoke the same .cfc; then I
passed some hardwired literals to the .cfc - everything was fine.
I put the Flex code back to only pass two parameter to each
update function, but in the .cfc, in the second update, I added the
default option to both of the parameters. That worked; it went
ahead and updated the record with the defaults. (That's not really
what I wanted to do for production) . I changed the .cfc so the
newENGRemark was not required. Then it said the second parameter
was missing. In the Flex code, you can see that I am passing a
litteral, 925001, to the .cfc. The parameter exists in Flex, but
when it gets to the .cfc, it doesn't exist.
This problem has been beating me for too long. I think I
will restructure the database so that I can do what I need to with
one update function call. The initial test seems to show this will
work.
Basically I am floored by this problem. Everything I've
tried to get around it or get a real error hasn't worked. Could it
be something to do with Oracle CLOB data type? Because I was able
to make it work by using a .cfm to cfinvoke the .cfc, it seems that
the problem would have to be in Flex. But the Flex only seems to
have a problem with the second update, UpdateEng. So I deleted the
second update, copied the first, and changed the the minimum to
make it work, but it didn't. Then I switched the order in the Flex
and .cfc to have the second update first - same difference. Then I
even took out the descriptionUpdate altogether, but it still gave
that same error.
Does anyone know of some diagnostic tool that can catch what
is being passed on the AMF channel? Can you do a dump or a debug of
a .cfc that is called by Flex?
Scott

Similar Messages

  • Search Help parameter not passing in FM

    A  Search Help ZAMCH1 is included in collective search help MCH1.Within it an elementary search help  ZMME_CHARG2 is included.In  this Elementary Search Help, a parameter 'CHRUE' ( Inventary Indicator) is there with data element 'ZMM_CHARG_IND' and default value 'X'.
         But this parameter is not passed into the search help exit i.e. the function module.All other parameters are passed correctly in structure 'shlp-selopt' except CHRUE.So the indicator is always blank in FM.what might may be the reason and remedy ?

    Since your search help starts with the letter Z, it is a custom search help.  So we can't look at the code to see what might be going on.  You can try posting more specific information from the search helps here, and then someone might be able to help you.
    - April King

  • Parameter not passing from Report to Sub-report

    Hi all
    I am having an issue with a crystal report..Works great when I run it in Crystal reports...but when i import it into sap...i get the error:
    Cannot find parameter field Pm-Command.CardCode in subreport Discounts.
    its basically a statement report..with 2 sub-reports...To bring in paid invoice, and discounts(posted as journals)
    for both im bringing in the CardCode field.
    I checked afew threads on the forums..to check if "Reimport when Opening" is unticked
    Any Ideas
    Its Crystal 2011.
    SQL 2012
    SAP 9.0 PL 07
    Thank you
    Jerusha

    Yeah, you can check after re-importing the sub report.
    Are you sure that it works perfect in CR designer. If thats the case, then ideally it should work fine outside the designer as well.
    By any chance, had you used a similar report in the past from the version of SAP PL that is being used.? I suspect if things are fine in CR deisgner then this has to do something with the feature support in the SAP PL.
    Prathamesh

  • MDG-M: Error message - CR was not passed as a Parameter

    Hi MDG Experts
    In the MDG-M scenario, after the CR is created and successfully submitted by the Requestor (e.g; Create / Change a Material), when trying to display this CR in the "Display Change Request" menu option, i get the error message - "Change Request was not passed as a Parameter" after i click on the "Workflow Log" push button.
    Additionally, the details of this CR are not being displayed in the window "MDG-M UI (Entry Point), when double-clicking the CR number in the "Display Change Requests" window
    Any ideas why this is happening and how to resolve this issue ?
    Thanks in advance.
    Regards
    Neelesh

    Hi Fabiano
    Thanks very much for helping me resolve this issue.
    Regards
    Neelesh

  • Pass TestStand error type directly into function parameter

    Hi,
    I am using TestStand 4 and Labwindows CVI 8.5.
    I wonder if it is possible to pass Standard Step error type into CVI function parameters.
    I think it would be more simple to pass one parameter instead of passing Error code, Error occurred state and Error message into function prototype.
    I tried to use tsErrorDataType struct defined into tsutil.h into my function prototype.
    In TestStand, I pass Step error type into function parameter but it does not work.
    TestStand displays an error meaning parameters does not match function prototype.
    Thank you for your help.

    Hi Tartempion,
    In order to pass the TestStand Error Container as one parameter to a function in a CVI DLL, you must use a struct that is typedef'ed and create an .fp file that is included as a type library for the DLL. When you create a .fp file to add to a DLL, the DLL will not build unless all structs/enums are typedef'ed. Thus, I wouldn't advise using the tsutil.h because you would have to go through and typedef every single struct and enum in the header file.
    Instead, you can simply create a typedef'ed struct in your projects header file and create an .fp file with the struct specified as a data type. Then in TestStand, when you call the function you would need to ensure that the parameter is of Category "C Struct", and type "Error". The attached zip file contains a CVI 8.5 project that demonstrates this along with a TestStand 4.0 sequence file that demonstrates how to pass the parameter to the function by reference. In case you run into trouble creating the .fp file please refer to the following KnowledgeBase. The instructions are for enums but easily correspond to structs as well:
    TestStand and LabWindows/CVI Enumeration Data Types
    Hope this helps!
    Manooch H.
    National Instruments
    Attachments:
    PassTSError.zip ‏19 KB

  • SCCM 2012 R2 reporting error: "The DefaultValue expression for the report parameter 'UserTokenSIDs' contains an error: A specified logon session does not exist. It may already have been terminated. (rsRuntimeErrorInExpression)"

    Hi,
    I have two SCCM environments under same active directory domain and one service account have been used for SCCM configurations on both the environments (QA and PRODUCTION). I am facing similar error as mentioned above while trying to fetch reports on
    PRODUCTION site, but the QA site is working fine, though same service account have been used for configuring both. While looking at the reportserverservice_<date> log on my Production DB server i see the following error
    "processing!ReportServer_0-3!2124!01/02/2015-09:09:30:: e ERROR: Throwing Microsoft.ReportingServices.ReportProcessing.ProcessingAbortedException: , Microsoft.ReportingServices.ReportProcessing.ProcessingAbortedException: An error has occurred during
    report processing. ---> Microsoft.ReportingServices.ReportProcessing.ReportProcessingException: Cannot read the next data row for the dataset DataSet1. ---> System.Data.SqlClient.SqlException: Conversion failed when converting the nvarchar value 'Override
    Default' to data type int."
    My DB and SCCM primary site are different and the reorting services point is installed on remote DB server. Please help me resolving the issue.
    Troubleshooting performed:
    1.Disabled the registry key 'EnableRbacReporting' from HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\SMS\SRSRP to 0 and then restarted SSRS service and the reporting worked for some minutes after that the registry key reverted back to 1 automatically and
    reporting started throwing errors again.
    2. Checked with the permissions on DB whether or not 'sysadmin' role is assigned to the SCCM service account.
    3. re-registered the SQL management Provider WMI class.
    mofcomp.exe “C:\Program Files (x86)\Microsoft SQL Server\110\Shared\sqlmgmproviderxpsp2up.mof”

    Hi All,
    Finally found exact solution to the reporting error.
    Error: while launching SCCM reports (both from Console and web based) an unexpected error occured with error message as "The DefaultValue expression for the report parameter ‘UserTokenSIDs’ contains an error: A specified logon session does not exist.
    It may already have been terminated. (rsRuntimeErrorInExpression)"
    Solution: This is password replication issue for the domain account used to configure reporting services point in SCCM. If your SQL SSRS reporting services instance and databse runs with local default account whereas the reporting services point on SCCM
    primary site is configured with domain account, (As in My case) you need to perform the following in order to get rid of the error.
    Launch 'Reporting Services Configuration Manager' from the SQL SSRS box(either Local or Remote), Connect to Report Server Instance->Go to 'Execution Account' tab->Specify the 'Execution Account' as domain account and password which is used to configure
    Reporting Services Point in SCCM Primary Site, and then click apply.
    Now Lauch the report either way (Web based or from Console), the error will disappear and all your default reports will execute perfectly as before.

  • Error while installing Adobe Reader "Did not pass integrity check"

    When the download manager gets to about 80% this error pops up every time, I have tried clearing the temporary files, restarting my computer donwloading an older version but nothing works.
    The entire message says:
    "Adobe Reader":
    "Adobe Reader":
    The Download did not pass the integrity check (16291.304.428)
    I have windows 7, 32 bit. Help please!

    Don't use the download manager; download the installer directly from http://ardownload.adobe.com/pub/adobe/reader/win/10.x/10.0.0/en_US/AdbeRdr1000_en_US.exe (English version 10.0 for Windows).
    Use this link if you need another version http://get.adobe.com/reader/enterprise/

  • Help! I have recently updated LR5 and before doing so I was able to email files to clients! (Very Convenient) Now my problem is I have not been able to get pass this error message reading "failed to send" which gives no further detail about what to do to

    Help! I have recently updated LR5 and before doing so I was able to email files to clients! (Very Convenient) Now my problem is I have not been able to get pass this error message reading "failed to send" which gives no further detail about what to do to rectify the situation. Someone please guide me through this! Thanks in advance!

    Did this ever get resolved, as I am having the same issue.  Trying to learn LR5 AFTER a decade using Aperture.   I was able to set up a validated account but when I try to send an e-mail or photo I get the simple " Failed to Send " message.   Using latest version of Mac OS X.

  • Parameter is not passed correct to BSP in UWL..??

    Hi Workflow and Portal Gurus,
      i try to call BSP App from a Workitem in UWL, this works fine as far.
      now i also pass a Parameter from my apprisal Workitem (Document-ID) -> as ID to the BSP Page, my Problem is that the Parameter is passed but the first 2 charecters in the parameter ID are not passed through...any idea why??
    e.g.: Correct parameter: 0123456789, but this Parameter is passed: 23456789 (without 01).
    Here is my XML File uploaded in UWL:
    <?xml version="1.0" encoding="utf-8"?>
    <!DOCTYPE UWLConfiguration PUBLIC '-//SAP//UWL1.0//EN'
    'uwl_configuration.dtd' [ ]>
    <UWLConfiguration>
    <ItemTypes>
    <ItemType name="uwl.task.webflow.TS12300110.SAP_HR_200" connector="WebFlowConnector"
    defaultView="DefaultView" defaultAction="launchSAPAction" executionMode="optimistic">
    <ItemTypeCriteria connector="WebFlowConnector" externalType="TS12300110" />
    <CustomAttributes>
    <CustomAttributeSource id="ABAP_BOR" objectIdHolder="externalObjectId" objectType="APPR_DOC"
    cacheValidity="final">
    <Attribute name="ID" type="string" displayName="ID"/>
    </CustomAttributeSource>
    </CustomAttributes>
    <Actions>
    <Action name="launchSAPAction" handler="SAPAppLauncher" returnToDetailViewAllowed="yes"
    launchInNewWindow="yes">
    <Properties>
    <Property name="SAPIntegrator" value="pcd:portal_content/com.xxxxxxxxxxxperformance_management_document_1" />
    <Property name="DynamicParameter" value="ID=${item.ID}"/>
    </Properties>
    <Descriptions default="" />
    </Action>
    </Actions>
    </ItemType>
    </ItemTypes>
    </UWLConfiguration>

    the solution.
    You need to make specific changes in xml file for each task by adding customer parameter.
           <CustomAttributes>
              <CustomAttributeSource id="ABAP_BOR" objectIdHolder="externalObjectId" objectType="APPR_DOC" cacheValidity="final">
               <Attribute name="PlanVersion" type="string" displayName="Plan Version"/>
              <Attribute name="ID" type="string" displayName="Appraisal ID"/>
              <Attribute name="PartID" type="string" displayName="Part ID"/>
              </CustomAttributeSource>
           </CustomAttributes>
    Also you need to add dynamic parameter.
                   <Property name="DynamicParameter" value="ID=${item.PlanVersion}${item.ID}${item.PartID}X"/>

  • UNSPSC code is not passed for RT catalog item then error !!

    Hi SRM GURUs,
    We have implemented BBP_CATALOG_TRANSFER BADI.
    In which if a RT catalog item is not having UNSPSC code then we are passing some generic material group for that particular item.
    Here the issue is, if a UNSPSC code is not passed for a RT catalog item, then system is throwing error message "No logical system for FI is maintained. inform system admin".
    Also, a pop-up is coming on SRM screen "Error in system;shopping cart cannot be processed further" and then after clicking on "OK" of the POP-UP it is taking me on SRM home page.
    will anybody explain why this is happening ? Kindly, explain this logic (As this logic is in standard SAP program)?
    PS: we are at SRM5.0 & CCM2.0.
    Thanks !!
    Vivek

    Hi Masa,
    we tried with blanking out the material group. we have got few errors but not of type like above mentioned.
    The errors are as follows.
    Cost center should not be blank
    Service Account assignment should be Cost Center(Services) or Cost Center(Sched Services) or Network
    Tax code ZZ in procedure TAXUSX is invalid
    No G/L account was entered. Enter a G/L account
    Product category 41E532538A930138000000000A4023DB does not exist
    Enter the product category
    Error in account assignment for item 1
    Not possible to calculate tax
    In SLG1 the log is green and contains following.
    Start of line 000000 in shopping cart of catalog
    External product category 26111710 contains errors or does not exist
    where the number 26111710 is the UNSPSC code which i was deleted while debugging.
    Please help on this.
    Thanks in adv.
    Vivek

  • Error in IKM SQL to JMS XML Append SQLException: Parameter not set

    Hi I am getting following error please can any one help its oracle to JMS XML integration
    ODI-1228: Task jms_vendor_xml (Integration) fails on the target JMS_QUEUE_XML connection jms_xml_vendor.
    Caused By: java.sql.SQLException: java.sql.SQLException: Parameter not set
        at com.sunopsis.jdbc.driver.JMSXMLPreparedStatement.addBatch(JMSXMLPreparedStatement.java:62)
        at oracle.odi.runtime.agent.execution.sql.BatchSQLCommand.execute(BatchSQLCommand.java:42)
        at oracle.odi.runtime.agent.execution.sql.SQLExecutor.execute(SQLExecutor.java:102)
        at oracle.odi.runtime.agent.execution.sql.SQLExecutor.execute(SQLExecutor.java:1)
        at oracle.odi.runtime.agent.execution.DataMovementTaskExecutionHandler.handleTask(DataMovementTaskExecutionHandler.java:87)
        at com.sunopsis.dwg.dbobj.SnpSessTaskSql.processTask(SnpSessTaskSql.java:2913)
        at com.sunopsis.dwg.dbobj.SnpSessTaskSql.treatTask(SnpSessTaskSql.java:2625)
        at com.sunopsis.dwg.dbobj.SnpSessStep.treatAttachedTasks(SnpSessStep.java:558)
        at com.sunopsis.dwg.dbobj.SnpSessStep.treatSessStep(SnpSessStep.java:464)
        at com.sunopsis.dwg.dbobj.SnpSession.treatSession(SnpSession.java:2093)
        at oracle.odi.runtime.agent.processor.impl.StartSessRequestProcessor$2.doAction(StartSessRequestProcessor.java:366)
        at oracle.odi.core.persistence.dwgobject.DwgObjectTemplate.execute(DwgObjectTemplate.java:216)
        at oracle.odi.runtime.agent.processor.impl.StartSessRequestProcessor.doProcessStartSessTask(StartSessRequestProcessor.java:300)
        at oracle.odi.runtime.agent.processor.impl.StartSessRequestProcessor.access$0(StartSessRequestProcessor.java:292)
        at oracle.odi.runtime.agent.processor.impl.StartSessRequestProcessor$StartSessTask.doExecute(StartSessRequestProcessor.java:855)
        at oracle.odi.runtime.agent.processor.task.AgentTask.execute(AgentTask.java:126)
        at oracle.odi.runtime.agent.support.DefaultAgentTaskExecutor$2.run(DefaultAgentTaskExecutor.java:82)
        at java.lang.Thread.run(Thread.java:662)
    Caused by: java.sql.SQLException: Parameter not set
        at com.sunopsis.jdbc.driver.xml.SnpsXmlPreparedStatementRedirector.addBatch(SnpsXmlPreparedStatementRedirector.java:155)
        at com.sunopsis.jdbc.driver.JMSXMLPreparedStatement.addBatch(JMSXMLPreparedStatement.java:58)
        ... 17 more
    Source Code
    select    
        FNL_VENDORT.COMPANY       SNPSFILENAME,
        FNL_VENDORT.VNAME       SNPSFILEPATH,
        FNL_VENDORT.ACCTNUM       VENDORSPK
    from    AMIT.FNL_VENDORT   FNL_VENDORT
    where   
        (1=1)   
        Target Code
    Insert into
    VENDORS
        SNPSFILENAME,
        SNPSFILEPATH,
        SNPSLOADDATE,
        VENDORSPK
    values
        :SNPSFILENAME,
        :SNPSFILEPATH,
        :SNPSLOADDATE,
        :VENDORSPK
    /*$$SNPS_START_KEYSNP$CRDWG_TABLESNP$CRTABLE_NAME=VENDORSSNP$CRLOAD_FILE=VENDORS.VENDORSSNP$CRFILE_FORMAT=SNP$CRFILE_SEP_FIELD=SNP$CRFILE_SEP_LINE=SNP$CRFILE_FIRST_ROW=SNP$CRFILE_ENC_FIELD=SNP$CRFILE_DEC_SEP=SNP$CRSNP$CRDWG_COLSNP$CRCOL_NAME=SNPSFILENAMESNP$CRTYPE_NAME=VARCHARSNP$CRORDER=1SNP$CRLENGTH=0SNP$CRSCALE=0SNP$CRPRECISION=255SNP$CRSNP$CRDWG_COLSNP$CRCOL_NAME=SNPSFILEPATHSNP$CRTYPE_NAME=VARCHARSNP$CRORDER=2SNP$CRLENGTH=0SNP$CRSCALE=0SNP$CRPRECISION=255SNP$CRSNP$CRDWG_COLSNP$CRCOL_NAME=SNPSLOADDATESNP$CRTYPE_NAME=VARCHARSNP$CRORDER=3SNP$CRLENGTH=0SNP$CRSCALE=0SNP$CRPRECISION=255SNP$CRSNP$CRDWG_COLSNP$CRCOL_NAME=VENDORSPKSNP$CRTYPE_NAME=NUMERICSNP$CRORDER=4SNP$CRLENGTH=0SNP$CRSCALE=0SNP$CRPRECISION=10SNP$CR$$SNPS_END_KEY*/
    /*$$JMS_START_KEY
    JMSDELIVERYMODE=2,
    JMSTYPE=,
    JMSEXPIRATION=0,
    JMSPRIORITY=9,
    MESSAGETIMEOUT=3000,
    NEXTMESSAGETIMEOUT=,
    MESSAGEMAXNUMBER=,
    DURABLE=,
    CLIENTID=,
    MESSAGESELECTOR=
    $$JMS_END_KEY*/

    Hi,
    Try setting all values (without <default>:) to required fields in Target properties to IKM SQL to JMS XML append.
    Thanks

  • [TECHNOTE ANNOUNCE]  Error installing Flash Player "The download did not pass the integrity check (16236.304.443)

    All,
    I've published a new technote for folks who are having trouble with the Adobe Download Manager and Flash Player.
    Error installing Flash Player "The download did not pass the integrity check (16236.304.443)
    http://kb2.adobe.com/cps/512/cpsid_51258.html
    Essentially this technote links to the Windows troubleshooting technote here:
    http://www.adobe.com/go/tn_19166
    However, before today the Windows troubleshooting technote only had an EXE install for the ActiveX version of Flash Player 10.  I have now added a link to download the EXE version of the Flash Player Plugin installer as well.
    Please point other users with integrity check errors to the first technote.

    Thank you for the update & Tech Note Announcement. I do have a couple of questions, if you could please respond.
    After uninstalling and ready to download; reading from the link you provided on 9/4/09, Should we follow the normal download instructions
    per #2. "Flash  Player download Center" and if a successful installation is not accomplished, THEN, go to "download and unzip install_Flash_Player_10_Plugin (all other windows browsers) ? Or should the latter step be done in lieu of #2 mentioned. I am assuming the download from F.P. D.L. Center would be done first and then troubleshoot by running the EXE. version of the F.P. Plugin installer.
    Experience has taught me not to assume much, and if you don't know, ask!
    Thanks for your hard work, but you have to admit, for the technically deprived, it is frustrating and confusing.

  • Selecting an lov parameter value sometimes not passed correctly

    When selecting a value from an LOV parameter, sometimes the parameter value doesn't seem to get passed correctly to the data template query.
    For example, let's say I have the following LOV parameter called "risk":
    Some Risk
    New Risk
    Other Risk
    Last Risk
    When I select "Some Risk", I would get correct results and when viewing the "Data" xml, I can see the parameter with the right value:
    <RISK>Some Risk</RISK>
    But when I select "New Risk" the results are incorrect and the xml shows:
    <RISK />
    as if the value was not passed as the bind parameter value for the dataset query.
    Any idea what I'm doing wrong? Is this a BIP bug or is there a workaround?

    Hi, thanks for the reply.
    The LOV is of "SQL Query" type (not fixed data) and the values were retrieved from the database.
    Supposing this was the sql query for my "risk" parameter LOV:
    select dimvaltl.GENERIC_VAL_NAME
    from GENERIC_VAL_TL dimvaltl,
    GENERIC_TL dimtl
    where dimtl.GENERIC_NAME = 'Risk'
    and dimvaltl.GENERIC_ID = dimtl.GENERIC_ID
    order by dimvaltl.GENERIC_VAL_NAME
    And supposing this was the sql query in the data template dataset:
    select pdimv.ID
    from GENERIC_V pdimv
    where pdimv.NAME = 'Risk'
    and pdimv.VALUE in (:risk)))
    If risk is empty, obviously the query would not work. I noticed the xml generated sometimes show the selected parameter value and sometimes don't, as if BIP is not passing it to the dataset query as bind parameter value.
    Incidentally I have other lov parameters that works fine, the only difference I can think of is that for this LOV query I am doing a join instead of a simple select statement from one table.

  • Getting error 0403-041 Parameter not set.

    Hi All,
    I am getting below error message when i am executing this command
    exp file=expOPS$PENUTIL.dmp buffer=10240000 owner="OPS$PENUTIL" consistent=y log=expOPS$PENUTIL.log statistics=none
    error message:ksh: PENUTIL: 0403-041 Parameter not set.
    Platform:AIX
    Kindly help me out.
    Thanks
    Edited by: rajaryan on Dec 22, 2009 4:31 AM

    exp file=expOPS$PENUTIL.dmp buffer=10240000 owner="OPS$PENUTIL" consistent=y log=expOPS$PENUTIL.log statistics=none
    error message:ksh: PENUTIL: 0403-041 Parameter not set.I assume OPS$PENUTIL is a user identified externally.
    $PENUTIL is interpreted by the shell as a variable, which is not set. Try something likeexp file='expOPS\$PENUTIL.dmp' buffer=10240000 owner="OPS\$PENUTIL" consistent=y log='expOPS\$PENUTIL.log' statistics=none

  • OBIEE-UNION Request navigate is not working (Parameter value is not passed)

    Hi Experts,
    Currently i am using the two combine request to show the report data in OBIEE. In the report i have the navigate to move to another request. Unfortunately the selected row data is not passed as prompt to the calling request if the source request is a combine (UNION) request. Please let me know if any of you guys found the same issue before and the resolution to resolve this.
    OBIEE version is 10g.
    Thank You

    Hi
    if you are having a Union report as your source , then you cannot navigate for a particular selection in 10g with the navigate option available.
    we can achieve this functionality with java script using PortalPageNav Function.
    Please check this url
    [http://gerardnico.com/wiki/dat/obiee/dashboard_url#portalpagenav_function]
    Thanks
    Anuj
    Edited by: Anuj on Jul 21, 2011 2:49 AM

Maybe you are looking for

  • Problem in JAVA PL/SQL Block

    Hi all, I am facing a peculiar problem. I have one JAVA PL/SQL code, which runs a shell script, which indeed fire a zipping command remotely. Here I am providing you the code. Actually it zip some files at application server running from Database Ser

  • Solaris 10 & Network [II]

    Hi I have a Solaris 10 SunFire V100 and am suffering from some very similar symptoms to the OP (which is how I found this place). I am connecting to it from Windows PC using Hyper Terminal. Solaris boots on poweron from lom and I get the following er

  • LiveCache Homogeneous Copy

    Hello, We are doing an homogeneous copy of our productive SCM 5.0 system onto the QA system. I'm kind of stuck with the LiveCache part. Our LiveCache Version is 7.6.03.12 on both systems. Our Productive LiveCache is bigger than the QA one. So we have

  • Missing Option in DHCP Network Wizard

    When I tried the DHCP Address Wizard, part of the DHCP Manager, there's a "Generate Client Names" option. It looks like it would be convenient, but it's grayed out. Are there any plans to update the package to make it work?

  • Installing Coldfusion on linux machine

    Hi, I would like to work on developer edition on my home PC. I have mysql as database and apache webserver with me. My PC OS is linux (Flavour - Centos). Can anyone provide information on 1) Downloading coldfusion developer edition ( I think this is