J jchellap Member Dec 13, 2011 #1 How do I specify "Enter" key in CIM programming ? For e.g. "F1 = Skip" "F4" = "." Enter = ???. Thanks in advance ..
How do I specify "Enter" key in CIM programming ? For e.g. "F1 = Skip" "F4" = "." Enter = ???. Thanks in advance ..
S sreekuax Member Dec 13, 2011 #2 jchellap said: How do I specify "Enter" key in CIM programming ? For e.g. "F1 = Skip" "F4" = "." Enter = ???. Thanks in advance .. Click to expand... Its " " {space inside two quotes }...
jchellap said: How do I specify "Enter" key in CIM programming ? For e.g. "F1 = Skip" "F4" = "." Enter = ???. Thanks in advance .. Click to expand... Its " " {space inside two quotes }...
J jchellap Member Dec 15, 2011 #3 Hi Sreekuax, I tried to do item master CIM load. I want to update the standard material cost of an item. This is what I tried. but still not working OUTPUT TO "Item_Data.cim". FOR EACH tt_itm : /* temp-table */ PUT UNFORMATTED """" tt_itm_part """" SKIP /* pt_part */ "-" SKIP "-" SKIP "-" SKIP "-" SKIP "-" SKIP """" tt_price """" SKIP /* pt_price */ " " """" tt_mtcst """" SKIP /* Standard material cost */ "-" SKIP. PUT "." SKIP. END. PUT UNFORMATTED "." SKIP. OUTPUT CLOSE. Any suggestions please ??
Hi Sreekuax, I tried to do item master CIM load. I want to update the standard material cost of an item. This is what I tried. but still not working OUTPUT TO "Item_Data.cim". FOR EACH tt_itm : /* temp-table */ PUT UNFORMATTED """" tt_itm_part """" SKIP /* pt_part */ "-" SKIP "-" SKIP "-" SKIP "-" SKIP "-" SKIP """" tt_price """" SKIP /* pt_price */ " " """" tt_mtcst """" SKIP /* Standard material cost */ "-" SKIP. PUT "." SKIP. END. PUT UNFORMATTED "." SKIP. OUTPUT CLOSE. Any suggestions please ??
J jchellap Member Dec 15, 2011 #4 The program name is "ppptmt.p". The input .CSV file is having only "item number" and Standard "material cost".
The program name is "ppptmt.p". The input .CSV file is having only "item number" and Standard "material cost".
P pccarx New Member Dec 16, 2011 #5 I load cost as: @@batchload ppcsbtld.p "yes" "Item" "Site" "CostSet" "Material" "12.3456" @@end
M mosfin Member Dec 17, 2011 #6 tt_price & tt_mtcst are numeric, therefore do not enclose them in quotes