How to order CM25 profile on the basis of a field values?

Hi,
I'd like to order a capacity planning table on the basis of values (decreasing) of the field USR02, that is already present in the table. Where could I set that records must be shown in that order? I attach a screenshot to explain you better my scenario
Thank you.
Angelo

Hi Angelo,
Try to use t-code OPDT and define a sort criteria profile with field USR02, after that assign the sort profile into your list profile (With t-code OPD0). Hope it can help you!
Best regards
Tao

Similar Messages

  • How to give error message for the screen element text field when wrong i/p

    How to give error message for the screen element text field when wrong i/p
    when wrong input given
    eg. 
    I have a text box with SBOOK-CARRID
    so when user give wrong entry in text box i.e LG
    then I should give some error stating that the the input is invalid or not available ,
    now it showing the error of standard messages,
    i want manual message to be displayed when error comes.
    Thank you,
    Regards,
    Jagrut Bharatkumar Shukla

    Hi all,
    Thank you for your valuable reply,
    but the thing is that its a screen field,
    i.e text box not a selection screen
    i created in screen layout
    with name sbook-carrid
    now i want to get error message display if wrong i/p is given
    thank you.
    Regards,
    Jagrut bharatkumar Shukla,

  • How can I get the previous record's field value in a VO

    Hi I would like to know how can I get the previous record's field value in a VO
    For example : I have a VO porequisitionlinesvoimpl, and it contains 5 records (porequisitionlinesvoimpl.getRowCount() = 5). How can I search all records in the VO and get the field (attribute3) for all records?
    Many thanks anyone can help
    Lawrence

    Hi ,
    U can loop through the VO to get the value of attribute3,
    need to extend the controller ,use below code
    OAViewObject vo = (OAViewObject)oawebbean.getApplicationModule (VO1);
    OARow row = null;
    int fetchedRowCount = vo.getFetchedRowCount();
    RowSetIterator Iter = vo.createRowSetIterator("Iter");
    if (fetchedRowCount > 0)
    Iter .setRangeStart(0);
    Iter .setRangeSize(fetchedRowCount);
    for (int i = 0; i < fetchedRowCount; i++)
    row = (OARow)Iter .getRowAtRangeIndex(i);
    String value = (String)row.getAttribute("Atrribute3");
    Thanks
    Pratap

  • File-File.....fetching the record on a field value

    Hi,
    I am woking on a file-XI-file scenario. I am sending 4 records from the sender file. now on the basis of one field condition, i want that particular record to be appended at my target file and the rest of the records to be appended to the other file.
    regards,
    Raghu

    what you need here is a combination of xpath conditions in receiver determination (in case of diff. recv. systems), interface determination and message split.
    Ref:
    Receiver Det- Xpath:
    /people/shabarish.vijayakumar/blog/2006/06/07/customise-your-xpath-expressions-in-receiver-determination
    /people/shabarish.vijayakumar/blog/2005/08/03/xpath-to-show-the-path-multiple-receivers
    XPATH in Interfce Det:
    /people/suraj.sr/blog/2006/01/05/multiple-inbound-interfaces-within-a-service
    mapping
    /people/jin.shin/blog/2006/02/07/multi-mapping-without-bpm--yes-it146s-possible

  • How to get file name on the base of extension

    hi
    reply me
    how to get the filename on the base of extension from the
    current directory......
    for example
    i create file with the "igg" extension and save in the folder
    where the exe file of director save....
    i want when exe run then exe file read filename of the
    define( "igg" ) extension with out path just name of the file with
    igg extension
    tel me how
    regards
    farhana khan

    Here's a solution that requires no xtras:
    on GetFilesWithExtension(aFolderPath, aExtension)
    -- INPUT: <aFolderPath> should be a valid string
    folder path
    -- <aExtension> may be a string file extension,
    without the
    -- dot. For example: "txt" or "igg"
    -- OUTPUT: Returns an error symbol or a linear list of file
    names
    -- in the given folder. If an extension is given, only
    -- files with the given extension will be listed. If not,
    -- all files and folders will be listed.
    vFileList = []
    if not stringP(aFolderPath) then
    return #stringPathExpected
    end if
    vIgnoreExtension = not stringP(aExtension)
    vDelimiter = the itemDelimiter
    the itemDelimiter = "."
    n = 0
    repeat while TRUE
    n = n + 1
    vFileName = getNthFileNameInFolder(aFolderPath, n)
    if vFileName = "" then
    exit repeat
    end if
    if vIgnoreExtension then
    vFileList.append(vFileName)
    else if the last item of vFileName = aExtension then
    vFileList.append(vFileName)
    end if
    end repeat
    the itemDelimiter = vDelimiter
    return vFileList
    end GetFilesWithExtension
    You can also use
    Buddy API's baFileList,
    which allows you to do wildcard searching.

  • ADFUtils + JSFUtils ... how come they're not in the base JDev release?

    Hi JDev gang
    A question came up from a client the other day, is how come ADFUtils and JSFUtils that appear in many of the Oracle JDev demos aren't included in the base JDev release? They seem like such obvious things to include in a base ADF Faces/RC project and for Oracle to expand upon, yet we currently have to "steal" the code for our own projects and include them.
    What are others' thoughts on this? Do you find these 2 classes indispensable for ADF Faces/RC development?
    Cheers,
    CM.

    Ah, the ugly can of Java annotation worms. Sure you want to open it? ;)
    Personally I'd love to see annotations introduced to masively reduce the complexity of Java JSF beans, and also the Java ADF BC side.
    One of the bits I see students really struggle with when teaching JDev is the unnecessary exposed Java methods in the ADF BC classes, such as the EntityImpl getAttrInvokeAccessor, setAttrInvokeAccessor, createPrimaryKey. Beginner non Java students really can only think about objects like POJOs, they struggle when they see lots of framework code added. As such hiding the detail using annotations should in theory make this eaiser.
    Regards the backing beans and injecting the binding container, iterator etc. I note between JDev 10.1.3 when it first came out, we were injecting bindings via the faces-config.xml file. This worked badly because new users struggled with getting the config file entries exactly to match the backing bean properties and accessor names.
    Then ADFUtils + JSFUtils came along which meant no injection was required, but now people are struggling with what to cast the result to (using something like JSFUtils.resolveExpression). As they don't inherently know the binding classes, what to cast to becomes a problem. The IDE doesn't help with this at all either.
    As such with the annotation approach, this would be better as the annotation would take care of returning the correct binding classes. This would take us to the next level. Also as the IDE would inherently know which binding class, then users would be better off in understanding the binding layer classes and which methods to call thanks to the code completion facilities. Of course it means someway of associating a backing bean with a particular page such that the BB knows which binding container to get, which iterators to include etc, and if the binding names are changed in the page def, the BB would automatically change its names (I figure you'd have to do this for beginners, otherwise they'd get confused).
    However, I think there is still a need for ADFUtils and JSFUtils even with annotations because there will be times where you want to do something that isn't provided by the annotations.
    Cheers,
    CM.

  • How to update view  without modifying the base table ?

    Hi Experts , I need help in two qurstions
    1. How to update a view without modifying the base table ?
    2. How to write a file unix operating system in pl/sql ? is there any built in procedure is there ?
    Thank you

    Hi,
    I'm not sure what you're asking in either question. It would help if you gave a specific example of what you want to do.
    SowmyRaj wrote:
    Hi Experts , I need help in two qurstions
    1. How to update a view without modifying the base table ?You can't.
    Views don't contain any data; they just query base tables.
    You can change the definition of a view (CREATE OR REPLACE VIEW ...) so that it appears that the base table(s) have changed; that won't change the base tables.
    2. How to write a file unix operating system in pl/sql ? is there any built in procedure is there ?The package utl_file has routines for working with files.

  • How to restrict folder access on the basis of an ip address

    I would like to restrict folder or item access on the basis of an ip address or domain address, not only with access rights based on login server, to get the possibility of intranet end internet within the machine and the same instance of 9ias.

    Currently, this option is not supported. Going forward, there will be an option for user hookups where you can add you own functions to augment the ACLs. The forthcoming 3.0.9.8.3 patch should include the function-based authorization.

  • How sales order number generated in the SAP R/3  is transferred to SAP APO

    Dear Experts,
    During the creation of the Sales order in SAP  R/3 an Purchase requisition is created in SAP APO and assigned with temporary sales order and when we save the sales order in R/3 the corresponding sales order number is attached with the purchase requisition in SAP APO. Is there any exits or BADI available while this Sales order detail transferred to APO or during this sales order details attached to Purchase requisition  in APO side.
    Many thanks in advance,
    Senthil

    Senthil,
    During the creation of the Sales order in SAP R/3 a Purchase requisition is created in SAP APO
    ?? I guess you are talking about one of the planning procedures that executes 'Start product heuristic immediately', yes?
    and assigned with temporary sales order
    I guess you are talking about [Temporary Quantity Assignments|http://help.sap.com/saphelp_glossary/en/74/b171467944d3119b440060b0671acc/content.htm], yes?
    Is there any exits or BADI available while this Sales order detail transferred to APO
    Standard enhancements are
    Sales order CIF enhancement on the ECC side
    CIFSLS03  (outbound from ECC)
    Sales order CIF enhancement on the APO side
    APOCF010 (Inbound from ECC)
    Best Regards,
    DB49

  • How to find the list of org .field values in sap

    Hi,
    I need a list of org files values .
    example : I want to know ...
    Plant= WERKS,Cost Center=KOSTL.
    similarly I need the list of all org. values.
    what is the table name?
    Thanks in advance
    SR
    Message was edited by:
            sunny raj

    My apologies.....
    I need the list of non org filed values with the description
    example..
    BEGRU     Authorization group
    BSART     Order type
    BWART     Movement type (inventory management)
    I have already down loaded org filed values from USVAR table as Ben said.
    Thanks,
    sr
    null

  • Production order no is missing the Batch short text field in MSC2N T.code

    Hi Guys,
    I have some requirement in my project. I have maintained Batch management in my project.
    When I create & release the Production order in CO01, immediately Batch number (Produciton order: Goods receipt tab) creates automatically by the system.
    Also this same production order should be appeared in the Short text field in Basic data 2 tab in the transaction MSC2N.
    But this production order no. is not updated automatically in the short text field in MSC2N.
    Is there any standard settings available for this case?
    Please help me the same.
    Regards,
    Mohan

    Hi Mohan,
    There is no  standard link between Production Order and Batch Master Record, If your client needs the production order number in Batch Master record, short text field. we need to achieve it thro user exits with the help of developers.
    Thanks
    Balasubramanian NSD

  • How make an appear windows for the use and enter one value?

    Hi everybody,
    I posted already once but my post has disappeared.
    I am new in programming with labview.
    I am doing an intern ship in a company and I would like to Improve an existing software.
    The purpose of the software is to a syringe pump manages to fill a nozzle (connected to
    an atomizer) and After spraying has pricise Amount on flies.
    So, first, the software Was Divided in to share. I made folders to put in one.
    -> Until this, it works
    Now I would like to make a program executive for purpose That I-have to, first, find a solution
    to control the syringe pump. I explain my self: When I am running the software, the syringe
    pump start to run by himself and the User has not the time to enter some values. For safe, I tried
    put a button to start the problem Is That goal block the software Spraying Because it s use as a
    SubVI. So My idea: I would like to bring-up has windows, Where the user can enter all His gains
    push a button and OK to run the software.
    If someone HAS an idea Will it really help me !!
    Have a good day
    Anais

    Sounds like you are just looking for a simple dialog box with some fields for the user to enter the required parameters. There are lots of examples if you look around, but here is a quick simple one. The three values enterd are bundled into a cluster for convenience, and it includes a 'cancelled' output in case the user changes his mind.

  • How does WebLogic 8.1 get the BASE HREF value?

    We have a WebLogic 8.1 SP4 server with a Juniper DX load balancer in front. We are trying to get Juniper to handle all the SSL traffic for the WebLogic application. Between Juniper and WebLogic, it would be just HTTP and between Juniper and web clients it would be HTTPS. One of the main issues we are seeing is that Struts HTML:BASE tag is returning the Juniper address as we expected, with the correct SSL port and application context/paths. However, the protocol for this base href is set to HTTP and not HTTPS. Consequently, our pages do not load properly.
    I am trying to understand where this value comes from. The underlying code uses request.getScheme() to get the protocol. So, we could "customize" the tags to work around this, but that is a hack that I am trying to avoid. I assume that the HTTP stack that WebLogic 8.1 uses is providing this info from the HTTP request. Does this come from the web browser? How does WebLogic get this to put it into the request object in the web container? We have sniffed the HTTP headers on the web client side and we cannot see where this is coming from.

    I remember facing a similar issue with webloigc 8.1 and apache
    I dont think its a problem with the tag..
    I think i have changed the transport-guarantee in web.xml
    If you have NONE try setting that to CONFIDENTIAL and vice versa

  • MIC Selection in certificate profile on the base varsion.

    Dear Experts,
    i am not able to get my required MIC with valid task list selection on the date base, I have a MIC with versions 1,2,and 3 i need to select the MIC with version 1, i have created a certificate profile and for selecting the MIC i have chosen from Extras- Characteristic from valid task list and gave the valid group and the old date in which the MIC with version 1 is valid after selecting the MIC if i go and check in the display MIC i am observing the new MIC with version 3 only, But if i directly enter the MIC and its version number it is selected where as i am not getting it when i select it from task list, please let me know if the behavior is as per the standard SAP or not and is there any possibility to select the old version MIC from the Task list directly.
    Regards,
    Naveen.

    Hi Sujith,
    For example:
    My MIC Details:
    MIC       Version     Created       and  Changed
    A        -       1        -   17.10.2008   
    A        -       2        -   17.10.2008   and  22.06.2011
    A        -       3        -   17.10.2008   and  22.06.2011
    A        -       4        -    17.10.2008  and  12.10.2011
    Task List:
    Group           Change number          Valid from              MIC      Version
       1          -        NA                      -     23.10.2008      -       A      -      1    
       1          -      10000008994       -     20.10.2011      -       A      -      4
    Change number details:
    10000008994    Created on:22.06.2011 changed on:18.10.2011 and Valid from date:20.10.2011.
    Now i created Certificate Profile today and while selecting the MIN from Task list i gave the details as Group and valid from date as 19.10.2011 and found the MIC A with version 1 and selected the version and after saving when i go and check the MIC details i found it as MIC A with version 4 dint understand why it is version 4 even after i selected version 1 and saved it.
    Can you please comment on this why it is changing like this but one thing i observed is if i directly enter the MIC and give the version as 1 and save, it is remaining the same.l am getting this problem only when i select it through task list.
    Regards,
    Naveen.
    Edited by: vaddapalli naveen on Feb 22, 2012 5:43 PM
    Edited by: vaddapalli naveen on Feb 22, 2012 5:48 PM

  • How to use multiple profiles within the same instance of Thunderbird

    About a month ago, I had Thunderbird configured with three profiles,
    and all three could be used within a single startup/instance of
    Thunderbird. That PC is now gone. I have re-configured the three
    profiles on a new PC, but am having trouble making all three
    useable within the same instance of Thunderbird. Can you help?
    Both PCs are/were Windows-7 64 bit.

    Thunderbird only opens on the default if one profile
    or
    if Profile Manager is instructed to ask at startup it will allow you to choose which Profile to open else it opens on the last Profile used..
    So it shows one Profile at a time in one instance of Thunderbird.
    However, one Profile can have many mail accounts.
    eg: I run 4 mail accounts in one Profile.

Maybe you are looking for

  • Smart Object - How do I keep ACR from changing workflow options?

    Open image in Photoshop as a Smart Object from Lightroom. Double-click to change the RAW characteristics. When I return to Photoshop, my image has been changed...  Color space is changed, bit depth is changed, size is changed........ I believe I know

  • OSX 10.6.8 New Shockwave 12 dosen't work

    When installing Shockwave 12 for Mac Snow Leopard OSX 10.6.8, the install looks like is went through but when going to a Shockwave test page like the one on Adobe's test site, nothing displays...the normal Shockwave version# and is installed correctl

  • Help on How to install iLife 06 on mac os x leopard !!!!

    Hello , I recently bought mac os x Leopard and I was just wondering if it is possible to download the software that was bundled software with my mac.

  • Mac OSX 10.6 fresh installation freeze

    Hi, I just bought a new Western Digital Hard Drive and installed on my MacBook Pro 17" A1297 When I install OSX 10.6 with original disc the installation freeze at about 18 min. I tryed with another disc but I have the same problem. What I can do? Man

  • HT1688 Iphone 5S screen keeps turing solid blue

    I just got the new Iphone 5s in slate grey 32GB and i have At&t.  when using my phone going in and out of apps, my phones screen will suddenly turn solid blue for about 2 seconds then the apple logo will appear and it restarts my phone.  anyone else