Microsoft Access 2010 Creating a Form from Multiple Tables

Hi.
I am brand new to Microsoft Access and have had some exciting success making forms from single tables. This has made my data entry life much easier. However, I am continually stumped on one form I want to make. I would like to make a form that will let me
update which brands retailers are selling. Most of this information is in my SalesHx table. However, my SalesHx table only uses RetailerID and BrandID to record history. The Brand's name (linked to a BrandID) is stored in my Brand Table and the Retailer name
is stored in my Retailer table (linked to a RetailerID). I would like to be able to see the brand's name and the retailer's name when entering in data on a form, since I cannot remember the ids that associate with the names. I have been able to make a form,
with a subform, that displays all of the information I want to see. When I update this form, though, with a new record, it invariably thinks that I am adding an entirely new record, not simply recording a new sales date for an already known brand. Even if
I make the brand name a combo box that is limited to the fields on my table, this still happens. I will have BrandX as brand number 100 and as brand number 300 if I add it in through my sales history form. I am ready to throw access out the window. Can anyone
offer advice?

 When I update this form, though, with a new record, it invariably thinks that I am adding an entirely new record, not
simply recording a new sales date for an already known brand. 
In what table is the SalesDate recorded?
Build a little, test a little

Similar Messages

  • CREATING A FORM UTILIZING MULTIPLE TABLES

    I'd like to know if it's feasable to create a form using multiple tables and if so, how?
    Thanx

    sgtmaj,
    It's feasible. You'll have to create the form manually. This part of the documentation describes how that's done.
    http://download-west.oracle.com/docs/cd/B19306_01/appdev.102/b16373/bldapp.htm#sthref960
    Sergio

  • Create object type from multiple tables for select statement

    Hi there,
    I have 3 tables as given below and I wish to create an object type to group selected columns as 'attribute' from multiple tables. 
    I need to create 2 input parameters to pass in - 'attribute' and 'attribute value'  in PL/SQL and these 2 parameters will be
    passing in with 'column name' and 'column value'.  e.g. 'configuration' - the column name, 'eval' - the column value.
    Then, the PL/SQL will execute the select statement with the column and column value provided to output the record. 
    Pls advise and thank you.
    table ccitemnumber
    name                           null     type                                                                                                   
    ccitemnumber                   not null varchar2(20)                                                                                                                                                                                    
    configuration                           varchar2(20)
    item_type                               varchar2(30)
    table productmodel
    productmodelnumber             not null varchar2(6)                                                                                            
    description                             varchar2(60)  
    accesstimems                            number                                                                                                 
    numberofheads                           varchar2(2)
    generation                              varchar2(10)
    numberofdiscs                           varchar2(2)
    factoryapplication                      varchar2(150)
    table topmodel
    stmodelnumber                  not null varchar2(30)                                                                                           
    productfamily                           varchar2(60
    formfactor                              varchar2(10)                                                                                           
    modelheight                             varchar2(10)                                                                                           
    formattedcapacity                       number                                                                                                 
    formattedcapacity_uom                   varchar2(20)
    object type in database
    configuration                           varchar2(20)
    item_type                               varchar2(30)
    numberofheads                           varchar2(2)
    generation                              varchar2(10)
    numberofdiscs                           varchar2(2)
    factoryapplication                      varchar2(150)
    modelheight                             varchar2(10)
    formattedcapacity                       number                                                                                                 
    formattedcapac

    user12043838 wrote:
    Reason to do this as these fields are required to be grouped together as they are created in different tables. They are treated as 'attribute' (consists of many columns) of the part number. So, the PL/SQL is requested to design in a way able for user to pass in the column name and column value or part number, then the select statement should be able to query for the records. Another reason is a new column can be added easily without keep modifying those effected programs. Reuseable too.This basically equates to ... hard to code, hard to maintain, and poor performance.
    Are you really sure you want to do this? This isn't going to be easy-street as you seem to think it is, but it's a one way street to a poorly performing system with security vulnerabilities (google SQL Injection).
    I would highly recommend you reconsider your design decision here.

  • Creating a list from multiple tables

    Hi!
    Hopefully someone can help. I have a spreadsheet with 9 tables on it. I use this sheet to track different groups of volunteers based on departments. I have a separate table for each department. The  first table has a list of all of the volunteers. I currently fill in the names from each table on the the first table manually. I would like to be able to type a name into one of the tables and it auto populate on the first table. Is this possible or asking too much?
    Thanks for any help you can give me!

    Hi J,
    Turning the problem on its head, here is one approach. Start with two tables.
    The Department table is one cell. It will act as the trigger to filter rows in the Volunteers table.
    The Volunteers table contains the names of all volunteers. The order of names is alphabetical, but that may not be important in your aim. Column B contains dummy values for each Department.
    In the Volunteers table, select cells B2 to the bottom of the table. Format them as Pop-Up Menu.
    Delete Row 2 (it won't remove "All" from the Pop-Ups).
    Select and copy cell B2 and paste into the Department table so that it too becomes a Pop-Up.
    Using the Pop-Ups in the Volunteers table, assign a department to each volunteer:
    Now to set up Column C for the filter.
    Formula in C2 (and Fill Down) is:
    =IF(Department::A$1="All","Show",IF(B2=Department::A$1,"Show",""))
    Now select something other than All in the Department table
    Filter Rule on Column C ("Show"):
    To see this:
    You can hide columns B and C.
    To see the full list of volunteers again, choose All in the Department table
    Regards,
    Ian.
    Acknowledgment to t quinn for showing this filter idea in another thread. Ian.

  • Create a view from multiple tables

    Hi all,
    I am a newbie, so sorry if this is a "basic" question.
    I had 3 tables TAB1, TAB2 and TAB3
    TAB1 has
    STU_ID(pk), NAME, GRADE, ADDRESS
    TAB2 has
    COURSE_ID(pk), STU_ID(fk), COURSE_NAME, ROOM_NUM, TIME, DAY
    TAB3 has
    MENTOR_NAME, TITLE, AVAILABLE_DAYS
    Now I want to create a view(or query) that returns STU_ID, COURSE_NAME, NAME, GRADE, MENTOR_NAME and TITLE.
    When I tried writing a query like
    SELECT a.STU_ID, b.COURSE_NAME, a.NAME, a.GRADE, c.MENTOR_NAME, a.TITLE
    FROM TAB1 a, TAB2 b, TAB3 c
    WHERE a.STU_ID=b.STU_ID
    I am getting multiple results..like I'm getting Mentor name 4 times, name 4 times like that.
    So can anybody help me in writing the query for this....a "VIEW" would be appreciated.
    Thanks In Advance
    Srra

    You query should return all the columns in the select list once for each and every row that meets the specified join condition, how does this differ from what you are getting?
    So if tableA is the student table with only one row per student you would expect to see the student data duplicated once for every matching course row found in tableB, and so on when tableC is added in.
    If you need help please post partial results and then explain what results you want.
    HTH -- Mark D Powell --
    PS as sb mention you forgot your join condition to tableC which would multiply tableC by the other tables.
    Edited by: Mark D Powell on Feb 3, 2010 9:18 AM

  • Create PHP form from MySQL table structure

    Hi folks
    Not directly DW related, but ....
    Anybody got any recommendations for a utility which would
    create a quick head
    start by creating the php/html code for a basic form using
    the field structure
    of a MySQL table ?
    Thanks for any suggestions.
    Ronnie MacGregor
    Scotland
    Ronnie at
    dBASEdeveloper
    dot co dot uk
    www.dBASEdeveloper.co.uk

    On Sun, 21 Dec 2008 15:08:30 +0000 (UTC)
    Joe Makowiec said :
    > On 21 Dec 2008 in macromedia.dreamweaver, Ronnie
    MacGregor wrote:
    >
    > > Anybody got any recommendations for a utility which
    would create a
    > > quick head start by creating the php/html code for
    a basic form
    > > using the field structure of a MySQL table ?
    > I haven't used it, but it looks like phpmyedit may do
    what you want:
    >
    >
    http://www.phpmyedit.org/
    Hi Joe
    Thanks for this ...
    phpMyEdit looks very good and very useful, and I'm playing
    with it to see just
    how configurable it proves to be.
    It looks good for general admin tasks etc. bet whether it
    proves suitable for
    end user (public) use remains to be seen.
    It is basically a class which generates the page code server
    side at runtime
    using the parameters you set in a calling script, but of
    course you can grab
    the source code for the generated page which may prove to
    satisfy my initial
    request.
    Anyway ... from what I've seen so far I could recommend that
    it is well worth
    some time exploring the possibilities.
    Cheers,
    Ronnie
    Ronnie MacGregor
    Scotland
    Ronnie at
    dBASEdeveloper
    dot co dot uk
    www.dBASEdeveloper.co.uk

  • Trying to create fillable form from InDesign table

    I am working on a very long document, over 100 rows and about 18 columns, which will exist only as a pdf. I need to make 6 of the columns interactive so that they can be filled in with one of three letters by the end user.
    I created the design in InDesign CS 5.5 as a table. That worked well for design control, but Acrobat X 10.1.3 does not recognize any of the cells in the PDF document. Is there a different InD export option that will make a table convert to a fillable form? I used press quality, then opened the pdf in Acrobat.
    I have worked around by creating a short drop down list with the three letters in it and copied that into the cells using the Place Multiple Fields command. Then I can adjust position easily enough.
    *Except* my client would prefer that the end user just type one of the letters into the cell/field rather than doing a drop down selection on each of the several hundred cells. She'd also like to be able to copy and paste the final filled-in information into her original excel document.
    Am I missing something in Acrobat? I don't do fillable forms often and have never had one this massive.
    I am working on a Mac.
    Thanks for any help.
    DC

    Hi Dory, any luck on your post regarding the fillable forms in Indesign?
    all best
    Riaan Liebenberg
    Dory Colbert wrote:
    I am working on a very long document, over 100 rows and about 18 columns, which will exist only as a pdf. I need to make 6 of the columns interactive so that they can be filled in with one of three letters by the end user.
    I created the design in InDesign CS 5.5 as a table. That worked well for design control, but Acrobat X 10.1.3 does not recognize any of the cells in the PDF document. Is there a different InD export option that will make a table convert to a fillable form? I used press quality, then opened the pdf in Acrobat.
    I have worked around by creating a short drop down list with the three letters in it and copied that into the cells using the Place Multiple Fields command. Then I can adjust position easily enough.
    *Except* my client would prefer that the end user just type one of the letters into the cell/field rather than doing a drop down selection on each of the several hundred cells. She'd also like to be able to copy and paste the final filled-in information into her original excel document.
    Am I missing something in Acrobat? I don't do fillable forms often and have never had one this massive.
    I am working on a Mac.
    Thanks for any help.
    DC

  • Creating a datablock from multiple tables

    Hi
    I have a situation in which. There are two tables with the same set of columns and same names. when creating a block ,rows from both these tables have to populated into Form.
    (for example... One table represents expired details and the other one with valid details)
    Form accepts runtime parameters and displays the records. Any idea how to solve this. Please offer your suggestions
    Thanks
    null

    As ivar said if u create view and use then u cant update the values. One alternate solution is do manually. First of all why do u need to put both the base tables in a single block. Create 2 blocks corresponding to two expired and valid base tables. You can very well display both the information from 2 blocks in the same Form. Just get the user input and query manually. When u create two base table blocks Oracle will take care of the querying/inserting values from tables though both might have same column names. I hope this helps.

  • How to create a form from a table available from a database link?

    Hi,
    I have a table accessible via a database link.
    It is working perfectly, but I cannot create a from using the wizzard.
    It says: "Primary Key must be specified."
    But there is a primary key in the source database!
    Best regards,
    Sebastien (Geneva)

    a little more about dblink:
    i have a view in the dblink
    when i execute
    insert into ias_time_of_acc(ias29, end_acc_period, start_acc_period, acc_last_date_id, comp_date_id, active)
    values(:p4110_ias29, to_date(:p4110_end_acc,'DD.MM.YYYY'),
    to_date(:p4110_start_acc,'DD.MM.YYYY'),:p4110_last_date, :p4110_comp_date,'N');
    i've got this err:
    ORA-01461: can bind a LONG value only for insert into a LONG column ORA-02063: preceding line from OFSA_OWNER@OFSA_TO_ORCL
    and when i execute
    a:= to_date(:p4110_start_acc,'DD.MM.YYYY') ;
    b:= :p4110_last_date;
    c:= :p4110_comp_date;
    d:= :p4110_ias29;
    insert into ias_time_of_acc(ias29, start_acc_period, end_acc_period, acc_last_date_id, comp_date_id, active )
    values(d, a,to_date(:p4110_end_acc,'DD.MM.YYYY'),
    b, c,'N' );
    everything is working properly
    so problem is in the lenght of insert statment i think.

  • How to creat  Data source from Multiple Tables in   SAP  BI ?

    Hi Experts,
    1. For Finance & Payments MIS   tables are u2013   BSEG, BSIS,BSAS,PYAR ,BKPF
    2. For Inventory tables are           :           MSEG MKPF.
    3. For Invoices MIS   tables are  -          RBKP & RSEG.
    4. For Taxation MIS  tables  are u2013           J_1IEXCHDR, J_1IEXCDTL, J_1IPART2, J_1IPART1
    5. For Master data  tables  are   -    :         MARA, MAKT, LFA1, J_1IMTCHID
    How to creat   individual  Datasource  for   1.Finance & Payemnt Mis , 2. Inventory, 3. Invoices,  4. Taxation , 5. Mater data. ?

    Hi,
    Go for the generic data sources.
    1. first create the view on all the tables.
            You can only use join conditions but not Union.
            you can specify one table as primary table based on your requirement.
    2. build the data source based on the view.
    Regards,
    Siva
    Edited by: sivaramakrishna on Feb 2, 2012 3:54 PM

  • Creating vb forms from designer

    After creating oracle forms from designer whenever we run form it display no records at the first and we can add/edit/delete/query
    but if we create vb forums it display all the records.
    Can't we do it just like in oracle forms

    Hi Niall,
    After updating Properties>Compatibility and settings Target version on the old xdp I see following  xml  generated.
    Does this sound right () ?
    Thanks
    YogLC
    <?xml version="1.0" encoding="UTF-8"?>
    <?xfa generator="AdobeLiveCycleDesignerES_V9.0.0.1.20100329.2.659576" APIVersion="3.1.9277.0"?><xdp:xdp xmlns:xdp="http://ns.adobe.com/xdp/" timeStamp="2010-06-21T15:15:11Z" uuid="42e37fb9-0d21-499d-94bd-259200a97a10"><
    template xmlns:xfa="http://www.xfa.org/schema/xfa-template/2.1/" xmlns="http://www.xfa.org/schema/xfa-template/3.0/"> 
    <?formServer defaultPDFRenderFormat acrobat9.1static?>
     <?formServer allowRenderCaching 0?>
     <?formServer formModel both?>
    <subform name="F" layout="tb" locale="ambient">

  • POWL accessing data from multiple tables/objects

    Hello,
    I have a query on the POWL applications.
    If the powl application has to access data from multiple tables/objects, then the solution would be creating a data structure of those tables/objects and referring to that structure in GET_OBJECT_DEF methods.
    Is there any other soln? or I am right here?
    The queries which are saved for a particular user are transportable? if not, how can they be made transportable?
    Thanks & regards,
    Ravish

    you are right, you can do in get_objects method.
    POWL_QUERIES are transportab;e, you can save them in POWL_QUERY transaction.
    Best regards,
    Rohit
    http://wiki.sdn.sap.com/wiki/display/WDABAP/POWL

  • Is it possible to create a form with multiple form fields on a single line?

    Is it possible to create a form with multiple form fields on a single line?  I can't find anything in the documentation or a template that does this.
    I am trying to create a "documents received" checklist with a check box on the left margin, a date-received field to the right of the check box and and a description of the document (Formatted Text) on the far right.
    In the past I have entered the Fixed Text with a word processor, published it to a PDF file, then added the check box and date fields with the Acrobat Forms editor.  I would prefer to use FormsCentral if it is possible.

    We now support multiple fields on one line. This post provides a brief overview.
    Give it a try and send us your feedback.
    Sorry it took so long.
    Randy

  • Any Tutorial / Sample to create Single PDF from multiple source files using PDF assembler in a watched folder process.

    Any Tutorial / Sample to create Single PDF from multiple source files using PDF assembler in a watched folder process. I have a client application which will prepare number of source files and some meta data information (in .XML) which will be used in header/footer. Is it possible to put a run time generated DDX file in the watch folder and use it in Process. If possible how can I pass the file names in the DDX. Any sample Process will be very helpful.

    If possible, make use of Assembler API in your client application instead of doing this using watched folder. Here are the Assembler samples :  LiveCycle ES2.5 * Programming with LiveCycle ES2.5
    Watched folder can accept zip files (sample : Configuring a watched folder to handle multiple input files and write results to a single folder | Adobe LiveCycle Blog ). You can also use execute script to create the DDX at runtime : LiveCycle ES2 * Application Development Using LiveCycle Workbench ES2
    Thanks
    Wasil

  • Using ME57 to create an RFQ from multiple lines on multiple PRs

    When using ME57 to create RFQs how can I select multiple line items from multiple purchase requisitions to turn into a single RFQ. If I select multiple lines and then use 'RFQ with Vendor', it only selects one line item.  After further research it appears that you can only create only line at a time (very time consuming). 
    If you use ME41 and create with reference to PR then you can not sort or filter columns to allow for easy consolidation.
    Another forum recommended the following when using ME57 which works but it again adds extra steps to the process.
         The whole process is as follows -
         1) When you are in the 'Assign and Process Purchase Requisition' screen, select related PR and then click on 'Without Vendor' icon to flag all PRs for RFQ processing.
         2) Select these PRs again and click further on 'Assignment Overview' icon (Shift and F5). The next screen will appear - Assign and Process requisitions - Overview of Assignments screen.
         3) Select the 'PReq' column and then click further on 'Process Assignment' icon (F2). The next screen will appear where you have to maintain the 'quotation deadline' information.
         4) Then click on 'Continue' icon (enter).
    [http://www.sapfans.com/forums/viewtopic.php?f=6&t=198768]
    So is there any way to either 1) enable sorting of data in ME41 or 2) use ME57 to create one RFQ from multiple line items of multiple purchase requisitions when selecting 'RFQ with Vendor'.

    What is the JPEG specs? What are the specs of the project you're working in?

Maybe you are looking for

  • Unable to open iTunes, Error (-200)

    I've never had any trouble with iTunes or my iPod before...until after I updated RealPlayer and Quicktime last night. This morning I got the error message (-200) when I tried to open iTunes. I suspect one of those updates messed with iTunes but don't

  • Account 54006141 requires an assignment to a CO object T Code VF02

    Dear All, When we create Billing Document through T Code VF01 Billing Document got created but Accounting Document not created . When we trye created accounting document by u201CRelease To Accountingu201D (Shift+F4) it is giving error u201CAccount 54

  • Downloading of video

    but how to unzip the downloaded files. there is no option on screen

  • Replace a 3750G in a configured stack

    I need to remove a configured 3750g out of a 7 unit stack. I want to replace it with another unit that is the same. How to keep the config correct an get the unit into the stack.

  • Creating Dynamic Routing Rules within mediators

    Hi When I check the (huge but apparently not enough) SOA developer's guide. I can't find any reference to dynamic rules within mediators. This feature seems available within jdev11g TP3. But the way to use it isn't straightforward. Do you know where