Help needed on table view popup

I have created custom popup(table view) and able to display the data in the same.
I have created the button(BT108H_LEA/LeadOVViewSet) in the toolbar in lead overview screen in web ui  and when I clicks the button popup is triggering.
I want to transfer the selected record from popup to products assignment block in the overview.
Please help me how to transfer the data from popup to products.
What I did:
1.     I have created the custom view(popup view) and context node in the component BT108H_LEA.
2.     Created the new window (pop window)and embed the popup view  in the runtime repository.
3.     Added in the interface view as pop window.
4.     Created  Component Usages with the popup window.
5.     Triggering the popup when the user clicks the button and populating the data in the  popup in DO_PREPARE_OUTPUT method of custom view(popup view).
6.     Now I want to transfer the data from popup to products assignment block.
Example: popup data
item     product
10     Mat100
If I select row from the above popup how to fill the data in the below component(view).
Products assignment block in the lead.
item     product     qty     UOM     description
Thanks,
Venkat

You would have to use the outbound plugs to transfer data from your component to the other component. Here you have a parameter IV_DATA_COLLECTION. Fill the entries you want to fill here.
Check the Sold to Party pop up while creating Quotation for Sales cycle when you log in with SALESPRO.
Regards
Kavindra
Edited by: joshi_kavindra on Nov 23, 2011 5:03 PM

