Is it possible to pass parameter in Navigation to BI content ActionLink ?

Created and action link in a report A which call report B.
Now when we use Dashboard filter on column 1 the value of column 1 in Report A get filtered according and shows the record set qualify the filter condition.
When we Navigate from Report A to Report B we expect that the report B should show restrictive records which qualify filter applied and column 1.
But it is not happening .
We tried adding prompt filter in column 1 in both report a and report b .but no luck .
So , what we need is a way to pass the value of dashboard filters to report A (which is do able ) and from report A to report B ( this is not working )
Edited by: user8725805 on Aug 3, 2011 7:28 AM

Make sure that there is a isPrompted filter on all columns you want to filter on for ReportB.
Technically if you do this the reference between report A and Report B should work.
however, to specifically target individual columns / isPrompted filtering, you may use the GoURL syntax via action links using the Web Page action link reference.
The guide to GoURL syntax can be found here,
http://download.oracle.com/docs/cd/E21764_01/bi.1111/e16364/apiwebintegrate.htm#i1005050
and
http://download.oracle.com/docs/cd/E21764_01/bi.1111/e16364/apiwebintegrate.htm#i1005249

Similar Messages

  • BODI: Is it possible to pass parameter/variable value out of a data flow?

    Hi All,
    Is it possible to pass parameter value out of a data flow?
    I've created a custom function in my query transform to get row count, this value would be used outside the data flow to perform another logic. It looks like I'm unable to modify the output schema at the function in the query transform to explicitly map it to a particular global/local variable.
    Any ideas?
    Thanks.

    Any ideas?

  • Isn't its possible to pass parameter with timer events

    helo every one,
    i have a array which i need to plot on the screen. the
    plotting should have some delay in between so that we can see the
    points being plotted. i tried using timer class but when the event
    occurs my loop index has always reached last element. any help...
    heres the code i used

    i have around 1000 data so the flash chrashes as i run your
    code.
    any suggestions to handel such case

  • Passing parameter from workitem to bsp page

    Hi,
    is it possible to pass parameter from workitem to bsp page and also vice versa?

    SAP_WAPI_READ_CONTAINER function works well.but i need to pass a parameter to workitem container.
    what i am trying to do is;
    1-get data by using sap_wapi_read_container
    2-change data
    3-send changed data back to workitem
    my problem is in third step.I am using SAP_WAPI_WRITE_CONTAINER. but it doesnt work.After execution the FM return_code set to 1.
    Do u know how to set a variable in workitem?

  • Passing parameter to midlet

    Dear experts,
    I have myMidlet.jar, which should send temperature data (HTTP GET) to server.
    It works fine. But for testing I have static data (hardcoded temperature value).
    Microcontroler which provides temperature and runs midlet on GSM module can't listen and write to com port temperature data, once midlet started.
    So my idea is to call midlet with parameter like: "myMidlet.jar -temp_data". I
    tried with putting parameter in
    public void startApp(String my_data) ...but I get error while compiling:
    "...is not abstract and does not override abstract method startApp()"
    Is it possible to pass parameter? How to achieve this? Thanks for help,
    Mitja
    Edited by: mitja100 on Sep 19, 2009 12:37 AM

    Thanks guys,
    Problem is, that microcontroller drives GSM module and I can not access gsm module's file system with mCpu. So I can not first write value to any file on GSM module's file system and then send this value with midlet application.
    I am calling jar every minute and send temperature to server. So if I understand right, it is not possible to start jar midlet application with parameter like »myMidlet.jar –t=20.50«?
    Mitja

  • Passing parameter to next dropdown

    My question is..is it possible to passing parameter to second drop down .if i select one value(ex : INDIA) first dropdown that value shd go to second drop down qry then matching records only shd display in second drop down.
    i ll write query for second drop down
    select state from state where country =  -
    >(INDIA)
    issues:-
    if i refresh the report first showing one text box then i entered the country values after that shwing country drop down and
    state dropdown according that values.. i need to show only two dropdown box and through passing parameter..

    Sounds like performance issue (number of records) causes the usual cascading parameter to be too slow for you.  Check you didn't forget to join the tables used by the dynamic parameters. 
    If that was not the issue, you can create your own viewer application and take care of the parameters using your own GUI.
    Alternatively, one of the 3rd-party viewers (see list at http://www.kenhamady.com/bookmarks.html) provides special dynamic and cascading parameters that would solve this issue for you.  Each parameter can use another crystal report to provide the list of values, and each of these reports can have it's own static or dynamic parameter (providing the cascading effect).

  • Is possible to pass array/list as parameter in TopLink StoredProcedureCall?

    Hi, We need to pass an array/List/Vector of values (each value is a 10 character string) into TopLink's StoredProcedureCall. The maximum number of elements on the list is 3,000 (3,000 * 10 = 30,000 characters).
    This exposed two questions:
    1. Is it possible to pass a Vector as a parameter in TopLink's StoredProcedureCall, such as
    StoredProcedureCall call = new StoredProcedureCall();
    call.setProcedureName("STORED_PROCEDURE_NAME");
    call.addNamedArgument("PERSON_CODE");
    Vector strVect = new Vector(3000);
    strVect.add(“ab-gthhjko”);
    strVect.add(“cd-gthhjko”);
    strVect.add(“ef-gthhjko”);
    Vector parameters = new Vector();
    parameters.addElement(strVect);
    session.executeQuery(query,parameters);
    2. If the answer on previous question is yes:
    - How this parameter has to be defined in Oracle’s Stored Procedure?
    - What is the maximum number of elements/bytes that can be passed into the vector?
    The best way that we have found so far was to use single string as a parameter. The individual values would be delimited by comma, such as "ab-gthhjko,cd-gthhjko,ef-gthhjko..."
    However, in this case concern is the size that can be 3,000 * 11 = 33, 000 characters. The maximum size of VARCHAR2 is 4000, so we would need to break calls in chunks (max 9 chunks).
    Is there any other/more optimal way to do this?
    Thanks for your help!
    Zoran

    Hello,
    No, you cannot currently pass a vector of objects as a parameter to a stored procedure. JDBC will not take a vector as an argument unless you want it to serialize it (ie a blob) .
    The Oracle database though does have support for struct types and varray types. So you could define a stored procedure to take a VARRAY of strings/varchar, and use that stored procedure through TopLink. For instance:
    StoredProcedureCall call = new StoredProcedureCall();
    call.setProcedureName("STORED_PROCEDURE_NAME");
    call.addNamedArgument("PERSON_CODE");
    oracle.sql.ArrayDescriptor descriptor = new oracle.sql.ArrayDescriptor("ARRAYTYPE_NAME", dbconnection);
    oracle.sql.ARRAY dbarray = new oracle.sql.ARRAY(descriptor, dbconnection, dataArray);
    Vector parameters = new Vector();
    parameters.addElement(dbarray);
    session.executeQuery(query,parameters);This will work for any values as long as you are not going to pass in null as a value as the driver can determine the type from the object.
    dataArray is an Object array consisting of your String objects.
    For output or inoutput parameters you need to set the type and typename as well:
      sqlcall.addUnamedInOutputArgument("PERSON_CODE", "PERSON_CODE", Types.ARRAY, "ARRAYTYPE_NAME"); which will take a VARRAY and return a VARRAY type object.
    The next major release of TopLink will support taking in a vector of strings and performing the conversion to a VARRAY for you, as well as returning a vector instead of a VARRAY for out arguments.
    Check out thread
    Using VARRAYs as parameters to a Stored Procedure
    showing an example on how to get the conection to create the varray, as well as
    http://www.oracle.com/technology/sample_code/tech/java/codesnippet/jdbc/varray/index.html on using Varrays in Oracle, though I'm sure the database docs might have more information.
    Best Regards,
    Chris

  • Is it possible to pass some type of parameter/unique id FROM PDF?

    hi there,
    I will try to explain this as best as I can but please bear with me.
    I have Adobe Acrobat X Pro.
    We have drawings linked to each other in pdf.
    When you open a drawing (say, a layout of a house), my boss wants to be able to click on say, a door, and have all the information on that door pop up (size, manufacturer, when it was shipped, etc). The information log is stored in Excel. I know how to hyperlink to open an excel file FROM pdf, but cannot figure out how to open a specific sheet in Excel. So here is my question:
    1. How do I link to a specific sheet in Excel so it opens when I click on a link in the pdf file?
    Having said that, we are going to have around 1500 items and I don't want to have to create 1500 sheets (if that's even possible) to open the details for each one. So here is question #2:
    2.  Is it possible to pass some type of parameter to excel (or even Access) to know what item was clicked on the pdf file so I can write a macro/code in Excel to just fill in the details for that item? (Hence just needing one sheet instead of 1500?).
    Suggestions/path forwards are welcome.
    I hope this was clear and I thank you in advance.
    Thanks,
    Jessica

    There really isn't a way to do that. It would be possible to export an Excel sheet to a tab-delimited (or CSV, XML) file which could optionally be attached to the PDF. JavaScript inside the PDF could read the data file and extract the information for an item so it could be displayed somehow.

  • Is it possible to pass a field symbol as parameter from any method of view?

    Hi
    Is it possible to pass a field symbol as an importing parameter to teh globally declared attribute??

    While it is true that you can pass field symbols, they must be fully typed at the time you pass them  and they will be passed by value, not by reference. If you want to pass generically typed variables use a data reference (TYPE REF TO) instead.

  • Is it possible to pass TABLE as the output parameter in stored procedure

    Hey Experts,
      Is it possible to pass TABLE as the output parameter in stored procedure.
    eg
    create procedure spGetData
    @tableName as TABLE(intValue INT NOT NUL)
    as 

    You can use OPENQUERY or OPENROWSET, as mentioned above, to make stored procedure results table like. There are
    some limitations with these methods:
    http://technet.microsoft.com/en-us/library/ms188427.aspx
    In OPENQUERY this-sql-server-instance can be used instead of a linked server name. It requires setting data accces server option:
    exec sp_serveroption @server = 'PRODSVR\SQL2012'
    ,@optname = 'DATA ACCESS'
    ,@optvalue = 'TRUE'
    LINK: http://www.sqlusa.com/bestpractices/select-into/
    Kalman Toth Database & OLAP Architect
    SELECT Video Tutorials 4 Hours
    New Book / Kindle: Exam 70-461 Bootcamp: Querying Microsoft SQL Server 2012

  • Is it possible to pass a parameter to ON_DEMAND process?

    Hi guys.
    In AJAX, is it possible to pass a parameter to ON_DEMAND process?
    (I get value in javascript and want to pass it to on_demand process...)
    Thanks.
    Mike

    Hi Mike,
    Yes, provided you have set up an Application Item to receive the value you can use this within your PL/SQL code.
    I've detailed what needs doing here:
    http://htmldb.oracle.com/pls/otn/f?p=40042:1
    username/password: guest/guest
    Regards
    Andy

  • Is it possible to pass URL parameter to "People" in Office 365 ?

    Hi,
    I would like to find out if I can pass parameter from SharePoint online to "People" module on Office 365.
    i.e.
    https://outlook.office365.com/owa/?realm=XXXXXXXX&wa=wsignin1.0?QUERY=John#path=/people
    Please note "?QUERY=John"
    I've tried different params like "k", "q", "query", etc but this doesn't work...
    What we would like to achieve is that user enter some name in search box on Sharepoint and after submitting is transferred to "People" module in Office365 with results matching name entered on Sharepoint.
    Any advice will be really appreciated !
    Thanks

    Hi Mariusz,
    To be able to access another user’s mailbox, we need to assign the account full access permission to access the other user’s mailbox.
    And then we can access the other user’s mailbox through URL like this:
    https://xxx.outlook.com/owa/[email protected]
    I recommend to edit the Search result page(when a search center is used) and add a button to the page. When user clicks the button, redirect to the corresponding mailbox.
    If a user name is typed in the search box, use JSOM to get the login name or email address of the user and generate the URL of the user’s mailbox which will be used when clicking the button.
    About how to use JSOM to get the email address of a user:
    https://msdn.microsoft.com/en-us/library/office/jj163800.aspx
    For more information, you can post your question to the forum for Office 365: http://community.office365.com/en-us/f/default.aspx.
    More experts will assist you, then you will get more information relation to SharePoint Online.
    Thanks,
    Victoria
    TechNet Community Support
    Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact
    [email protected]

  • Is it possible to pass table type values as input parameter for con prg?

    Hi All,
    Could you please confirm that is it possible to pass table type value as input to concurrent program?
    If possible how to achive this?
    If not possible whether we have any ora doc which is confirming this.
    Any hel will be great.
    Thanks,

    Hi student;
    Please check (http://apps2fusion.com/at/45-as/241-enablingdisabling-concurrent-program-parameters)
    Hope it helps
    Regard
    Helios

  • Dynamic pages / parameter and navigation links

    hi all!
    my goal is to develop a portal page , with a naviagtion region on the left side (this is a dynamic page in which links are defined) and on the right side there should be the main region (also a dynamic page , with parameter input). Now, it should be possible to pass different parameters to the main region dynamic page, by clicking on the different links in the menu region. Each link should pass an other parameter to the main dynamic page. How is that possible ? (using as10g)
    regards,
    katharina

    I don't realy get the requirement...
    Basicly each space has their own navigation model. I don't know if it's possible to share navigation models from one space to another...

  • Using Go URL to Pass parameter between dashboard

    Hi All,
    I am trying to pass parameter using GO URL functionality from one dashboard analysis field to another dashboard.
    The navigation is working properly but the parameter is not getting passed, I am not sure why.
    The Called dashboard has a analysis which has IS PROMPTED filter attached to it for the passing filter. I tried various ways to make this work
    Option 1
    In the calling analysis, I am using a Narrative View and inside I have used the below code.
    <a href="saw.dll?Go&Path=/shared/MI/_portal/Client-MI&Page=Supplier%20Detail%20Tab&Action=Navigate&P0=1&P1=eq&P2=Dim%20Supplier.Supplier%20Name%20Current&P3=1+%22STR%20LTD%22"> @2[br/]
    This one navigate but filtering is not happening
    Option 2 (My first preference will be this option)
    Also I tried to provide custom Data Format under the column Properties
    [html]"<font class="nav" onclick=\"JavaScript:GoNav(event, '/shared/MI/_portal/Client-MI/Supplier Detail Tab','Dim Supplier','Supplier Name Current','"@"');\">"@"</font>
    This ends up giving error
    Type mismatch of catalog object /shared/MI/_portal/Client-MI/Supplier Detail Tab -- expected , got .
      Error Details
    Error Codes: UVWDR6UA 
    Also, both the tabs (Called and Calling are under the same Dashboard)
    Can anyone please let me know, were I am making mistake. I tried refereeing Oracle documentation but still no result.
    Thanks

    Looks like you've got it almost right - just an extra unneeded "
    <a href="two.jsp"?ant=<%= ant %>"><%=antName%></a>
    which should render on the page as something like
    My Ant Task
    When you click the link, it should pass that parameter, and you can get it via request.getParameter().

Maybe you are looking for

  • Help Counting Vowels and Consonants using a class

    I'm currently working on a class project where I need take a user inputed string and count how many vowels and/or consonants are in the String at the user discretion. I have the main logic program working fine. However, the trouble I'm running into i

  • Exporting and importing just table definitions

    Hi, I have this production database that has a huge amount of data in it. I was asked to set up a test database based on the exact same schema as the live database. When I tried to do an export (from live) and import (to test), with the parameters ro

  • Importing multipage Word document w/hyperlinks into InDesign

    I am new to InDesign and I am trying to import a 11 page Word document with hyperlinks into InDesign. For the life of me, I can not figure this out. I try to "put" the file into InDesign but it just imports as a tiny box. Two questions: 1. Does anyon

  • Convert USB 3.0 to USB 2.0?  Why?

    Sounds useless, since most USB 3.0 devices are backward compatible.  But apparently there's enough slop in the spec so that at least my 3.0 HD won't work with my Netgear WNDR4000 N700 router's USB 2.0 port, and I can't mount it as a network drive on

  • Trapping AF errors using Alert framework in XI 3.0 SP13

    Hi    I am trying to setup alert categories and rules to trap AF related errors - like a SOAP receiver adapter failing to call a webservice etc... I came across earlier threads that mentioned, alerts will not be triggered involving AF in SP13 - in ot