Value attributes order in the table

hi experts,
       i want to design a table as per the client specific.all i need is order is..after creating value attributes in the context,dragging from node to view,am not getting as required by the client.i want to set the table colums as specified in the requirements.Please guide me in this regard.
thank's@regard's,
Prashanth

Hi
Go to the outline view of your view for your layout. Right click the column and do 'Move up/down' based on your requirement.
If your outline view is not open then go to Windows->Open View->General->Outline and open the outline view. Then open the View editor(designer) of your View and select the Layout tab. In the outline view you'll see all the UI elements of your view. Go to the table in question and move up/down the columns by right clicking them.
Regards,
Ajay

Similar Messages

  • The order of the table columns to Srini Chavali

    OK I made a mistake Srini Chavali.
    So why dont you try to help me now beyond just warn me about burocratic issues, what you really should had done instead just to block the answers of my former question ?
    The question is:
    How to influence the order of the table columns in time of transformation logic to relational ?
    Nelson Alberti da Rosa

    because exist an order among primary key columns that was definied in the logical model and it he can't see that.fixed :
    function addPKcolumns(list,table){
         pk = table.getPK();
         if(pk!=null){
              pcols = pk.getColumns();
              for(var i = 0;i<pcols.length;i++){
                   col = pcols;
                   //in fact don't need this check, because PK columns are processed first
                   if(!list.contains(col)){
                        list.add(col);
    function addFKcolumns(list,fkeys){
         for(var k=0;k<fkeys.length;k++){
              fcols = fkeys[k].getColumns();
              for(var i = 0;i<fcols.length;i++){
              col = fcols[i];
              if(!list.contains(col)){
                   list.add(col);
    //adds mandatory or oprional columns to list depending on mand parameter
    function addMandatoryOptColumns(list,cols, mand){
         for(var i = 0;i<cols.length;i++){
              col = cols[i];
              if(col.isMandatory() == mand && !list.contains(col)){
                   list.add(col);
    tables = model.getTableSet().toArray();
    list = new java.util.ArrayList();
    for (var t = 0; t<tables.length;t++){
         list.clear();
         table = tables[t];
         cols = table.getElements();
         // add PK columns to list
         addPKcolumns(list,table);
         // add FK columns to list
         addFKcolumns(list,table.getFKAssociations());
         //add mandatory columns
         addMandatoryOptColumns(list,cols,true);
         //add optional columns
         addMandatoryOptColumns(list,cols,false);
         //use list to reorder columns
         ord_cols = list.toArray();
         for(var n = 0;n<ord_cols.length;n++){
              table.moveToIndex(ord_cols[n],n);
         //prevent reordering from enginnering, can be changed with UI
         table.setAllowColumnReorder(false);
         table.setDirty(true);

  • How to remove the approved order from the table in sapui5

    Hi Experts,
      how to remove the approved order from the table in sapui5.
    After Approving the order how to remove the order from the table in sapui5.
    Please help me.
    Thanks & regards
    chitti Babu

    Hi,
    Probelm is OBIEE on your machine.Some one might have deleted pdf option.
    Refer : http://obiee101.blogspot.com/2009/07/obiee-dashboard-default-controls.html
    Try to find out tag that is to be removed from controlmessages.xl so that you have only HTML.
    Update :
    Stop BI Server.Try removing below tag and restart server.
    (sawm:if name="enablePDF">(a class="NQWMenuItem" name="pdf" href="javascript:void(null)" onclick="return PortalPrint('@{pdfURL}[javaScriptString]',@{bNewWindow});">
    <sawm:messageRef name="kmsgDashboardPrintPDF"/></a)</sawm:if)
    Regards,
    Srikanth
    Edited by: Srikanth Mandadi on Apr 19, 2011 3:36 AM

  • Consumption values get updated in the table MVER

    Hi,
    Can anyone explain me how the consumption values get updated in the table MVER?
    If you have any doucments,it will be better......
    Thanks
    Srini

    hi,
    When ever you do the GR for the consumption postings, the material gets updated in the respective table...
    You can see the table in SE16 tcode...
    There is ABAP coding linkages, in which all the fields are stored in the forms of tables in the std sap system...
    Hope it helps...
    Regards
    Priyanka.P
    I request you to close the threads once you get the satisfied answers...

  • Implementing a varchar multi-valued attribute for my customer table

    I usually used to implement numerical multiple value attributes for my customers, such as phone number by having a separate table, as below:-
    •     >>Desc customer (PK)
    Customer_ID
    Customer_Fname
    •     >>Desc Customer_Phone
    Customer_ID
    Phone_number
    Phone_Type
    Where both PK (Customer_ID & Phone_number)
    But now i want to have a varchar multiple value attribute called preferences (such as reading, shopping, swimming, etc)
    So here should i design my Customer_Favorite as
    Desc customer_favourite Favourite_desc
    Cusomet_ID (FK)
    Having PK (Favourite_desc & Cusomet_ID)
    Or
    Desc customer_favourite
    Favorite_ID
    Favourite_desc
    Cusomet_ID
    Having Favourite_ID as PK, TO AVOID HAVING A VARCHAR FIELD IN MY pk as in the first approach.
    Thanks

    user11120147 wrote:
    I usually used to implement numerical multiple value attributes for my customers, such as phone number by having a separate table, as below:-
    •     >>Desc customer (PK)
    Customer_ID
    Customer_Fname
    •     >>Desc Customer_Phone
    Customer_ID
    Phone_number
    Phone_Type
    Where both PK (Customer_ID & Phone_number)
    But now i want to have a varchar multiple value attribute called preferences (such as reading, shopping, swimming, etc)
    So here should i design my Customer_Favorite as
    Desc customer_favourite Favourite_desc
    Cusomet_ID (FK)
    Having PK (Favourite_desc & Cusomet_ID)
    Or
    Desc customer_favourite
    Favorite_ID
    Favourite_desc
    Cusomet_ID
    Having Favourite_ID as PK, TO AVOID HAVING A VARCHAR FIELD IN MY pk as in the first approach.What's wrong with having a varchar as the PK???
    ThanksDesign to Third Normal Form.
    Edited by: EdStevens on Jul 9, 2011 2:45 PM

  • Query the values not exist in the table

    We have a table AP_INVOICES_ALL where we have a column INVOICE_NUM, now we are searching INVOICE_NUM from a large set of values of INVOICE_NUM provided by the user.
    I want a query to find the INVOICE_NUM values supplied by user that doesn't exist in AP_INVOICES_ALL table.
    Database version : 11g
    OS : aix 6.1
    Regards,
    Gaurav

    Hi,
    If you are getting values in the table then the above solution is there but if you are getting the values in excel or text file then you need to upload the data into the table by using sql loader or by using external table.
    if the case then
    load data from excel or plain file into oracle table by using sql loader.(loader is server based utility)
    create table in oracle like create table table_name as column specification.
    If you have excel then save it as .csv file and create sql loader control file like
    oPTIONS (SKIP=1)
    load data
    infile 'Path_where_you_saved_csv_file'
    truncate
    into table table_name_you_have_created
    fields terminated by ','
    optionally enclosed by '"'
    trailing nullcols
    (your_column_name)
    {code}
    call control file from command prompt from the path where your control file and csv or plain file resides.
    {code}
    sqlldr userid=user_name/passowrd@database_name control=control_file_name
    {code}
    above will insert data into table.
    now you can use the select query...                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

  • Showing values in  (1000) in the table and full values in graph

    Hi ,
      I have a requirement in which the amt need to be shown in table in 1000 for example , if the amt is 10000 , it should be shown as 10 in the table , while in graph below the table , it should be shown as 10000 . Any idea , how to do it . Is there any way , we can calculate at the table level .

    Can you explain us the rqmt in clear,it is bit confusing

  • Base value not flowing in the table

    Dear Experts,
    It is noticed that while creating excise invoices in SAP of exempted goods the base value does not pass into relevant table J_1iexcdtl in transaction type DLFC.
    Please provide any solution.
    thanks in advance

    Dear Experts,
    It is noticed that while creating excise invoices in SAP of exempted goods the base value does not pass into relevant table J_1iexcdtl in transaction type DLFC.
    Please provide any solution.
    thanks in advance

  • Insert value with quotes into the table

    Hi,
    How can I insert a value along with quotes into a table column of type varchar.
    Meaning..I want to insert the value 'TEST' including the single quotes.
    Regards,
    Murali Mohan

    It only a matter of using the correct number of quotes. to insert 'TEST' you use 3 quotes on each end
    example: '''TEST'''
    Hi,
    How can I insert a value along with quotes into a table column of type varchar.
    Meaning..I want to insert the value 'TEST' including the single quotes.
    Regards,
    Murali Mohan

  • Tell me the tcode for the values r coming into the table J_2IACCBAL?

    Hi expers,
    some values r wrongly entered in the J_2IACCBAL table.These values r coming from which tcodes.
    pls give me the tcode.

    Hi Ram,
    Please check the below link:[http://72.14.235.132/search?q=cache:5IeHcrP1C88J:help.sap.com/bp_bblibrary/470/Documentation/J33_BPP_32_CHEM_EN_IN.docuploadexciseregisterbalances&cd=1&hl=en&ct=clnk&gl=in]

  • Get highest value from 1 of the tables in a join between 2 tables

    Hi,
    i want to join 2 table:
    - SALES
    - MATERIAL
    These table are joined by:
    - Material ID
    - Sales date -> start date
    The problem is that it could be that 1 sales can have 2 records in material, but what i need to have is the latest record from material (highest date sequence number in material table)
    I tried to aggregate and then put a max on sequence number, but that's not going to work. Does anyone have an idea how to get the highest number within a join?
    regards,
    Osman

    Euh may be to speed.
    Join it back first to your material and then to your sales table,
    And also if you are in a SCD2, you can also simply made a simple select on the boolean column or on the end date.
    Cheers
    Nico

  • Value Already Exist in the Table

    Hai To All,
              In my screen iam having header and detail part. While updating the header part there is an error throwing "This entry already Exists in the Follwing Tables ("Mytablename") Error 131-183 "..
    Does any one have idea..........Reply me its urgent!!!
    Regards,
    Anitha
    Message was edited by:
            ani nazir

    Hi....
               U  have any openings in ur company (technical consultant) plz let me know..
    Thanks...
    Chiyan
    Edited by: chiyan silk on Dec 31, 2007 10:15 AM

  • Not able to change the name of the attribute of the Table operator.

    We are trying to create OMB scripts to automate certain tasks. As a part of this, there is a requirement to change the attribute name of table operators (which by default gets the name of the column). It is possible to change the attribute name from the GUI. But I was not able to do the same using OMB Scripting. Here is the script I used.
    OMBALTER MAPPING 'TEST' \
    MODIFY ATTRIBUTE 'GEOGRAPHY_ID' OF GROUP 'INOUTGRP1' OF OPERATOR 'TEST' \
    SET PROPERTIES(BUSINESS_NAME,PRECISION,DESCRIPTION) \
    VALUES('MEMBER_ID',2,'MEMBER')
    This script was to change the name of the attribute - GEOGRAPHY_ID of the table operator TEST.
    From what I can make out from the Scripting reference, changing BUSINESS_NAME of the attribute should do the trick but it is not happening. The syntax looks correct as the precision of the column changes.
    Am I missing something? Or is it a limitation or a bug?
    I use OWB client 10.2.0.1.25 and OWB repository 10.2.0.1.0.

    Hi!
    I'm using successfully
    OMBALTER MAPPING '$mapName' MODIFY ATTRIBUTE '$attrName' OF GROUP '$groupName' OF OPERATOR '$joinName' RENAME TO '$newName'
    Regards,
    Carsten.

  • Values in the table

    Dear experts,
      I had created a table in development client and inserted the values when we transport the table to the production system ,wheather the table along with values are be trasported or it will transport only table without values
    thanks in advance
    karthik

    Hi,
    You can transport the table contents only from customizing client but not from development client. After creating a table
    Go to customization client --> use T-Code SM30 (Table maintenance), enter table name --> create new  entries there --> save the records --> system will ask you for a new CR --> Create a new CR for table contents then an object with Program ID R3T3 and Object type TABU and table name will be added automatically in your CR. This will not work in case of development client.
    Note: maintenance generator should be created choosing Recording routine as Standard recording routine.
    While transporting, table should be transported from development client then the table contents should be transported from customizing client.
    Cheers,
    Venkat.

  • HR API User Hooks - Can I use to change a value in the table the API for?

    I am trying to initialize a descriptive flexfield on per_all_people_f. I originally tried doing the initialization using a “before row insert” database trigger directly on the table per_all_people_f. Seems to work great in the People form (PERWSHRG), but does not seem to work consistently when a new employee is entered through a template like Enter Employees (PERWSQHM).
    Does anyone know if you can use an API User Hook to initialize a value on one o the tables the API is inserting? For example, could I put a "Before Process" user hook on the "Create_ Employee" API to change the value of a descriptive flexfield?
    Any other good ideas?
    Currently I have a concurrent request that runs once every 30 minutes to default the descriptive flexfield. The delay is causing issues.

    In such cases you should write the code to default the values in the front end PUIs. As one person pointed out, User hooks are provided either to validate the already entered values, or to insert/update data in some custom tables but not for updating values in the same table where data is being inserted/updated.
    BTW for your information:-
    Person form (People Enter and Maintain) does not use APIs so anything written inside the user hook would be ignored by the application when this form is used. (The reason is this is one of the oldest form in HRMS, was created even before the concept of user hook came).
    Template form PERWSQHM uses APIs, so user hook is called when this form is used to create/update the data.
    Hope this is useful.

Maybe you are looking for

  • Is there a way to remove the Personal Hotspot Wi-Fi password?

    I've recently spoken with an Apple Customer Service rep, and from our exchange, he told me there's absolutely no way to remove the password once you've set something in. Insofar with my research, the only way you can have a P.Hotspot without a passwo

  • Repair utility says to load the disk, but no disk is provided.

    The Lion comes as a downloard, no disk. But the repair utility says to insert the disk to to the repair. I asked tech support if that were true. She said it was not true. I asked them to change the instructions to reflect what one really needs to do

  • Bridge/photoshop probelm

    I have creative suite 3 installed on my work computer which is a dell xps 420 and I have it installed on my home computer which is a dell inspiron 530s. On my work computer in bridge I can go to the tools menu and select Photoshop and then functions

  • Ps3 corrupted? stops at 42% every time

    Hi My ps3 keeps freezing at 42% when it attempts to restore the files. Anyone know how to fix this?

  • Updated demo - grocery store?

    Hello. Trying to make some web services connect to OID. I'm not familiair with OID so I grabbed the Grocery demo and tried it. It seems that it was written or 8.x versions of the App Server. As I walk through the setup, I see references to Net8 Confi