Order a dinamic list

I have a multi rows block en Forms and I have a dinamic list of employes. if i select an employe for the list, it apper in order but if i query the record stored in the table, the records are not in order.
I tried with the order by property of the block, but it did not work.
thanks

Thanks Pedro
I will explain you better...
I have a block in Forms with the table payroll_emp with 10 records with diferent items one of them is a dinamic list of employes, another is the salary.
When i execute a query with execute_query built-in in the forms, the records of the employes list not appear in alphabetical order.
null

Similar Messages

  • Material staging indicator not populating in prod order WM pick list item

    Hello,
    I have an issue with material staging in an prod order
    1) PP-WM interface is activated
    2) Control cycle for material is created
    3) Production storage location is created for material
    4) storage type is 100 for production
    5) There is one discontinued material and also the follow up material
    6) stock of discontinued material is zero and requirement are passed to follow up material
    When we confirm the order the stagging indicator for both follow up material as well as discontinued material automatically populates zero (Non relevence to pick list items) where as it should be one (1 - for pick list items).
    One more issue user has manually inserted discontinued material as well as follow up material in production order change mode.
    In the BOM of a main material both discontinued as well as follow up material is there with some quantity as a component.
    For the same work center, control cycle , production storage location the indicator is populating.
    These two material (discontinued as well as follow up) are appearing twice in the WM pick list screen where first two line items are OK and populating indicator "1". But in line item last and second last indicator is not there.
    My question is why the stagging indicator is not automatically populating in the production order WM pick list screen in front of components.

    Unfortunately, WM material staging via production orders is not possible
    from the pull list.  Please see the long text of message RMPU 311
    (WM material staging for production order reservation not possible):
    "You cannot carry out a WM material provision for pick parts from
    production order reservations in the pull list". The reasons for this
    are cleary explained in the SAP on-line documentation via the
    following path :
      Logistics -> Logistics Execution -> Warehouse Management Guide ->
      Goods Issue -> Goods Issue for Production Supply ->
      Material Staging for Repetitive Manufacturing
    See the following under the Selection heading :
    The choice of the selection type influences which types of WM material
    staging are supported in the pull list. However, the pick parts can be
    staged via RS headers/planned orders but not with the current BOM
    explosion. The release order parts, on the other hand, can also be
    staged if the current BOM is used for calculating the dependent
    requirements.
    WM material staging via production orders is not possible from the pull
    list.
    I think you may try in CO02 or COR2 for production order or process order.

  • Link between Purchase order and Attachment list

    Hi All,
    I got a requirement like Purchase orders are from moved from one system to another system.There was a bug in BDC program
    so some Attachment list of the purchase orders are not moved properly to the another system.
                                                   Now my client want a report to generate the Purchase orders which is having attachment list.
    I did not find any table link between Purcahase order and Attachment list.
                                                  So Plz provide me the link between purchase order and attachment list.
    Thanks,
    Ram

    You mean service for object services?
    if yes then u have to create one custom report for Generic Object Services   ( like notes , attachment  , url )

  • PM: how to track the operations in prev.maint order against object list

    Dear PM Guru's.
    i have one issue in my preventive maintenance scenario. i clubed the same type of machines in one maintenance order under object list tab. and i mention the list operations in maintenance order. suppose in one preventive maintenance order 10 operations are maintained and 5objects are mentioned in that order. Now i like to mention all these 10 operations activities against to 5 objects. how i can assign sequentially? i required like 10operations one by one row wise and 5objects side by side column wise. i would like to update the each operation activity against each machine column? how i have to do this one?
    Please suggest me and help me.
    regards
    Jalendhar Merugu

    Using Object functionality, we can maintain many equipments in the order.
    But the constraint is that one operation can be assigned to only one equipment. In your case, you have 5 objects. If all 10 operations will be performed on 5 objects, then you have to maintain 50 operations & you should assign the objects.
    In other words, if one operation will be performed on 5 objects, then you should define that one operation 5 times & you have to assign to technical objects. You can't share one operation to many equipments.

  • Drop Down - maintaining Order of the List Problem

    Hi,
    I have a Drop Down where the Code is
      <h:selectOneMenu styleClass="alignRight" id="myDropDown"
                           value="#{myBean.yCode}"
                           onchange="submitPageX();"
                           title="select any one in this menu">
            <f:selectItems value="#{yCodeList}"/>
          </h:selectOneMenu>It is rendered properly and I can see the value in my backing bean when the Drop Down value changes.
    Currently the Values in the Drop Down is in the same order as they are in the List which is populated in the Backing Bean. The Drop Down Component is common for all pages and is like a Header for all the pages.
    My question is if I have 3 Values in the Drop Down and the User selects the 2nd Option is there a way to keep the Order of the Drop Down Values same but have the 2nd Option Selected in the Drop Down.
    So until the User changes the Drop Down Values himself the Value selected by User is displayed as the selected Value.
    e.g.
    Jack Displayed Currently
    John
    Sarah
    Now User select 2nd Option.
    Jack
    John Now in the subsequent pages JOHN should appear in the drop down by default but and the order of drop down remains same.
    Sarah
    One way to do is to alter the Order of the list and then by default the first option is shown in the Drop Down, but I dont want to alter the List order.
    Thanks in Advance

    That sound pretty easy.
    Just set the value of #{myBean.yCode} to the user selected value during the subsequent page loads which use the same drop down.
    I guess that will do the trick.

  • Alphabetically ordering a Linked List

    Would anyone please be able to give me help in ordering a linked list alphabetically. I'm new to java so please be gentle.
    Many thanks in advance.

    I've just tried that but it gave me errors on trying to compile it:
    .\List.java:91: Incompatible type for method. Explicit cast needed to convert List to java.util.List.
         Collections.sort(leftList);
         ^
    .\List.java:92: Incompatible type for method. Explicit cast needed to convert List to java.util.List.
         Collections.sort(rightList);
         ^
    2 errors
    I'll post my coding below to see if you can help me out. Thanks a lot.
    import java.util.LinkedList;
    import java.util.Collections;
    class ListNode {
    // package access data so class List can access it directly
    char data;
    ListNode next;
    // Constructor: Create a ListNode that refers to Object o.
    ListNode( char c ) { this( c, null ); }
    // Constructor: Create a ListNode that refers to Object o and
    // to the next ListNode in the List.
    ListNode( char c, ListNode nextNode )
    data = c; // this node refers to Object o
    next = nextNode; // set next to refer to next
    // Return a reference to the Object in this node
    char getChar() { return data; }
    // Return the next node
    ListNode getNext() { return next; }
    // Class List definition
    public class List {
    private ListNode firstNode, current;
    private ListNode lastNode;
    private String name; // String like "list" used in printing
    // Constructor: Construct an empty List with s as the name
    public List( String s )
    name = s;
    firstNode = lastNode = null;
    // Constructor: Construct an empty List with
    // "list" as the name
    public List() { this( "list" ); }
    public synchronized boolean isEmpty()
    { return firstNode == null; }
    public synchronized void insertAtBack( char insertItem )
    if ( isEmpty() )
    firstNode = lastNode = new ListNode( insertItem );
    else
    lastNode = lastNode.next = new ListNode( insertItem );
    print();
    // System.out.println(insertItem);
         // public char getText(){
         // return current.data;
    // Output the List contents
    public synchronized void print()
         current = firstNode;
    while ( current != null ) {
    System.out.print(current.data);
    current = current.next;
    System.out.println( "\n" );
    // method to split the linked list
    public synchronized void splitList(){
              System.out.println("splitList");
              ListNode present = firstNode;
    List leftList = new List();     // create the left list
    List rightList = new List();     // create the right list
              try{
                   while (present != null) {
                        leftList.insertAtBack(present.data);
                        System.out.println("left " +present.data);
                        present = present.next; // skips 1 node
                        rightList.insertAtBack(present.data);
                        System.out.println("right " +present.data);
                        present = present.next; // skips 1 node
         Collections.sort(leftList);
         Collections.sort(rightList);
              catch(NullPointerException e){

  • Ordered and Unordered Lists viewed in WYSIWYG Editor in RoboHelp 10

    I recently upgraded a project from RH 9 (9.0.2.271) to RH 10 (10.0.0.287). Ordered and unordered lists display in the WYSIWYG Editor with more spacing around each line. When I generate the output to HTML Help, the spacing looks fine. I also tested generating output to WebHelp, and again, the output looks fine.
    I have paragraph and list styles defined in my style sheet that I apply to the text in the topic. I also looked at the styles in RH 10 and Media is set to "None."
    Using the Style Pod, I looked at the set up of the parapgraph and list styles. For those styles, (and my body text styles - which look fine in the WYSIWYG Editor) have spacing before and after spacing set. (NOTE: These styles were created in RH8 and the WYSIWYG Editor displayed the styles appropriately in RH8 and RH9.) Even though I changed the style sheet, the WYSIWYG Editor is still displaying more space around the styles then I am expecting.
    I know this is not a huge issue since the output looks fine, but I want to understand why the WYSIWYG Editor isn't working as I expect. I would like the editor to display with correct spacing.
    I attached a few screen captures showing what I see.
    HTML Help Output
    Thanks in advance for your help.

    I suspect part of the issue is that your list styles have spacing above and below and then you have applied paragraph styles that also have spacing above and below.
    Using both is OK and is how I work. However, I do not have any spacing above and below in my list styles. I rely on the paragraph style for that. It looks like Rh's Design Editor is applying both but browsers are not.
    It is still not quite the same in a browser as in Design Editor but it is much closer. There will also be browser differences anyway so it's a case of getting some balance.
    Try removing the before and after spacing in the list style. Alternatively, if you do not generate printed documentation then rely on the list style only. (Select the lists in a topic and set paragraph to None).
    Let us know if that is close enough.
    See www.grainge.org for RoboHelp and Authoring tips
    @petergrainge

  • Query:Dispatch selective process orders from a list available

    Hi all,
    we have a requirement in PP module to dispatch only selective process orders(based on a User criteria) from within a Zprogram.To achieve the same,
    1)we have tried to do a BDC of transaction code CM25.But the line selection of the required order to be dispatched is not captured in recording.
    2)Also,we have tried using the CM40 transaction(mass dispatch) and tried to control the orders dispatch through a user exit.This seems to working fine when CM40 is run independently.but the user exit does not get triggered when CM40 is called (using BDC)from within a Zprogram.
    Can someone please throw some light/suggest any alternative for achieving the same i.e dispatch a selected process order from a list of available orders.

    Hi all,
    we have a requirement in PP module to dispatch only selective process orders(based on a User criteria) from within a Zprogram.To achieve the same,
    1)we have tried to do a BDC of transaction code CM25.But the line selection of the required order to be dispatched is not captured in recording.
    2)Also,we have tried using the CM40 transaction(mass dispatch) and tried to control the orders dispatch through a user exit.This seems to working fine when CM40 is run independently.but the user exit does not get triggered when CM40 is called (using BDC)from within a Zprogram.
    Can someone please throw some light/suggest any alternative for achieving the same i.e dispatch a selected process order from a list of available orders.

  • Production Order missing Part list error  date 1,857 is not convertable

    *Dear Experts*
    When i m  trying to check missing part list at production Order then system is showing the error
    The date 1,857 is not convertible (please correct) in Production order Missing part list.
    Rgds
    Pankaj Agarwal

    Dear ,
    System is throwing you this message beacue your FC calander is vaild till 2010 and asking you to put the date btn  FC valid from 2004 and FC valid to 2010.
    Goto -OP03-Select the Factory Calnder Tab in change mode  (pencil mode ) -Select the applicable calender  chek box-Double click this -Extende the validit date till 2020 or beyond so that u will not face not only in this particular issue but in many other txn later on .
    Agian -come back to OP03 main screen -Slect the Holiday calaner -Extende the same way  and reassing in Factory calander
    after this , do not forget to re-ssign this FC in respective plant in OP03-Plant assingment .
    Try and revert back
    Regards
    JH
    Edited by: Jiaul Haque on May 27, 2010 3:14 PM

  • On Work Order using Object lists for equip u can manually create Notifi

    On a maintenance Work Order using Object lists for equipment you can manually create a notification for each line item.
    We want to automate this process to do this when we save the document.
    Any ideau2019s on how to do this?
    Does a user exit exist for this?

    Hi:
    Check with Tcode: IBIP - Plant maintenace batch input utility tool.
    Hope, it may help!
    Thanks,
    Murali.

  • How to get and set the column order in SharePoint list forms

    Hi,
    I want to read the column order of the SharePoint list forms in SharePoint 2003 sites using any of the available web services and need to set the same order
    in the newly created list in SharePoint 2010.
    I am able to read the fields from SharePoint 2003 and creating the list with same fields in SharePoint 2010, but the column order is not maintaining in
    list forms.
    Also, I need to created the views from 2003 site to 2010 site.
    Please help me...
    Thanks in advance...

    Hi,
    Please try to use the following code to programatically change the order.
    SPList list = web.Lists["Example List"];
    if (list.ContentTypes.Count > 0)
    SPContentType ct = list.ContentTypes[0];
    string[] names = {"Example_x0020_One", "Example_x0020_Two", "Example_x0020_Three"};
    ct.FieldLinks.Reorder(names);
    ct.Update();
    Here is a similar thread for your reference:
    https://social.technet.microsoft.com/Forums/en-US/ce66fd65-2882-4bda-8142-89e116d8b90f/how-to-set-the-order-of-the-fields-in-list-forms?forum=sharepointdevelopmentprevious
    Best Regards
    Dennis Guo
    TechNet Community Support

  • .ase file changes order of color list.

    I created an .ase file in InDesign CC with a list of 20 colors in a particular order. When I Load Swatch into a new document the order of the list changes. Can I avoid this?
    The list has one Pantone color but the rest have CMYK values and I have named each colour. The list change does not appear to be alpha-numerical.

    Thanks Steve. I'm using CC 2014 and this solution works fine.
    (I'm still not sure why the saved colours should change order when not grouped but, as this works I'll go with it).

  • What is the Workflow Business Event Name for Order Management Price List

    Hello Everyone,
    Can anyone please help me to find out the Workflow Business Event name for the Order Management Price List?
    Thanks in advanced,
    Chandan

    Chandan
    Are you looking for business event name that is raised when the price list is created?
    Thanks
    Nagamohan

  • Sales Order and Pick List reports will not attach to Email message

    My client wants to email both the Sales Order and Pick List that is created from the Sales Order in the same email message.  It appears that SAP B1 will not do this.  Is this a bug or just the way B1 works.  My client is running version 8.8 PL 19.   Thank you for your help.
    Bill Turek

    Hi Bill,
    Pick List is associated with delivery, not sales order. If you need Pick List be emailed, you have to email delivery.
    Thanks,
    Gordon

  • How to find Sales order numbers for List of Deliveries

    Hi
    How to find Sales order numbers for List of Deliveries
    Thanks
    Muthu

    Hi,
    Open the delivery list.
    Select  a delivery, goto menubar, environmment, document flow.
    Here u can able to see the  order no. (but, here u can see one by one , not cumulatively)
    Regards
    Kaleeswaran

Maybe you are looking for

  • How can I use cutom build icons in labview as a switch ?

    I have two questions: I am trying to make a user interface, using custom-build icons. -How can I load/copy my icons into labview? What would be the best sollution for the usibility of the icons: -should I try to use the icon as a new overlay for labv

  • Cd/dvd drive has disappeared

    my cd/dvd drive is not detected by windows, but is detected by the device manager the BIOS detects is as well. I've tried removing the upper & lower filters, uninstalling and reinstalling the drivers, and have also checked to see if I can assign the

  • CRM Worklist settings CRMD_ORDER

    Hey, Does anybody know how to configure the worklist in a CRM 5.0 system? In the worklist of the CRMD_ORDER transaction there are two selection criteria's: - belonging to - transaction category Is there a way to default a possibility? For instance, s

  • Attachments are not completely downloading

    All of a sudden when I tap to download an attachment it will not completly download and therefore not open.  What can I do to correct this.  I've done numourious battery pulls and it has not helped :-(

  • CS4, XSL won't preview in browser

    I'm trying to preview in browser an xsl page.  I have the xml file set in the bindings panel.  Now whenever I go to preview in browser, if I take off the bindings, it asks for it and then does nothing.  If I already have the xml set in bindings and I