Need help in WAD 7.0 - anaylsis item cell value as filter to another web...

Hi ,
I need help in WAD 7.0
i have 2 web items, analyis item 1 & 2
when user clicks any cell value in column xxx of analysis item1, then i need to filter the analysis item 2 values for  column xxx  , for that user clicked value.
how do i enable this ?

Hi.
You can try the nxt approach:
1. in analysis item A (first) properties define in "behaviour" -> "row selection" = "single with command".
2. set this command to "SET_SELECTION_STATE_BY_BINDING".
3. define "data provider affected" = your second data provider for analysis item B.
4. in "selection binding" set needed variables to binding type "VARIABLE"
In this case, when you select any row in analysis item A some variables will be populatd from this row and affect on analys item B (dataprovider B).
Regards.

Similar Messages

  • Would like to trace my ipod touch because I was robbed. I would find it please. need help from you guys. Not because I am able to get another. Thank you.

    would like to trace my ipod touch because I was robbed. I would find it please. need help from you guys. Not because I am able to get another. Thank you.

    - If you previously turned on FIndMyiPod on the iPod in Settings>iCloud and wifi is on and connected go to iCloud: Find My iPhone, sign in and go to FIndMyiPhone. If the iPod has been restored it will never show up.
    iCloud: Find My iPhone
    - You can also wipe/erase the iPod and have the iPod play a sound via iCloud.
    - If not shown, then you will have to use the old fashioned way, like if you lost a wallet or purse.
    - Change the passwords for all accounts used on the iPod and report to police
    - There is no way to prevent someone from restoring the iPod (it erases it) using it unless you had iOS 7 on the device. With iOS 7, one has to enter the Apple ID and password to restore the device.
    - Apple will do nothing without a court order                                                        
    Reporting a lost or stolen Apple product                                               
    - iOS: How to find the serial number, IMEI, MEID, CDN, and ICCID number

  • Need help on Oracle APEX- Retaining Page items of one Session in another

    Hi,
    I am creating an apex application in which there exist two pages. Out of 2 pages, I need to provide authentication on one page and no authentication on the other one.
    When I access the first page by public, I must pass some page items to the second page. Since, I have aunthentication on page 2, there will be a new session created and I could not retain the page items that are passed from Page 1 to Page2.
    Please help me in retaining the page item values of Page1 in Page2.
    Thanks for your help.

    Hi Andy,
    I have passed the values from page 2 to page 3. Due to Authentication on Page 3, the passed values are cleared and a new session created.
    Is there a way to retain the item values using Application items or Application computations?
    Please help.
    Thanks,
    Hanu.

  • Need Help, retrieving a combo boxes actual/print/visible value instead of the export value.

    Hello,
    I need help, retrieving a combo boxes actual value, not the export value.
    I have a combo box with multiple options to select from.
    each of those selections has a separate export value, which is in the form of a number, which I use to calculate dates in a separate field.
    However, I have another field that i want to retrieve the, users selected value, which is text, from the combo box instead of the export value.
    Is there an easy way to do this.
    This is what I am currently using. But like I said the results are that I retrieve the export value and not the selected text value.
    event.value = this.getField("_Arugula").valueAsString;
    Thanks

    First get the currentValueIndices property of the combo box and use it with the getItemAt field method to return (what I call) the display value. Something like:
    var f = getField("combo1");
    var display_value = f.getItemAt(f.currentValueIndices, false);
    See the documentation for more information

  • Do I need to embed QT movies in my iWeb site if I am using another web host

    I am going to be posting my iWeb site to another web hosting service (bluehost.com). Does anybody know if I will need to embed the QuickTime movies I have on my site. Do I need to purchase QuickTime Pro to accomplish this task? How difficult is embedding the QuickTime movies to a non.Mac web hosting service?
    Many thanks for your assistance

    I believe that as long as you drag and drop your QT movies into iWeb, it will embed the QT movies for you when you "publish to folder." Then all you will need to do is upload the folder to your webhost.
    No need to buy QTPro unless you are trying to convert from one format to another.
    Good luck!
    James
    http://www.dirtdoog.com/

  • Need help in query to have all items in sap with PO data on order, date

    Hello Everyone,
    I need some help in writing a query to show all items in sap db to have itemcode, itemname, onhand, sellable(onhand-committed), on order, and the delivery date when that time should be received.  I need to know what items are regular items, which ones are master and components.  For the master I need to have the deliver date of the PO for the component.
    I have written this.
    SELECT DISTINCT TOP (100) PERCENT T1.ItemCode, SUM(T1.Sellable) AS Sellable, T1.OnOrder, MAX(T1.Docduedate) AS DeliveryDate, T1.WhsCode
    FROM         (SELECT     ItemCode, Sellable, OnOrder, '1/1/1900' AS Docduedate, WhsCode
                           FROM          dbo.V_RAZ_StoreInv
                           UNION ALL
                           SELECT     TOP (100) PERCENT ItemCode, '0' AS Sellable, Quantity AS Onorder, DocDueDate, WhsCode
                           FROM         dbo.V_RAZ_OPENPOSDATA
                           ORDER BY ItemCode) AS T1 LEFT OUTER JOIN
                          dbo.V_RAZ_ItemInfo ON T1.ItemCode = dbo.V_RAZ_ItemInfo.ItemCode
    GROUP BY T1.ItemCode, T1.OnOrder, T1.WhsCode, dbo.V_RAZ_ItemInfo.OnHold
    HAVING      (dbo.V_RAZ_ItemInfo.OnHold = 'n')
    ORDER BY T1.ItemCode, T1.WhsCode
    and for the v_raz_openposdata I have the following query
    SELECT     dbo.OPOR.DocNum, dbo.OPOR.DocStatus, dbo.POR1.WhsCode, dbo.POR1.ItemCode, dbo.POR1.Dscription, dbo.POR1.Quantity, dbo.POR1.OpenQty,
                          dbo.POR1.LineStatus, dbo.OPOR.DocDueDate
    FROM         dbo.OPOR LEFT OUTER JOIN
                          dbo.POR1 ON dbo.OPOR.DocEntry = dbo.POR1.DocEntry
    WHERE     (dbo.OPOR.DocStatus = 'O')
    Any help is greatly appreciated. 
    Right now I do get the delivery date for regular items and components but the master sku for the component all of them have 1/1/1900. 
    Thank you

    Thank you for replying Gordon.  I did not remember I had asked this before.  I no longer have access to the other account. 
    What I need on the query is that I want  a list of items with the on order quantity and when we are expecting this order to be received.  The receiving date is based on the PO delivery date.  The trick here is that  I need to Master sku to show the delivery date of the component sku.  In my scenario all components have the same delivery date for the Master sku.  If there are mulitple delivery dates because each warehouse is getting them on a different date then I want to get the delivery date for that warehouse.
    Let me know if this is possible and if yes please guide towards a query for it.
    Thank you.

  • Need help with arranging Parent and Child item accordingly

    Hi Experts,
    I have a sales BOM in SBO, here we need to show both the Parent and child items. but we do not have to show the Sr.no and Qty for the child items.
    Kindly help me out how I can do it.
    Below pasted is the image of my sales order,
    Also i have attached the report with it.
    Requesting you to kindly help..
    thanks and regards,
    Nandish.

    The Sales BOM helps in identifying that. The product in Red is the Parent Item and the product in Grey are Child items.  The paretn item is the table OITT.Code and child items are in ITT1.code.
    Let me now if you require more information.
    Also how can I send you the layout here for your reference?
    thanks in advance,
    Nandish.

  • Need Help; Must accept email and create item in custom list

    Hello Forum,
    We have a Sharepoint 2010 site that has been using Microsoft's ticketing system for years. What I need to confirm is if there is a way to email the sharepoint list and have it create a ticket (parsing the from address, subject and body then creating a ticket
    from that and sending a confirmation email reply to the user).
    I understand there may be some coding needed, but don't know where to start without having to start over and lose our years of  lists / data. Can someone please help provide information or at the very least a starting point for me?
    Thanks.

    I coded something similar very recently. This community project helped me a lot; http://www.codeproject.com/Articles/32899/Reading-an-Outlook-MSG-File-in-C
    I called
    out to this code from an ItemAdded Event Receiver on the library to parse the email metadata.
    It's also possible to email enable Libraries and receive items emailed straight to the library. There's a special event receiver available for that which helps you parse email metadata. (But I couldn't receive email directly from my project so I didn't use
    this approach though I daresay it's simpler); http://msdn.microsoft.com/en-us/library/microsoft.sharepoint.spemaileventreceiver.aspx
    w: http://www.the-north.com/sharepoint | t: @JMcAllisterCH | YouTube: http://www.youtube.com/user/JamieMcAllisterMVP

  • Need help in WAD *to pass drop down value as filter to a DP in another WAD*

    Hi,
    I have 2 WAD.
    WAD1 has - i drop down and 1 hyper link to WAD2
    WAD2 has - just 1 analysis item to display a quey output.
    one value in WAD1-drop down to be selected and  when the WAD1-lhyper ink is clicked, this  value to get passed to WAD2 as filter value for that data provider .
    i am not able to implement this.
    can anyone help?

    can anyone pls reply.

  • Need Help with WAD transport

    HI All,
    I have made few changes in existing web template using WAD. While changing objects, and HTML code, it did not ask for any Transport. I am not sure, how do I move the changes in Quality and Production?
    Any urgent help will be very helpful here.
    Thanks,
    Paul

    Hi Paul,
    either your objects were never transported before - then you need to collect them in the transport collector.
    or they were already transported and there is a bex transport request defined for the package where they belong to. then the objects are already on this transport and you justs end this one into production.
    best way is to go to the transport collector and collect the template you have changed. The the system will tell you, to which transport request the objects belong.
    regards
    Cornelia

  • Need help with dbwizard in loading additional items on forms

    I used database dbblock wizard to create a form called employee. I took four fields from employee table and put them on my form.
    My questin is If i want to add more items in my form from the same employee table, how can i do it.
    These items should reside on same block as the other items.
    plss help

    Hi rahman,
    Greetings,
    Simple, just add text item, with the help of layout editor, in the same block as per your requirement and then click and check the property of newly add item to fix database => yes , column => as per your table column name / change the textitem Name as per you table column name.
    Then it will work fine.
    kanish

  • Need help ErrorERR-1002 Unable to find item ID for item "P12_PROUDCT_ID" i

    please help me i am getting this error and idont know how to solve it
    Error     ERR-1002 Unable to find item ID for item "P12_MOR_IS_VIRGIN"
    Error connecting to the VIRGIN TABLE ' Check MOR is look like shit?
    ++++++++++++++++++++++++++++++++++++++++++++++++++++
    for x in
    (select seq_id, c001 from apex_collections
    where collection_name = 'ORDER' and c001 = :P12_PRODUCT_ID)
    loop
    apex_collection.delete_member(p_collection_name => 'ORDER', p_seq => x.seq_id);
    htp.p('removed an item');
    end loop;
    +++++++++++++++++++++++++++++++++++++++++++++++++++++
    if anyone has a clue how do i solve it plz email me or just write it here
    [email protected]
    tnx alot David.
    Edited by: user11017573 on Oct 1, 2012 3:03 AM

    Error ERR-1002 Unable to find item ID for item "P12_PROUDCT_ID" in application "61553".Is the item name P12_PROUDCT_ID or P12_PRODUCT_ID? Perhaps you misspelled the item name in the item itself?

  • Need help in WAD

    Hi Everybody,
            I know what a WAD is, we create Dashboard Reporting in WAD and host it in web (please correct if i am wrong) right?, if yes, how do we host in web. i had this question in one of my interviews, which i was unable to answer. Could anyone help me with this.
    Thanks,
    RR.
    Points will be rewarded:-)

    Hi RR,
    Execute in the Browser…
    You use this function to publish your Web template on the Web and thereby create a Web application. You can also call the function from  Execute in the Browser on the Web Application Designer toolbar.
    You can see what the button will look like over here:
    http://help.sap.com/saphelp_nw04/helpdata/en/47/d4fed1c60a9743ade3b4cf306d5d48/content.htm
    Hope this helps...

  • Need help on WAD

    Hi Experts,
    I have an issue:
    I have a report that I developed using web application designer .
    I have a hierarchy in the report (in rows), I am writing a function in Javascript to hide the 'un expaneded' nodes(node level1) (the node symbol and the corresponding text) on page load and this is working fine.
    But when I am clicking on anything (navigating) then the hidden symbol and text in the rows are reappearing.The hidden ones are getting hidden only on page load . I need them to be hidden at all time even when we navigate on the report.
    Can anyone please help out with a solution .
    Thanks
    Prasad

    I have written a Javascript function called 'ReplaceNodes' to replace the unwanted nodes with null.They are getting hidden when I call the function from
    BODY onload event. i.e, when I run the query for the first time I am getting the result as expected but when I am trying to navigate across the query then the hidden ones are reappearing even though I am calling the function 'ReplaceNodes' again.
    Can you please suggest something?

  • I need help, I didn't get my items for my in-app purchase. I need my money back.

    A couple days ago I made an in-app purchase on the app Family Guy: The Quest for Stuff (by TinyCo). I did not get the item I purchased (it was $4.99), so I tried  three more times assuming it did not go through. I never recived any of the in game money that I purchased and then 2 bills came through  for over 20 bucks. I only wanted one $4.99 thing.
    Is there a way I can dispute this with the I-tunes store?      Thanks

    Hey southparkape,
    Thanks for using Apple Support Communities.
    If you have a problem with a purchase, follow this article to have it reviewed.
    How to report an issue with your iTunes Store, App Store, Mac App Store, or iBooks Store purchase
    http://support.apple.com/kb/ht1933
    Have a nice day,
    Mario

