Cim File For Character Field

Anamika

New Member
Hello,

I want to load file with character field which conatins "(double quote) in description how can we create cim file for this.
Example:
@@batchload icunrc.p
"A0000038"
1 - - "960" "tankfarm" "pn09319-001" "12"b"123"
- - - - "tested" "05/04/16" "5635" "9196" "AKOP"
y
.
@@end


Where 12"b"123 is value for reference field.

Thanks in advance.
 

Cringer

ProgressTalk.com Moderator
Staff member
Moved the thread to the mfgpro group as I believe that's where cim files fit in...
You'll need to escape the " somehow, but no idea how. Try \" and ~" for starters.
 

Anamika

New Member
I think that, unless you reveal more information ( code ), we won't be able to help you.
This is the only code which I executes. Using this code I want to create stock in inventory.It should accept "12"b"123" as reference number.Please refer attached output file.
 

Attachments

  • Output file with error.docx
    55.4 KB · Views: 5

Cringer

ProgressTalk.com Moderator
Staff member
I don't know mfgpro at all, but I would say that you really don't want to be having that as a reference number if you can help it. It's going to cause all sorts of trouble all over the place. Don't do it.
 
This is the only code which I executes. Using this code I want to create stock in inventory.It should accept "12"b"123" as reference number.Please refer attached output file.
Multy Entry is logical value, yes or no is expected.

This should work:
1 - - "960" "tankfarm" "pn09319-001" '12"b"123'
 

Anamika

New Member
Thanks.This will also not useful.But yes I had resolved it.All we need to pass this as-
Example:
@@batchload icunrc.p
"A0000038"
1 - - "960" "tankfarm" "pn09319-001" "12""b""123"
- - - - "tested" "05/04/16" "5635" "9196" "AKOP"
y
.
@@end


Thanks a lot for.
 
Top