Change column sequence for screen variant FB50

Hi Experts,
I am able to hide unwanted fields in screen variant for items for tcode fb50 by creating screen variant and i also selected adopt column sequence check box.when  i go tcode shd0 and clicked screen variant that i already created and click with processing button i can get FB50 tcode screen there i can change column sequence by drag and drop .is it correct way to change the column sequence? but i am unaware how to save the changes i made.
Please let me know how to proceed to change the column sequence and save it.
Thanks&Regards,
narasimha.

Hi Faheem,
After changing the column sequence i clicked configuration button and click save button and again clicked Configuration and selected Administrative button there i can see the column sequence change and clicked activate button .now if i close and reopen the transaction my column sequence is same with out changes that i made .
you asked me to save the changes where i can do exactly ? Could you please tell in briefway from scratch so that i can trace where i done mistake.
Thanking you in advance.
Regards,
narasimha.

Similar Messages

  • Change column sequence in MIRO layout.

    Hello All,
                         Can we change column sequence  in existing layout of miro.Please tell me.I am using OLMRLIST ,but can't make a change.
    Regards & Thanks
    Raj Jin

    HAi,
    Use 7_6310 as screen varient and change the layout and save.
    Regards,
    BSK

  • No authorization for screen variant

    Hi,
    one of my user getting the error " No Authorizatin for screen variant" in KB11N.
    sateesh

    Dear Sateesh,
    Have you checked the authorizations for the object K_PVARIANT? In order to access different screen variants, the user should have the appropriate values for this object.
    Regards,

  • How can I get the list of columns (fieldcatalog) for particular variant

    Hello,
    i have option chose variant on selection screen (REUSE_ALV_VARIANT_F4) and i need to get which fields (columns) are included in this variant - i need to get this restricted fieldcatalog according variant using FM. I need to save file only with columns included in particular variant.
    Thx.

    Hi Zdenek,
    You can get the list of user variant by FM
      call function 'LVC_VARIANT_F4'
    You can get the details of the selected variant using FM
       call function 'LVC_VARIANT_SELECT'
    Please check the SAP example BCALV_GRID_11 program for the code.
    Hope this helps.
    Franc

  • Changing selection sequence for logical database

    Hi,
    One of my current report is using logical database PNP. The users are satisfy with the standard selection screen. However they would like me to change the sequence of the selection field. Example, current sequence is Personnel number, company code, employee subarea. They would like it be Personnel number, employee subarea, company code.
    Is there any way I can change the sequence of the selection screen? I tried using report catagory but it don't allow me to change the sequence. Please advise.
    Regards,
    Lanwu

    Rich is correct.. but there is a workaround..
    Use the Report Category that suppresses all the selection fields.. I the program deifne your selection screen with the fields in your own order preference. In the STARt-OF-SELECTION event.. pass the values entered to the PNP fileds.. ie suppoes you have declared S_PERNR ( for Pers No), then use PNPPERNR[] = s_pernr[]. This way you will not have to change the LDB program..
    ~Suresh

  • SAP Query column sequence for Totalling fields

    Hi all
    We have a custom query in 4.6C in which the output displays only the total of Totaling fields maintained in the sequence Amount > Withholding Tax > Net Amount  (all currency related fields).
    However after upgrade to ECC 6.0, we notice that we are no longer able to sequence the output list to Amount > Withholding Tax > Net Amount
    Though we maintain the Totaling fields in the sequence Amount > Withholding Tax > Net Amount , the list is generated in the sequence Amount > Net Amount > Withholding Tax  and the sequence is changed accordingly in the Basic List after a test display of the Output.
    Is anyone aware if the sequencing control is removed in ECC based for the Totaling Fields?
    Kindly help share.
    Thanks in Advance
    Vinodh S

    Hi Faheem,
    After changing the column sequence i clicked configuration button and click save button and again clicked Configuration and selected Administrative button there i can see the column sequence change and clicked activate button .now if i close and reopen the transaction my column sequence is same with out changes that i made .
    you asked me to save the changes where i can do exactly ? Could you please tell in briefway from scratch so that i can trace where i done mistake.
    Thanking you in advance.
    Regards,
    narasimha.

  • Change Column content of ALV Variant

    Hi,
    I need to add a field in an existing variant for the layout of an ALV report. What I did was to add a field in a structure using Append Structure. The text that I first entered was wrong (field label of the data type of the field). Now, when I run the ALV Report, then when I choose to add a hidden field in the variant(setting>display variant>Current...), the wrong text is appearing even if I've already modified the field label of the data type.
    Do I need to adjust something in order for the "Column Content" of the variant to be displayed properly?

    After you made the change to the ALV catalog, try to re-create the variant again.
    Thanks & regards,
    Hadiman

  • Changed column sequence in Portal

    Hi,
    I have the following query:
                                  columns 0FISCPER
                                               Key Figures
                                                 0AMOUNT
    rows
    ZCUSTGR
    0GLACCOUNT
    - standard sorting options
    When I run query in BEx analyzer the sequence of the columns is fine. (001.2009, 002.2009 etc.)
    When I run it in portal (Web Application, Web Analyzer) the column sequence is changed.
    It seems like it is sorted by overall result in rows.
    Do you have any idea why such a thing happens?
    Thanks,
    Marek Krzeminski

    Hi,
    the sequence in the portal should be the same than in the bex analyzer. Can you give us some more details? Maybe you can try this with a very simple query - sometimes it makes it is easier to understand where the error is coming from. Maybe it also helps if you provide us with an example?
    Best regards,
    Janine

  • Changing Column Sequence

    Hi,
    How to change the column sequence with out recreating a table?
    Exapmle :
    SQL> desc emp
    Name Null? Type
    EMPNO NOT NULL NUMBER(4)
    ENAME VARCHAR2(10)
    JOB VARCHAR2(9)
    MGR NUMBER(4)
    HIREDATE DATE
    SAL NUMBER(7,2)
    COMM NUMBER(7,2)
    DEPTNO NUMBER(2)
    SQL>
    Expected:
    SQL> desc emp
    Name Null? Type
    EMPNO NOT NULL NUMBER(4)
    DEPTNO NUMBER(2)
    ENAME VARCHAR2(10)
    JOB VARCHAR2(9)
    MGR NUMBER(4)
    HIREDATE DATE
    SAL NUMBER(7,2)
    COMM NUMBER(7,2)
    SQL>
    Regards

    I would not even dream of doing such thing on a production database :(How about DBMS_REDEFINITION? It allows us to do redefinition stuff online.
    A little example:
    SQL> create table emp
      2    (empno number primary key,
      3     empname varchar2(30),
      4     deptno number,
      5     address varchar2(50));
    Table created.
    SQL> insert into emp
      2  select rownum,
      3         'EMPLOYEE ' || rownum,
      4         mod(rownum, 10) + 1,
      5         'ADDRESS ' || rownum
      6    from dual
      7  connect by level <= 100;
    100 rows created.
    SQL> commit;
    Commit complete.
    SQL> desc emp
    Name                                                  Null?    Type
    EMPNO                                                 NOT NULL NUMBER
    EMPNAME                                                        VARCHAR2(30)
    DEPTNO                                                         NUMBER
    ADDRESS                                                        VARCHAR2(50)
    SQL> exec dbms_redefinition.can_redef_table(user ,'EMP', dbms_redefinition.cons_use_pk)
    PL/SQL procedure successfully completed.
    SQL> create table emp_new
      2    (empno number primary key,
      3     deptno number,
      4     empname varchar2(30),
      5     address varchar2(50));
    Table created.
    SQL> exec dbms_redefinition.start_redef_table(user, 'EMP', 'EMP_NEW', options_flag => dbms_redefinition.cons_use_pk)
    PL/SQL procedure successfully completed.
    SQL> exec dbms_redefinition.finish_redef_table(user, 'EMP', 'EMP_NEW')
    PL/SQL procedure successfully completed.
    SQL> desc emp
    Name                                                  Null?    Type
    EMPNO                                                 NOT NULL NUMBER
    DEPTNO                                                         NUMBER
    EMPNAME                                                        VARCHAR2(30)
    ADDRESS                                                        VARCHAR2(50)
    SQL> set linesize 1000
    SQL>
    SQL> select * from emp where rownum <= 5;
         EMPNO     DEPTNO EMPNAME                        ADDRESS
             1          2 EMPLOYEE 1                     ADDRESS 1
             2          3 EMPLOYEE 2                     ADDRESS 2
             3          4 EMPLOYEE 3                     ADDRESS 3
             4          5 EMPLOYEE 4                     ADDRESS 4
             5          6 EMPLOYEE 5                     ADDRESS 5
    SQL> drop table emp_new;
    Table dropped.Regards.

  • Change column width for print table to report

    Hi, want to make the first column in my table to be printed to report wider than the rest, for it contains the part numbers of about 16 chars and the other columns are the data of 4 each. Don't want to make all equally wide for I want to fit as many column as possible over the page. How can I do this?? Thanks for any help. Is there maybe another way to print in a table format?? Madri

    Hi Madri,
    Assuming you are using the Standard Report type with the Report Generation VIs, you can check out this KnowledgeBase entry that discusses how to customize the VI to generate a report with different column widths:
    http://digital.ni.com/public.nsf/websearch/7AEC2CC2618D47DF86256D280058BDA5
    Hope this helps,
    -D
    Darren Nattinger, CLA
    LabVIEW Artisan and Nugget Penman

  • Change MD04 Exception for incomplete Variant Configuration

    Hi PP Gurus.
    I have a problem!
    This is my scenario: when I create a sales order with a configurable  material with a incomplete configuration I need, if possible, to block the generation of the requirement list in MD04. If possible, can I change, with a user exit or BadI or... the Exception Code in MD04?
    Thanks
    Manuel Chiarelli

    Hi.
    I'm sorry...
    The scenario is:
    I've a Sales document with a configurable material. Thi material have some configurable components with different production time.
    If I change the schedule type and I don't set the "MRP relevant", when I launch the MRP on this material, the system doesn't explode the requirement for the components.
    I need, if possible, to force the exception when I execute the planning so I can produce the components.
    Can I do this?
    Thanks
    Manuel

  • Screen Variants disabled for FB50,FB60,FB70

    Hello All,
    The screen variants for FB50 FB60 FB70 disabled. These vairants can be selected as Edit --> Screen variant --> Select screen variant.
    When any user executes transaction he gets some field missing (table control setting set as basic settings) and when he try from the above option for the desired screen then also screen remains same. It doesn't change
    Previously it was not the case. previously when user executes these trasnaction screen was coming correctly.
    Many users facing this issue.
    If anyboday faced similer kind of issue then request you to please share your inputs.
    Thanks  & regards,
    Prashant

    Hi Prashant,
    Please refer to notes 546889 and 186961.
    if user is calling transaction FB*0 the first time no screen variant
    for items is selected. So in order to assign a user to a screen variant,
    the user has to switch the tree on (SHIFT+F1).
    In the folder 'Screen variants for items' the user has to choose your
    'default' variant by a double click. After clicking on the button
    'Refresh Tree' this screen variant is saved in the table TFBUF, which
    contains the personalizations for ENJOY transaction. This table is
    always read by starting transaction FB*0. Because of the user
    personalization with table TFBUF the SET/GET-Parameters SCRVAR & STV are
    not used in the FI-Enjoy transactions. It's the enjoy and personlization
    system design that always the last selected screen variant of the user
    is used by starting transaction FB*0 and not a default one.
    But I can suggest you a modification, for setting your default screen
    variant in FB*0 with the value of parameter SCRVAR until the user will
    chosse another screen variant in the tree. Furthermore this default
    variant is set if user is executing 'Reset screen variant' under
    EDIT -> Screen variant. You can find the program changes of this
    modification below:
    Because it is only possible to set standard for transaction variants and
    not for screen variants and due to user personalization goal of the
    enjoy transaction It cannot change this system behaviour during
    maintenance.
    Here is the program code for this modification:
    1.
    FORM posting_transaction_init.
    If variant transaction is active, get screen variant     "Note 421236
          CALL FUNCTION 'RS_HDSYS_GET_SC_VARIANT'              "Note 331997
               EXPORTING                                       "Note 331997
                    progname         = 'SAPLFSKB'              "Note 331997
                    dynpro           = '0100'                  "Note 331997
               IMPORTING                                       "Note 331997
                    scvariant        = g_scvariant             "Note 331997
               TABLES                                          "Note 331997
                    values_scvariant = tab_values_scvariant    "Note 331997
                    guixt_scripts    = tab_guixt_scripts.      "Note 331997
        ENDIF.                                                 "Note 421236
    *Modification Begin of insert
        IF acc_kontext-scvariant IS INITIAL and g_scvariant is initial.
          GET PARAMETER ID 'SCRVAR' FIELD G_SCVARIANT.
        endif.
    *Modification End of insert
        IF NOT g_scvariant IS INITIAL                           "Note430830
    2.
    FORM create_tree_treev_style_enj.
    data entry variants
    Only if screen variant not provided by transaction variant
    *Modification begin of deletion
    IF p_scvariant IS INITIAL.                               "Note 331997
    *Modification end of deletion
        PERFORM create_tree_ev TABLES p_node_table.    " Erfassungsvarianten
        PERFORM create_item_ev TABLES p_item_table.
    *Modification begin of deletion
    ENDIF.                                                   "Note 331997
    *Modification end of deletion
    assignment models
      PERFORM create_tree_km TABLES p_node_table.      "Kontierungsmuster
    3.
    MODULE tree OUTPUT.
    read screen variants
    Only if no screen variant provided by transaction var.   "Note 331997
    *Modification Begin of deletion
    IF g_scvariant IS INITIAL.                               "Note 331997
    *Modification end of deletion
        PERFORM get_screen_variants.
    *Modification Begin of deletion
    ENDIF.                                                   "Note 331997
    *Modification end of deletion
    read parked documents if required.
    I recommend you to check with your local consultants if this modification is suitable to your requirements.
    Kind Regards,
    Fernando Evangelista

  • MIRO: Change the sequence of columns permanent

    Hi!
    It's easy to change the column sequence in miro with the mouse but ...
    Is it possible to modify the sequence of columns in a screen variant (MIRO) permanently?
    We're working with 4.6c.
    Thanks in advance!
    Best regards,
    Ingo

    Hi Dominic!
    Thanks ... I know OLMRLIST already.
    I don't find there something to change the sequence permantly.
    There's the option "Take over column sequence" and it's marked.
    ...I want to unmark the option but i can't change it (i can't enter it... it's grey).
    Any ideas?
    Best regards,
    Ingo

  • Screen Variant Not  working

    Hi,
    I have created one screen variant for screen for SAPLBBP_SC_UI_ITS screen 230.
    It's getting called while i checked by debugging .
    But its not working in ITS Template & in transaction also .
    In SAPgui it's not working .
    Is there any more setting for Screen variant apart from just save it & called in screen variant BADI .
    Thanks,
    SS

    Hi
    <u>This BADI as you can see by name is for Screen Variants.
    BBP_SCREENVARIANT in this case.</u>
    <b>Please read the following documentation to get the clear difference</b>
    Transaction Variants and Screen Variants
    Transaction variants can simplify transaction runs as they allow you to:
    Preassign values to fields
    Hide and change the 'ready for input' status of fields
    Hide and change table control column attributes
    Hide menu functions
    Hide entire screens
    In particular, hiding fields in connection with screen compression, and hiding screens, can result in greater clarity and simplicity.
    Transaction variants are made up of a sequence of screen variants. The field values and field attributes for the individual screens found in transaction variants are stored in screen variants. Each of these variants is assigned to a specific transaction, can, however, also contain values for screens in other transactions if this is required by transaction flow. The transaction that the variant is assigned to serves as initial transaction when the variant is called.
    There are both client-specific and cross-client transaction variants. All screen variants are cross-client, but may be assigned to a client-specific transaction variant.
    A namespace exists for cross-client transaction variants and screen variants and both are automatically attached to the Transport Organizer. Client-specific transaction variants must be transported manually.
    In principle, transaction and screen variants can be created for all dialog and reporting transactions. There are, however, certain Restrictions that apply to certain transactions, depending on their internal structure.
    No transaction variants are possible with transactions already containing preset parameters (parameter transactions and variant transactions).
    Screen variants
    Screen variants allow you to simplify screen editing by:
    Inserting default values in fields
    Hiding and changing the ready for input status of fields
    Hiding and changing the attributes of table control columns
    A screen variant contains field values and attributes for exactly one screen.  A screen variant can, howevever, be assigned to multiple transaction variants. Screen variants are always cross-client; they may, however, be assigned to a client-specific transaction. They can also be called at runtime by a program. The different possibilities for calling screen variants guarantee great flexibility of use.
    For more information, see: Calling Screen Variants
    A specific namespace has been designated for screen variants and they are automatically attached to the Change and Transport System.
    Hope this will help.
    Please reward suitable points.
    Regards
    - Atul

  • Syst variable for transaction variant?

    Hi,
      How to identify current transaction code with variant. We can't use sy-tcode as it shows orginal transaction code. Sy-slset is also empty allways?
    Thanks
    Shekar

    hi Reddy ,
    check the Documentation of SHD0.Its nothing but modifications of Screen fields.
    Regards
    Prabhu
    Transaction Variants and Screen Variants
    Transaction variants can simplify transaction runs as they allow you to:
    Preassign values to fields
    Hide and change the 'ready for input' status of fields
    Hide and change table control column attributes
    Hide menu functions
    Hide entire screens
    In particular, hiding fields in connection with screen compression, and hiding screens, can result in greater clarity and simplicity.
    Transaction variants are made up of a sequence of screen variants. The field values and field attributes for the individual screens found in transaction variants are stored in screen variants. Each of these variants is assigned to a specific transaction, can, however, also contain values for screens in other transactions if this is required by transaction flow. The transaction that the variant is assigned to serves as initial transaction when the variant is called.
    There are both client-specific and cross-client transaction variants. All screen variants are cross-client, but may be assigned to a client-specific transaction variant.
    A namespace exists for cross-client transaction variants and screen variants and both are automatically attached to the Transport Organizer. Client-specific transaction variants must be transported manually.
    In principle, transaction and screen variants can be created for all dialog and reporting transactions. There are, however, certain Restrictions that apply to certain transactions, depending on their internal structure.
    No transaction variants are possible with transactions already containing preset parameters (parameter transactions and variant transactions).
    Regards
    Prabhu
    PS : Customer is First Points next

Maybe you are looking for

  • SAP BPC 7.5 Netweaver - BI Transaction Data to BPC

    Hi, I have to add 0debit and 0credit in BI PCA cube to AMOUNT in BPC  using transformation file. Prefereably, want to use same data source(P_Datasrc) value and single transformation file. BI transformation is the last option to avoid any issues after

  • Need help in Module pool

    Hi Friends,           Can anyone give me the idea for creating module pool using 3 to 4 database tables.

  • F4 Help For the Custom Fields

    Hi Experts I have added few custom fields in custom includes (INCL_EEW* )   Those fields are like (LAND1, BLAND) from the T005S. I have used the same Data element for these fields. But I didnu2019t get any F4 help for these fields in the screen? Thes

  • How to set color for a particular column in advance table?

    How can we set the color of a particular column in advance table based on some parameter feteched from vo query in process request?

  • 8.8 B1 Certification - Need Advise

    Hello Experts, Currenty, I am a Certified SAP B1 Implementation Consultant ( 2007 Version) with good knoweldge with 8.8 as well. I went through the class room training materials for 8.8 . I am looking for giveup  8.8 Appilication Associate and Develo