How can i show item schedule line details in Tableview for each line item

Hai all,
  I need to display schedule line details  in Tableview for each line item.for example in each row i need to put one column along with button , if i click on this table that row  should be expand vertically and must show all schedule line details in that.if i click my button again the visible expanded row should disappear...
if anybody works on this previously plz send some sample code...
leoiz....

To modify rows the best way is with the Iterator (do a search in the weblogs for "Iterator")
However for what you want to do I've only seen this really work successfully with a standard HTML table not using the tableView.

Similar Messages

  • Reg:How can we show non valuated stock in the system for the paid items?

    Hi All,
    Customer orders 100 boxes and pays to all material.But customers  are shipped the  required material as and when required.My client requirement is these 100 boxes should show as non valuated stock.
    How can we show these paid 100 boxes of material as non valuated stock in the sap? Is this functionality available in sap or it comes under requirement?
    Ex:Customer X ordered 100 boxes and he paid to all quantity.
         The customer X does not have space at his premises to keep the stock of 100 boxes.He just requests 20 boxes every monday or required quantity.Then company ships the required quantity to customer X.
    Now the requirement is that these 100 boxes should be shown as non valuated stock in the system.This should not used for other customers, should not work ATP functionality for these material quantity.This should show as reserved to this customer X
    could you share any ideas or solutions reg this..
    Thanks in advance,
    Regards....VM
    Edited by: vm on Mar 9, 2009 3:46 PM

    Hi Arnel,
    Thank you for giving valuable points.
    In consignment scenario,the stock is available at customer place not at company place.But ownership is company itself.
    But in this scenario,Customer is not having space to keep the total ordered quianty.So cutomer stock should be kept at company itself,customer requests the required quantity(for which he  already paid  for the total ordered quantity) as and when required.How can it suits in this scenario?Could you plz calirfy the debit memo to realize sales ?How it will be help ful?
    Thanks and regards...VM
    Edited by: vm on Mar 10, 2009 9:19 AM

  • How can I get the material consumption of the month for each specific Finished Good?

    (Sorry, I first opened this discussion in another space. I guess here's where it belongs).
    Dear Experts,
    This is the first time I open a discussion. I'm new at this. I've been reading for a couple of months your forums and certainly you've helped me a lot. Thanks for that. Keep it up! ^_^
    Now on business. Let me explain a bit about what I'm looking for.
    I've been looking for a report that shows me the material consumption of the month in quantities. Raw Material and Packaging Material to be more specific. Also I need to see the consumption of those materials by each specific Finished Good.
    For example, I know the consumption of Flour of all the month, but we use it for all our Finished Goods or SKU's as we call them, since we make cookies. How can I know how much Flour each Finished Good actually used?
    I've been trying with different T-Codes, reports, etc. The last thing I've got is using transaction MB51 and filtering movements type from 261 to 262. The beauty of this report is that shows me the Process Order number, since I can match the PO number to a Finished Good with another report from BI (or BEX, however you call it).
    Everything was fine until I found that there are some PO's that are not directly related to a Finished Good, but to a Semi Finished Good. In some cases I'm able to match the Finished Good, since the majority of Semi Finished Goods are uniques to a Finished Good. But there are three specific cases that are my problem right now:
    Cream X: We use it for three Finished Goods.
    X Syrup: We use it for all the Finished Goods.
    Refined X Sugar: We use it for three Finished Goods.
    So those three are Semi Finished Goods which are related to certain numbers of PO's I have on the report.
    In the end, with the report from MB51 I have all the list of materials (filtering only Raw and Packaging), I have the consumption of the month (filtering movements 261 and 262) and I have the PO number related to each material. Of course one material is listed many times on the report, but with different PO number.
    Then, like I said, I can match the PO number to a Finished Good, except in the cases where the PO is not matched to a Finished Good, but to a Semi Finished Good like the three examples I gave you.
    I don't know if there's another way to track the Finished Good having the PO number. I've tried T-Code COR3, but couldn't get too far.
    I hope I explained myself a bit clear and also sorry if my English is not so good.
    Thanks in advance. ^_^
    Warm regards,
    Rol

    Hi Rolando,
    If the purpose is to find the consumption of a material, you can get it from report "MC.9". Plz let me know if it's useful.
    Rgds,
    Sudheer.

  • How can we load apps without creating an Apple ID for each employee?

    We have at least two apps that we'd like to distribute to our company iPads.  We would like to hand the employee the iPad with everything loaded.  We don't care if they create their own Apple ID and manage it after the fact but when the employee gets the iPad, it should have the apps they require.
    How do we load these apps without creating an Apple ID for each employee?  If we load the apps from App Store with our Apple ID, the app requires that username and password whenever there is an update.  The employee can not update the app without our username and password or they have to delete and reinstall the app with their own credentials.  Is there a way to load an app so that it doesn't require the credentials of the person that loaded it whenever there's an update?

    Turn on computer.
    Open itunes.
    Connect a device.
    Select what you want to sync.
    Sync
    Repeat for the otehr device

  • How can I keep the name of the user around for each JSP without asking user

    I have a number of JSP pages that I give the user access to once they login successfully. I want to be able to keep the name of the user present on every page without having to ask them for it each time.
    How can I do this? Currently I have a user object that is access through use of a request bean in my JSP's.
    Any suggestions???

    Thanks for the help. A few questions though...
    Can you just clarify how the 2 different SessionTest2.jsp's differ. I am right in thinking that the second one will instantiate a new bean object which if I do every time I go to the page, I will be getting the same name but in a different session each time. In the first SessionTest.jsp, I get the same name but from the same session object each time??
    Please clarify???
    SessionTest1.jsp
    <%@ page language="java" import="test.*" %>
    <jsp:useBean id="testBean" scope="session"
    class="test.TestBean" />
    <jsp:setProperty name="testBean" property="name"
    value="ZZZZZ" />
    <jsp:setProperty name="testBean" property="status"
    value="Married" />
    <%
         response.sendRedirect("SessionTest2.jsp");
         return;
    %>
    SessionTest2.jsp
    <%@ page import="test.*" %>
    <jsp:useBean id="testBean" scope="session"
    class="test.TestBean" />
    <%
    out.println("User Name is : "+testBean.getName());
    %>or SessionTest2.jsp
    <%@ page import="test.*" %>
    <jsp:useBean id="testBean" scope="session"
    class="test.TestBean" />
    <%
    TestBean testBean =
    (TestBean)session.getAttribute("testBean");
         out.println("Name is : "+testBean.getName());
    %>Hope this helps.
    Sudha

  • How can I get ITUNES to display manually added artwork for each song regardless of the album name?

    I have been manually adding artwork to my songs. When I click the Show Artwork check box, it doesn't show the cover art. For example some greatest hits albums have different cover art per track. ITUNES picks one of the cover art and shows it for the entire album grouping.
    Anyway around this? I want the added cover art to display per song.

    The artwork of each individual track does display during playback, in the small thumbnail at the top of the iTunes window, or at the left of the MiniPlayer control (opens by clicking the thumbnail), or the larger artwork panel that is shown if you click on the Show Large Artwork control in the MiniPlayer. It should also display on any iPod or iOS Now Playing view.
    The Up Next list uses the album art (usually cover of the first track) for everything from the same album, which is perhaps a shame, although in general one artwork per album makes sense.
    tt2

  • How can i create a multilingual website with a menu for each one?

    I have all the pages in spanish and the same pages in english ej. Contacto and Contact ...should be sister or child pages? I need two diferent menus (one for spanish pages master, another menu for the english pages master) but the menu feature mixes everything. Is there a solution to this?
    Thank you

    Hi Carme,
    It might be easier for you to set up your menus manually, so you can control what is the the Español and English menus, rather than fuss with child and sister pages.
    Click and drag out that menu widget that you want to work with > click > click on blue arrow > window opens > under "Menu Type" choose "Manual". Then you can manually enter the titles for and English Language menu. Get that working exactly as you want it to ( colours, roll-over etc ) When you're happy with that one, copy and paste a duplicate of that English menu. You can then go in and change all the English to Spanish. When these are done, then go through both menus and link the buttons to the appropriate language pages.
    This way, you don't have to worry about page higharchy, sisters, siblings or anything else. You have better control. It might also prove helpful in the fact that there have been issues in the past with pages navigating once uploaded to the web, who's page names consist of special character language markers like: ñöäãũ
    You may want to consider when naming your actual pages that the search engines will be using, ( i.e samplepagespanishpage.com* ) to omit these special characters. Sometimes they cause problems and the site won't work properly. However, if you manually do your menu names, these special characters can be used and it shouldn't cause an issue.
    * - If you check into the "Page Properties" under "Metadata" - "Page Name" is where you may want to consider omitting the special characters. "Page Title" I believe you can keep the special characters. This is the information that people would see in Google.
    I hope this helps.

  • How can I un-receive an good receipt in SAP, FOR A CERTAIN LINE ITEM

    hi experts,
    can any one please help me to solve this issue.
    "How can I un-receive an good receipt in SAP, FOR A CERTAIN LINE ITEM"
    thanks in advance,
    mohammad.

    Hi,
    In T-code MIGO, you select the line item you want and enter all the details of this line in Item details. Tick Item Ok indicator for this line item.
    Untill and unless you tick the item ok indicator for certain line item you couldnot receive the material.
    If you already received the material then Go to MBST and cancel the material document for the same.
    Hope this will help you.
    Regards,
    Goraksh.
    Edited by: goraksh dhikale on Sep 22, 2008 11:30 AM

  • How can i show the first item in the list as selected item

    Aslam o Alikum (Hi)
    Dear All
    How can i show the first item in the list as selected item when user click on the list. Right now when user click the list the list shows the last item in the list as selected or highlighted. Furthermore if the list item have large no of value and a scroll bar along with it then the list scroll to last item when user click it with mouse. I want that when user click the list item with mouse list should show the first item as highlighted.
    Take Care
    Allah Hafiz

    Hi!
    You can set list "initial value" using When-Create-Record trigger.
    I.g.
    :<Block_name>.<list_item_name> := Get_List_Element_Value('<Block_name>.<list_item_name>', 1);

  • Forms 6.0-- How can I show records in a block in different colours.

    In a multi record block, how can I show few records in one colour and few more in a different colour depending on a condition.

    Use DISPLAY_ITEM.
    This will change the visual attribute of the item in the current(!) record,
    set_item_property changes the attributes of the item in all(!) records.

  • How to create an inspection lot for each line item of the Purchase order?

    Hi,
    How to create an inspection lot for each line item of the Purchase order ?
    In detail if possible.

    Hi
       please check this
    [thread|Create Inspection Lot;

  • How can I show a 0% range in the data value label on a bar chart thanks?

    How can I show a 0% range in the data value label on a bar chart thanks?

    I'm not sure what the question is. 
    I know that if you have a bar chart and one of the categories (X-axis) has bar (Y value) equal to 0%, no bar is plotted for that category. Even the addition of a stroke (line) around the bars doesn't make one appear for 0%.  The only automatic way I know of to make it look like there is data in that category is to add the value labels to the bars. Inspector/Chart/Series, select one of the bars on the chart, click on "value labels". Another method that is a workaround is to fudge the number a little in your table so that instead of 0% it is a very small %.  This will get you a thin line on the chart.
    But if your question is about the value labels (the numbers that display on or in the bars) and you are not getting one for a bar that is supposed to be 0%, it probably means your table doesn't actually have a 0% in the corresponding cell. A blank cell in the table will not get a value label.

  • How to get the texts for each line item for Sales order in a smartform

    I'm createing a smart form in which i need to display certain texts for each line item of a sales order. How can i get those??
    I'm trying with the table STXH and FM read_text... but i'm not clear how and what i'm getting... can anybody pls help me.....

    Hi There,
    But then i will be getting only the value. i want to link that against the particular material of the Purchase Order.
    Like for ex:
    PO No.  Material Code        Line Item        Basic        Excise       Tax       Inv Value
    0000001 5000251                010               100           16         4.64      120.64
    0000001 5000252                020               200           32         9.28      241.28
    Can u help me on this?
    Regards,
    Jitesh

  • How to restrict separate payment document for each line item in APP

    HI Experts
    PLs let me know how to restrict separate payment document for each line item in APP
    Thanks
    Sneha
    Edited by: Sneha R on Apr 14, 2009 4:18 PM

    Sneha,
    If your query was to group items for payment ,in FBZP  co code data for payment method there are 2 options 1.group payment for marked items 2.payment per due date.
    Also in the Vendor master there is a flag which will ensure that each item is paid individually,if this is what you were looking for  ( FK02 change vendor).
    In case you want to group items to be paid together Payment Grouping Key can be assigned in Vendor Master .
    Shony

  • How can I show the chart in forms?

    Dear all:
    I want to create a line chart. I use the chart wizard and it is successful to create the chart. But, it can't show the chart when I run the form. How can I show the chart in form6i?
    Besides, I see a document that refer to 'OG.pll'.
    I can't find the OG.pll in form6i. Do I need 'OG.pll' to show the chart when I run the form? Thank you very much!!

    Hi Carlos,
    You can try to create a code node for check which signature to print.
    In global variable declare a variable ie named g_sign type TDOBNAME.
    Then pass this var to name of graphics &g_sign&
    please check and reply.
    regards,

Maybe you are looking for

  • Mapping error during runtime

    Hi, I have scenario like JDBC sender and file receiver. I am able to poll with JDBC sender adapter and message has success in adapter engine. but i am getting following error while mapping runtime.In sxmb_moni status error during mapping runtime. Bel

  • Itunes wont recognize iphone4

    My husbands computer recently broke, on this computer he had his itunes where his phone was synced and registered to etc....the computer is not usable anymore..wont turn on nothing..I just got a macbook pro so I gave him MY old dell laptop....the itu

  • Problem in Select-option in Module Pool Programming

    Hi, I'm making one module pool programming. In that, I've to make select-option. For that I'm using this command -- 1) In PBO -- CALL SUBSCREEN sub INCLUDING 'YBOE_PRINT' '5100'. 2) In PAI -- CALL SUBSCREEN sub. But, Syntax Error is generated as belo

  • How to activate evaluation version of SQL server

    How to activate evaluation version of SQL server 2012 with open license. in the VLS portal it is saying no product key is require. but my problem is i already installed evaluation version of SQL server 2012 and configure many things to it. after that

  • HT5655 The new Flash installer from Adobe still isn't working, right?

    The new Flash installer from Adobe still isn't working, right? We get the "installation failed" messages, and we're awaiting Adobe's follow-up on it?