Sort field in QAAWS

How can I sort my result in a certain order when using QAAWS ?

Hi,  Qaaws dont work from OLAP Universe, this note is the confirmation:
http://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/oss_notes_boj/sdn_oss_boj_bi/sap(bD1lbiZjPTAwMQ==)/bc/bsp/spn/scn_bosap/notes%7B6163636573733d36393736354636443646363436353344333933393338323636393736354637333631373036453646373436353733354636453735364436323635373233443330333033303331333233383339333233373338%7D.do

Similar Messages

  • Sort field in action monitor

    Dear Experts,
    I'm trying to take bulk/mass printouts for CRM transactions, using t.code- CRMC_ACTION_JOB.here we have a field called SORT FIELD1.please tell me the significance of this.actually there is no furthur filteration criteria for this.like-user id,service organisation etc.
    My requirement is to print the service order as per the service organisations,which is not possible in t.code-CRMC_ACTION_JOB.
    please provide some input for this issue.

    Hi,
    You can use the sort fields to process a series of actions in a defined order during batch processing. For this, you have to assign an attribute of the application object to the sort field in the action Customizing. When the action is generated, the value of this attribute is then entered into the corresponding sort field. First, the sorting defines how the selected actions are displayed in the list. During the batch run, the actions are then also processed in this order.
    For the sorting, you must create and specify a variant that orders the ALV according to the entries in the sort fields. The dialog allows you to check the correct sort sequence in the ALV.
    For example, if the postal code of the document recipient is entered into one of the sort fields, documents can be printed sorted by their postal code.
    Regards,
    Madhu

  • Sort field in VF31

    Hi,
    Pls anybody let me know what is the functionality of field "Sort order" in VF31 screen?
    what is the meaning of this feild and for what purpose we use this field?
    thanks & Regards,
    Srikanth.P

    Hi,
    We have 5 options in this field "SORT ORDER"...
    01 Billing document/Item/Output type
    02 Output type/Billing document/Item
    03 Partner function/Partner no./Output type
    04 Sort fields 1-3
    05 Output type/Sort fields 1-3
    Let me know why we use these options?
    Regards,
    Srikky

  • Sort field in maint.plan&in ip30

    hi
    does some one implementd sort field use in img of maint plan
    and does dead line monitoring in ip3o
    whar are the benifits or scope
    ponts will be rewarded

    Hi,
    The sort field is used to 'sort' plans according to different criteria that you need to configure.
    For e.g. If a company has 200 Maintenance plans and you want to know all the plans valid for a certain division of the company. You can have these plans sorted as per company division.
    You will need to configure the sort fields in IMG. If company name is COMP, then sort fields may be
    COMPDIV1, COMPDIV2 etc (just an example).
    For scheduling maintenance plans indvidually IP10 may be used. However in real scenarios. the transaction IP30 is used to do a scheduling of all the maintenance plans together.
    Thanks,
    KF

  • Sort field in maintenace plan

    hi
    does some one implementd sort field use in img of maint plan
    and does dead line monitoring in ip3o
    whar are the benifits or scope

    Hi,
    The sort field is used to 'sort' plans according to different criteria that you need to configure.
    For e.g. If a company has 200 Maintenance plans and you want to know all the plans valid for a certain division of the company. You can have these plans sorted as per company division.
    You will need to configure the sort fields in IMG. If company name is COMP, then sort fields may be
    COMPDIV1, COMPDIV2 etc (just an example).
    For scheduling maintenance plans indvidually IP10 may be used. However in real scenarios. the transaction IP30 is used to do a scheduling of all the maintenance plans together.
    Thanks,
    KF

  • Sort field in equipment main screen

    We have an equipment having some validity dates(Valid from: 20.11.2009 & valid to: 31.12.9999) . Whenever we enter sort field in the Location tab the validity start date changes to todays date (Valid from:10.06.2009). How we can avoid this changes of dates. What is relation of sort field with valid from date ?

    Hi,
    It appears you have the sort field marked as relevant for equipment usage period. This will cause a new usage period with valid from date to be set each time the value of this field is changed.
    You can check customizing as follows:
      Plant Maintenance and Customer Service
      Master Data in Plant Maintenance and Customer Service
      Technical Objects
       Equipment
       Equipment Usage Period
       Define History-Related Fields
    The field to look for is EQFNR.
    -Paul

  • Sort field in maintenance order

    Hello;
    I want to make sort field in maintenance order as a mandatory field. But if I make it as a mandatory field, system still allows me to save the order as long as I have not clicked 'Location' tab. So there is no positive control over this field. May I know, how do I achieve this? I have even tried to put order type as the influencing field but it does not help.
    Points assured.
    Regards
    Hemant

    Hello Hemant,
    access to the SAP service marketplace via www.service.sap.com to create an OSS message. Choose link "product errors". Therefore you need an OSS user and you have to be authorized to create OSS messages.
    To create an user-exit, you have to go to transaction CMOD. There you have to create a project and assign the enhancement you want to use (I'm not really sure, but I think IWO10009 is the correct one in your case - you can search the user-exits via transaction SMOD - search for IWO*).
    After this you have to implement your coding and then you have to activate the project.
    The implementation of the user-exit should be done by an ABAP developer.
    By the way - I've had a look at the OSS. There's note 768576.
    Reason and Prerequisites
    The problem is caused by a missing function.
    Influences set via field selection will only become effective if a screen with the corresponding fields is processed. You must also refer to the documentation defined in the corresponding Customizing area. For the location & account assignment data, no additional check is (such as with the general order header data) is realised during the saving.
    Prerequisite
    Via field selection you declared fields of the location & account assignment data as mandatory field, and no screen that contains these fields was passed.
    Solution
    By means of the example code, you must implement a corresponding mandatory field check via customer enhancement IWO10009 at the time of the order backup.
    1. Create subroutine Z_IWO10009_GET_DATA_FOR_FAW in program SAPMILA0. It would be best if you create an own include ZMILA0F1 for this so that you will not have any unnecessary expenditure for future Support Packages (via Transaction SE80).
    FORM Z_IWO10009_GET_DATA_FOR_FAW.
      CALL FUNCTION 'CO_IH_GET_HEADER'
           IMPORTING
                     CAUFVD_IMP = CAUFVD.
      CALL FUNCTION 'CO_IH_GET_ILOA'
           EXPORTING
                     CAUFVD_IMP = CAUFVD
           IMPORTING
                    ILOA_WA    = ILOA.
    ENDFORM.                    "Z_IWO10009_GET_DATA_FOR_FAW
    2. Create the following source code in customer enhancement IWO10009:
    STATICS: XTFAWF LIKE TFAWF OCCURS 0 WITH HEADER LINE.
    tables:  tfawf.
    DATA: wa_screen    LIKE screen.
    FIELD-SYMBOLS:  'A'.
      perform Z_IWO10009_GET_DATA_FOR_FAW(SAPMILA0).
      if xtfawf[] is initial.
        SELECT * FROM TFAWF INTO TABLE XTFAWF
                 WHERE PROG = 'SAPMILA0'.
      endif.
      LOOP AT XTFAWF WHERE CUST_M = 'X'.
        CALL FUNCTION 'FIELD_SELECTION_INFLUENCE'
             EXPORTING
                  dynprogruppe = '7   '
                  mode        = 'C'
                  modulpool    = 'SAPMILA0'
                  fieldname    =  XTFAWF-MFELD
             IMPORTING
                  input        = wa_screen-input
                  output      = wa_screen-output
                  active      = wa_screen-active
                  required    = wa_screen-required
                  intensified  = wa_screen-intensified
                  invisible    = wa_screen-invisible
             EXCEPTIONS
                  OTHERS      = 1.
        if wa_screen-required = 1.
          clear lv_mfeld.
          lv_mfeld = 'CAUFVD_IMP-'.
          case XTFAWF-MFELD.
            when 'ILOA-AUFNR'.
              lv_mfeld+11 = 'IAUFNR'.
            when 'ILOA-KOKRS'.
              lv_mfeld+11 = 'IKOKRS'.
            when 'ILOA-BUKRS'.
              lv_mfeld+11 = 'IBUKRS'.
            when 'ILOA-GSBER'.
              lv_mfeld+11 = 'IGSBER'.
            when 'RILA0-ARBPL'.
              lv_mfeld11 = xtfawf-mfeld6.
            when others.
              lv_mfeld11 = xtfawf-mfeld5.
          endcase.
          ASSIGN (lv_mfeld) TO  IS INITIAL.
            Message E461(IW)
            with 'Mussfelder der Standort&Kontierungsdaten füllen'.
            EXIT.
          ENDIF.
        endif.
      endloop.
    endif.
    3. Activate the changes
    Correspondingly you can implement this solution also for the order release, for example, via customer enhancement IWO10002.
    Bear in mind that this is a source code proposal. It might be useful or necessary to adjust this source code to special applications.
    Best regards
    Stephan
    Edited by: Stephan Theis on Jan 5, 2008 11:20 AM

  • Sort Field to be made mandatory while creating maintenance plan(IP42)

    Hi Experts,
    Please suggest me the way by which i can make the field "Sort field" mandatory while creating maintenance plan (IP42).
    Regards,
    Vivek

    Vivek,
    There is no std config to acheive this. Please use IPRM0004 Maintenance plan/item: Customer check for "Save" to accomplish the same.
    Mahee

  • Sort Fields Not Working Properly?

    If I do Get Info on a track, and change the Sort Artist to anything, then I Right Click on the track in the library > Apply Sort Field > Same Artist it changes the Sort Artist of all tracks by that artist to what I entered.
    However, I want to delete all the Sort Artist data. I do exactly the same thing, and change the Sort Artist data to nothing on a track. However when I try to apply the sort field to all tracks by the artist it leaves them alone! It doesn't change all the Sort Artists to nothing! It only does this when I enter no data. Any string at all and it works correctly.
    How can I change all the Sort Artists to nothing i.e. delete the Sort Artist data?

    Hi there.
    How about, instead of leaving the Sort Artist field blank, entering a name that is identical to the actual Artist field instead and then use the Apply Sort Field > Same Artist option.
    You can then go to the iTunes View menu > View Options command and uncheck Sort Artist so that it will no longer appear in your iTunes Library display.
    Does that bring you anything in the way of satisfaction?

  • The sort field is not used when ordering multiple cds in one alumn folder, how do I correct this?

    It is using the track number and not the sort order field.  The reason I have multiple cds in one alumn is because they are books on cd.

    Sorry for the typo my "b" key was not working correctly.
    The sort field is not used when ordering multiple cds in one albumn folder, how do I correct this?  It is using the track number and not the sort order field.  The reason I have multiple cds in one albumn is because they are books on cd.

  • Use of Sort Field in equipment Master

    Dear All
    What is the use of SORT field in Equipment Master Record

    Dear Kumar Sahoo,
    This field is for identification purpose and generally give similar technical objects
    example:if you have so motors like lathe and drilling and lifting and milling etc thease all motors are same motors and if you want see the list you can give sor name then see, otherwise you have to give each number and find out
    some  more benefit is you can list sorting and unic identification of similar objects
    generally using internal purpose, i mean there is no relation of external procurement or warranty or any outside of company activiteis.
    Hope this may helps you
    Prem

  • BGM: Master Warranty sort field

    Hi all,
    I have search all over the place in order to know the function of the "Sort Field" in the Master Warranty. If I do have several counters, it stated that I can set priorities of my warranty counters by using free defined sort field.
    But how do I use is and where does it reflect then?
    I do attached the master warranty in my Equipment via IE02 and where does it display the priorities of my warranty counters?
    I also do realize that the counter link AND & OR in master warranty can be use in order to stated that my equipment is still under warranty by line items or overall. This is very useful, however the icon of warranty check status in IE02, is changing from "not valid" icon to "valid" icon once click on warranty details. Something wrong isn't?
    Hope all experts can help me on this. Thanks
    Regards,
    effie7am

    Hi,
    The sort field does not have any effect on the validity of the warranty.
    The master warranty maintenance provides two tabs - services and count. For each service line you can have multiple entries, these are the conditions which may be linked with a AND or OR.
    To use a vehicle as an example. If there is a 50,000 KM / 36 month warranty. This can be defined by creating one entry on the initial master warranty services  tab. The two counters are added to count tab, the AND condition is selected. Once one of these counters is reached the warranty is expired.
    If your vehicle comes with a further warranty (perhaps a 5 year anti-rust extension), you can add this as a second entry on the initial services screen. Now to start with both warranty items are valid, after 36 months the first item becomes invalid. Now item 1 is expired and Item 2 is still valid. At this point the complete warranty is only partially valid (yellow icon).
    -Paul

  • Table View : Sort='server' : Error=Invalid sort field type in "SORT ... AS

    Hi ,
    The Sort button does not work for GUID and it shows the error,
    <b>Invalid sort field type in "SORT ... AS TEXT"</b>
    How do I solve this problem?
    Thanks and Best Regards,
    Bindiya

    Hi ,
    Below is the code :
    IF_HTMLB_TABLEVIEW_ITERATOR~GET_COLUMN_DEFINITIONS
    ==================================================
            ls_coldef-columnname              = 'PBI_C_VALUE_ID1'.
            ls_coldef-width                         = '150'.
            ls_coldef-title                           = 'Category I '.
            ls_coldef-tooltipheader              = 'Category I '.
            ls_coldef-wrapping                   = zcl_zsc_co=>sc_true.
            ls_coldef-edit                          = zcl_zsc_co=>sc_true.
            ls_coldef-sort                          = zcl_zsc_co=>sc_true.
            APPEND ls_coldef TO p_column_definitions.
            CLEAR ls_coldef.
    ==================================================
    IF_HTMLB_TABLEVIEW_ITERATOR~RENDER_CELL_START
    ==================================================
        WHEN 'PBI_C_VALUE_ID1'.
          CREATE OBJECT lr_dropdown.
          lr_dropdown->id                 =  p_cell_id.
          lr_dropdown->nameofkeycolumn    = 'PBI_C_VALUE_ID'.
          lr_dropdown->nameofvaluecolumn  = 'SHORT_NAME'.
          lr_dropdown->selection          = <fs_row>-pbi_c_value_id1.
          lr_dropdown->disabled           = lv_disable.
          lr_dropdown->width              = '170'.
          GET REFERENCE OF mr_model_assign_sb_list->mr_model_pb_item_list->mr_model_def_category->mt_dropdown_cat_1_val INTO lr_dropdown->table.
          p_replacement_bee = lr_dropdown.
    ==================================================
    NOTE: the data element of 'PBI_C_VALUE_ID' is RAW 16.
    Thanks and Best Regards,
    Bindiya

  • Sorting field  in View

    How do I sort field in View? thanks!

    Hi,
    Actually I do not understand your question: what do you want  to sort? If you are referring to a SELECT from a view please refer to the documentation of SELECT.
    Regards, Gerd Rother

  • How is "most helpful" determined in App Store Reviews sort field?

    How is "most helpful" determined in each apps Reviews sort field In the App store?  I use this field to help make decisions. I like to see how buyers feel about their purchases. But, as a buyer, I've never been asked which review I consider most helpful.
    I'm finding some really poor apps with high ratings. Help, please!  If this has already been answered, I was directed to begin a new discussion. Thanks!

    Yes, most people download from there iOS device. But there are over 1,000,000 who Do it from there computer.
    In the itunes store.

Maybe you are looking for