duplicate item

boryanap

New Member
Hello,
i have the following problem: when create item number for example A00064 through 1.4.3 automatically an item number with the same attributes and description is created but with item number D00064; the same is with D12345 creates automatically G12345.if I
If i create item number A12345 i see that there is D12345, but if i write

for each pt_mstr where pt_desc1="description_of_A12345":

display pt_part.
end.

displays me only the created item.
It's like a circle...
P.S it's only when the Cyrillic letters are used, if anyone has idea
 
1st, you should always mention the version of MFG you are using
2nd, your description of the problem is not clear (to say the least)
when you use menu 1.4.3, you can create only ONE item at a time
if the item number is new, you will get a message at the bottom of the window
something like: "adding new record"
if this is an old number, you will NOT get this message, and will edit existing record
 
1st version of MFG is eB2.1
2nd. The problem appears when in the creation of item are used Cyrillic letters.
It's seems that the letter is not recognized.It creates in the db one and only one record but the item is like mulch-visualized.
I make a print screen -i create the item A00001 with cyrillic A.G.JPGa.JPGd.JPG
 
i think it has something to do with Code Page startup parameters
you can check your current setting by this command:
Code:
display session:cpinternal.
for example for Russian language, you can add these to your
DB startup(.pf) file :
-lng "Russian"
-cpcase Basic
-cpcoll Russian
-cpinternal 1251
-cpstream 1251

P.S: or
-lng "Russian"
-cpcase Basic
-cpcoll Russian
-cpinternal ibm866
-cpstream ibm866
-cpprint ibm866
 
Back
Top