Export data to item master

Sarma45

New Member
Hi ,

I want to export data from a csv to item master table. I have a csv with 3 columns itemnumber, ROP and Safety Stock and i want to export these details into the item master tabel. CAn some one help me out with this?

Thanks in advance
 

RealHeavyDude

Well-Known Member
You are talking pretty specifics - I assume your are talking about a specific application which I am not familiar with.

Is your question about how code for such a solution would look like or about a specific functionality in a specific application?

Heavy Regards, RealHeavyDude.
 

Cringer

ProgressTalk.com Moderator
Staff member
Code:
DEFINE VARIABLE lv-Import AS CHARACTER EXTENT 3.
/*OPEN A STREAM TO THE FILE*/
IMPORT DELIMITER "," lv-Import. 
/*CLOSE STREAM*/
 
Use Cim load for this import into item master table.
you have to prepare Cim file using these three fiedls only. If it is a data update then use 1.4.7 for Cim load update.
 
Top