Project template-List boxes(Public sector,Work in Process,Template)

Project template-List boxes(Public sector,Work in Process,Template)
What is the functionality of these 3 list boxes???plzzzzzzzzzzz help?? if at all i enable where i can get find it in the reporting??which reports??
Once the project is created can v define that project as template???Y template list box enabled even at that stage???
Plz help me to know the functionality....thanks a lot n advance...

Hi
You may enable an existing project as a template. Doing so will allow you to create new projects from that template.
Public Sector is an attribute of a project you may use when you set the Auto Accounting rules. This is useful if you need to account differently for projects executed for the public sector versus projects executed for commercial companies or individuals.
Workflow in process checkbox is flagged if you enable the workflow for project status changes. In such case, when you want to change the status the workflow will be fired and until the new project status is approved you will bee that the project is waiting for the workflow processing to complete.

Similar Messages

  • Selecting Items From a List Box No Longer Works in Powershell Version 3.0

    I've noticed that the script in
    this powershell tip of the week no longer seems to fully work in Powershell V3. The selection dialog will pop up as expected, with all of the elments populated, but the selection is not stored in variable '$x'. Any idea what changed and how to get it to
    work?
    [void] [System.Reflection.Assembly]::LoadWithPartialName("System.Windows.Forms")
    [void] [System.Reflection.Assembly]::LoadWithPartialName("System.Drawing")
    $objForm = New-Object System.Windows.Forms.Form
    $objForm.Text = "Select a Computer"
    $objForm.Size = New-Object System.Drawing.Size(300,200)
    $objForm.StartPosition = "CenterScreen"
    $objForm.KeyPreview = $True
    $objForm.Add_KeyDown({if ($_.KeyCode -eq "Enter")
    {$x=$objListBox.SelectedItem;$objForm.Close()}})
    $objForm.Add_KeyDown({if ($_.KeyCode -eq "Escape")
    {$objForm.Close()}})
    $OKButton = New-Object System.Windows.Forms.Button
    $OKButton.Location = New-Object System.Drawing.Size(75,120)
    $OKButton.Size = New-Object System.Drawing.Size(75,23)
    $OKButton.Text = "OK"
    $OKButton.Add_Click({$x=$objListBox.SelectedItem;$objForm.Close()})
    $objForm.Controls.Add($OKButton)
    $CancelButton = New-Object System.Windows.Forms.Button
    $CancelButton.Location = New-Object System.Drawing.Size(150,120)
    $CancelButton.Size = New-Object System.Drawing.Size(75,23)
    $CancelButton.Text = "Cancel"
    $CancelButton.Add_Click({$objForm.Close()})
    $objForm.Controls.Add($CancelButton)
    $objLabel = New-Object System.Windows.Forms.Label
    $objLabel.Location = New-Object System.Drawing.Size(10,20)
    $objLabel.Size = New-Object System.Drawing.Size(280,20)
    $objLabel.Text = "Please select a computer:"
    $objForm.Controls.Add($objLabel)
    $objListBox = New-Object System.Windows.Forms.ListBox
    $objListBox.Location = New-Object System.Drawing.Size(10,40)
    $objListBox.Size = New-Object System.Drawing.Size(260,20)
    $objListBox.Height = 80
    [void] $objListBox.Items.Add("atl-dc-001")
    [void] $objListBox.Items.Add("atl-dc-002")
    [void] $objListBox.Items.Add("atl-dc-003")
    [void] $objListBox.Items.Add("atl-dc-004")
    [void] $objListBox.Items.Add("atl-dc-005")
    [void] $objListBox.Items.Add("atl-dc-006")
    [void] $objListBox.Items.Add("atl-dc-007")
    $objForm.Controls.Add($objListBox)
    $objForm.Topmost = $True
    $objForm.Add_Shown({$objForm.Activate()})
    [void] $objForm.ShowDialog()
    $x

    Hi,
    What is the value of $x?
    Make sure that you have copied the whole script, and whether it works on Powershell V2?
    Regards,
    Yan Li
    TechNet Subscriber Support
    If you are
    TechNet Subscription
    user and have any feedback on our support quality, please send your feedback
    here.
    Cataleya Li
    TechNet Community Support

  • Projects vs. Public Sector

    Users need to add Projects into Planning.  I know they can if they create a Application Type "Projects Financial Planning"...
    The problem is we are developing a "Public Sector" Application Type.
    What are the ways I can move metadata, "new Projects", in the "Projects" application to the Public Sector cube?
    Thanks,
    PR

    Hi PR,
    Can't you have both Public Sector and Projects Financial Planning as separate apps and then let the data flow between apps using Map Reporting Application?  UC Berkeley owns PSBP and we have anoter plan type that PSBP data flows into.  M2 Dynamic and UCB did couple of presentations at ODTUG in the last couple of years.  I uploaded last year's presentation into Dropbox.  You might find it useful.  Here is the link:  https://www.dropbox.com/s/ehz3b5kuzaklsd4/ttymczak.enterprisepublic.pdf
    Cheers,
    Mehmet

  • How to add text dynamically in  Tree view list box

    CS3/WIN<br />hi,<br />I am new in plugin development.<br />I have a Tree View List box on a dialog.<br />b I don't want to display text when i load the plugin.<br />b I want to insert text data when i click on "Insert" button on dialog. <br />I have defined  Adapter,Mgr,Observer for list box.it is working fine when i want to display data at loading time itself.but not when i click on insert button.<br />b In dialog observer i have defined this but it is not working<br /><br />b Dialog Observer::Update<br /><br />InterfacePtr<IPanelControlData> panelControlData(this, UseDefaultIID());<br />IControlView* Grid = panelControlData->FindWidget(kESSGridTVWidgetID);<br />InterfacePtr<IStringListControlData> listControlData(Grid,UseDefaultIID());<br />if (theSelectedWidget == kESSInsertButtonWidgetID && theChange == kTrueStateMessage) <br />{<br />listControlData->AddString(strText,kESSListBoxTextWidgetID); <br />}<br /><br />b it is showing error  <br />b operator new returning nil for an allocation size of 486022320 bytes<br />(..\..\..\source\components\memoryallocator\PMNew.cpp (552))<br />b Memory allocation failure<br />(c:\development\cobalt\source\public\includes\K2Allocator.h (131))<br />can any one help to get this..<br />Thanks.

    How to populate list in tree view  dynamically
    Hi,
    I am new to  Indesign Plugin creation.
    I want to create list in tree view dynamically.
    I tried wlistboxcomposite sdk sample in indesign cs4.
    I have some doubts in this.
    1. Can i write my own method in  WLBCmpTreeViewAdapter class because it's implements ListTreeViewAdapter
    If it's possible how can i call this method.
    2. In this example they populating static string in constructor like this
    WLBCmpTreeViewAdapter::WLBCmpTreeViewAdapter(IPMUnknown* boss):ListTreeViewAdapter(boss){
    K2Vector<PMString> lists;
    for (int32 i = 0; i< 12; i++){
    PMString name(kWLBCmpItemBaseKey);name.AppendNumber(i+1);name.Translate();lists.push_bac k(name);}
    InterfacePtr<IStringListData> iListData(
    this, IID_ISTRINGLISTDATA);}
    and this list is populating on loading time but my requirement is i have one button "get list" after clicking this button i have to populate the list, how can
    i achieve this.
    Pls do needful.
    Thanks
    Arun

  • Exporting list boxes to PDF

    I am trying to create a form that has two drop-down (list)boxes. One of them contains five choices, the other 52 (state abbreviations, etc.). I can get the smaller of the two to work just fine, but the other just displays a small square with an X. I have checked all the settings, and they are all identical. The font size is 10 pt and the boxes are 14 pt high. Going between the two boxes, I cannot see any difference in the settings. Is there something about putting so many choices in the list that creates problems? Any help would be greatly appreciated.

    I ended up finding the answer I needed. The problem was that I was using a list box from InDesign when I should have been using a combo box. The reason the list box did not work (I believe) was because the length of the entries in the box exceeded the length of the page. It seems that a combo box allows this, while a list box does not. If anyone else is having a similar problem, try using a combo box instead.

  • HTMLB List Box Error in EP5 SP6

    Hi Every One,
    <b>
    My Application Was Ruuning on EP5 SP5 , Now We have Updates EP5 SP5 with SP6 .After that my HTMLB List Box is Not Working whenever i am calling/submitting the JSP Page which ever is containning that List box it is giving the error. can any one please help me how to resolve this problem</b>
    <b>I am getting the following Error</b>
    com.sapportals.portal.prt.component.PortalComponentException: Error in service call of Portal Component           at com.sapportals.portal.prt.core.PortalRequestManager.handleRequestException(PortalRequestManager.java:688)           at com.sapportals.portal.prt.core.PortalRequestManager.callPortalComponent(PortalRequestManager.java:289)           at com.sapportals.portal.prt.core.PortalRequestManager.dispatchRequest(PortalRequestManager.java:189)           at com.sapportals.portal.prt.component.PortalComponentResponse.include(PortalComponentResponse.java:231)           at com.sapportals.portal.prt.pom.PortalNode.service(PortalNode.java:475)           at com.sapportals.portal.prt.core.PortalRequestManager.callPortalComponent(PortalRequestManager.java:285)           at com.sapportals.portal.prt.core.PortalRequestManager.dispatchRequest(PortalRequestManager.java:189)           at com.sapportals.portal.prt.core.PortalRequestManager.runRequestCycle(PortalRequestManager.java:524)           at com.sapportals.portal.prt.portalconnection.sapnative.DelegatedPlugIn.handleRequest(DelegatedPlugIn.java:715)           at com.sapportals.portal.prt.portalconnection.sapnative.PortalPlugIn.handleRequest(PortalPlugIn.java:138)           at com.sapportals.portal.prt.dispatcher.Dispatcher.service(Dispatcher.java:648)           at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)           at com.inqmy.services.servlets_jsp.server.InvokerServlet.service(InvokerServlet.java:126)           at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)           at com.inqmy.services.servlets_jsp.server.RunServlet.runSerlvet(RunServlet.java:149)           at com.inqmy.services.servlets_jsp.server.ServletsAndJspImpl.startServlet(ServletsAndJspImpl.java:832)           at com.inqmy.services.httpserver.server.RequestAnalizer.checkFilename(RequestAnalizer.java:666)           at com.inqmy.services.httpserver.server.RequestAnalizer.handle(RequestAnalizer.java:313)           at com.inqmy.services.httpserver.server.Response.handle(Response.java:173)           at com.inqmy.services.httpserver.server.HttpServerFrame.request(HttpServerFrame.java:1288)           at com.inqmy.core.service.context.container.session.ApplicationSessionMessageListener.process(ApplicationSessionMessageListener.java:36)           at com.inqmy.core.cluster.impl3.ParserRunner.run(ParserRunner.java:30)           at com.inqmy.core.thread.impl0.ActionObject.run(ActionObject.java:46)           at java.security.AccessController.doPrivileged(Native Method)           at com.inqmy.core.thread.impl0.SingleThread.run(<b>SingleThread.java:148)Caused by: java.lang.NullPointerException           at java.util.StringTokenizer.<init>(StringTokenizer.java:117)           at com.sapportals.htmlb.serialize.DefaultListBoxSerializer.deserialize(DefaultListBoxSerializer.java:64)           at com.sapportals.htmlb.page.PageProcessor.createComponent(PageProcessor.java:219)           at com.sapportals.htmlb.page.PageProcessor.rebuild(PageProcessor.java:206)           at com.sapportals.htmlb.page.PageProcessor.handleRequest(PageProcessor.java:73)           at com.sapportals.portal.htmlb.page.PageProcessorComponent</b>.doContent(PageProcessorComponent.java:139)           at com.sapportals.portal.prt.component.AbstractPortalComponent.service(AbstractPortalComponent.java:127)           at com.sapportals.portal.prt.core.PortalRequestManager.callPortalComponent(PortalRequestManager.java:285)           at com.sapportals.portal.prt.core.PortalRequestManager.dispatchRequest(PortalRequestManager.java:189)           at com.sapportals.portal.prt.component.PortalComponentResponse.include(PortalComponentResponse.java:231)           at com.sapportals.portal.prt.pom.PortalNode.service(PortalNode.java:475)           at com.sapportals.portal.prt.core.PortalRequestManager.callPortalComponent(PortalRequestManager.java:285)           at com.sapportals.portal.prt.core.PortalRequestManager.dispatchRequest(PortalRequestManager.java:189)           at com.sapportals.portal.prt.core.PortalRequestManager.runRequestCycle(PortalRequestManager.java:524)           at com.sapportals.portal.prt.portalconnection.sapnative.DelegatedPlugIn.handleRequest(DelegatedPlugIn.java:715)           at com.sapportals.portal.prt.portalconnection.sapnative.PortalPlugIn.handleRequest(PortalPlugIn.java:138)           at com.sapportals.portal.prt.dispatcher.Dispatcher.service(Dispatcher.java:648)           at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)           at com.inqmy.services.servlets_jsp.server.InvokerServlet.service(InvokerServlet.java:126)           at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)           at com.inqmy.services.servlets_jsp.server.RunServlet.runSerlvet(RunServlet.java:149)           at com.inqmy.services.servlets_jsp.server.ServletsAndJspImpl.startServlet(ServletsAndJspImpl.java:832)           at com.inqmy.services.httpserver.server.RequestAnalizer.checkFilename(RequestAnalizer.java:666)           at com.inqmy.services.httpserver.server.RequestAnalizer.handle(RequestAnalizer.java:313)           at com.inqmy.services.httpserver.server.Response.handle(Response.java:173)           at com.inqmy.services.httpserver.server.HttpServerFrame.request(HttpServerFrame.java:1288)           at com.inqmy.core.service.context.container.session.ApplicationSessionMessageListener.process(ApplicationSessionMessageListener.java:36)           at com.inqmy.core.cluster.impl3.ParserRunner.run(ParserRunner.java:30)           at com.inqmy.core.thread.impl0.ActionObject.run(ActionObject.java:46)           at java.security.AccessController.doPrivileged(Native Method)           at com.inqmy.core.thread.impl0.SingleThread.run(SingleThread.java:148)

    Hi,
    Use
    (font color="fuchsia"
    /font )option..
    Regards
    Kiran

  • Flash Lite 2 component:XML List Box Lite for Dynamic Flash Lite 2 application

    XML ListBox Lite is the Flash Lite UI component lets you
    create XML driven dynamic lists for your Flash Lite 2 mobile
    applications!
    XML ListBox Lite is a Flash component for Flash Lite 2.0
    application development for mobile phones. Creating a lightweight
    dynamic list box for Flash Lite application becomes as easy as a
    snap using this component. Now no more the Flash Lite application
    developers need to be worried about creating dynamically populated
    list box that will work on nearly every symbian series 60 models
    which support Flash Lite 2.0.
    XML ListBox Lite comes handy when you plan to create a
    dynamic list which is populated with the data sourced from a simple
    XML file , such creating a play list for your Flash Lite MP3 Player
    application, creating a list for a shopping catalogue etc.
    XML ListBoxLite is a complete solutions for creating
    customized xml driven dynamic lists in Flash Lite 2 mobile
    application development.
    The basic features of the component are:
    Create Unlimited Number of Tabs: XML ListBoxLite can populate
    any number of tabs and provides proper visualization and navigation
    of these tabs.
    Fully Functional Scrollbars: The scrollbars position ratio is
    auto adjusted by the number of tabs that appear in the list, which
    gives the users whether any tabs are left in the list to scroll.
    Display Tabs as per needs: This list component allows you to
    display any number of tabs from the range of 8, 4, 2 and 1, at any
    instance. This serves the need for example when you have more text
    to display you can choose 4 or 2 tabs so that you need not
    compromise on the content side.
    Customize the Look and Feel: You can set any color as
    parameters for different elements of this list component so that it
    will fit your application seamlessly.
    Virtually zero time to implement: This component does not
    require any extra programming in FlashLite 2.0 Action script to
    display your contents. Just update the xml list and it is ready for
    use.
    Lightweight and User friendly: XMLListBoxLite offers you
    great glossy look and advanced features within just 17 KB . The
    user experience is also magnetic.
    More details at:
    http://esspl.com/flashcomponents/xmllistboxlitehome.asp

    Hello there,
    I am have a similar kind of problem. I am trying to run a video on Pocket PC (WM5) using video.play() method on FlashLite 2.1. It works fine in Device Central and my Nokia mobile (symbian OS with default FlashLite 2.1). Video is obviously embedded in FlashLite 2.1 and was originally in *.3gp format.
    Can you please help me where I am going wrong or what am I missing ?
    As ever,
    Vinayak Kadam

  • ERecruiting:Process Template link not working

    Hi All,
    Recently we have applied a patch "nw eph1 sp05" after which the Process template link is not working.
    We have raised an OSS note in this regard and they have a provided Note 1342091 to apply.
    We have implemented that note and found that the Process Template link is working, but it is failing in one place:
    Recruiter start page>View/Manage Candidates within Requisitions>Assignments>Select candidate and click on the 'Process Activities' button>click on the Process Template link
    When we click on the Process template link a blank page appears.
    However we have replied back to them, meanwhile I would like to know if anybody have faced any similar issue can provide some ideas in this regard.
    Thanks,
    PoojaM

    The issue has been resolved.

  • Process template

    How to create process template in E-Recruiting??

    Hi,
    process templates can be created by using an bsp application. It can be found on the standard start page 0004 "Administrator".
    Best Regards
    Roman Weise

  • List Box in ITS template and use of 'FIELD_SET'

    Hello EveryOne,
    I am working in SRM5.0. Can some one guide me, If we can create a List box in custom ITS template. I am trying to use SELECT statement on HTML to create LIst Box. Is this right way to do that?
    Does any one know better way to create a List BOx connected to custom field, that is filled in PAI. We do not have a search help added to this field. So I can not use F4 modules.
    Also does any one know If use of macros 'FIELD_SET' is still allowed in the PBO/PAI  ?
    Really appreciate any help in this regard.

    Dear srivallika,
    first you have do build up an steploop on your dynpro for the it_ccode-bukrs
    AT PBO
    loop at it_ccode cursor g_ccode_cur into wa_cccode.
    my set loopc
    module ccode_loopc.
    endloop.
    Include PBO
    module ccode_loopc.
      g_ccode_loopc = sy-loopc.
    endmodule.
    You only see via DIAG Dialog the displayed rows on the Dynpro.
    So if you only have a steploop of 4 rows -- you only get 4 rows to the wgate.
    Better use the field-set makro.
    AT PBO
    module rfc_fieldset_ccode.
    INCLUDE PBO
    module rfc_fieldset_ccode.
    data: ls_ccode like line of it_ccode.
    data: i type i.
    I'll use deeper structure
      perform rfc_fieldset_ccode.
    but you also can define the code here
    loop at it_ccode into ls_ccode.
         add 1 to i.
         field-set 'INDX'       i i .
         field-set 'BUKRS'   i   ls_ccode-bukrs .
    endloop.
    endmodule.
    Why to do this? The field-set makro (don't forget to include AVWRTCXM at your topinclude) will send the data from internal table via AGATE to the WGATE.
    Here now you can define the dropdown list:
    srivallika, i'll hope i could help you a little. If you have any questions, you won't bother me. ASK!
    With best regards
    Thorsten

  • Using a jQuery list box placed onto a tab control doesn't seem to work for posting?

    Hello,
    I developed a U.I. in Dreamweaver for a  product and have several list boxes that use the onChange modifier to collect what the user selects from the list. I use the onChange=this.form.submit() function to grab the user's selection from the list box..
    When this dropdown list box code is placed onto a form, it posts properly and I can retrieve the user's list selection.  If however I place the list box code onto a Tab page from a jQuery Tab Control, developed in Dreamweaver, the posting doesn't seem to work.
    I must be missing something because identical code is working fine when the list box code is placed on a form yet when the code is repeated from within a Tab, it isn't working.
    The code is simple, and shown below).  The list values are coming from a MySQL table.
    $MyQuantity_query="SELECT * FROM Quantity_Table";
    $MyQuantity_Result=mysqli_query($cxn,$MyQuantity_query) or Die ("Cannot connect");
    echo"<select name='ThisQuantity[$RowCounter]' value='ThisQuantity[$Rowcounter]' onChange='this.form.submit()'><option value='-1' selected>Qty</option>";
    While($MyQuantity_Row=mysqli_fetch_assoc($MyQuantity_Result))
       extract($MyQuantity_Row);
       echo"<option value='$Qty_Number'>$Qty_Number</option>";
    echo"</select>";
    Any suggestions would be appreciated.  Thanks.
    Joel
    [email protected]

    Thanks you.
    I tried placing the selection list inside of
    tags but posting still doesn’t seem to be working? 
    Regards,
    Joel

  • Settlements in project System for public sector.

    We are having a unique requirements for Project system.
    A Capital project will be mostly funded by Federal agency. However the capital project will end as an asset. eg, Roads, bridges etc.
    1. We want to acumulate all expenses and settle it to AUC ( IM ) and later settle as an asset. ( currently possible )
    2. However, based on the billings done to Fed agencies, the revenue is also to be identified in the project. ( should not be condisered for settlement, as it will reduce the Asset value ).
    We tried to seggregate the cost and revenues by source structures namely 10 and 20 for Cost and revenues respectively. In the settlement rule we move the cost up from WBS element to Project level. From project we move to AUC and finally to AMR.
    Our requirement is to just settle the expenses to AMR and leave the Revenues in the the project itself. However the gives a hard error that the revenue settlement should also be settled. The other option we thought about, was to settle to a cost center, but it is not advisable as the revenue will put back  the budget of that cost center/fund center.
    So my questions is .
    1. Can part settlement happen ? ( Meaning move only costs ) ?
    2. In private sector, it is possible because expenses are Cost element 1 and Revenues are 11 ( not selected for settlement except PA settlement ). However in public sector expenses and revenues are treated as Cost element 1. so how to circumvent this issue ?
    Any help or direction will be much appreciated..
    regards,
    Venkat Kota.

    I am already using the source structure to split the cost and revenues. I am also using the same settlement profile for all the requirements.
    1. lower WBS to Higher WBS.
    2. Higher WBS to AUC
    3. AUC to AMR.
    So i am not sure how i can maintain 2 settlement profiles for one project ?

  • How to make a List box connected to a Column Chart work?

    Hi...
    I've just installed my Xcelsius 2008 and am trying to adapt the dashboard I developed in Xcelsius 4.5 version to the new software.
    I have a fish-eye to filter which customer I want to see the performance for.
    I have two list boxes where I can decided which KPI and which factory.
    The chart should adapt according to the choices in the list boxes.
    In the excel spreadsheet I have a long list of rows with a vlookup function based on the two cells connected to the list boxes. This means as insert in for list box I am using position.
    It just doesn't work.
    Can someone help?
    Rosemary

    I have checked all cells and all are correct (I even started the dashboard from scratch).
    I believe it is something to do with my set-up but I have no clue what:
    If I use for my list boxes the position insert in type and choose a cell which I use for my vlookup, meaning:
    4     Insert in cell
    1     NC performance
    2     Pro-active Reporting
    3     Requests Response
    4     POD provision
    5     Damage / Loss Rate
    (From 1 to 5 are the labels for the list box)
    I have a vlookup cell:="C"&W8&"_K" & W18&"_S"&W40 which indicates which data is to be used in the chart (according to the selection, the vlooup fills out a cells range with the corresponding performance).
    For the chart I am using the cells range with the vlookup formulas.
    What could be wrong?
    Thanks

  • Working with 2 list boxes in a tableview

    Hai Friends,
    I have a table view in which the first column is a dropdown listbox and second column is also another dropdown list box.
    Case1: I am working with first row of the tableview
    I am selecting a value say 'Q' in the the first dropdown and its corresponding values say (Q1,Q2,Q3.....) which has to be populated in the second dropdown of the same row.
    Case2: I am working with second row of the tableview.
    I am selecting another value say 'D' in the the first dropdown and its corresponding values say (D1,D2,D3.....) which has to be populated in the second dropdown of the same row.
    I am now coming to the problem that i am facing now.
    Note: i have selected Q in the first row and its corresponding values is Q1,Q2....!
    When i am selecting 'D' in the second row ( D1,D2,D3...) i am getting D1,D2,D3 in the second dropdown <b>in both rows</b>.
    Actually i have to keep Q and corresponding values Q1,Q2... in the first row as i have selected 'Q' in the first row allready. when i am selecting another value value D in second row , first row values should be kept as such with Q and corresponding values Q1,Q2....., and second row should be D with D1,D2,D3.....
    Now i am getting
    Q                              D1,D2,D3
    D                              D1,D2,D3
    Actually it should be
    Q                               Q1,Q2,Q3
    D                               D1,D2,D3
    Problem i am facing is in the iterator class method IF_HTMLB_TABLEVIEW_ITERATOR~RENDER_CELL_START
    when 'secondfield'.
    Here i am getting values from cookie that i have set in the do_handle_event of the controller.
    Given, code that i have written in iterator class method.
    WHEN 'ETYSHT'.
    **************dropdownlist box**************************************
    IF p_edit_mode IS not INITIAL.
            DATA: etysht TYPE string.
            etysht = m_row_ref->etysht.
            p_replacement_bee = cl_htmlb_textview=>factory( text = etysht ).
            dropdownlistbox = cl_htmlb_dropdownlistbox=>factory( id = p_cell_id ).
            CALL METHOD cl_bsp_server_side_cookie=>get_server_cookie
              EXPORTING
                name                  = 'COURSEGROUP_TO_COURSETYPE'
                application_namespace = application_namespace
                application_name      = application_name
                username              = sy-uname
                session_id            = session_id
                data_name             = 'COURSEGROUP_TO_COURSETYPE'
              CHANGING
                data_value            = itl_cstypenew.
            GET REFERENCE OF itl_cstypenew INTO m_locid_ref.
            dropdownlistbox->table     = m_locid_ref.
            dropdownlistbox->nameofkeycolumn   = 'ETYID'.
            dropdownlistbox->nameofvaluecolumn = 'ETYSHT'.
            dropdownlistbox->selection = m_row_ref->etyid.
            dropdownlistbox->onselect          = 'click'.
            p_replacement_bee = dropdownlistbox.
          ENDIF.
    Looking forward for your valuable suggestion.
    Thanks & Regards,
    Renju.

    Hi Renju,
    I see that you retrieving your drop down values from a cookie but I do not see any code where you are actually selecting the data that you need for second drop down box...
    I mean when Q is selected in the first row...you should be reading only values related to Q in the firs dropdown and then popualte them. Similarly when user is on the second row and selecting D - the you should read values realting to D only (in this case D1, D2, D3). This should help you in keeping the values of the first row and second row as expected. Let me know if this works.
    Cheers

  • List Box - Object  How do you get "allow multiple item selection" option to work?

    developing a fillable PDF form using livecycle. I have several list boxes that contain multiple text items. I have entered all items directly into the item list and I have selected "allow multiple selection". The object is committed on exit, All the binding options have been left on default settings. BUT when the form is tested it will not allow multiple selections. I cannot find anything in help to resolve this. CAN Someone help me. This is urgent!!!!!

    Dear Deb
    Thank you for your suggestion, but it does not appear to work. I used the alt key then my mouse to select, but it still only allows for 1 selection.  I do not see the sample you said you included, so I cannot check to see if I have a setting incorrect. If you have any other suggestions I would really appreciate it or if there is a way for you to look at the form, at this point I am open to any suggestions.

Maybe you are looking for