How can I relate the fields a table column to the headers of the columns in another table?

Here is my problem:
I have a table where the first column is a list of types of characteristics and I want to compare that column with a table which has some columns, each one with a type of charasteristic.
It's like relating a column to a file (the header file).
PD: My level is beginner.

Well I don´t want the space on both sides of the input text to be that big either so that doesn´t solve the problem.

Similar Messages

  • How can I promote a field in my form to a SharePoint 2010 list column and have it populated?

    Hello,
       I have created a form using some jquery, html and <td> tags. I would like to promote the fields that I am having users fill out in the form so that they appear in the list that the submitted form is writing to. Below is the code that I
    have written, with some help of a great tool (Forms 7), is there another tag or class that I can input in order for the field names to appear in the list? I'm trying to also create a workflow and without these fields being columns I'm at a loss. Please help
    <link  type="text/css" rel="stylesheet" href="//ajax.googleapis.com/ajax/libs/jqueryui/1.10.0/themes/start/jquery-ui.css" /> 
    <!-- Reference jQuery on the Google CDN --> 
    <script type="text/javascript" src="//ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js"></script> 
    <!-- Reference jQueryUI on the Google CDN --> 
    <script type="text/javascript" src="//ajax.googleapis.com/ajax/libs/jqueryui/1.10.0/jquery-ui.min.js"></script> 
    <!-- Reference SPServices on cdnjs (Cloudflare) --> 
    <script type="text/javascript" src="//cdnjs.cloudflare.com/ajax/libs/jquery.SPServices/0.7.2/jquery.SPServices-0.7.2.min.js"></script> 
    <script type="text/javascript" src="http://www.sharepointhillbilly.com/demos/SiteAssets/jquery.Forms7-0.0.03.js"></script>
    <style type="text/css">
    .error
    {font-family:'Tahoma',sans-serif;font-size:10px;text-align:left;color:red;}
    </style>
    <script type="text/javascript">
    $(document).ready(function() {
        //Initialization function. Tells Forms7 which Query String Variable
        //has the ID of the form, and the name of the list to read data from
        $("#sampleForm").Forms7Initialize({
    queryStringVar: "formID",
    listName: "Contacts"
    //helper function to load a drop downlist
    //assumes there is a list called "States"
        $("#PassSelect").Forms7LoadDDL ({
    listName: "Passengers",
    firstOptionText: "Select",
    fieldName: "Title"
       //apply the jQueryUI calendar to the DepartDate field
    $( "#DepartDate" ).datepicker({
               changeMonth: true,
               changeYear: true,
            //apply the jQueryUI calendar to the ReturnDate field
    $( "#ReturnDate" ).datepicker({
               changeMonth: true,
               changeYear: true
    //function to load the city drop down list to only show cities for the selected state
    function LoadCities(stateID)
    //helper function to load a cascading dropdown list
    //in this example it would load Cities from a list called "Cities"
    //where that list had a lookup field called "State" and it would
    //use the ID of the selected State
    //    $("#CitySelect").Forms7LoadChildDDL({
    // parentID: stateID,
    // parentField: "State",
    // listName: "Cities",
    // firstOptionText: "Select City",
    // fieldName: "Title"
    function SubmitForm()
    //When the form is submitted store it to the specified list
    //also pasas in the x and y offset of error messages for elements
    //this allows you to change their location in reference to the form field
    $("#minimalForm").Forms7Submit({
    listName: "Reservations",
    errorOffset"Apple-tab-span" style="white-space:pre;">    
    errorOffsetnbsp;           completefunc: function(id) { 
    alert("Save was successful. ID = " + id);
    window.location = window.location.pathname + "?formID=" + id; 
    </script>
    <div id="minimalForm" >
    <table width="100%" cellpadding="10" cellspacing="0" >
    <tr bgcolor="white">
    <div id="minimalForm" >
    <br><img src="http://BannerImage.jpg"  width="400" height="160" alt="AltImageName" align="middle">
    <font size="6">Vehicle Request Form</font>
    <font size="1">Last Modified: 03/21/2014</font></br>
    <hr><b></hr></b>
    <p>
    </p>
    <hr>
    <br><font size="3"><b>Forms on File</b></u></font></br>
    <hr>
    <font size="2"><b>NOTE:</font></b> <font size="1">The following forms must be on file with Human Resources before you can use a vehicle. Only fill out the third form if you need to notify HR about any activities
    that may affect your eligibility to operate a motor vehicle
    </font>
    <br><a href="url"><font size="3">1) Driver's History Consent Form </a>
    <br><a href="url"><font size="3">2) Driver Qualification Procedure Acknowledgement Form</a>
    <br><a href="url"><font size="3">3) Driver Qualification Procedure Notification</a>
    <br>
    <br><font size="1"><b>These forms must be signed and submitted to Human Resources every 6 months.</font></b>
    <br><font size="1">Do you currently have these forms on file with Human Resources?</font> 
    </font>
    <hr>
    <table>
    <td><font size="3"><b><u>Driver Information</b></u></font></td>
    </table>
    <table>
    <tr bgcolor="white">
    <br>
    <td class='formLabel'>First Name:</td>
    <td class='formLabel'><input title="First Name" id='FirstName' data-displayname="DriverFirstName"class='required formInput' maxlength="40"></td>
    <td class='formLabel'>Middle Name:</td>
    <td class='formLabel'><input title="Middle Name" id='MiddleName' class='formInput' maxlength="1"></td>
    <td class='formLabel'>Last Name:</td>
    <td class='formLabel'><input title="Last Name" id='LastName' class='required formInput'maxlength="40"></td>
    </tr>
    <tr bgcolor="white">
    <td class='formLabel'>Email:</td>
    <td class='formLabel'><input title="Email" id='Email' class='required formInput' maxlength="40"></td>
    </tr>
    <tr bgcolor="white">
    <td class='formLabel'>Supervisor Name:</td>
    <td class='formLabel'><input title="SupervisorName" id='SupervisorName' class='required formInput' maxlength="40"></td>
    </tr>
    </table>
    <hr>
    <table>
    <td><font size="3"><b><u>Passenger Information</b></u></font></td>
    </table>
    <table>
    <tr bgcolor="white">
    <br>
    <td class='formLabel'>Passenger Name:</td>
    <td class='formLabel'><input title="First Name" id='PFName' class='required formInput' maxlength="40"></td>
    <td class='formLabel'>Middle Initial:</td>
    <td class='formLabel'><input title="Middle Name" id='PFName' class='formInput' maxlength="1"></td>
    <td class='formLabel'>Last Name:</td>
    <td class='formLabel'><input title="Last Name" id='PLName' class='required formInput'maxlength="40"></td>
    </tr>
    <tr bgcolor="white">
    <td class='formLabel'>Email:</td>
    <td class='formLabel'><input title="Email" id='PEmail' class='required formInput' maxlength="40"></td>
    </tr>
    <tr bgcolor="white">
    <td class='formLabel'>Passenger Supervisor Name:</td>
    <td class='formLabel'><input title="SupervisorName" id='PSuperVisorName' class='required formInput' maxlength="40"></td>
    </tr>
    <tr bgcolor="white">
    <td class='formLabel'>Number of Additional Passengers:</td>
    <td class='formLabel'><select title="Pass#" id='PassSelect' class='formInput' onchange="LoadPassengers(this.value);"></select></td>
    </tr>
    </table>
    <hr>
    <table>
    <td><font size="3"><b><u>Reservation Duration</b></u></font></td>
    </table>
    <table>
    <tr bgcolor="white">
    <br>
    <td class='formLabel'>Depart Date:</td>
    <td class='formLabel'><input title="Depart Date" id='DepartDate' class='required formInput' isDate="yes" validate="validDate" onchange="validDate(this.value,this);"></td>
    <td class='formLabel'>Return Date:</td>
    <td class='formLabel'><input title="Return Date" id='ReturnDate' class='required formInput' isDate="yes" validate="validDate" onchange="validDate(this.value,this);"></td>
    </tr>
    </table>
    <hr>
    <table>
    <td><font size="3"><b><u>Travel Information</b></u></font></td>
    <tr bgcolor="white">
    <td class='formLabel'>Please describe reason for request:</td>
    <td class='textbox' height='20' width='30'><input title="DestInfo" id='DestInfo' class='required formInput' maxlength="500"></td>
    </tr>
    </table>
    </hr>
    <p></p>
    </br>
    <input type="button" value="Submit/Update Request Form" onclick="SubmitForm();">

    Hi,
    If you want to add fields to a list, as you have written your form in JavaScript, you can take consideration of using JavaScript Client Object Model to add/delete fields dynamically.
    How to: Create, Update, and Delete Lists Using JavaScript
    http://msdn.microsoft.com/en-us/library/office/hh185005(v=office.14).aspx
    If you want to achieve it with Form7, it is recommended to post the question to its forum to get quick and confirmed answer.
    Thanks
    Patrick Liang
    Forum Support
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact
    [email protected]
    Patrick Liang
    TechNet Community Support

  • How can we insert a field when it is null and not present in database?

    I am working on a report in CR XI..i have strucked ata point where i am unable to find solution..my report has fields like Financial supply and physical supply..as a froup...but both are not displaying on all pages as there are no values to be displayed in them..even though how can i display both fields in all pages ..no matter what the figures are but i need these both fields to be displayed..plz help me out?

    Â Â Â Regards
    Â Â Â Sunil
    I have tried ur formula but unable to get the solution...
    as there are already the same fields with existing records..all i want is how to get the field where the values doesnt exist....i.e..fin supply and phy supply exists in one zone and doesnt have values in other zone...so huv to insist the physical field into the table?

  • How can i relate the input parameters to table MARD

    Hi,
    I have inputs as material number , sales organization , distribution chanel and plant , using this i have query the table MARD . in MARD table material number and plant is available , how can i relate sales organization and distribution chanel to query the table, please help.
    Regards,
    Ratheesh

    Hi,
    Try tabel MVKE, that contains sales data, table MARD is SLoc specific data for material.
    http://www.erpgenie.com/abap/tables_mm.htm
    Regards,
    Csaba

  • How can I format a field in the form creator?

    How can I format a field in the form creator? It's putting the same text in all the fields within a table. I want each field within the table to have different text. As soon as you click out of the table, all the text is the same.
    I even changed the fields from a text box to a drop-down list so a person can make their selection, which will be a quantity from 0-9. There are two of these such fields. You make your selection in each, click off the table and both fields show whatever I selected in field 1. The original Qty I selected in the bottom field was a 5 but it changed it to whatever is in the top field on it's own. I've added a screen shot.

    This behaviors usually happens when you create the fields but  a copy paste command from one of the fields. The copy paste command assumes that your intentions is to maintain a copy of the field in two separate locations (e.i, a form field  "company name" printed in each and every page of a multi-page form document.
    Go to the properties fields of each field and make sure  to assign unique form field  names.

  • How can I add a field to a Repeating Frame in the body of a 9i Report

    How can I add a field to a Repeating Frame in the body of an Oracle 9i Report whose source is in a higher group?
    I want to change an Oracle 9i report. The report has no header or trailer but only a body. The body has the parent frame fields & a repeating frame with four fields, A, B, C & D. They all seem to be in one group. I want to add another field E to the repeating frame whose source is from the 'header'.
    I added the field & created a boiler plate & then added the new field, E to the original group A, B, C & D. In the Property Inspector for the field, I pointed the source to the source column in the main query. However, when I run the report, I receive the error "Invalid body size". Some notes on Metalink indicate that this could be due to margins being out of the printable area.
    Moreover, after making the changes & after having unsuccessfully run the report, when I try to open the Page Layout for the report, I get no details.
    Thanks,

    Hi,
    i also got same query can u pls tell me elaborately, if u can can u pls send some code.
    Thanks & Regards
    Jagadeeshwar.B

  • How can I have two fields with the same name if it makes sense?

    Hello, folks :)
    I have a pretty hard time figuring out how I can have two text fields with the same binding name.
    The whole problem is that when I need two fields with the same binding name they are still differnent coz they have the same name but differnt indices.
    I should make a form filled at runtime by merging a pdf form file and an fdf file data file. And I have no choice to do it differently. And my form file needs some data like customerName, companyName twice in one form. But there's only one possible buinding name indexed zero.
    How can I create a field with absolutely the same name or is it just impossible due to possible name conflicts? And is there a workaround to this problem? I just need one piece of data repeated in different places.
    Thanks for your replies :)
    P.S. if u think that the problem is not clear enough let me know. I'll supply you with more details. But the general process can not be changed.
    One pdf should be mergred with an fdf with as the result of their merge a new filled and flattened form. I have no control over fdfs their are generated by Oracle and I can not fill the form using XML files coz this process should be integrated in a working application.

    I just thought about a really ugly workaround with a server-side script adding values to fdf files but it's a bit of work and tests and personally i think it's a bad idea :-(

  • How can i transfer a field value in the main report to its sub-report?

    <p><font face="Arial" size="2">How can i transfer a field value in the main report to its sub-report?</font></p><p><font face="Arial" size="2">Please eloberate with example if possible!</font></p><p><font face="Arial" size="2">Thanks...</font></p><p> </p>

    <p>You can do a couple of things - one would be to pass the information using the data linking expert.  Right click on the subreport, choose &#39;Change Subreport Links&#39; and select the field(s) you are wanting to pass to the subreport.  CRW will build parameters and a record selection formula for you in the subreport, and if that&#39;s what you want, then great.  But you can also remove the selection formula from the subreport and work with the parameter fields in the subreport however you would like.</p><p>Alternatively, you can look to passing Shared variables back and forth from the main and subreport.  this link talks about the method to do this: http://diamond.businessobjects.com/node/251</p><p> </p>

  • The recent upgrade for i-tunes prevents me from adding and using the Field, "Show". How can I add this field in i-tunes?

    The recent upgrade for i-tunes prevents me from adding and using the Field, "Show". How can I add this field in i-tunes?

    Hold down shift as you right-click > Get Info to get the old style dialog box.
    tt2

  • How can we add additional fields to the BP Search RESULT screen?

    Dear Experts,
    How can we add additional fields to the BP Search RESULT screen so that the BP's being displayed in a search result show maintained values for the particular column/field?
    Thanks!!!

    Hi Laxman,
                           I got same requirement for ibase hierarchy.I want to add new fields in Ibase hierarchy AB.Do you have any idea regarding this.My requirement is that ,i want to dispaly a fields as a check box which display that this component is in under warranty or not by checking the box.Plz tell ,how can i add a new field in tree type context node.I add a new fields using AET ,but that is not available in that AB.
    Thanks
    Vishwas Sahu
    Edited by: vishwas sahu on Nov 17, 2009 1:51 PM
    Edited by: vishwas sahu on Nov 18, 2009 5:22 AM

  • How can i add Custom fields into the

    Dear Experts
    We have Ecc6.0 system,
    How can i add Custom fields into the Infotype Screen(PA30),i heard that we do it by PM01 Tcode.
    But in PM01 i am unable to find the enhance infotype tab.
    How can i do it ....pls help.....
    Regards
    Sajid

    Hi,
    Do it thru the third tab : Single Screen.
    There write down the infotype number (e.g. 0022) and say generate objects.
    Regards,
    Dilek

  • In Function  'MD_STOCK_REQUIREMENTS_LIST_API', how can i relate the order?

    In Function  'MD_STOCK_REQUIREMENTS_LIST_API'
    we will get the material requirment order No. and their sub soure order No.
    Fox example
    if i find a PR, then i will also see 2 PRs as it's sub source.
    But how can i relate the orders from function 'MD_STOCK_REQUIREMENTS_LIST_API'?
    TKS a million~~

    Hi,
    Can you please explain your need with a clear example, from your initial posting it is not quite clear what you're trying to link.
    Regards,
    Vivek

  • In BDC programming how can we maintain date field

    hello all
    In BDC programming how we will deal with date field?
    In my flat file my date field format is different from the sap date field format. how can we deal this?

    hi,
    just define a variable with length 10 in ur internal table.
    now pass the date format in flat file as dd.mm.yyyy.

  • Does anyone know how I can create a text field in a pdf document that will multiply a total in another box?

    does anyone know how I can create a text field in a pdf document that will multiply a total in another box? I’m making an interactive pdf for an order form (attached), and I need to find a way for the “total quantity” number to multiply by 9 and total in the “Amount Due” box.

    Hey Gary,
    Have a look at this post: Re: horizontal scrolling similar to excel
    Andy's reply will show you how to make a table scroll horizontally, but it will be tough to accomplish it in some sort of easily replicable way. I am working on a JQuery extension that will help accomplish this, but I have had my time invested in another project at the moment.
    Good Luck,
    Tyson

  • How can i export a series of images in different aspect ratios to the same height

    How can i export a series of images in different aspect ratios to the same height?
    I wish to make a slider callery for my website. all the images need to be 750 Pixels high, the width does not matter.  I have a mixture of square pandscap and protraite images can i do thing as one export or do i have to do it twice?  Once for long edge and once for shot edge?
    Thanks

    Yes, you can but there is a trick to it.
    In the Export Dialog under <Image Sizing> select Widdth & Height.
    Then enter 750 pixels for Height.
    Put your cursor into the Width field behind all the numbers that appear there and with the backspace key delete the numbers. If you enter "0" it will not accept that. But it accepts when you just delete the field for Width with the backspace key. The Width field will now be just blank.
    When you then export all image will  have a height of 750 pixels and the width will fall variously according to thne height / width ratio.
    Or alternatively you can enter 7.5" for height at a resolution of 100 ppi.

  • How can I get a date picker or wheel to show up in the form to make filling in a form with a lot of

    how can I get a date picker or wheel to show up in the form to make filling in a form with a lot of dates more easy?

    There is no built-in date picker available for forms created in Acrobat. There are some third-party solutions involving JavaScript (either a large collection of fields or a custom dialog) though. Also, text fields with date formatting will use a wheel type date picker on Android/iOS devices with Adobe Reader.

Maybe you are looking for