qadtempT client in my database

peterW

New Member
Hi, ive got problem
could some1 explain me this example:

I have to import all client addresess form mfg to my application, each client has 1 unique address, where my application will import, however form thousands of those clients i got one 'qadtempT' which has 10 addresses.

table ad_mstr ad_addr='qadtempT' \

some1 told me thats client been made by application itslef but i have no clue why and what for.

Please help,

Kind regards
Pete
 
This is caused by a system interruption (ie. hitting F4) during the creation of a ship-to on the fly in 7.1.1 Sales Order Maintenance, or 6.1 Sales Quote Maintenance. It leaves a stranded file in the ad_mstr.

If the user prematurely backs out of the "on-the-fly" creation of the ship-to, then the system is not able to assign the new address to ad_addr. Instead, the system will assign a value of "qadtempTMPXXXX". However, 2.1.13 Customer Ship-to Maintenance will only show "qadtempT", because the field can only hold eight characters.

The stranded record can be deleted through Progress as follows:

for each ad_mstr where ad_addr matches "qadtempT*":
delete ad_mstr.
end.
 
Top