Table control change column position or number

Hi Guys,
I need to move a column from position 10 to position 5 in the standard program. I did change the table control position in screen painter by doing cut and past of columns at required positions and it does change there but it does not show column positions in the actual screen. Is there config for table control in the standard program?
In the attributes the position number is disable. Is there some other way that I can move the columns.
Please advise.
Thanks,
FS

Thanks Manesh,
I am using travel overview transaction PR05. Can you recommend any config area where the table column positions are maintained. Thanks.
Regards,
FS

Similar Messages

  • Table control layout column positions are different with dislay positions

    Hello All,
               I added one column to standard table control at the 13th position,but at the display of that table control its showing at
    96th position.please suggest me how to set that to 13th position at dislay.
    Thanks in advance

    Hi,
    You can do this using a single table control.
    There is a option in the screen parameters to hide the column of the table control.
    So based on the list value, you loop at screen containing the table control, and set the option to make the column invisible.. Try this.
    Hope it helps..
    Regards,
    Sekar

  • Changing column positions of a table

    Hi
    Please lemme know how do we change column postions in a table
    Table A ( x number ,
    y varchar2(10),
    z number)
    How do i make it
    A (x number ,
    z number ,
    y varchar2(10))
    Thanks

    In general, you don't because the order of columns in a table is irrelevent.
    If you want to present columns in a particular order, you can create a view on top of the table and make that view available to end users.
    If you're really determined, you could do an online table redefinition (depending on the Oracle version and edition, neither of which you mentioned). Or do a
    RENAME TABLE a TO a_old;
    CREATE TABLE a
    AS
    SELECT x, z, y
      FROM a_old;
    <<Create appropriate indexes, constraints, etc>>
    DROP TABLE a_oldThis is basically what online table redefinition is doing. Obviously, if you have a lot of data, this is going to be slow and expensive.
    Justin

  • Table control-change the output of a column. My column shows numbers (char)

    Hello Friends,
    I have in the table control a table. This table show varoius columns , but one column shows numbers. My boss detected that there are showed the numbres but without decimals . for example 10 is showed instead of 10.35. The format of the column is char . How can i change the format to make it appear with decimals? I tried with split in the internal processes. but the problem are the external ones. Because this column is automatically converted to char . what can i do ?
    Thanks!!

    i did not asigned a type char.
    i just referenzed from a field of a matrix table., the machine recognizes this field as char and shows the filed with no decimals at all
    How can i make the decimals to appear?

  • Table Control + last column

    Hello Friends,
    i am facing a strange problem. I have created a table control using table control wizard. when I enter the values in table control select the entry and press okey button everything works fine. then I gave the program to user for test, and he came back with following issue:
    He entred the data in the table control, and then he press the enter button. then he went to the last column and change the value, press again enter button, the value overwrite again ( which he has entered before ).
    I went in debug mode to see what is going on, and surpringly while entring the value in the last column I press enter the control did not went to my module "Z_TAB_CTRL_modify input." rather it went in user_command. module.... and that's why it did not updated the value after user change in last column....
    Any idea what I can do to fix this issue...
    Regards,

    Hi,
    CHAIN.
    ENDCHAIN. 
    Effect
    The statements CHAIN and ENDCHAIN of the dynpro flow logic define processing chains. Between CHAIN and ENDCHAIN, the statements FIELD and MODULE can be executed. The statements between CHAIN and ENDCHAIN form a processing chain. Processing chains cannot be nested. The CHAIN statement can be specified in the event blocks at PAI and PBO , however, in the event block at PBO it has no effect.
    <b>A processing chain allows the joint processing of all the screen fields stated between CHAIN and ENDCHAIN after FIELD statements:</b>
    The contents of all screen fields combined to a processing chain by the FIELD statements can be checked in the shared conditions ON CHAIN-INPUT and ON CHAIN-REQUEST of the MODULE statement.

  • Table control - validate column

    Dear VC Experts,
    we are using VC with a RFC Data Service. On the output port we create a table control with following columns for example:
    - Amount /MENGE (mandatory field)
    - Checkbox type /BOOL1 (mandatory field) - true,false
    - Expression Box / STATUS2 (validate amount and Checkbox) --> true, false
    For the expression box we use the formula:
    BOOL(@BOOL1==true AND @MENGE==0 OR @BOOL1==false AND @MENGE<>0)==true
    This seems to work. Result: true, false
    Further we have a button, which has to be disabled if the Expression Box has the status "false".
    I dont know how to check all the values in the expression box. The button only gets disabled, if i select a specific row with the status 'false'. I would like to check all the valus in my table control, not only the selected one.
    On the properties tab for my button i use the formula:
    CONTAINS(#ID[ACC153]@STATUS2,'false')==true
    Maybe any suggestions to check all the values in my table column? How can i check all the values in my column 'STATUS2' which contains true or false?
    Moderator message - Please do not offer points or rewards
    Edited by: Rob Burbank on Aug 3, 2010 11:32 AM

    Hello,
    I think you need to attach the output of your table to the input of the form that contains your button, so that this form "is aware" that you have changed the selected line.
    Then you assign an action to the mapping and to the column so that when you click on a line of the table it "calls" the form.
    You can give it a try, but I'm not sure of this.
    Fabien.

  • Table Control, change data of itab on enter-click

    Hello all, I have an itab gt_task_704 which I use to display in a table control.
    When the user changes a field and pushes on the ENTER-KEY, I'm trying to modify this itab with the new content.
    The issue I have is that some fields are updated with faulty content.
    In PAI I'm doing the following:
    PROCESS AFTER INPUT.
    *&SPWIZARD: PAI FLOW LOGIC FOR TABLECONTROL 'TC_705'
      LOOP AT gt_task_705.
        CHAIN.
          FIELD gs_task_705-zzpcod.
          FIELD gs_task_705-zprest_descr.
          FIELD gs_task_705-zmdhrs.
          FIELD gs_task_705-zhrs.
          FIELD gs_task_705-discipline.
          FIELD gs_task_705-zmdpctouts.
          FIELD gs_task_705-zpctouts.
          FIELD gs_task_705-zmdpctovhd.
          FIELD gs_task_705-zpctovhd.
          FIELD gs_task_705-zcomment.
        ENDCHAIN.
        MODULE update_table_705. "INPUT.
      "MODULE sort_705.
      ENDLOOP.
    ====> update_table_705:
      DESCRIBE TABLE gt_task_705 LINES gv_lines_705.
      IF tc_705-current_line LE gv_lines_705.
        "READ TABLE gt_task_705 INTO gs_task_705 INDEX tc_705-current_line.
        SHIFT gs_task_705-zhrs LEFT DELETING LEADING '0'.
        MODIFY gt_task_705 FROM gs_task_705 INDEX tc_705-current_line
                           TRANSPORTING zhrs zpctouts zpctovhd.
      ENDIF.
      CLEAR gs_task_705.
    It seems like a problem of sorting I think but I still didn't manage to change the correct lines.
    Can someone please give a helping hand to this young abap'er
    Thanks in advance

    Mr.Dragovian you write the module between chain..endchain.
    chain.
    module Md1 on chain-input.
    endchain.
    MODULE Md1 INPUT.
       modify itab INDEX tc-current_line  transporting fld(s).
    ENDMODULE.
    By this way,you will be able to get the correct user-entered data into itab.

  • Faces Read-Only Table control - reset column sorting?

    In an ADF Faces Read-Only Table control at runtime, once the user has clicked on a column to resort the table entries based on the clicked column, is there any way to unclear the sort?
    CM.

    In an ADF Faces Read-Only Table control at runtime, once the user has clicked on a column to resort the table entries based on the clicked column, is there any way to unclear the sort?
    CM.

  • DS1.3 : SDK UI5 Table Control with Column Grouping

    Hello,
    Have anybody successfully implemented the "grouped" property of "sap.ui.table.Column" in Design Studio 1.3? This property seems to fail the complete page load.
    We are on Design Studio 1.3 SP01.
    Thanks
    Arun

    Hello,
    I think you need to attach the output of your table to the input of the form that contains your button, so that this form "is aware" that you have changed the selected line.
    Then you assign an action to the mapping and to the column so that when you click on a line of the table it "calls" the form.
    You can give it a try, but I'm not sure of this.
    Fabien.

  • Unable to define Radio Button Text field & unable to change column position

    Hi,
    While designing a screen in Screen Painter, I am unable to define Radio Button Text field as this option is not there in Graphical Element. And also I want to specify the starting position of column of that element different from the default value, but I am unable to define that because the field is non-editable.
    Can any one please help me out.
    Regards,
    Koushik

    Hi,
    Please find below the sample program from ABAP docu :
    PROGRAM demo_dynpro_input_output.
    DATA: input  TYPE i,
          output TYPE i,
          radio1(1) TYPE c, radio2(1) TYPE c, radio3(1) TYPE c,
          box1(1) TYPE c, box2(1) TYPE c, box3(1) TYPE c, exit(1) TYPE c.
    CALL SCREEN 100.
    MODULE init_screen_100 output.
      CLEAR input.
      radio1 = 'X'.
      CLEAR: radio2, radio3.
    ENDMODULE.
    MODULE user_command_0100 input.
      output = input.
      box1 = radio1.
      box2 = radio2.
      box3 = radio3.
      IF exit NE space.
        LEAVE PROGRAM.
      ENDIF.
    ENDMODULE.
    Here radio1(1) TYPE c is defined within the program but in the element list there are RADIO1 element exist. One is actual radio button and the other is Radio Button Text.
    I am not able to create that radio button text using same object name.
    Please suggest.
    Regards,
    Koushik

  • Error while trying to change the Column description in Table Control

    Hi,
    I have created a table control using the wizard in Module Pool.
    When i try to change the column description of the table control or adjust any other element which is already available on the screen and not in table control. It gives me an error
    Unable to transfer data. End Program?
    Any help would be appreciated.
    Thanks
    Sarves S V K

    Hi.,
    Check these  [Table Control Change Column Description|Add new columns in table control in custom screen program;
    and  [Add Columns in Table Control|Re: Table control columns]
    else  delete and create Table control Again..!!
    hope this helps u.,
    Thanks & Regards,
    Kiran

  • How to determine line number on Table control in BDC

    Hi,
    I am uploading changes for CG02 using BDC. I have to change data to specification type which are listed in a table control having some of the fields as IDCAT, IDTYPE, LANG, ORD, IDENT etc.
    For a particular substance number, there can be variable number of idtypes. Since there were 8 Idtypes already created for the substance number I was working with while recording and I created 9th Idtyep(Z_SARADOT#) while recording (Using SHBD), I am getting the code like ...'ESTRI-IDTYPE(09)....ESTRI-IDCAT(09).....'RCGRIIOT-IDENT(09)' which indicate that while recording, the values were added on 9th line of table control.
    Now this line number can vary for other substance number. How can I know
    (1) The last line of table control
    (2) Line number based on Value of field
        Example - here I want to know line number corresponding to IDTYPE Z_SARADOT# if it was created so that I can change the value of field IDENT of the table control.
    The piece of code I got after recording is:
              perform bdc_field       using 'ESTRI-IDTYPE(09)'
                                            'NUM'.
              perform bdc_field       using 'ESTRI-IDCAT(09)'
                                            'Z_SARADOT#'.
              perform bdc_field       using 'RCGRIIOT-IDENT(09)'
                                            '1175'.     
    Please help friends.
    Thanks & Regards,
    Surya

    There are around 800 Substance numbers and for each substance number there are around 10 IDtype. So It would be a costly processing.
    If there no other way doing it?
    I think, I need to follow this way as We can not determine the line number untill BDC is running.

  • ALV IDA Column Position Change

    Hi Folks,
    Is it possible to change column position in ALV IDA programmatically if possible then how?
    Regards,
    Amol

    Hello Amol,
    you can influence the order of the displayed fields using the SET_AVAILABLE_FIELDS method of the IDA ALVs field catalog instance.
    Following you see a little example for the company code table T001. I changed the order of the fields that the company code text is displayed in front of the company code ID. The order in which you pass the fields to the method defines the order for the output.
    Best Regards,
    Florian
    " create IDA ALV
    DATA(lo_ida_alv) = cl_salv_gui_table_ida=>create( iv_table_name = 'T001' ).
    " set available fields
    lo_ida_alv->field_catalog( )->set_available_fields( its_field_names = VALUE if_salv_gui_types_ida=>yts_field_name( ( CONV fieldname('BUKRS') )
                                                                                                                       ( CONV fieldname('BUTXT') ) ) ).
    " set display order of fields
    lo_ida_alv->default_layout( )->set_visible_fields( it_visible_fields = VALUE if_salv_gui_types_ida=>yt_field_name( ( CONV fieldname('BUTXT') )
                                                                                                                       ( CONV fieldname('BUKRS') ) ) ).
    " output
    lo_ida_alv->fullscreen( )->display( ).

  • Table Control: Disabling editing for a column

    Hi everyone. Greetings from Buenos Aires, Argentina.
    First of all, I want to apologize for this question in case of it has already been made. The forum is too large to read it completely and I really need the answer, if any, to my trouble.
    I have a table control inside a screen. In it's PBO, I coded a module to change the table control attributes. I declared a work area like the line of the table control's control in order to loop it. I mean this:
    In the TOP of Table Control (I made it by using the wizard) I have this:
    CONTROLS: TC_1 TYPE TABLE VIEW USING SCREEN dynpro_number)
    And in the PBO module I have typed the following:
    MODULE control_change_attrs OUTPUT.
    DATA: wa_tc_1 LIKE LINE OF TC_1-COLS.
    LOOP AT TC_1-COLS INTO wa_tc_1.
    ENDLOOP.
    ENDMODULE.
    In the (...), I have put code with such a logic that, depending of the contents of certain fields in the dynpro, it will hide (or not) some columns of the Table Control. This part is made correctly.
    This logic, also makes (or should make) the table control to disable the input of a column, depending wether a flag is active or not. This flag is activated in other screen's PAI, which is called depending on the contents of the sy-ucomm field of this screen (the one with the table control).
    The (...) is something like this (I'll omit some parts):
    IF wa_tc_1-screen-name = 'COLUMN_TO_HIDE'.
       IF gv_flag = 'X'.
          wa_tc_1-screen-input = 0.
       ENDIF.
       MODIFY TC_1-COLS FROM wa_tc_1.
    ENDIF.
    In a PAI module of this screen, I have coded the following:
    MODULE user_command INPUT.
    CASE gv_ok_code.
       WHEN 'RUN'.
          PERFORM RUN.
        WHEN ...
    ENDCASE.
    END MODULE.
    And in the RUN subroutine, obviusly among other things, I have this:
    CALL SCREEN 0150 STARTING AT XX YY.
    In a module in the PBO of the screen 0150, I clear gv_ok_code. In a PAI module, this is what I have put:
    CASE gv_ok_code.
       WHEN 'ACCEPT'.
          gv_flag = 'X'.
          CLEAR gv_ok_code.
          LEAVE TO SCREEN 0.
      WHEN ...
      WHEN ...
    ENDCASE
    The thing is, when the contents of gv_ok_code is 'ACCEPT' and therefore the flag is activated, then the 0150 screen's PAI finishes and the previous screen's PBO is processed, I know for sure (by the mean of the debugging mode) that the table controls's atrributes are correctly modified, and the most important thing, they stay like that... But, the column desired does not gets disabled, at least not until the NEXT PBO (I mean, it gets disabled when I press the Enter key).
    Why is happening this?

    Thanks a lot for the response, Max.
    I' ve been testing your answer. When I implemented the code that you suggested, after the first PAI, the table control's columns appear as I want.
    The thing is, in order to test if the changes in the columns are reflected in the screen after the call of the dynpro no. 0150 (and the obvious return to the first one), I need to be able to select one or more table control's rows (since when I followed the table control wizard, I made it with selection column, and with multiple selection). But, after implementing your code, I'm not able any longer to select any rows.
    I click on them, but they don't turn yellow. I commented the call of the module inside the LOOP AT itab... of the PBO and I was able to select them once again, so we're sure the problem is caused because of the call to this new module. But why?
    Note: you should know, since the table control is with multilpe selection, the LOOP sentence in the PBO is like this:
    LOOP AT itable
           INTO work_area
           CONTROL tc_1
           WITH CURSOR tc_1-current_line.
    MODULE change_attribs.
    ENDLOOP.
    Does that give a hint to you?

  • How to optimize the column width in Table Control

    Hi all,
          When I am displaying fields in Table Control, the columns are displayed in full length, and I am unable to see all the fields at once.
    So as in grid , where we optimize the column width using layout, do we had any property for TC to do so.
    thanks for your help.
    Points would be awarded .
    Regards,
    Anil .

    Hi,
    In Se51, you can do this one, ust open your table control and resize the TC, there is no direct option to do this for entire TC, you need to do this field by field, and arrage the TC to adjust in a Single screen. In the field parameters, you have the field lenghts, there you can minimize the length of a field
    Regards
    Sudheer

Maybe you are looking for

  • My audio books that were bought through Itunes on my Iphone do not show up on my Itunes account.

    I bought audio books on my iphone, but they do not show up on my itunes account on my computer.  The books I purchased through the computer show up on my itunes account.  My phone is at it's max and I need to remove these books, but do not want to lo

  • OSX will not start after reboot from single user mode

    Hello, Yesterday my iBook G4 was only starting in BASH mode. I've looked at discussions describing Kernel Panic and have followed the advice posted to the following post: http://discussions.apple.com/message.jspa?messageID=1553062#1553062 When I rebo

  • Error When Trying to Access Root Partition From KDE media:/

    Hi! My other partitions mounts fine and i can browse through all of them manually(from console). The only problem is my first partition hda2 which gives a "Permissions Denied" error when I click on it even though I'm currently in root. Here's my /etc

  • Digitizer Selection

    Hi all, I'm looking for a digitizer that has capability of measuring up to 300Vp-p and up to 1.5MHz sinusoidal waveform, and can be installed on a 3U PXI chassis. Anyone has any recommmedation on which vendor to use. Thanks Dan

  • Insomnia and kernel panic

    Hi all, I have a 17" C2D Macbook pro that has just started to have this problem. When I close the lid it doesn't go to sleep (hear the HD and it gets hot) if I open the lid, the backlight is off but I can see that it has Kernel panicked by looking at