Search results

  1. M

    Importing an EDI X12 formated file

    Has anyone dealt with an "Enhance Data Interchange" EDI X12 formated file? Specifically 850 Purchase Order and 810 Invoices. I need to import the EDI text file and parse each piece of data from each line and then process them to add transactions to my PO and Invoice system. I have no...
  2. M

    Function in Append Queary

    I thought that I could use a function that would run at each specific record insert. The code works elsewhere on a form to generate the next sequentioal number for each customer. It thought I could use the same code in the queary and that it would go out and find the last number used then...
  3. M

    Function in Append Queary

    I am trying to append records from one table to another and insert an increasing number to each record as it appends records. But it only returns the same value each time. I have the following function: Function modNextPartNumber() Dim strCustAbrev As String Dim intIncrement As Integer '...
  4. M

    Database back end out on the internet

    I need a way for 2 people to connect to an Access database back end over the internet. Is there a way to "host" a file on a website of some sort and be able to "connect" to it from the Access front end? Without setting up a VPN.
  5. M

    Average an entire record

    I have a table of numbers by month for a given year like J F M A M etc. 2007 9 1 7 6 9 2008 1 9 3 2 5 etc. I want the average for the year. I can't figure out how to do it! Note: I can't change the way I get this data, it is in that format so That is how I have to deal with it.
  6. M

    Linking data conundrum

    Hey, I just tried dropping the table in and putting in the fileds and it seemed to do what I needed!
  7. M

    Linking data conundrum

    I have a stored procedure in QuickBooks that I run, so I can't modify it, but the data it returns resembles a crosstab and looks like this: SequenceNum VarAccntName AccountNumbr Label Amount_1 Amount_2 Amount_3 1 Metal 5000 5000 · Alloy Costs 78337.84 76377.99 54113.81 113571.11 1 Metal...
  8. M

    Report with Fields that may or may not be present

    I have a crosstab query that I run on scrap reasons for specific parts. The query will return different "fields" based on what it finds for the parts I give it. My problem is that the report I made (which has all the potential fields--scrap reasons) comes up with errors about missing fields...
  9. M

    Not Responding error

    I have an Access 2007 .accdb split into front end and back end. I have the backed data on the server and the front end local on my PC. The server is a MS Small Business Sesrver 2003. At around 5:00pm every day I get frequent "Not Responding" from my front end, it only last a few seconds but...
  10. M

    RMA database needed

    Thanks for the reply, just simply need to track customers returning a steel casting, and why, then give them an RMA number and track notes about the transaction. Nothing too deep at this point. Basically used by just the QA manager.
  11. M

    RMA database needed

    Hello all, just woundering if anyone knows of a RMA database that is in Access so that I can customize it rather then develope it from scratch. Thanks.
  12. M

    Sequential numbers for each customer

    Thanks, I looked at your sample and it looks great. I noticed that you seperated out the "segments" of the number, whereas my code combines them. Note sure what the best way to store the number: combined or seperated out. I would think that "crunching" it all at the time I right it to the...
  13. M

    Sequential numbers for each customer

    Here is what I have so far that I think will work once I add it to the "add new record" button on my form: Dim strCustAbrev As String Dim intIncrement As Integer strCustAbrev = "KM" '**Need to get from form. intIncrement = Nz(DMax("Right([PatternNumber], 4)", _...
  14. M

    Sequential numbers for each customer

    I need to create a sequential number for each customer and store them in the same table. For example: PBM0001 PKZ0001 PBM0002 PKZ0002 PKZ0003 So, the number is sequential within each customer The number has 3 parts: 1-the prefix will always be the letter "P" then, 2-the next two letters is...
  15. M

    Matching case

    I have two tables that have fields set to a text so that the ClientID is their name. When I query, my queries don't take into account the case. So "K Smith" is the same as "K SMITH" as "k sMIth" I am trying to write an unmatched query between two tables based on this ClientID but it will turn...
  16. M

    Convert entry to non-standard date

    I have a need to be able to enter "feb 06" into a text field on a form and get "Feb/2006" stored. Also if they enter just "feb" then the current year be used, so if it was 2007 then "Feb/2007" would get stored. I tried to use this code, in the fields after update, but it does not deal with the...
  17. M

    Month and Year to Date on a Report

    I need a Report that shows the Month To Date and the Year To Date per each Category at the top and along the left all of the individual people. Life Annuities Securities Group Total Agent MTD YTD MTD YTD MTD YTD MTD YTD MTD YTD Bob 25 50...
  18. M

    Write Error

    I am getting the following error: Write Conflict--This record has been changed by another user since you started editing it.... I think i know why, but I am sot sure what to do about it. I have a main form with a sub form, each is based on a stored procedure with only one table in it (not the...
  19. M

    Script to restore views

    I need to restore a bunch of views from an earlier date, so I went to a backup and generated a script for all the views that I need, but now when I run it in Query Anylizer I get erros about a view that is used in the view that I am trying to create, not being there. Well, it will be when I...
  20. M

    SP takes long time but reboot fixes it

    Now, this makes no scense to me, but maybe it does to you all: I made a backup of my production database that I am having the issue with and brought it home with me and restored it to my personal SQL server at my home (dosen't everyone have one?) and ran my sp and it took 3 seconds, just like...
Back
Top Bottom