T
Tokyo Alex
Dear all,
I have a project to create an Access tool to convert our internal quote data
into our client's format for upload into an EDI system. Most of this is not
problematic. However, there is one issue that I can foresee having major
headaches over.
Our quote is (actually, can be made into by a couple of queries, but for
practical purposes is) a single record per quote, which will contain (amongst
others) a unique ID (Quote#), a brief description, a price, and maybe a
shipping charge.
The client's system, however, requires this to be loaded as _two_ separate
quotes, one for the quote itself and a separate one for the shipping charge,
if any.
So, I need a tool to convert:
OurID(Unique), Description, Price, ShipCharge, ...
into:
OurID(NotUnique), Description, Price, ...
OurID(NotUnique), "SHIP_CHARGE" AS Description, ShipCharge, ...
And I need it to generate only 1 target record if there's no shipping charge
(Which I'm fairly sure is represented by a 0, not NULL in my source data.
Other constraints/concerns:
The target format does not need a unique ID, as it will be given one when
uploaded into the client's system.
I use Access 2007, but my coworker who will also use the tool once finished
uses 2003, so the tool will be developed as a 2003 MDB not a 2007 ACCDB.
Both using Windows XP Pro.
I have precisely no ability to modify the target data structure whatsoever,
but I can modify the source data structure (as this tool will be running off
a query or set of queries that I create)
The tool will be used to process about 500~750 source records a hit in a
daily batch, so performance is not a critical issue (I'm happy to set it to
run and go make coffee if need be.)
Does anyone have any brillliant ideas about what would be a good way to go
about this? Alternatively any advice about what I should NOT do under any
circumstances would be just as appreciated.
Thanks very much in advance,
Alex.
I have a project to create an Access tool to convert our internal quote data
into our client's format for upload into an EDI system. Most of this is not
problematic. However, there is one issue that I can foresee having major
headaches over.
Our quote is (actually, can be made into by a couple of queries, but for
practical purposes is) a single record per quote, which will contain (amongst
others) a unique ID (Quote#), a brief description, a price, and maybe a
shipping charge.
The client's system, however, requires this to be loaded as _two_ separate
quotes, one for the quote itself and a separate one for the shipping charge,
if any.
So, I need a tool to convert:
OurID(Unique), Description, Price, ShipCharge, ...
into:
OurID(NotUnique), Description, Price, ...
OurID(NotUnique), "SHIP_CHARGE" AS Description, ShipCharge, ...
And I need it to generate only 1 target record if there's no shipping charge
(Which I'm fairly sure is represented by a 0, not NULL in my source data.
Other constraints/concerns:
The target format does not need a unique ID, as it will be given one when
uploaded into the client's system.
I use Access 2007, but my coworker who will also use the tool once finished
uses 2003, so the tool will be developed as a 2003 MDB not a 2007 ACCDB.
Both using Windows XP Pro.
I have precisely no ability to modify the target data structure whatsoever,
but I can modify the source data structure (as this tool will be running off
a query or set of queries that I create)
The tool will be used to process about 500~750 source records a hit in a
daily batch, so performance is not a critical issue (I'm happy to set it to
run and go make coffee if need be.)
Does anyone have any brillliant ideas about what would be a good way to go
about this? Alternatively any advice about what I should NOT do under any
circumstances would be just as appreciated.
Thanks very much in advance,
Alex.