Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
Anonymous
Not applicable

Inputfild

Olá,

estou tentando fazer um inputfield , mas aparece a mensagem na hora da carga : "Duplicate Key using input field"

INPUTFIELD estimativa;

Estimativa:

LOAD  CodItem,

           '0' as estimativa

           Resident Item;


tentei colocar na mesma tabela de Item, criar outra tabela, mas sempre mostra a mesma msg.

Alguém tem alguma sugestão?

Rodrigo Silvestre

1 Solution

Accepted Solutions
rphpacheco
Creator III
Creator III

Tenta desta forma:

Estimativa:

LOAD
     CodItem,

     RowNo() as key,

     '0' as estimativa

Resident Item;

Abs.

View solution in original post

2 Replies
rphpacheco
Creator III
Creator III

Tenta desta forma:

Estimativa:

LOAD
     CodItem,

     RowNo() as key,

     '0' as estimativa

Resident Item;

Abs.

Anonymous
Not applicable
Author

Boa raphael, valeu! agora foi...