Bringing two input fields under one long input field

HI
I have a input field (which is for description 40 chars long).
in my next row.. i have data and time.. i want this data and time input fields to be exactly under the description input field.
I am using Matrix layout... can u tell me how to acheive this. pls..
right now.. i see there is a gap between the data lable and data input field...  so its not coming under the input field of description.
thanks
Niraja

make changes in properties  as matrix header data.( it come as new line)
  matrix data it will come as flow layout, one  after one.
Hope this helps you.
Regards,
sarath

Similar Messages

  • I seam to have two Apple accounts under one email address. Can I delete the old one?  How do I do this?

    I seam to have two Apple accounts under one email address. Can I delete the old one?  How do I do this?

    KBS wrote:
    I seam to have two Apple accounts under one email address.
    Are you sure ? As far as I know an Apple ID can only be associated with one email address.
    Go to My Apple ID and click Manage your account
    KBS wrote:
    Can I delete the old one?
    Apple IDs cannot be deleted.
    Anything Downloaded with a Particular Apple ID is tied to that Apple ID and Cannot be Merged or Transferred to a Different Apple ID
    More Info  >  http://support.apple.com/kb/HT5622
    And here >  http://www.apple.com/support/appleid/

  • Is there a way to have two payment cards under one apple id

    Is there a way to have two payment cards under one apple id? 

    You're confusing icloud and itunes store accounts.  Individual users should have their own icloud accounts (using their Apple ID) but multiple users can share the same ID for logging into the itunes store account.

  • Is it possible to have two apple loans under one account?

    So back in June my mum took up apple finance so I could get a macbook and pay her each month (I was under 18 at the time and have no credit history) and that went through within a minute no issues..
    Now I face another issue, I want the new iphone 5s but still within my current iphone 5 contract I can't get out of but that aside my question is:
    Is it possible to have two apple loans under one bank account? (the iphone one being much smaller than the existing mac loan)
    If not, I'll simply have to save up £700.
    Thanks~

    Hi babowa,
    The reference to two Apple loans led me to believe it was two Apple finance deals in conjunction with, for example, a Barclays Bank tie-up as we appear to have here in the UK.   As you suggest, the payment is a matter between the poster and his mom, but I think that behind all this is the question of whether the poster's mom can have two separate accounts in this way.   Which of course, she can.

  • Two company codes under one controlling Area

    In this client, we have two company codes under one controlling Area
    Will there be any authorisation issues (ie getting the information of other company code date) in Co reports (z reports, standard reports, report painter)?
    Any thoughts on this is helpful for me.
    Thanks
    Aruna

    HI,
    Authorization is a flexible tool used to have control as per organization policies.
    For your specific requiremnt u can set the profiles with Technicals persons help with the desired authorizations . Authorization can be set for single company code or multicompany codes as per our requirement.
    You can make a authorization profile/s and assign the desired roles.
    Warm Regards

  • How can I create multiple fillable fields under one label?

    I have a from which requires identical fields to be entered. For instance, I have one column for Name, one for Title, one for Phone and one for Email. Right now I have redundant rows of labels that are taking up valuable space on the form. Rather than repeat the labels above each field, I would like to include 6 fillable fields under one label. Is this possible? See example below:
    Name
    Title
    Phone
    Email
    (Fillable field)
    (Fillable field)
    (Fillable field)
    (Fillable field)
    (Fillable field)
    (Fillable field)
    (Fillable field)
    (Fillable field)
    (Fillable field)
    (Fillable field)
    (Fillable field)
    (Fillable field)
    (Fillable field)
    (Fillable field)
    (Fillable field)
    (Fillable field)
    (Fillable field)
    (Fillable field)
    (Fillable field)
    (Fillable field)
    (Fillable field)
    (Fillable field)
    (Fillable field)
    (Fillable field)

    Formscentral doesn't support tables like that.
    To create a form in Acrobat, you'd normally start by using an application like InDesign or Word to create the layout and then convert to PDF, open in Acrobat, and add the form fields: Tools > Forms > Edit
    Post again if you can't get this to work. It's relatively easy to create an array of fields to create a table using Acrobat.

  • Getting two session varibles into one hidden form field

    In a hypothetical exaple, if my first session variable is kt_user_name and it's value is bestperson, and my second variable session is kt_exerreference and it's value is ex1a, I'd like have the value submitted in the hidden form field to be bestpersonex1a (without any spaces if possible). This is the code that I have for the hidden form field that submits the server variables:
    <br />
    <br />
    <form>
    <input type="hidden" name="exerreference" id="exerreference" value="<?php echo $_SESSION['kt_user_name'].$_SESSION['kt_login_user']; ?>" />
    <br />
    <br />But the form also has a php section above the head that seems to add the values to the databse. Here is the beginning of the code with the the first 4 values:
    <br />
    <br />// Add columns
    <br />$ins_exer1-&gt;setTable("exer1");
    <br />$ins_exer1-&gt;addColumn("user_name", "STRING_TYPE", "SESSION", "kt_user_name"."kt_login_user");
    <br />$ins_exer1-&gt;addColumn("exerreference", "STRING_TYPE", "SESSION", "kt_user_name");
    <br />$ins_exer1-&gt;addColumn("Shapes_present_with_target", "STRING_TYPE", "POST", "Shapes_present_with_target");
    <br />
    <br />My question is how do I also configure the code in the 2nd string of this "Add Columns" code to insert both server variables? When I put one server variable as the value in this code (0n line 2), it only inserted the one session varialbe value (not 2 as are in the form field). As you can see, I currently have "kt_user_name"."kt_login_user" which is givig me server errors.
    <br />
    <br />Here's another idea that didn't work yet:
    <br />
    <br />// Add columns
    <br />$user = $_SESSION['kt_user_name'].$_SESSION['kt_login_user'];
    <br />$ins_exer1-&gt;setTable("exer1");
    <br />$ins_exer1-&gt;addColumn("user_name", "STRING_TYPE", "SESSION", "$user");
    <br />$ins_exer1-&gt;addColumn("exerreference", "STRING_TYPE", "SESSION", "kt_user_name");
    <br />$ins_exer1-&gt;addColumn("Shapes_present_with_target", "STRING_TYPE", "POST", "Shapes_present_with_target");
    <br />
    <br />Any ideas on the correct syntax?
    <br />
    <br />Thanks for any help.</form>

    Günter,
    <br />
    <br />I think I did as you suggested. I put this as the form field:
    <br />
    <br />
    <form>
    <input type="hidden" name="exerreference" id="exerreference" value="<?php echo $_SESSION['kt_user_name']; ?><?php echo $_SESSION['kt_login_user']; ?> <br />" />
    <br />
    <br />and changed back the Add columns section to this:
    <br />
    <br />// Add columns
    <br />$ins_exer1-&gt;setTable("exer1");
    <br />$ins_exer1-&gt;addColumn("user_name", "STRING_TYPE", "SESSION", "kt_user_name");
    <br />$ins_exer1-&gt;addColumn("exerreference", "STRING_TYPE", "SESSION", "kt_user_name");
    <br />
    <br />The form does submit now, but only the kt_user_name server varible is showing up in the exerreference field of the databaswe, not also the kt_login_user server variable.
    <br />
    <br />Any ideas on what to do to get it working right? Do I need to modify the exerreference string in the Add columns section?
    <br />
    <br />Thanks - Dale</form>

  • Question: two trade marks under one vat id possible?

    Hello,
    i have a question
    is it possible to have two trademarks under one vat id in a sap system?
    and if yes, how much efford would it be to create such a construction?
    ( if you have any idea where this question would better fit, please don`t hesitate to point me the direction )
    Kind regards,
    Rainer

    Thank you Raghu,
    it seems to be possible but it would afford a lot of customizing.
    But anyway, now i have the indipendent answer from two persons.
    Kind regards,
    Rainer

  • Display concatenad fields under one column in alv.

    How can I concatenate three or four fields(Taken from different tables) and can display under one column in ALV report?
    I want to display:
    final_column = production orderStatusmaterial type+maintenance status (concatenation of four fields).
    production order: caufvd-aufnr
    status: tj02t-txt04
    material type: mara-mtart
    maintenance status:mara-pstat
    I want to display only final_column in my alv output screen.
    Kindly guide.
    Thanks and regards.
    Thanks and regards.
    Message was edited by:
            cinthia nazneen

    Please  go through the below   code and  do the same   for appearing  the   four fields  of different table into  One Field catalog at   Display  by Concatenating .
    DATA  :v_tmp  type  string .
    Loop at  itab1.
    Read table  itab2  key field1 = itab1-field1 .
    Read table  itab3  key field1 = itab1-field1 .
    Read table  itab4  key field1 = itab1-field1 .
    Concatenate  itab1-field1 itab2-field1 itab3-field1 itab4-field1 into v_tmp.
      fieldcatalog-fieldname   = 'V_TMP'.
      fieldcatalog-seltext_m   = 'Item change date'.
      fieldcatalog-col_pos     = 1.
      append fieldcatalog to fieldcatalog.
      clear  fieldcatalog.
    endloop.
    Reward points if it is usefull .....
    Girish

  • Need to find table/field behind "Item long text" field in Notes tab in FB70

    Hello,
    To print a custom FI invoice, I need to access the data entered in the "Item long text" field of the Notes tab in FB70. To test, I used 5000 characters in that field to make sure it stood out from the rest of the data. F1 help does nothing on that field, and even running an SQL trace (ST05) doesn't show the text in that field being entered into any table. I tried F1 on a nearby field and got a structure instead of a table, so I investigated the structure through SE11 but found no character field with such a large capacity. How else can I find where that field is stored?

    Thanks! It took a while, but with your help and a few other pages I managed to piece together an answer.
    Vinod helpfully explained that the text name is a concatenation of various fields, but didn't specify how to find the line item ID. If you go to table STXH (as hinted by Brad and confirmed [here|http://fuller.mit.edu/SAPWebDocs/LongComment.html]) and search for texts created today (or whenever you were testing), you'll see the text name ends in '001' after GJAHR, so the line item ID is '001' regardless of how many line items you enter in the invoice.
    Armed with that info, you can call READ_TEXT and loop through the results to concatenate the contents of each TDLINE field. (FB70 automatically breaks the user-entered text into different lines even if the user didn't press Enter, and each line gets its own record in the results.)
    Thanks again,
    Pedro

  • How do I set up two iTunes accounts under one apple ID?

    I would like to set up separate acconts for my son and daughter.  Both receive iTunes gift cards for birthdays and holidays and do not want the other to "send their money".  I have one apple ID number.  Is there a way to do this?

    Have a look here: http://www.apple.com/itunes/inside-itunes/2010/11/using-itunes-allowances-with-y our-kids.html
    Cheers.

  • HT1918 can i have two credit cards under one ITunes account?

    Cant figure out how to do it

    You can sync as many devices as you want to the same iTunes account, there is no limit.

  • Query about multiple connection pools under one database

    Hi,
    I have s query about connection pool, now we have a requirement,
    we have two schemas in one db, some data store in one schema, some in another schema,
    all tables are the same, but data is different, we want to retrive all data under two schemas,
    so we need two connection pools under one database,
    I have set two system DSN, and each connection pool was mapping to one DSN,
    but after I importing tables into RPD, when I view data, there is a dialog let me select connection pool. so If this, when we drag columns in answer, it will definitely get wrong.
    so how to realize this function about multiple connection pools under one database and we can get data normally.

    Hi,
    Try this step
    1)Better to create two different DSN for the same database with different user id and password
    2)now create multiple connection pool in the same database in u r RPD physical layer .
    also refer this link : for imporving performance
    http://obiee101.blogspot.com/2009/01/obiee-multiple-connection-pools.html
    http://gerardnico.com/wiki/dat/obiee/connection_pool
    Thanks
    Deva

  • Sorting an ArrayList based on the value of a field in one of the objects.

    Hi,
    I have the following problem:
    A server app returns an array list of simple objects with a bunch of fields.
    One of these fields is an int.
    How do I go about sorting the list based on the size of the int?
    Thanks in advance!

    Thanks a lot.
    The Comparator solution is actually ridiculously simple.....
    public class MyComparator implements Comparator {
    public int compare(Object o1, Object o2) {
         if (Integer.parseInt(((ZMData)o1).getAantalposts())>Integer.parseInt(((ZMData)o2).getAantalposts())) {
              return 1;     
         if (Integer.parseInt(((ZMData)o1).getAantalposts())<Integer.parseInt(((ZMData)o2).getAantalposts())) {
              return -1;     
         return 0;
    }Thanks again.

  • Deriving 1 Value from 2 Fields Based on Values in Fields

    I have a query that needs to return 1 of my values based on the values from 2 fields from 2 tables. However, the value should only be returned in 1 field and one of the fields should be evaluated first. If this first evaluated field has a certain value ('Y') then the other field is ignored.
    To be more clear, per the normal query below, what I want is to somehow, if possible, combine the case t2.el_contr and case t1.contr_type statements so that one field, say: mbr_contr_type_desc returns a value.
    So that if the value of t2.el_contr is 'Y' then 'SUB CHILD' is returned. It is important that this field should be evaluated first (If the value of it is 'Y' then the other field evaluation can be ignored). If this is not 'Y', then t1.contr_type should be evaluated and the values as listed below also returned to mbr_contr_type_desc.
    I know the following isn't correct, but it might better illustrate what I'm trying to do (the normal query is below this)
    case t2.el_contr
    when 'Y' then 'SUB CHILD'
    case t1.contr_type
    when 'A' then '1 PARTY MALE SUB'
    when 'B' then '1 PARTY FEMALE SUB'
    when 'C' then '2 PARTY MALE SUB'
    when 'D' then '2 PARTY FEMALE SUB'
    when 'F' then 'FAMILY MALE SUB'
    when 'G' then 'FAMILY FEMALE SUB'
    end as mbr_contr_type_desc
    In an Access query I would do the following in a column:
    iif([el_contr]='Y',"SUB CHILD',SWITCH([contr_type]="A","1 PARTY MALE SUB",[contr_type]="B" etc.))
    *NORMAL QUERY*
    select t1.ssn
    t1.type,
    t1.grp_id,
    t1.contr_type,
    t2.el_contr,
    case t2.el_contr
    when 'Y' then 'SUB CHILD'
    end as mbr_contr_type_desc_2,
    case t1.contr_type
    when 'A' then '1 PARTY MALE SUB'
    when 'B' then '1 PARTY FEMALE SUB'
    when 'C' then '2 PARTY MALE SUB'
    when 'D' then '2 PARTY FEMALE SUB'
    when 'F' then 'FAMILY MALE SUB'
    when 'G' then 'FAMILY FEMALE SUB'
    end as mbr_contr_type_desc_1
    from member_elig t1
    inner join grp_master t2 on
    t1.grp_id = t2.grp_id

    Perfect!
    Thanks, didn't know that existed. Still learning my way around pl/sql..
    One other (unrelated) question..when i hit the CTRL+LEFT ARROW* button in my SQL window, it will not tab back. This is really annoying! I have looked through PREFERENCES-EDITOR and can't seem to find any setting that will allow this. Do you know of any way to change this so I can tab backwards/fowards through code in the SQL window?
    Thanks for any suggestions!
    *Or CTRL+RIGHT ARROW for that matter..                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

Maybe you are looking for

  • HT203156 iTunes no longer syncs Aperture pictures with iPad & iPhone despite emptying iPod Photo cache in my Aperture library

    Tried to repair and even rebuild Aperture database as suggested in Help with iTunes Sync - Stuck on importing photos . . . and it does not help. I also have followed https://photoapps.expert/help/faqs/common-aperture-questions-issues-and-rep/aper tur

  • Creating new tables in Logical Standby database

    Hi I have a requirement to create new tables in logical standby database. These tables will not be present on primary database. Is it possible to do this ? I have a new schema already created which has the privilege to CREATE new table. I have stoppe

  • Once upon a time I could print

    I'm using an Epson Stylus Photo 820 and after buying a new IMAC several months ago I was able to print with no problem. Now I can print from Mail, Eudora and Safari but I am no longer able to print from Word, Excel, Powerpoint or Firefox. When I spok

  • Context Change & Explicit Context Change

    Hi        i need some info about Context Change and Context Handling, explisit context change how can we r defineing Thanks&Regards rajashekar

  • OAS Error while initializing

    I don't know where to post this message, because I have a very bad problem with OAS 4.0.8.1. My machine is a Pentium II-333 with NT 4 SP6 (Build 1381) 128 MB RAM and 190 Mb of swap space. I tried to run all OAS services with OAS Manager and command l