Maybe you are looking for

  • Sync from Outlook to Iphone 5

    Is there a way to set up categories for contacts in the Iphone. My outlook contacts are organized by Personal, business, family ect. Can't fine this in Iphone contacts.

  • What are the minimum CPU and Memory requirements for R12 Vision instance?

    We are in the process of trying to figure out what the minimum hardware requirements are for installing the R12 Vision instance. This Vision instance would only have 5 or less concurrent users. We may have to order a new server and we are wondering w

  • ERROR = e=13 semget(20160,1,1023) (13: Permission denied) [semux0_mt.c  98

    Hi Experts, I installed Java Stack as add-in on our already existing Abap System (NW04s, HP-UX with an Oracle DB)  and the following issue I have in the std_server0.out stdout/stderr redirect node name   : server0 pid         : 4626 system name : BWU

  • Disabling "Save" and "Email" icons for pdf docs.

    I have an ebook that I have set to NOT allow copying, printing and whatnot, BUT the icons to Save and Email are still visible...how can I remove or grey out those icons so that the document cannot be saved or email THAT WAY?? Any ideas plz Thank you

  • IPod connected & now constant Do not disconnect on Display

    I recently connected my iPod with Color Display to my Mac, iTunes did not immediately boot up nor did the iPod icon appear on the desktop. I manually started iTunes and ITunes began its synching routine and the "Do not Disconnect" message appeared on