Similar Messages

  • Help Needed on Table View Control

    Hi Abapers
    In Table View Control which property or system variable keeps the user selected row's row id.
    Situation is that user enters many records into sales details table view. Table view contains the fields, productid product no qty discount and rate. Suppose user wants to delete one particular record(sales details) from that table view while entering this sales details .here i want to know which is that particular row that the user selected. Table views which property keeps this row no information. i am very glad if you people give me more information abount table View Controls .
    With regards
    Anoop.

    You would have to use the outbound plugs to transfer data from your component to the other component. Here you have a parameter IV_DATA_COLLECTION. Fill the entries you want to fill here.
    Check the Sold to Party pop up while creating Quotation for Sales cycle when you log in with SALESPRO.
    Regards
    Kavindra
    Edited by: joshi_kavindra on Nov 23, 2011 5:03 PM

  • Help needed in pushing data into Table view Popup

    Hi All,
    I am trying to create a custom pop up and populate this with Reason code and descriptions. For this, i have created a popup and placed a table view on the popup. But when i am stuck how to push data into the popup from an internal table.
    Any pointers on this will be really helpful.
    Regards,
    Udaya

    Hi,
    Even I am facing the similar issue.  I have created custom component with four views for my requirement and created one view set and displaying the viewset in the pop up screen.  I also created event handler and added required coding to open the pop up screen.
    I have added event handler in BT116H_SRVO component and now the pop up is opend with the required fields but the field is not having any data the value is empty in the pop up screen.  I also binded context node details in the standard component.
    While debugging I found that the collection wrapper is empty, so the data is not populated in the pop up screen.  So kindly hlep me how to fill the collection wrapper and populate data inside the pop up screen.
    kindly let me know how to overcome this issue. 
    Thanks and Regards,
    Kannan.

  • I need a table/view so I can list current portal users

    Is there a table/view that I can use within portal that holds the names of all the portal users ?

    That link looks interesting - couldn't get the code in Appendix A to work for some reason. I assume it should be run in the ORASSO schema?
    Anyway, I need to get a list of Portal users and their group memberships from PL/SQL.
    What is the best way to approach this?
    Cheers,
    John

  • Help needed with tables in iWork pages

    Hi,
    When I have a table in microsoft word I can fill it with all the content I like and it will run on page to page.
    In Pages however, a row  (along with the rest of the table below) will split off and start on the next page if threre is too much content.
    If the contents runs over a whole page the text will run on into nowhere, so off the page and the subsquent empty cells will start on the next page.
    How do I stop this from happening?
    Thanks

    That is the way tables in Pages works. It doesn't work as in Word. Do you really need using tables? I myself find it a bad habit when using a table for every thing.

  • Help needed with Oracle views

    Hello All,
    I have the following (simplified slightly as a example)
    CREATE VIEW TRACK30.GVITEMASSOCIATE002F AS
    SELECT
    VATTRIBUTEASSOCIATEZ0000.ATTRIBUTEID AS ATTRIBUTEID,
    ... lots more columns from vattributeassociate
    VISOTOPEZ0001.ISOTOPEID AS ISOTOPEID,
    ... lots more columns from visotope
    FROM
    VATTRIBUTEASSOCIATE VATTRIBUTEASSOCIATEZ0000, VISOTOPE VISOTOPEZ0001
    WHERE
    VATTRIBUTEASSOCIATEZ0000.A54E67=VISOTOPEZ0001.ISOTOPEID
    AND VATTRIBUTEASSOCIATEZ0000.ATTRIBUTEISID=47
    and
    CREATE VIEW TRACK30.GVITEM AS
    SELECT
    VITEMZ0000.ITEMID AS ITEMID,...
    GVITEMASSOCIATE002FZ0005.KEYID AS A553DB,...
    FROM
    VITEM VITEMZ0000, GVITEMASSOCIATE002F GVITEMASSOCIATE002FZ0005
    WHERE
    VITEMZ0000.ITEMID=GVITEMASSOCIATE002FZ0005.KEYID(+) AND
    (GVITEMASSOCIATE002FZ0005.ATTRIBUTEISID=47 OR GVITEMASSOCIATE002FZ0005.ATTRIBUTEISID IS NULL )
    and
    CREATE VIEW TRACK30.GVFINAL AS
    SELECT
    O.*,
    I,*,
    T,*,
    C.*
    FROM
    CONTENT O, GVITEM I, GVTRANSACTION T, GVCOLLECTION C
    WHERE
    O.COLLECTIONID=C.COLLECTIONID AND
    O.ITEMID=I.ITEMID AND
    O.TRANSACTIONID=T.TRANSACTIONID
    I'm getting back the numbers of rows I expect from each view and the data is correct at each stage EXCEPT within GVFINAL where the data from GVITEMASSOCIATE002F.VISOTOPE is missing. How could that be? The other data from GVITEMASSOCIATE002F.VATTRIBUTEASSOCIATE is present in GVFINAL. If I query the gvitem view then the data is present for visotope for a particular item but not when querying the gvfinal view?!?!?!?
    Anyone know why this is?
    Thanks in advance.
    Richard (Confused again)

    Hi, Thanks for the reply.
    The names are generated by some code so I don't really mind them being huge. ;-)
    I think you've skated over my point. So I'll try and explain a bit better and simplify it a bit more.
    within the content table the itemid column contains a list of all the items in their respective containers. Hence every item will be present and since I'm not filtering on containerid nothing would restrict this.
    within the gvitem view we have the data for all of the items therefore the counts within content and item grouped by itemid are identical.
    Therefore the join of gvitem to content should produce all of the data within gvitem and all of the data within content. (I've removed gvtransaction and gvcollection since they ain't pertinent to the problem).
    But, the data from within gvitemassociate which is joined to gvitem is missing from gvfinal. Yet the other information from within gvitem is present.
    Maybe an example will help...
    simplifying the views down to
    CREATE OR REPLACE VIEW GVITEM2 AS
    SELECT
    VITEMZ0000.ITEMID,
    GVITEMASSOCIATE0047Z0005.WHENAT AS A259197,
    GVITEMASSOCIATE0047Z0005.HALFLIFEAT
    FROM
    VITEM VITEMZ0000,
    GVITEMASSOCIATE0047 GVITEMASSOCIATE0047Z0005
    WHERE
    VITEMZ0000.ITEMID=GVITEMASSOCIATE0047Z0005.KEYID(+) AND
    (GVITEMASSOCIATE0047Z0005.ATTRIBUTEISID=47 OR GVITEMASSOCIATE0047Z0005.ATTRIBUTEISID IS NULL )
    CREATE OR REPLACE VIEW TRACK30.GVFINAL2 AS
    SELECT
    O.ITEMID,
    I.ITEMID AS GVITEMITEMID,
    I.A259197,
    I.HALFLIFEAT
    FROM
    CONTENT O, GVITEM2 I
    WHERE
    O.ITEMID=I.ITEMID
    Therefore itemid comes from content, gvitemitemid comes from vitem and the others come from gvitemassociate.
    and then doing...
    select * from gvitem2 where halflifeat between '18-APR-1910' and '18-APR-1920';
    gives
    ITEMID A259197 HALFLIFEA
    52806 03-JAN-06 18-APR-12
    52797 21-DEC-05 18-APR-12
    52798 21-DEC-05 18-APR-12
    52799 21-DEC-05 18-APR-12
    52800 21-DEC-05 18-APR-12
    51571 15-DEC-05 18-APR-12
    51572 15-DEC-05 18-APR-12
    51573 15-DEC-05 18-APR-12
    51575 15-DEC-05 18-APR-12
    51576 15-DEC-05 18-APR-12
    51577 15-DEC-05 18-APR-12
    11 rows selected.
    and then if I go
    select itemid,gvitemitemid,a259197,halflifeat from gvfinal2 where itemid in (52797,52798,52799,52800,52806)
    i get
    ITEMID GVITEMITEMID A259197 HALFLIFEA
    52797 52797
    52797 52797
    52800 52800
    52800 52800
    52798 52798
    52798 52798
    52806 52806
    52806 52806
    52799 52799
    52799 52799
    10 rows selected.
    So the A259197 and HalfLifeAt columns don't have data within them? yet they did a second ago??!?! e.g. itemid=52797
    interestingly if I query via halflifeat then I do get that information but that's no good to me since I need to filter by container in the program.
    e.g.
    select itemid,gvitemitemid,a259197,halflifeat from gvfinal2 where halflifeat between '18-APR-1910' and '18-APR-1920'
    ITEMID GVITEMITEMID A259197 HALFLIFEA
    51571 51571 15-DEC-05 18-APR-12
    51571 51571 15-DEC-05 18-APR-12
    51572 51572 15-DEC-05 18-APR-12
    51572 51572 15-DEC-05 18-APR-12
    51573 51573 15-DEC-05 18-APR-12
    51573 51573 15-DEC-05 18-APR-12
    51573 51573 15-DEC-05 18-APR-12
    51573 51573 15-DEC-05 18-APR-12
    51575 51575 15-DEC-05 18-APR-12
    51576 51576 15-DEC-05 18-APR-12
    51577 51577 15-DEC-05 18-APR-12
    51577 51577 15-DEC-05 18-APR-12
    52797 52797 21-DEC-05 18-APR-12
    52797 52797 21-DEC-05 18-APR-12
    52798 52798 21-DEC-05 18-APR-12
    52798 52798 21-DEC-05 18-APR-12
    52799 52799 21-DEC-05 18-APR-12
    52799 52799 21-DEC-05 18-APR-12
    52800 52800 21-DEC-05 18-APR-12
    52800 52800 21-DEC-05 18-APR-12
    52806 52806 03-JAN-06 18-APR-12
    52806 52806 03-JAN-06 18-APR-12
    22 rows selected.
    It looks like Oracle's joining differently depending on how I filter (Which it obviously would) but is sometimes ignoreing joins when it shouldn't (IMO).
    Bizarre or what?
    I suspect I'm missing something obvious but for the life of me cannot see it!
    Heeeeelllllppppp.
    Thanks
    Richard

  • Help needed in table maintenance

    Dear all
    I have to add a few fields in existing Z-table. When I try to add a field to the table, I get an error that
    Table <table name> is too long (>1962). Can any one guide what's the meaning of this and how to correct the same.
    Thanks in advance. Points for sure.
    Regards
    Dinesh

    Hi,
    The total field lengths of the data elements used in your table is more than 1962, which is the max permissible limit.
    Reduce the length of some of the text fields which you feel is extra and then embed your new field,
    This should solve your problem.
    Hope this helps!!!
    regards,
    Lalit Kabra

  • Flex 3 :Help needed in implementing View States

    Hi 
    I am new to Flex , i am trying to understand View States , tried for one hour but got confused .
    (Basically by seeing the examples i understood the concept , but failed to implement ) 
    Please help .
    Assume my requirement is at the load of the page , i want to show an Login Button and a Chnage State Button (common button) only .and when the Change State button is clicked on ,i want to show the Register Button .
    So for this i made two Forms , and a common button .
           <mx:Form id="RegForm">
                <mx:Button label="RegFormButton" id="RegFormButton"/>
            </mx:Form>
            <mx:Form id="loginForm">
                        <mx:Button label="LoginButton" id="loginButton"/>
            </mx:Form>
    <!-- A common button for both the States-->
      <mx:Button label="Change State"
                  click=""/>
    <mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" currentState="Register">
    <mx:states>
    <mx:State name="Register">         
    <mx:SetProperty   target="RegForm"   value="Register"/>
    </mx:State>
    <mx:State name="loginForm">
    <mx:SetProperty   target="loginForm"   value="Login"/>
    </mx:State>
    </mx:states>
    ( I think some how i can write the Logic to chnage to the current state to loginForm when user clicks with some inline code , but please tell me At the start of the page please tell me why I am not able to show the Register.

    sorry for posting a dumb question .
    I realized my mistake .

  • Help needed in Table in Table Approach using OAF

    We have a requirement in OAF wherein the results region of search page should give header details. And in header details there is a show and hide button which would show all the line details corresponding to the header (like Table – in – Table).
    For Header details I have used advanced table under that I have used detail region and there I have created advanced table for line details.
    I have also created view link to link the header details view object and line details view object.
    In Process Request method of the controller I have set view link name and child attribute name for both outer table (header details table) and inner table (line details table)
    When I run the OAF page, I am getting the below error. I am facing this error when I tried to set the view link name and child attribute of inner table (i.e. line details table) in the controller.
    Detail 0 ##
    java.lang.NullPointerException
         at oracle.apps.fnd.framework.webui.OAAdvancedTableHelper.updateInnerTableProperties(Unknown Source)
         at oracle.apps.fnd.framework.webui.OAAdvancedTableHelper.processRequestAfterController(Unknown Source)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequest(Unknown Source)
         at oracle.apps.fnd.framework.webui.OAWebBeanTableHelper.processRequest(Unknown Source)
         at oracle.apps.fnd.framework.webui.OAAdvancedTableHelper.processRequest(Unknown Source)
         at oracle.apps.fnd.framework.webui.beans.table.OAAdvancedTableBean.processRequest(Unknown Source)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequestChildren(Unknown Source)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequestChildren(Unknown Source)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequest(Unknown Source)
         at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.processRequest(Unknown Source)
         at oracle.apps.fnd.framework.webui.beans.layout.OAFlowLayoutBean.processRequest(Unknown Source)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequestChildren(Unknown Source)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequestChildren(Unknown Source)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequest(Unknown Source)
         at oracle.apps.fnd.framework.webui.OAWebBeanTableHelper.processRequest(Unknown Source)

    Hi,
    read the response above. This is the wrong forum.
    try OA Framework
    Frank

  • Help needed with limiting views of video

    Hello Board,
    I'm using Keynote to make a slideshow showing the way my buisness works. I want to export the slideshow to quicktime/flash for others to view online but heres my problem:
    I don't want this file floating around the web as a "DIY" video on how to fix a slate roof properly, I would like it to be "streamed" from my computer with my permition e.t.c. I emagine it being slightly like youtube in the way you can see how many times the videos been played and that you cant copy the video from the site. (I could put the video up on my .mac webpage)
    Any advice on how to do this would be great, and I'm sorry if my question doesn't involve keynote that much!
    Regards
    Rob

    The space a dedicated to the user.
    Master table = address file
    View = Address file by street nameI have no idea what any of the above means. Please explain.
    How exactly are you creating the view?
    (CREATE VIEW blah AS SELECT ...)
    When view is queried a cpl days later view dows not exists.What's the exact error message?
    When we goto the system to check the view, it is not there.What do you mean by "go into the system"?
    View don't just vanish.
    Did you check USER_VIEWS like I asked above?

  • Help needed regarding table layouting Issue in CS4

    I was trying to layout a table using an Indesign custom script in CS4. The input to the Indesign is a XML file
    Please find below the snapshot of the XML file with the table definition:
    <Table xmlns="http://ns.adobe.com/AdobeInDesign/5.0/" aid5:tablestyle="_XXY" aid:tcols="6" aid:trows="17"><Cell xmlns:aid5="http://ns.adobe.com/AdobeInDesign/5.0/" aid5:cellstyle="_XYY" aid:ccols="1" aid:crows="1" aid5:tablestyle="_XXY">
    Now when the table is layouting it is not taking into account the style of the table nor that of the cell.
    Can you please suggest what is the best way of defining the table styles and the cell styles so that the table can be laid out in Indesign with the proper table styles and the cell styles.

    Please post in the ID forum.

  • Help needed  in Table and field

    Hi all,
    can any one tell me the table and field to get basic unit of measure and unit of issue.
    I guess both are different.
    Thanks

    For base unit of measure, uom, T006 is the main table.But whereever you have a quantity yu will find UOM in that table. The field is MEINS.
    when you say unit of issue, you mean actual unit of measure right?
    In that case it again depends on what you are looking at. Example
    in table LIPS there is base UOM and Actual UOM.
    base is always "MEINS" and actual is "LFIMG" in this case.
    So get the table in your functional area and check for the actual uom field in SE11.
    Regards
    Message was edited by:
            Sandeep Bhavsar

  • Help needed on tables

    Hi all ,
    I have following questions , can someone give me brief details on these
    1. What is the meaning of secondary index tables? for example what is the difference between BSIS and BSAS..
    Some sample tables for my question are--
    u2022     BSID   Accounting: Secondary Index for Customers
    u2022     BSAD Accounting: Secondary Index for Customers (Cleared Items)
    u2022     BSIK   Accounting: Secondary Index for Vendors
    u2022     BSAK  Accounting: Secondary Index for Vendors (Cleared Items)
    u2022     BSIS   Accounting: Secondary Index for G/L Accounts
    u2022     BSAS  Accounting: Secondary Index for G/L Accts (Cleared Items)
    2. Who is a 1099 vendor? what's the meaning of 1099?
    Thanks

    Hello Sairam,
    1.The diff between BSIS and BSAS is
    BSIS is having all GL open items
    BSAS is having all GL cleared items
    BSIK is having Vendor open items
    BSAK is having Vendor clered items
    BSID is having Customer open items
    BSAD is having Customer cleared items
    thanks
    PV

  • Help need in Table control

    Hi guys,
           I am new to dialog programming , I have the following requirement in table control.
       I have to be displayed 4 fields in Table control
    1. Mara-MATNR (Match code)
    2.Mara-BISMT
    3. Mara-MATKL
    4. Makt-MAKTX
            Based on Material number the rest of the fields to be displayed automatically.
    If possible send the sample code for the above requirement.
    Thanks & Regards
    Raj

    Hi,
    Create a screen and create those fields in that screen with proper data element type.
    in the PAI event, create a Module like MODULE_FILL_DATA. and double click on that one, in that module write this code
    IF MATNR IS INITIAL.
    Write the Error like please enter the material No
    ELSE.
    Select BISMT MATKL MAKTX into those screen field from MARA where
                                    MARA = Screenfield-MATNR.
    ENDIF.
    that's it, and when you run the screen enter the material no and press enter, then all the fields will come over there
    Regards
    Sudheer

  • Help needed on table type datatype.

    Hi,
    I have written the following code,
    declare
    type t is table of emp.empno%type index by binary_integer;
    y t;
    begin
    select empno bulk collect into y
    from emp where 1 = 1;
    dbms_output.put_line(y.count);
    exception
    when others then
    dbms_output.put_line(SQLERRM);
    end;
    now i want to print the values from the table type variable y. how can i do that.
    Regards
    Jhansi

    You reference record elements using dot notation: record.field
    You reference collection elements using parenthesis notation: collection(element)
    So you example might work like this:
    declare
      type t is table of emp.empno%type index by binary_integer;
      y t;
    begin
      select empno bulk collect into y
      from emp where 1 = 1;
      dbms_output.put_line('count='||y.count);
      dbms_output.put_line('Empno in element 1 is '||y(1));
    end; a couple of additional comments
    When you post code, you can enclose it with the markup tag { code } but without the space between the curly brackets and the key word code
    These tags will format everything between them usign a fixed pitch font making it more readable.
    try not to use an EXCEPTION WHEN OTHERS
    usually, you don't want to trap and handle ANY exception.
    If there is a specific exception that you want to trap and handle in your code put that handler in your code, otherwise let and exception propagate up to your SQLPlus or SQLDeveloper calling program.

Maybe you are looking for

  • Regarding ALV REPORTS.

    Hi gurus, How to calculate page wise totals and print in  ALV grid diplay. Thanks, Jhon

  • Boot Camp doesn't work in Tiger

    I just downloaded Boot Camp version 1.3 on my old Tiger MacBook Pro but it doesn't work. It says version is outdated. Is there newer versions and where can I download them? I tried to find 1.4, it seems like it doesn't exist. Thanks for the help

  • Where is the Call to the Remote Header Portlet

    I am running into some issues and will really appreciate if any one can provide some information about the issue. We have a portlet ready navigation in our portal (6.1 MP1) and we have a custom header portlet ( Remote portlet , sitting on our portlet

  • App download buttons not working.

    iPhone 3GS. Whenever I go into a specific app in the app store, none of the buttons work properly. 1) clicking on the price no longer downloads the app, 2) the ratings button does nothing, 3) the 'tell a friend' and 'git this app' buttons jump back t

  • Comparing Mac to Windows

    My friend, bky1701, is not a fan of Macs, but he wanted to give me a chance to prove how macs can be more useful to Windows. So I ask you guys, whata do you think would concider your choice or a mac to be better/more useful than Windows