Sort a single filed

Hiii,
Can I sort a single field of a internal table without affecting other fields? ie the other fields should remain as it was before after the sorting...only the field written in the sort clause should be sorted.
Reply urgently.

Its not possible with Sort stmt. You have to do with some ABAP logic taking that column in to other table, sort it and assign back to original internal table.
Hope it helps.
Regards
CS

Similar Messages

  • I can't sort a single column only (ignoring the next column)

    I can't sort a single column only (ignoring the next column) in NUMBERS

    Numbers sorting follows a database model in which each row is a 'record' rather than a collection of unrelated data items. When a table is sorted, the integrity of the individual records (rows) is maintained.
    If you need to sort a single column, that column (or its data) must be separated from the rest of the table.
    That can be done using copy/paste (as described above by Wayne), or by taking the column to be sorted out of the table, dropping it on the sheet to form a new, single column table, doing the sort, then returning the column to the original table.
    The 3 1/2 step process takes longer to describe than to do.
    Regards,
    Barry

  • Concatenating table text into a single filed

    Hi all,
    pls provide the solution for the below.
    i have an internal table i_tlines with two fields. first field is no and 2nd field is a text field.
    suppose table contains data as follows:
    1        abcd
    2        xyz
    3        fgh
    4        dfgh
    now the requirement is i want to concatenate all the above four into a single filed.
    so output has to come 'abcd xyz fgh dfgh'.
    regards
    Venkat

    Hi,
    try this way..
    If  i_tlines-field2 is the one which contains the values ( abcd, ....)
    data: v_string type string.
    loop at  i_tlines into wa_tlines.
    concatenate v_string
                      wa_tlines-field2
                into v_string
        separated by space.
    clear wa_tlines.
    endloop.
    Hope thsi will help.
    Reagrds,
    Swarna Munukoti

  • Dynamic Sorting on Multiple filed in Crystal report 2008

    Hi
      I am using Crystal report 2008 sp3 full build with hotfix 3.3 along with ASP.NET 2.0
      I have implimented the multi filed sorting using the record sort export and setting the sort order in the report designer.
    Now my requirement is such that i would like to have dynamic sorting on multiple fileds while report is displayed in the UI.
    Means suppose i have a report with Customer region,name,city,rating,status etc.
    Now by using the sort control  i would like to have the functionality in such a way that if user
    a)  first sorts on the region then the records should be first sorted by region
    b)  then sorts on the city then the records should be sorted first by region then by city
    c) now sorts on the  rating then the records should be sorted first by region ,second by city and then by rating
    Now other user may do
    a) first sorts on the rating then the records should be first sorted by rating
    b)  then sorts on the status then the records should be sorted first by rating then by status
    c) now user sorts on the  region then the records should be sorted first by rating,second by status and then by region
    and so on the sorting criteria changes from user to user through the UI.
    Is there any way to achieve the dynamic kind of sorting with Crytsal report 2008 where we can set the order of the fileds at sorting in UI dynamically .The sorting order of the fields are not known at the time of design of the report and its completely depends on the user's need.
    Please let me know if you require any information on the same.
    Regards,
    smitha

    Hello,
       Good Day!
       Thanks for your answer.
       Could you please explain me in detail how to achieve this functionality?
       Do i need to create a static parameter?
       I  get my data set through the command option in crystal report.So i think i need to go by formula in the report.
       i am just putting down the steps to follow.Please correct me if i am wrong.
      step1 :Create s static parameter with the name SORT.
    step2: create the formula as you have mentioned like     
        (IF {?Sort}='Vendor Number' THEN {Pr_Voucher_Status;1.Vendor_Key}& " "& {Pr_Voucher_Status;1.ap_remt_key}
        & " " & {@date}
       else
        IF {?Sort}='Invoice Number' THEN {Pr_Voucher_Status;1.ap_vchr_invno}& " " & {Pr_Voucher_Status;1.Vendor_Key}&
        " " &{@date}
       else
       IF {?Sort}='Invoice Amount' THEN {Pr_Voucher_Status;1.ap_vchr_amtc}& " " & {Pr_Voucher_Status;1.Vendor_Key}&
         " " &{@date})
        I could not  understand what this formula is really doing .
        Could you please tell me what the following names indicates? :
                  Pr_Voucher_Status :- Table/Command name ??
                  Vendor Number,Invoice Number etc.. :-  ??
                 Vendor_Key,ap_vchr_invno,ap_vchr_amtc .. :-  Filed names ??
                 use of 1.{} :- ??                              
    step3: place the below formula in the page header  to display the sort order
        (if {?SORT}='Vendor Number' then "Vendor Number, Remit To, Invoice Date"
              else if {?SORT}='Invoice Number' then "Invoice Number, Vendor Number, Invoice Date"
              else if {?SORT}='Invoice Amount' then "Invoice Amount, Vendor Number, Invoice Date") .
    Note:-My report does not have grouping.Do i need to have grouping?
    in this case how the sort control will work  ?
    As i have mentioned in the first post the order of sorting is completely depends on the user's perspective .
    The report is used by the whole organization ..
    i mean the people with different roles like Manger,Team leads,modul leads,developers ,testers etc..
    the usage of report varies according to the roles so the sort order also.
    Regards,
    smitha.
    Edited by: smitha thomas on Mar 16, 2011 5:01 AM

  • Sub: How to update value of a single filed in the standard table without  u

    Hi experts,
    In the standard webdynpro component , i want to change particular field value based on some condition.  I cannot use bind table to update the single value, because other filed attributes are getting cleared .so is there any way to update only particular  row related field value. Please let me know. This is very urgent. Please post if you have any idea.

    Srinivasu Y wrote:
    >   I cannot use bind table to update the single value, because other filed attributes are getting cleared .so is there any way to update only particular.
    Hi,
    It is clearing because you are just updating  only that particular field direclty.,
    instead First You read the selected Row using  get_static_attributes( ls_tab ) method .
    no in ls_tab modify your required field and then rebind it .
    hope this clears your doubt.,
    Thanks & Regards,
    Kiran

  • How can i sort a single AdvancedDataGridColumn in a AdvancedDataGrid?

    Hello,
    I am using a ADG, which populates the returned data(arraycollection) from database. I'm generating a counter on java side for each returned record and showing that counter in ADGcolumn. I just want to sort that particular column.
    When i debug the application, i'm getting the counter count properly but when its showing in ADG, sorting is missing. when i clicks on coloum header, then only its showing in ascending order, i need to show up in ascending order without clicking on column header.
    Can anyone help me in this issue??

    Hi Johnny,
    Thanks for your helpful code, its really working for me.
    but i have an issue, once i apply the sort, i'm getting number '1' and down arrow symbol on ADGcolumnheader.
    i'm using a itemrenderer to get rid of '1' but i need to make invisible the down arrow symbol too.
    sortExpertMode property is working for other columns but not for the column which i'm applying sort.
    Here is the code which disabling the number on columnheader:
    package
    import mx.controls.advancedDataGridClasses.AdvancedDataGridSortItemRenderer; 
    import mx.core.UITextField; 
    public class ADGSortItemRenderer extends AdvancedDataGridSortItemRenderer{
    public function ADGSortItemRenderer(){
    //TODO: implement function
    override protected function childrenCreated():void{ 
    super.childrenCreated(); 
    //Get reference to sort number text field
    var sortOrderTextField:UITextField = this.getChildAt(0) as UITextField; 
    if(sortOrderTextField != null){ 
    //Hide sort number text field
    sortOrderTextField.includeInLayout =
    false;sortOrderTextField.visible =
    false;}
    here is the image:
    is there any way to disable both the number(1) & down arrow??
    Thanks,
    Shravan P.

  • How to declare the single filed in globally...........

    Hi Guru's,
    i have a field name required date (VDATU)...
    please guide me in systax how to declare the single field as globally...
    thanks in advance
    Srinivas...

    Hi all thanks for your inputs and your valube time..and finally i resoleved the issuee you can see the global declaratio in my program logic...
    *& Report  ZAREPAS30
    REPORT  zarepas30.
    DATA : gs_vbeln                   TYPE  vbak-vbeln,
           gs_order_header_in         TYPE  bapisdhd1,
           gs_order_header_inx        TYPE  bapisdhd1x,
           gt_order_items_in          TYPE  STANDARD TABLE OF bapisditm,
           gwa_itab1                  TYPE  bapisditm,
           gt_order_items_inx         TYPE  STANDARD TABLE OF bapisditmx,
           gwa_itab2                  TYPE  bapisditmx,
           gt_order_partners          TYPE  STANDARD TABLE OF bapiparnr,
           gwa_itab3                  TYPE  bapiparnr,
           gt_return                  TYPE  STANDARD TABLE OF bapiret2,
           gwa_itab4                  TYPE  bapiret2.
    Sales document type
      PARAMETERS: p_auart TYPE auart OBLIGATORY.
    Sales organization
      PARAMETERS: p_vkorg TYPE vkorg OBLIGATORY.
    Distribution channel
      PARAMETERS: p_vtweg TYPE vtweg OBLIGATORY.
    Division.
      PARAMETERS: p_spart TYPE spart OBLIGATORY.
    Requested Delivery Date
      PARAMETERS: p_edatu  TYPE edatu OBLIGATORY.
    Sold-to
      PARAMETERS: p_sold  TYPE kunnr OBLIGATORY.
    Ship-to
      PARAMETERS: p_ship  TYPE kunnr OBLIGATORY.
    Material
      PARAMETERS: p_matnr TYPE matnr   OBLIGATORY.
    Quantity.
      PARAMETERS: p_menge TYPE kwmeng  OBLIGATORY.
    Plant
      PARAMETERS: p_plant TYPE werks_d OBLIGATORY.
    Start-of-selection.
      START-OF-SELECTION.
    Header data
    Sales document type
      gs_order_header_in-doc_type = p_auart.
      gs_order_header_inx-doc_type = 'X'.
    Sales organization
      gs_order_header_in-sales_org = p_vkorg.
      gs_order_header_inx-sales_org = 'X'.
    Distribution channel
      gs_order_header_in-distr_chan  = p_vtweg.
      gs_order_header_inx-distr_chan = 'X'.
    Division
      gs_order_header_in-division = p_spart.
      gs_order_header_inx-division = 'X'.
    Reguested Delivery Date
      gs_order_header_in-req_date_h = p_edatu.
      gs_order_header_inx-req_date_h = 'X'.
      gs_order_header_inx-updateflag = 'I'.
    Partner data
    Sold to
      gwa_itab3-partn_role = 'AG'.
      gwa_itab3-partn_numb = p_sold.
      APPEND gwa_itab3 TO  gt_order_partners .
    ship to
      gwa_itab3-partn_role = 'WE'.
      gwa_itab3-partn_numb = p_ship.
      APPEND gwa_itab3 TO  gt_order_partners .
    ITEM DATA
      gwa_itab2-updateflag = 'I'.
    Line item number.
      gwa_itab1-itm_number = '000010'.
      gwa_itab2-itm_number = 'X'.
    Material
      gwa_itab1-material = p_matnr.
      gwa_itab2-material = 'X'.
    Plant
      gwa_itab1-plant    = p_plant.
      gwa_itab2-plant   = 'X'.
    Quantity
      gwa_itab1-target_qty = p_menge.
      gwa_itab2-target_qty = 'X'.
      APPEND gwa_itab1 TO gt_order_items_in.
      APPEND gwa_itab2 TO gt_order_items_inx.
    Line item number.
      gwa_itab1-itm_number = '000020'.
      gwa_itab2-itm_number = 'X'.
    Material
      gwa_itab1-material = p_matnr.
      gwa_itab2-material = 'X'.
    Plant
      gwa_itab1-plant    = p_plant.
      gwa_itab2-plant   = 'X'.
    Quantity
      gwa_itab1-target_qty = p_menge.
      gwa_itab2-target_qty = 'X'.
      APPEND gwa_itab1 TO gt_order_items_in.
      APPEND gwa_itab2 TO gt_order_items_inx.
    CALL FUNCTION 'BAPI_SALESORDER_CREATEFROMDAT2'
      EXPORTING
        order_header_in               = gs_order_header_in
        ORDER_HEADER_INX              = gs_order_header_inx
      IMPORTING
        SALESDOCUMENT                 = gs_vbeln
      tables
        RETURN                        = gt_return
        ORDER_ITEMS_IN                = gt_order_items_in
        ORDER_ITEMS_INX               = gt_order_items_inx
        order_partners                = gt_order_partners.
    Check the return table.
      LOOP AT gt_return into gwa_itab4 WHERE type = 'E' OR type = 'A'.
        EXIT.
      ENDLOOP.
      IF sy-subrc = 0.
        WRITE: / 'Error occured while creating sales order '.
      ELSE.
    Commit the work.
      CALL FUNCTION 'BAPI_TRANSACTION_ROLLBACK'.
        CALL FUNCTION 'BAPI_TRANSACTION_COMMIT'.
        WRITE: / 'Document ', gs_vbeln, ' created'.
      ENDIF.

  • How to assign single filed update to a responsibility in Oracle Apps 11i

    Dear All
    I created a responsibility (userabc) and just assign supplier screen to userabc. what i want i just wanna give him/her permisson to update only one field of the supplier screen e.g. Hold or Unhold payment.
    How i can achieve this, please guide.
    Kind Regards
    S.Garewal.

    Dear Hussain
    I am trying to personalize form taking help from referred documents. I am facing following problem:
    Main form is == Supplier screen
    from Supplier Screen you have "Sites' button for sub-form of Sites
    and in Sub-form (sites) you have differents fields and Tabs.
    I want all these fields and tabs to be disable except the Tab which do have 'Hold /Unhold' payment field.
    the issue is that :
    The TAB PAGE within a form cannot be eliminated which is mentioned in DOC ID 420518.1.
    If a Tab within a form has no items directly rendered on it, that Tab will not appear in the list of objects that user can modify
    How I can achieve this goal?
    Kindly advise.
    Sayeed

  • How to Sort single column in webdynpro table

    Hi all
    I have requirement as follows.
    i have webdynpro table with the following columns like Date,firstname,lastname,address etc.
    now when i run the the application the table is populating the data at runtime that is fine.
    i need as soon as table is loaded , Date field in the table should be displayed the values in the decending order...i have the requirement as follows...
    how to sort the single column in table ...by default the values of the column displayed with decending order as soon as table displays at runtime....i dont want to click any button specific button to do the sort for that column
    Regards
    bindu

    Hi, I solved the same problem by modifying the sort() method in the default TableSorter class so that it takes a column id and direction rather than an event.
    I assume you have read the TableSorter tutorial.
    Like this. (This was done on nw ce 7.1 btw but may work on older versions as well.
    Oh and then you just call the sort method right after you have made the request
    //Code that goes into controller/view to execute sorting
    wdContext.currentContextElement().getPensionplanTableSorter().sort("MyColumnId", "Up", wdContext.nodePensionPlan());
    //Part of TableSorter.java
    //The original method that needs an event. Now it just calls the new method
    public void sort(IWDCustomEvent wdEvent, IWDNode dataSource) {
         // find the things we need
         String columnId = wdEvent.getString("selectedColumn");
         String direction = wdEvent.getString("sortDirection");
         sort(columnId, direction, dataSource);
    //This is the new method.
    public void sort(String columnId, String direction, IWDNode dataSource) {
         if (columnId == null || direction == null ) {
              return;
         IWDTableColumn column = (IWDTableColumn) table.getView().getElement(columnId);
         NodeElementByAttributeComparator elementComparator =
    (NodeElementByAttributeComparator) comparatorForColumn.get(column);
         if (elementComparator == null){
         //not a sortable column
              column.setSortState(WDTableColumnSortDirection.NOT_SORTABLE);
              return;
         // sorting
         elementComparator.setSortDirection(WDTableColumnSortDirection.valueOf(direction));
         dataSource.sortElements(elementComparator);

  • Really urgent : display of 2 fields in a single field

    HI,
    I making a report in which i ahve to display the qty coming from two tables (MCHB and MSKA).
    In dis i have to display d quantities(MCHB-CSPEM) and (MSKA-KASPE).
    I have to displayboth of dem in a single filed.
    example,
    blk.qty                 net.wt           tot.wt
    2(MCHB)                 1                    2
    1(MSKA)                  2                   2
    2(MCHB)                  2                   4
    like dis i want to display but i am able to do dis,plzz help me out in solving dis problem as help will be deifntely rewarded.
    HERES D CODE:-
    REPORT  Z_BLOCK_STOCK_COPY no standard page heading LINE-SIZE 350.
    TABLES: MCHB,MARA,MSKA.
    DATA: BEGIN OF ITAB OCCURS 0,
          ITEMID LIKE MCHB-MATNR,
          CHARG LIKE MCHB-CHARG,
          WERKS LIKE MCHB-WERKS,
          CSPEM LIKE MCHB-CSPEM,
          NTGEW LIKE MARA-NTGEW,
          MEINS LIKE MARA-MEINS,
          GEWEI LIKE MARA-GEWEI,
          WTKG LIKE MARA-NTGEW,
          STOCK TYPE P LENGTH 10 DECIMALS 3,
          DESC LIKE MAKT-MAKTX,
          TOTWT LIKE MCHB-CSPEM,
          WT TYPE P LENGTH 12 DECIMALS 3,
          END OF ITAB.
    DATA: BEGIN OF ITMSKA OCCURS 0,
          MATNR LIKE MSKA-MATNR,
          CHARG LIKE MSKA-CHARG,
          WERKS LIKE MSKA-WERKS,
          KASPE LIKE MSKA-KASPE,
          SOBKZ LIKE MSKA-SOBKZ,  "special stock indicator 'E'
           END OF ITMSKA.
    DATA:  DESC LIKE MAKT-MAKTX.
    WRITE: / 'ITEMID           DESCRIPTION                              STOCK.QTY  BATCH NO.           NETWT          TOTAL.WEIGHT '.
    ULINE.
    PARAMETERS : PLANT LIKE MSKA-WERKS OBLIGATORY.
    SELECT AMATNR ACHARG AWERKS ACSPEM BNTGEW BMEINS B~GEWEI FROM MCHB AS A
        INNER JOIN MARA AS B ON BMATNR = AMATNR
            INTO TABLE ITAB WHERE AWERKS = PLANT AND ACSPEM > 0 .
    DATA V_R LIKE ITAB-CSPEM.
    V_R = ITMSKA-KASPE.
    LOOP AT ITAB.
    CLEAR V_R.
    V_R = ITMSKA-KASPE.
    SORT ITAB BY ITEMID.
       READ TABLE ITMSKA WITH KEY MATNR = ITAB-ITEMID.
        SELECT SINGLE MATNR CHARG WERKS KASPE SOBKZ FROM MSKA
          INTO ITMSKA WHERE KASPE > 0 AND SOBKZ = 'E' AND MATNR = ITAB-ITEMID.
          IF ITAB-NTGEW <> 0 .
            CALL FUNCTION 'ZGET_ITEM_WEIGHT'
             EXPORTING
               P_BUID         = ITAB-WERKS
               P_ITEMID       = ITAB-ITEMID
               P_QTY          = ITAB-NTGEW
               P_UOM          = ITAB-GEWEI
               P_UOM1         = 'KG'
             IMPORTING
               P_RETVAL       = ITAB-WTKG.
          ENDIF.
       CONVERTING ITEM QTY IN KG
          ITAB-WT = ITAB-STOCK.
          IF ITAB-MEINS = 'G'.
            ITAB-WT = ITAB-STOCK / 1000000.
          ELSEIF ITAB-MEINS = 'KG'.
            ITAB-WT = ITAB-STOCK / 1000.
          ELSEIF ITAB-MEINS = 'TO'.
            ITAB-WT = ITAB-STOCK * ITAB-WTKG / 1000.
         ENDIF.
        ITAB-TOTWT = ITAB-WTKG * ITAB-CSPEM.
       SELECT SINGLE MAKTX FROM MAKT INTO DESC WHERE MATNR = ITAB-ITEMID.
         WRITE:/ ITAB-ITEMID,15 DESC,50 ITAB-CSPEM,ITAB-CHARG,ITAB-WTKG,ITAB-TOTWT.
       MODIFY ITAB.
       ENDLOOP.

    Hi
    If u try to see the F1 Help for Concatenate..U will get complete idea about this..
    Check below for ur ref :
    l_f_peinhnew1(15) TYPE c
    l_f_bprmenew1(15) TYPE c,
    l_string TYPE string,
       CONCATENATE l_f_peinhnew1 l_f_bprmenew1
                   INTO l_string SEPARATED BY SPACE.
    If 
    l_f_peinhnew1 = 10 and  l_f_bprmenew1 = 12
    L_string will be  10 12 .
    Hope it helps.
    Praveen

  • I am unable to sort multiple columns in a table created in Pages.

    I had been using Appleworks up until I installed Lion and have now switched to iWork. I created a table within a Pages document and am able to sort a single column (using the Table Inspector and choosing Sort from  Edit Rows and Columns) but the Sort option is grayed out when I attempt to sort multiple columns.
    In another post, someone talked about this being a problem if you have merged fields. I do not believe I have done this (to be honest I don't know the function of merging fields).
    This is very frustrating as I was easily able to sort these tables in Appleworks.

    Sharon Anderson wrote:
    Thanks for your quick response! I have been trying that but then found that Numbers would only let me print in landscape view so I had to paste the table back into Pages. Is there a way to print in portrat view (from Numbers?)
    Not so. In the lower left corner of the window, there's an icon that looks like a piece of paper. If you see this:
    you are in Sheet View, or normal, mode. If you see this:
    You are in Print View mode. Now you see the icons for portrait and landscape modes. Click your choice. Then arrange your content to fit the pages as you wish.
    Jerry

  • Pages:  How can I sort one column of words and not have it affect the other columns?

    How can I sort one column of words and not have it affect the other columns?  I have opened the inspector to the edit columns and rows under Table.  It will sort the column, but then it changes the other colums as well.  I know that if I use Numbers, it will work, but I want to know how to do the same thing in Pages.

    Hi Peter,
    Numbers sorts full rows on values in selected column(s). The technique for sorting a single column is essentially the same as Jerry is describing for Pages tables—separate the (data in the) column to be sorted, sort it, return it to the table.
    In Numbers the actual column may be separated from the original table, sorted, then returned. In Pages, the data must be extracted, sorted, then pasted back in, overwriting the unsorted data (if it was left in the original table).
    iWork tables follow a database model in which each row is a Record, and each column holds a Field within the records.
    As evidenced by the current question (and several similar questions arising in the Numbers community) that model doesn't apply to the way some users, especially some who come in from the MS Excel world, use tables.
    With Excels model—islands of data on a single large table, the ability to sort one or a selected few columns of data makes sense. One 'island' may comprise only cells AA21:AH50. Sorting that small 'table' should be possible without disturbing the rest of rows 21-30, which are probably part of one or more other 'data islands' in the sea that is a MS Excel spreadsheet.
    In Numbers, each of those 'islands' would be a separate Table, and that Table would be sortable without disturbing other Tables in the document.
    Regards,
    Barry

  • Sort multiple files as TV shows?!?

    I've got a lot of TV shows my friend gave me (for example South Park and Happy Tree Friends). But there's one thing that really bugs me out, that is that whenever I import a video file into iTunes it gets sorted as a Movie so I have to sort every single file as a TV show, very boring to do, just because there's no way of selecting multiple files and ⌘I them and sort TV shows. Why in the world are there so little options in +Multiple Item Info?+
    +*Please Help Me!*+

    Hey, Meg, how about legally recorded shows transferred from a Tivo? Or VHS? I have many of those, plus all the DVDs I've backed up into iTunes, so I can watch them through my AppleTV and have the DVDs all in a box in my basement.
    The UI for dealing with TV Shows is terrible, a complete afterthought. The tag fields are very much structured around songs (Why do movies have an Album field? And not a Director field?), and I can't sync specific episodes of a TV Show to my iPhone. Once upon a time, I could make a playlist with TV episodes, and sync that playlist, but that ability appears to be gone: I no longer see that playlist in any of my tabs where I pick the info to sync.
    If I create a playlist with one song and one tv show, and set that to sync, it syncs the song only. Yet if I just give in, and label all my TV shows movies, I can sync anything I want. It's terrible.

  • Copy Multi block field value in single field

    HI!
    I have a multi block text item i want to copy its contents in single filed text item.
    1. I am using Forms 6i.
    Thanks & Regards!

    Hi,
    Try this code.
    DECLARE
         Str_Field                VARCHAR2(3000);
         Num_Total_Records NUMBER;
         Num_Loop_I                     NUMBER;
    BEGIN
         :<master_block_name>.<field_name> := '';
         FIRST_RECORD;
         LAST_RECORD;
         Num_Total_Records := TO_NUMBER(NAME_IN('SYSTEM.CURSOR_RECORD'));
         FIRST_RECORD;
         FOR Num_Loop_I IN 1..Num_Total_Records LOOP
              Str_Field := Str_Field || ',' || :<detail_block_name>.<field_name>;
              NEXT_RECORD;
         END LOOP;
         :<master_block_name>.<field_name> := SUBSTR(Str_Field, 2, LENGTH(Str_Field)-1);
    END;Regards,
    Manu.

  • Cannot Alpha Order a Single Column of Info - PLEASE HELP

    I'm an expert on Excel and recently switched to a Mac and am now using Numbers. It should be simple to alpha order a single column of words, but after three days I can't get any options to work.
    When I try to sort just the column and select just the column name and just the selected cells it sorts the entire spreadsheet over and over again. Instant alpha is grayed out an unusable from the Format menu.
    PLEASE HELP! How can I get a single column of words to sort in alpha order. Nothing I've tried works and when I follow the help menu instructions it still sorts the entire spreadsheet and not just the selected column.

    NeedHelpNow2011 wrote:
    When I try to sort just the column and select just the column name and just the selected cells it sorts the entire spreadsheet over and over again.
    Hi Need',
    Welcome to Apple Discussion and the Numbers '09 forum.
    Numbers considers all of the date in a row to be a set (in database terms, a record), and sorts accordingly.
    Here are two ways to sort a single column:
    1. Copy the data from the column, Paste into a single-column table (or an otherwise empty table with any number of columns), perform the sort, then copy the newly sorted data and paste it back into the original column.
    2. Grab the column you wish to sort, tear it out of its table to form a new single column table. Sort, then drag it back into position and drop it back into the original table.
    The second method requires some explanation, which you'll find on page 58 of the Numbers '09 User Guide, or in more detail, in this discussion from a few days ago. Scan the thread for this image, check that message and the ones below it.
    On another note, you wrote:
    Instant alpha is grayed out an unusable from the Format menu.
    Instant alpha refers to the alpha channel which may be added to a graphic object to create transparency. It's not connected with sorting text or numbers. More in the Numbers '09 User Guide under "Removing the Background or Unwanted Elements from an Image" in Chapter 9, _Working with Shapes, Graphics, and Other Objects_.
    The numbers '09 User Guide, and its reference companion, the iWork formulas and Functions User Guide, are excellent resources, and well worth downloading and spending a bit of time with. They can be had through the Help menu in Numbers.
    Regards,
    Barry

Maybe you are looking for

  • What's happening on my screen? (dashes)

    Hi there, It's been a month since I´ve started my iMac PPC g5 and I got all these dashes around. They do appear all over dynamic elements (except videos) and next to the cursor. Is there a feasible solution to this issue? Many thanks in advance, dema

  • Sending a PDF form without a desktop email application

    I developed a PDF form using Livecycle and now discoved that the computers that users have do not have an email client installed. instead, they use OWA. So my Save and Send Email button will save the PDF but not email it. Is there a way to send the P

  • "lower than intended output quality: frame blending DISabled"???

    When I print to tape, after all conforming processes have finished I get "Note: The following conditions exist in this sequence which may result in lower than intended output quality. The following can be adjusted using the Render Control tab in the

  • Using more than 4 quadrature encoder input for MyRIO

    Hello, I am doing a project where I need to drive 6 motors, each with quadrature encoder feedback to control position.  Currently, I've been using the MyRIO Encoder VI's, but there's a limit to 4 encoders. What is the best way of reading 6 encoders s

  • Since updating my adobe flash player I am having trouble with gmail, google, hotmail, etc.

    Since updating my adobe flash player a couple of days ago some of my web pates are acting strangely. One that is not a big deal, but is strange is that my the google logo is missing from the main google search page. Another is that I cannot login to