How to design Label and Inputfield in 1 row?

Hi,
I want to design 1 Label and 1 Inputfield in 1 row in a Web Dynpro View.
The RootUIElementContainer is assigned MatrixLayout and the Labels and InputField are assinged in it.
But all are appearing in a single row as:
Label1:     Inputfield1                  Label2:             Inputfield2
Regards
Neha Singh

Hi Neha,
If your requirement is to have specified number of columns in a row then its better to go with GridLayOut.
For example Your requirement is to have 4 columns per row, then you can set the no of columns as 4 but now in 3rd row you want 2 columns only i.e one lable and one input field, in this case right click on input field-> properties then change the colspan to 3. This way you can achive two UI elements in four columns only.
Similarly you can have any number of UI elements in one row based on no of columns.
if you require more information i can help you.
Regards
Narendra

Similar Messages

  • Labels and inputfields in equal columns

    Hi, I have a hard time making my application look good. I want Labels and Inputfields to be sorted one under another in equal columns. Mostly I have a MatrixFlow with two labels and inputfields in a row. F.e:
    Label1         Inputfield1            Label2         Inputfield2
    Label2.1      Inputfield2.1          Label2.1      Inputfield2.1
    and this is how I want it to be, now it looks more like that
    Label1                Inputfield1             Label2                     Inputfield2
        Label2.1      Inputfield2.1                    Label2.1      Inputfield2.1
    and so on. Im aware of Padding left/right but since every single label or IF has different lenght it is hard to mach them in columns. thinking about setting it by pixels makes me sick as well. Ive been looking on example projects and there was no such problem like not even column so there must be some tool sorting it out and Im not aware of its existance. Please help

    Thanks for response. Im using Grid layout in some Transparent Containers but it does not solve the problem, making whole app as Grid would take way to much space Manoj.
    I tried to put 1.1 and 2.1 labels in one Transparent and it worked well, made it stuck to the left side, problem began again with inputfields, seems they are dependand on label lenght that way. Funny thing is when you see at example from sap it all looks fine in simple MatrixFlow and that's it.
    Screenshot below so you can see how it looks atm and I warn you it can make your eyes bleed
    (sorry for blackened fields but Im not allowed to show it to people yet. Black field has same lengt as label)
    [url]http://img147.imageshack.us/my.php?image=notitlehz5.jpg
    Edited by: Wojtek G on Jan 28, 2008 9:37 AM
    Edited by: Wojtek G on Jan 28, 2008 9:37 AM
    Edited by: Wojtek G on Jan 28, 2008 9:39 AM

  • How to design infocube and ods

    Hi all,
    How to design infocube and ods. What are the steps involved in this process. please send me to : [email protected]
    thanx in advance
    bhasakr

    Hi Bhaskar ,
    I found the following links which is very good as it shows how to create  infocube step by step from basic with snapshots.
    http://www.bridgeport.edu/sed/projects/cs597/Fall_2003/vijaykse/step_by_step.htm
    Also check the foll.
    http://www.awprofessional.com/articles/article.asp?p=28666&seqNum=3&rl=1
    http://help.sap.com/saphelp_nw04/helpdata/en/80/1a643fe07211d2acb80000e829fbfe/content.htm
    http://www.crestech.org/Crestech/CourseCatalog/Acrobat/Sap/sap_bw_80hrs.pdf.
    for creating ods objects
    http://help.sap.com/saphelp_nw04/helpdata/en/4a/e71f39488fee0ce10000000a114084/content.htm
    http://www.nesug.org/html/Proceedings/nesug04/pr/pr02.pdf.
    http://64.233.167.104/search?q=cache:cg6dvsTAmxUJ:www.vdestiny.com/CourseOutlines/PDF/The%2520Output%2520Delivery%2520System%2520in%2520SAS%2520Software%2520-%2520Basics.pdfcreatingods&hl=en&gl=in&ct=clnk&cd=10
    Please reward for the same.

  • How to Plot number and string in one row (data logger counter) ?

    hi all i made data log quantity using Digital Counter via modbus to monitoring quantity and reject that has and Name Operator, Machine and Part Number.
    i have problem about plot the number & string in one row, as shown on the picture below :
    how to move that string on one row ? i attach my vi.
    Thanks~
    Attachments:
    MODBUS LIB Counter.vi ‏39 KB

    Duplicate and answered - http://forums.ni.com/t5/LabVIEW/How-to-Plot-number-and-string-in-one-row-data-logger-counter-via/m-p...

  • How to design Label in Bex Query

    Hi to all,
    How to create label in query .
    i have designed a query which contain sales value for coffe1 coffe2 coffe3 and sales value for tea1 tea2 tea3 . But i need to group coffe1 coffe2 coffe3 under COFFE as label, and tea1 tea2 tea3 group under TEA as label example .
        COFFE  ( LABEL)            I        TEA  ( LABEL )
    coffe1 coffe2 coffe3         I       tea1  tea2  tea3
    1          4         6                 I        2       5       7
    2          5         7                 I        3       7      9
    i that can be done unde query designer or report designer or any other tool is for that.
    please can any one tell me how to do it and step's regarding that.
    i shall be thnakfull to you for this.
    Regards
    Pavneet Rana

    Thanks for reply.
    I have created already a cerated a structre under Columns and have displayed tea1 tea2 tea3 and coffe1 coffe2 coffe3 as selection and restricted with sales value.
    but when i execute query  it display like
      tea1 tea2 tea3 coffe1 coffe2 coffe3 .
    i need to group tea and coffe under TEA and COFFE label.
    can i do some thing in bex query designer.
    can i do it with text variable.
    I shall be thankfull for reply.
    Regards
    Pavneet Rana
    Edited by: pavneet rana on Oct 4, 2010 2:39 PM

  • How to design insertion and report for customers

    I develop a web application in which I provide a web interface for inserting a customer. I model this customer as a class and provide its attributes. I have functions like addCustomer that inserts a customer's details in DB and getDetails() that returns a customer's attributes as an array. I have designed this for dealing with a single customer.
    Now I want to list all customers from DB. I think another class should be created with a listing function that has multiple references(multiplicity) for the customer class. It is a easy task to retrieve all customer using a query and display it. But I don't know how to model this. I don't want to create one object for all available customers and display the details of each customer. Then How to model this and how to implement this using classes.
    Can U tell me a resource or article that handles similar task.
    Thanks.

    Hi,
    Create a POJO called customer ( plain java object which represent the persistant data ) and a Customer manager which is reponsible for retrieving a list of customer.
    So the Customer manager will deal with retrieving the customer list.
    Regards,
    Alan Mehio
    London,UK

  • How does one label and add description to multiple photos?

    How does one add label and description to multiple photos in one action as one could do in iPhoto?
    Bob Wines

    This link asks the same question,  https://discussions.apple.com/thread/6994338?searchText=How%20do%20I%20add%20a%2 0description%20to%20multiple%20photos?
    Someone shows the method to use AppleScript/ Automator to make Photos add the same description to multiple photos. I just opened up AppleScript editor and poked around the Dictionary for Photos and saw we have access to GPS longitude,latitude and altitude. So by using a third party app/web page to get those values, an Apple Script could be used to batch add the info to selected photos. That being said, I'm really busy these days and lack time to write scripts and migrate to photos.

  • How to design Forms and Reports using Oracle workflow 2.6

    Is it possible to design Forms & Reports for Data Entry and
    reporting purposes using oracle workflow standalone version?
    if so how?.
    Please helpme!! is veri urgent.

    Con este apellido seguro que entiendes el Espaqol.
    Mi empresa esta iniciando un proyecto con la tecnologia que
    estas buscando, es decir, Utilizar Forms y Reports para manejar
    las APIS de WorkFlow Server, hemos encontardo muchos problemas,
    el principal es que la API de WorkFlow es demasiado pequeqa para
    manipular todos los procesos de WorkFlow por este motivo nos
    hemos visto obligados a acceder a tablas y vistas del modelo de
    datos de WorkFlow.
    Saludos.

  • Multi-Language - How to change labels and titles of standard iViews?

    Hi Portal Content Management Gurus,
    I would like to know how to translate the text parts of the standard SAP provided iViews in order to support multiple languages?
    I tried the Translation Worklist Coordination and Translation Worklist facilities provided in the portal. But not able to figure out where I am making the mistake. I am not able to get the translated iViews. I also checked the "include dependent objects" option. But not able to find out where will the generated resource bundles will be available.
    Can any body guide me?
    Thanks & best regds,
    Alag

    Hi Saravanan,
    I just tried changing the browser language. I am not able to see the "Content Provided by SAP" folder itself under the "Portal-Content" directory.
    (1) Is there anything else I need to do in order to see that folder?
    And when I try previewing the iViews after changing the browser language, still the iView content is displayed in English.
    (2) Can I make a copy of this iView and edit change the language property to some other language say "German"? In that case, I will have to maintain multiple copies of the same object. But I tried creating a delta link copy of the object. But was not able to edit and change the language.
    (3) Or do I have to edit it in the par file of the corresponding iView?
    best regds,
    Alagammai.

  • How to design fact and dimension tables

    Hi Team,
    Please provide me some useful links!!
    I have a Parent & Child table each has around 8 Million records (1 to many relation).  These two tables need relation with many other master tables to generate any report. 
    I want to desing a fact and dimension(s) for this parent & Child tables.  
    Please help me what are the things I have to keep in mind when desingning datawarehouse fact and dimension tables?
    Thanks,
    Ali

    Hi, any update on this?

  • How I can edit and then update multiple rows via JSP to Action Class?

    Hi All,
    I have a JSP page which allows users to edit the some properties for all Object returned by the db. They can then submit the changes to a Action Class which i.e.
    <form action="/SaveUserNames">
    <table>
    <c:forEach items='${requestScope["users"]}' var='user'>
    <tr align="center">
    <td><input type="text" name="userBean[ i ].firstname" value="..."/></td>
    <td><input type="text" name="userBean[ i ].surname" value="..."/></td>
    </tr>
    </c:forEach>
    <tr>
    <td><button type="submit">Save</button></td>
    </tr>
    </table>
    </form>
    In the ActionForm, there is a method, which would allow the Struts code to update my beans with the data the user editted:
    public UserBean getUserBean(int i) {
    return userBeanList.item(i);
    Although I am not sure how I can update the beans in the Action Class with what the user submitted.
    Can somebody help me for this point or can me suggest any design pattern to solve this points?
    Thanks
    Amit

    Fetch values for each user data and put into a Hashtable and then update.
    Userid is the key
    User related data is the bean (like firstname, lastname, age, job, etc), so you have ArrayList of user bean.

  • How to Plot number and string in one row (data logger counter via MODBUS) ?

    hi all i made data log quantity using Digital Counter via modbus (RS-485) to monitoring quantity and reject that has and Name Operator, Machine and Part Number.
    i have problem about plot the number & string in one row, as shown on the picture below :
    how to move that string on one row ? i attach my vi.
    Thanks~
    Solved!
    Go to Solution.
    Attachments:
    MODBUS LIB Counter.vi ‏39 KB

    Hi rhiesnand,
    right now you add 2 new rows to your array.
    The solution is to concatenate both row parts to one bigger 1D array before adding that array as new row to your 2D array!
    Like this:
    Best regards,
    GerdW
    CLAD, using 2009SP1 + LV2011SP1 + LV2014SP1 on WinXP+Win7+cRIO
    Kudos are welcome

  • How to make selected and active a child row of a treeTable?

    Hello,
    I am inserting a new child row into a af:treeTable, disclosing it, but I can't figure out how to make it selected and active so the focus of the user to go on it.
    Jdeveloper version 11.1.2.3.0
    This is how I am inserting the child node:
    public void createLocation(RowIterator ri, Key selectedNodeKey) {
            final String locationCategoryViewDef = "model.views.LocationCategoryView";
            if (ri != null && selectedNodeKey != null) {
                Row[] found = ri.findByKey(selectedNodeKey, 1);
                if (found != null && found.length == 1) {
                    Row foundRow = found[0];
                    String nodeDefname = foundRow.getStructureDef().getDefFullName();
                    RowSet parents = (RowSet)foundRow.getAttribute("LocationView");
                    Row childrow = parents.createRow();
                    //hardcoded locationId
                    childrow.setAttribute("LocationId", 434558);
                    parents.insertRow(childrow);
    }  And this is the treeTable:
    <af:treeTable value="#{bindings.LocationCategoryView2.treeModel}" var="node" varStatus="vaarr"
                  partialTriggers="gaga gag4a ga4a"
                  selectionListener="#{bindings.LocationCategoryView2.treeModel.makeCurrent}"
                  displayRow="selected" rowSelection="single" id="tt1" editingMode="clickToEdit"
                  horizontalGridVisible="true" binding="#{pageFlowScope.treeTableBean.sampleTreeTable}">
        <f:facet name="nodeStamp">
            <af:column id="c5" width="15">
                <af:outputText value="#{node}" inlineStyle="display:none" id="ot1"/>
            </af:column>
        </f:facet>
        <f:facet name="pathStamp">
            <af:inputText value="#{node}" id="ot2"/>
        </f:facet>
        <af:column id="c2" headerText="Location CategoryName">
            <af:inputText value="#{node.LocationCategoryName}" inlineStyle="font-weight:900" id="ot45"/>
        </af:column>
        <af:column id="c6" headerText="Location CATID">
            <af:inputText value="#{node.LocationCategoryId}" inlineStyle="font-weight:900" id="ot6"/>
        </af:column>
        <af:column id="cgg2" headerText="Var INDEx">
            <af:outputText value="#{vaarr.index}"/>
        </af:column>
        <af:column id="c1" headerText="Location Name">
            <af:inputText value="#{node.LocationName}" id="ot3"/>
        </af:column>
        <af:column>
            <af:panelGroupLayout layout="vertical">
                <af:commandLink id="gaga" text="addLocation" inlineStyle="color:red"
                                action="#{pageFlowScope.treeTableBean.createChildren}"
                                rendered="#{node.LocationId == null}" partialSubmit="true"/>
                <af:commandLink id="gag4a" text="delete category" inlineStyle="color:blue"
                                partialSubmit="true" rendered="#{node.LocationId == null}"
                                action="#{pageFlowScope.treeTableBean.deleteChildRow}"/>
                <af:commandLink id="ga4a" text="delete location" inlineStyle="color:green"
                                partialSubmit="true" rendered="#{node.LocationId != null}"
                                action="#{pageFlowScope.treeTableBean.deleteChildRow}"/>
            </af:panelGroupLayout>
        </af:column>
    </af:treeTable>

    Yes I did now but nothing changes. The current, selected and active row is still the parent node...
    Even I am adding AdfFacesContext.getCurrentInstance().addPartialTarget(this.sampleTreeTable); for just in case..

  • How to display ID and Type in a row instead of column

    I have a table A with ID_NO, TYPE, PUBID(foreign key).
    The type can be CAT, ISBN, ISSN. I also have another table B with PUB_ID (primary key) and a lot of other details.
    The requirements are to display the results as rows like this:
    PUB_NO | CAT | ISBN | ISSN
    222 | abc | qwe | zxc
    I know it would be easy to display like this:
    ID_NO | TYPE | PUB_NO
    abc | CAT | 222
    qwe | ISBN | 222
    zxc | ISSN | 222
    But I need it in a row instead. I was thinking of getting all PUB_NOs and looping through each to get the rest in a PL/SQL procedure but is this the best approach?
    I can't wrap my head around this. I'm not a DB expert and I haven't done any PL/SQL in a very long time.
    Thanks for your help
    Marcel

    John:
    <quote>
    I did point out the need for unique types in my original post with the MAX/DECODE solution.
    </quote>
    Indeed, you did. Sorry about that ... I looked closely only at your last post with the two SQLs and missed the caveat you had included in the first post.
    :o) ... couldn't stop myself ... one last loose [but reasonable?!?!] thing [I can think of] to keep those 2 sql different:
    insert into pubDetail values (333,'333');
    …
    flip@FLOP> select * from pubDetail;
     
        PUB_NO PUB_DATA
           111 111
           222 222
           333 333
     
    flip@FLOP> select * from test_a;
     
    ID_NO      TYPE           PUB_NO
    abc        CAT               111
    def        CAT               222
    qwe        ISBN              111
    xyz        ISSN              222
     
    flip@FLOP> SELECT d.pub_no, a.cat, b.isbn, c.issn
      2  FROM pubDetail d,
      3       (SELECT pub_no, id_no cat
      4        FROM test_a
      5        WHERE type = 'CAT') a,
      6       (SELECT pub_no, id_no isbn
      7        FROM test_a
      8        WHERE type = 'ISBN') b,
      9       (SELECT pub_no, id_no issn
    10        FROM test_a
    11        WHERE type = 'ISSN') c
    12  WHERE d.pub_no = a.pub_no(+) AND
    13        d.pub_no = b.pub_no(+) AND
    14        d.pub_no = c.pub_no(+)
    15  ;
     
        PUB_NO CAT        ISBN       ISSN
           111 abc        qwe
           222 def                   xyz
           333
     
    flip@FLOP> SELECT d.pub_no
      2        ,MAX(DECODE(a.type, 'CAT' , id_no)) cat
      3        ,MAX(DECODE(a.type, 'ISBN', id_no)) isbn
      4        ,MAX(DECODE(a.type, 'ISSN', id_no)) issn
      5  FROM   pubDetail d, test_a a
      6  WHERE d.pub_no = a.pub_no
      7  AND   a.type IN ('CAT', 'ISBN', 'ISSN')
      8  GROUP BY d.pub_no
      9  ;
     
        PUB_NO CAT        ISBN       ISSN
           111 abc        qwe
           222 def                   xyzHope you take this only as a bit of humor [about incomplete requirements] … I like your stuff!

  • How to design sequence number and sub sequence number

    Hi
    I am creating DMEE for bank file, there is sequence number and sub sequence numbers in the file.
    File structure
    Aaa name 0001 tax id amount
    Bbb name 00010001 dnum amt
    Bbb name 00010002
    Bbb name 00010003
    Aaa name 0001 tax id amount
    Bbb name 00020001
    Bbb name 00020002
    Could you please help me on how to design sequence and sub sequence number in DMEE structure.
    Regards,
    Guna

    Hi,
    please find seqence number and sub sequence number in below file structure.
    Aaa name 0001(Seq. num) tax id amount   -------------------------------------header
    Bbb name 0001(Seq.num)0001(sub seq num) dnum amt---------------- item
    Bbb name 0001(Seq.num)0002 (sub seq num) ---------------- item
    Bbb name 0001(Seq. num) 0003(sub seq num) ---------------- item
    Aaa name 0001(Seq. num) tax id amount                  --header
    Bbb name 0002(Seq. num)0001(sub seq num)---------------- item
    Bbb name 0002(Seq. num)0002(sub seq num)---------------- item
    TRL
    Please help me to design sub sequence number and sequnce number again in the item details.
    Best regards,
    Anji

Maybe you are looking for

  • Problematic frame: # J java.nio.MappedByteBuffer.load()

    Helo all... I'm getting an error when generating a PDF using BIRT Framework in Eclipse. Nothing fancy, just compiling a simple report to pdf. The problem is, the JVM crashes with the following error: # A fatal error has been detected by the Java Runt

  • Problem with tree

    Hello, first I want to say, that I have read the how-to for tree creation but I still have some problems. I have a table with YEAR, MONTH, LOCATION, DATA example entry: 2002, 1, NY, test 2002, 1, NY, test2 2002, 2, NY, test 2002, 2, LA, test 2002, 3,

  • BPS variables and API_SEMBPS_GETDATA

    Hi, everybody! I've faced with the following issue. I have two planning levels. I have three variables: ZVPYEAR "Year of planning" (based on 0CALYEAR), ZVPRESP "Responsible person" (based on ZRESP) and ZVPWBS "WBS-element" (based on 0WBS_element), as

  • Billing block in periodic billing

    Hii all, Need a solution for the following project scenario. We have a scenario where periodic billing is involved through project. In the sales order we assign the WBS element in account assignment. After assigning the WBS element, billing is blocke

  • LR 4 Serial number doesn't work

    I have been using my LR4 for the past year and a half or so and it has been working great. Until recently, I tried to open the program and it took me to the Welcome to Adobe LR screen. Then asking to either buy a new serial number or typing in an exi