Pascal Posted March 31, 2022 Share Posted March 31, 2022 Hello I use on different PCs under W10 AUTOCAD 2022 complete version . I update my dynamic blocks with "UpdateTitleblockV1-9.lsp". So the CSV file is the same. On a station when I start the UTB command, I have the following error “ Command: UTB 560531386 not found in first column of CSV file” 560531386 = “name .dwg” DWG,Block*,TAG,LOOP PAGE,FLD-SIDE,FLD-SIDE-BK,FLD-SIDE-W,ALIM-FROM,ALIM-INST,ALIM-INST-CW,DCS-SIDE,DCS-SIDE-BK,DCS-SIDE-W,DCS-SIDE-BK1,DCS-SIDE-BK2,DCS-SIDE-W3,DCS-SIDE-W4,DCS-SIDE-W5,DCS-PAIRE-BK,DCS-PAIRE-W,DCS-CABLE,DCS-CARTE-IO,SOCLE/TYPE,TYPE,DCS-IO1,DCS-IO2,DCS-IO3,DCS-24V_F,DCS-CONV-AD+,DCS-CONV-AD-,CHANNEL,CPU-NAME,CPU-PROFIBUS,DCS-CARTE,ADRESSE,PASSIF,SIL-FLD,SIL-FLD-BK,SIL-FLD-W,Column1,_1,_2,_3,_4,_5,_6,_7,_8,_9,FLD-SIDE-AF,FLD-SIDE-BK-AF,FLD-SIDE-W-AF 560531386.dwg,,,1386,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, 560531386.dwg,Macro_DI,ZSO-P2141C-A,1386,XC502/\PR4/X5,3,4,110VAC FROM,XE506/R3/X2 F3-4,VIA XE506/R6/X5 25-26,XC0504\PR3-X1,,,F,F1,1,2,32,1BK,1W,XC504/XC606/01,XC606-R3-A7,TU811/DI820,DI820,A1,B1,,,,,CH1,UTIL,XC703 REAR-R3 SLOT1,DI820,CH1/IX 1.4.7.1,,,,,,,,,,,,,,,,, 560531386.dwg,Macro_DIbis,ZSC-P2141C-A,1386,XC502/\PR4/X5,5,6,110VAC FROM,XE506/R3/X2 F3-4,VIA XE506/R6/X5 25-26,XC0504\PR3-X1,,,F,F2,3,4,32,2BK,2W,XC504/XC606/01,XC606-R3-A7,TU811/DI820,DI820,A2,C2,,,,,CH2,UTIL,XC703 REAR-R3 SLOT1,DI820,CH2/IX 1.4.7.2,,,,,,,,,,,,,,,,, 560531386.dwg,Macro_DO,OY-P2141C-A,1386,XC502/\PR4/X5,1,2,110VAC FROM,XE506/R3/X2 F5-6,VIA XE506/R6/X5 27-28,XC0504\PR3-X2,,,F,F1,1,2,16,17W,17BK,XC504/XC606/01,XC606-R3-A9,TU811/DO820,DO820,A1,B1,,,,,CH1,UTIL,XC703 REAR-R3 SLOT1,DO820,CH1/QX 1.4.9.1,,,,,,,,,,,,,,,,, ,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, Can I help me. Best regards Quote Link to comment Share on other sites More sharing options...
Lee Mac Posted April 1, 2022 Share Posted April 1, 2022 (edited) What does the following return for you at the AutoCAD command line?: (vl-registry-read "HKEY_CURRENT_USER\\Control Panel\\International" "sList") If the above returns a semi-colon instead of a comma, try replacing the commas in your CSV file with semi-colons. Alternatively, if you want to continue using a comma in your CSV files, replace line 300 of my program with: (setq sep ",") Edited April 1, 2022 by Lee Mac 1 Quote Link to comment Share on other sites More sharing options...
Pascal Posted April 4, 2022 Author Share Posted April 4, 2022 Thank's Here is the answer to the autocad command. Command: (vl-registry-read "HKEY_CURRENT_USER\\Control Panel\\International" "sList") ";" I changed the line if below as requested. (defun LM:readcsv ( csv / des lst sep str ) (if (setq des (open csv "r")) (progn (setq sep ",") (while (setq str (read-line des)) (setq lst (cons (LM:csv->lst str sep 0) lst)) Original (defun LM:readcsv ( csv / des lst sep str ) (if (setq des (open csv "r")) (progn (setq sep (cond ((vl-registry-read "HKEY_CURRENT_USER\\Control Panel\\International" "sList")) (","))) (while (setq str (read-line des)) (setq lst (cons (LM:csv->lst str sep 0) lst)) It doesn't change anything! Quote Link to comment Share on other sites More sharing options...
Lee Mac Posted April 4, 2022 Share Posted April 4, 2022 Did you save the file and reload the program following the modification? Quote Link to comment Share on other sites More sharing options...
Pascal Posted April 5, 2022 Author Share Posted April 5, 2022 yes I saved and reloaded Quote Link to comment Share on other sites More sharing options...
Pascal Posted May 9, 2022 Author Share Posted May 9, 2022 I come back to this problem. I configured the pc under execl to generate the CSV in virguel format. the csv is correct, but when I run the UTB command I still have the same problem "Command: UTB 560531984 not found in first column of CSV file." can you help me? Quote Link to comment Share on other sites More sharing options...
Pascal Posted May 9, 2022 Author Share Posted May 9, 2022 format csv "CSV UTF-8(Comma delimited) (*.csv) Quote Link to comment Share on other sites More sharing options...
Lee Mac Posted May 9, 2022 Share Posted May 9, 2022 Hi Pascal, To help us to diagnose this issue, please try changing lines 192-196 from: ( (not (setq tag (mapcar 'strcase (cdar lst)) lst (LM:massoc (strcase (fnb:fun (getvar 'dwgname))) lst) ) ) To: ( (not (progn (princ "\nDrawing Name: ") (prin1 (strcase (fnb:fun (getvar 'dwgname)))) (princ "\nCSV Data: ") (foreach x lst (print x)) (setq tag (mapcar 'strcase (cdar lst)) lst (LM:massoc (strcase (fnb:fun (getvar 'dwgname))) lst) ) ) ) Save, reload, and re-run the program and post what is printed to the AutoCAD command line. Lee Quote Link to comment Share on other sites More sharing options...
Pascal Posted May 10, 2022 Author Share Posted May 10, 2022 this is the print. the CSV does not exist on this PC, it is in memory of a previous execution of autocad on another PC. PCs are created by image. Why does it not point to the DATA.CSV which is in the directory with the dwg. in Green the good CSV. in RED de CSV Printed. Best REGARDS DWG,Block*,TAG,LOOP PAGE,FLD-SIDE,FLD-SIDE-BK,FLD-SIDE-W,ALIM-FROM,ALIM-INST,ALIM-INST-CW,DCS-SIDE,DCS-SIDE-BK,DCS-SIDE-W,DCS-SIDE-BK1,DCS-SIDE-BK2,DCS-SIDE-W3,DCS-SIDE-W4,DCS-SIDE-W5,DCS-PAIRE-BK,DCS-PAIRE-W,DCS-CABLE,DCS-CARTE-IO,SOCLE/TYPE,TYPE,DCS-IO1,DCS-IO2,DCS-IO3,DCS-24V_F,DCS-CONV-AD+,DCS-CONV-AD-,CHANNEL,CPU-NAME,CPU-PROFIBUS,DCS-CARTE,ADRESSE,PASSIF,SIL-FLD,SIL-FLD-BK,SIL-FLD-W,,,,,,,,,,,FLD-SIDE-AF,FLD-SIDE-BK-AF,FLD-SIDE-W-AF 560531384.dwg,,,1384,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, 560531384.dwg,,LSHH-T1125A-A,1384,XC406/\PR1/X6,25,26,110VAC FROM,XE506/R2/X1 F151/1,VIA XE506/R7/X3 21/22,XC0406\PR2-X11,,,F,F9,17,18,32,9BK,9W,XC406/XC1006/2,XC1006-R4-A8,TU811/DI820,DI820,A1,B1,,,,,CH1,DCU1,XC201 / PBUS 1-11,DI820,CH1/$DI 425,,,,,,,,,,,,,,,,, ,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, Command: UTB Drawing Name: "560531384" CSV Data: ("PROJET" "NR_PROJET" "ECHELLE" "NOM-DE-LA-BOUCLE(1)" "NOM-DE-LA-BOUCLE(2)" "DESSINE" "PLAN_APPROUVE" "NR_AFFAIRE" "NR_PLAN" "PAGE" "R.P" "REV-0" "DATE-REV-0" "REV-0-BY" "DESCRIPTION-REV-0" "REV-0-APPROUVE" "REV-0-EXAMINE" "REV-1" "DATE-REV-1" "REV-1-BY" "DESCRIPTION-REV-1" "REV-1-APPROUVE" "REV-1-EXAMINE" "REV-2" "DATE-REV-2" "REV-2-BY" "DESCRIPTION-REV-2" "REV-2-APPROUVE" "REV-2-EXAMINE" "REV-3" "DATE-REV-3" "REV-3-BY" "DESCRIPTION-REV-3" "REV-3-APPROUVE" "REV-3-EXAMINE" "REV-4" "DATE-REV-4" "REV-4-BY" "DESCRIPTION-REV-4" "REV-4-APPROUVE" "REV-4-EXAMINE" "FILE-NAME" "CAD Filename") ("56960" "E1409" "NONE" "FT-54011-B" "DEBIT TOTAL VAPEUR HP" "HVs" "AZA" "25021" "7756053" "92" "2" "0" "3/7/2014" "HVs" "AS BUILT" "AZA" "AZA" "1" "18-08-14" "HVs" "UPGRADE" "AZA" "AZA" "2" "11/10/2019" "EDC" "Projet E1913 Transfert des I/O Utilités" "TBR" "TBR" "" "" "" "" "" "" "" "" "" "" "" "" "" "C:\\LoopUpdate\\Fichiers de travail\\New loops_20220307\\560530092.dwg") ("56960" "N1028" "NONE" "PT-P2141C-A" "" "HVs" "AZA" "25021" "7756053" "90" "0" "A" "26-05-16" "HVs" "ISSUED FOR CONSTRUCTION" "AZA" "AZA" "0" "6/2/2017" "RAO" "AS-BUILT" "AZA" "AZA" "" "" "" "" "" "" "" "" "" "" "" "" "" "" "" "" "" "" "" "C:\\LoopUpdate\\Fichiers de travail\\New loops_20220307\\560530090.dwg") ("56960" "N1028" "NONE" "FV-P2141C-A" "" "HVs" "AZA" "25021" "7756053" "89" "0" "A" "26-05-16" "HVs" "ISSUED FOR CONSTRUCTION" "AZA" "AZA" "0" "6/2/2017" "RAO" "AS-BUILT" "AZA" "AZA" "" "" "" "" "" "" "" "" "" "" "" "" "" "" "" "" "" "" "" "C:\\LoopUpdate\\Fichiers de travail\\New loops_20220307\\560530089.dwg") ("56960" "E0428" "NONE" "MP1652" "CONTROL OF VF1652 LEVEL BY WASTE OIL TRANSFER PUMP P1652" "HVs" "AZA" "25021" "7756053" "77" "4" "0" "16-03-05" "HVs" "AS BUILT" "AZA" "AZA" "1" "17-09-10" "HVs" "NEW110 VAC PROJECT N901" "AVe" "AVe" "2" "15-02-12" "HVs" "PROJECT N952 ZDDP RATE INCREASE" "BTh" "BTh" "3" "13-07-17" "RAO" "UPDATE MNS03" "AZA" "BTH" "4" "11/10/2019" "EDC" "Projet E1913 Transfert des I/O Utilités" "TBR" "TBR" "" "C:\\LoopUpdate\\Fichiers de travail\\New loops_20220307\\560530077.dwg") ("56960" "N926" "NONE" "PT-50005-A" "BASSE PRESSION VAPEUR BLENDING" "HVs" "AZA" "25021" "7756053" "73" "2" "A" "20-09-11" "HVs" "ISSUED FOR CONSTRUCTION" "AZA" "AZA" "0" "20-12-11" "HVs" "AS BUILT" "BTh" "BTh" "1" "8/2/2012" "HVs" "PROJECT N952 ZDDP RATE INCREASE" "BTh" "BTh" "2" "11/10/2019" "EDC" "Projet E1913 Transfert des I/O Utilités" "TBR" "TBR" "" "" "" "" "" "" "" "C:\\LoopUpdate\\Fichiers de travail\\New loops_20220307\\560530073.dwg") ("56960" "N926" "NONE" "PT-50006-A" "BASSE PRESSION VAPEUR LA" "HVs" "AZA" "25021" "7756053" "72" "2" "A" "20-09-11" "HVs" "ISSUED FOR CONSTRUCTION" "AZA" "AZA" "0" "20-12-11" "HVs" "AS BUILT" "BTh" "BTh" "1" "8/2/2012" "HVs" "PROJECT N952 ZDDP RATE INCREASE" "BTh" "BTh" "2" "11/10/2019" "EDC" "Projet E1913 Transfert des I/O Utilités" "TBR" "TBR" "" "" "" "" "" "" "" "C:\\LoopUpdate\\Fichiers de travail\\New loops_20220307\\560530072.dwg") ("56960" "N876" "NONE" "LSHH-VF1658-A" "WASTE OIL DECANTER LEVEL HIGH" "HVs" "AZA" "25021" "7756053" "69" "3" "A" "2/9/2008" "HVs" "ISSUED FOR CONSTRUCTION" "AZA" "AZA" "0" "29-10-08" "HVs" "AS BUILT" "AZA" "AZA" "1" "6/9/2010" "HVs" "NEW 110VAC PROJECT N901" "AVe" "AVe" "2" "13-03-12" "HVs" "PROJECT N952 ZDDP RATE INCREASE" "BTh" "BTh" "3" "11/10/2019" "EDC" "Projet E1913 Transfert des I/O Utilités" "TBR" "TBR" "" "C:\\LoopUpdate\\Fichiers de travail\\New loops_20220307\\560530069.dwg") ("56960" "N876" "NONE" "LT-VF1658-A" "WASTE OIL DECANTER LEVEL" "HVs" "AZA" "25021" "7756053" "68" "3" "A" "2/9/2008" "HVs" "ISSUED FOR CONSTRUCTION" "AZA" "AZA" "0" "29-10-08" "HVs" "AS BUILT" "AZA" "AZA" "1" "6/9/2010" "HVs" "NEW 110VAC PROJECT N901" "AVe" "AVe" "2" "6/2/2012" "HVs" "PROJECT N952 ZDDP RATE INCREASE" "BTh" "BTh" "3" "11/10/2019" "EDC" "Projet E1913 Transfert des I/O Utilités" "TBR" "TBR" "" "C:\\LoopUpdate\\Fichiers de travail\\New loops_20220307\\560530068.dwg") ("56960" "N876" "NONE" "TT-VF1658-A" "WASTE OIL DECANTER TEMPERATURE" "HVs" "AZA" "25021" "7756053" "67" "1" "A" "010-09-08" "HVs" "ISSUED FOR CONSTRUCTION" "AZA" "AZA" "0" "29-10-08" "HVs" "AS BUILT" "AZA" "AZA" "1" "11/10/2019" "EDC" "Projet E1913 Transfert des I/O Utilités" "TBR" "TBR" "" "" "" "" "" "" "" "" "" "" "" "" "" "C:\\LoopUpdate\\Fichiers de travail\\New loops_20220307\\560530067.dwg") ("56960" "E12-03" "NONE" "LT-D1604-A" "Niveau D1604" "HVs" "MCA" "25021" "7756053" "66" "1" "A" "25-09-10" "HVs" "ISSUED FOR CONSTRUCTION" "MCA" "MCA" "0" "26-10-12" "HVs" "AS BUILT" "MCA" "MCA" "1" "15-06-21" "RAO" "UPDATE" "BTH" "BTH" "" "" "" "" "" "" "" "" "" "" "" "" "" "C:\\LoopUpdate\\Fichiers de travail\\New loops_20220307\\560530066.dwg") ("56960" "N876" "NONE" "LI-VF1658-A" "WASTE OIL DECANTER LEVEL INDICATOR" "HVs" "AZA" "25021" "7756053" "54" "3" "A" "11/6/2009" "HVs" "ISSUED FOR CONSTRUCTION" "AZA" "AZA" "0" "19-10-09" "HVs" "AS BUILT" "AZA" "AZA" "1" "2/9/2010" "HVs" "NEW 110VAC PROJECT N901" "AVe" "AVe" "2" "2/2/2012" "HVs" "PROJECT N952 ZDDP RATE INCREASE" "BTh" "BTh" "3" "11/10/2019" "EDC" "Projet E1913 Transfert des I/O Utilités" "TBR" "TBR" "" "C:\\LoopUpdate\\Fichiers de travail\\New loops_20220307\\560530054.dwg") ("56960" "E12-03" "NONE" "LT-D1603-A" "Niveau D1603" "HVs" "MCA" "25021" "7756053" "50" "1" "A" "25-09-10" "HVs" "ISSUED FOR CONSTRUCTION" "MCA" "MCA" "0" "26-10-12" "HVs" "AS BUILT" "MCA" "MCA" "1" "11/10/2019" "EDC" "Projet E1913 Transfert des I/O Utilités" "TBR" "TBR" "" "" "" "" "" "" "" "" "" "" "" "" "" "C:\\LoopUpdate\\Fichiers de travail\\New loops_20220307\\560530050.dwg") ("56960" "E0428" "NONE" "MP1654" "CONTROL OF PUMP" "HVs" "AZA" "25021" "7756053" "31" "4" "0" "16-03-05" "HVs" "AS BUILT" "AZA" "AZA" "1" "2/9/2008" "HVs" "ADD. ES-MP1654-A IN DCS" "AZA" "AZA" "2" "17-09-10" "HVs" "NEW 110VAC PROJECT N901" "AVe" "AVe" "3" "15-02-12" "HVs" "PROJECT N952 ZDDP RATE INCREASE" "BTh" "BTh" "4" "11/10/2019" "EDC" "Projet E1913 Transfert des I/O Utilités" "TBR" "TBR" "" "C:\\LoopUpdate\\Fichiers de travail\\New loops_20220307\\560530031.dwg") ("56960" "E0428" "NONE" "MS1650B-A" "SKIMMER MS1650B" "HVs" "AZA" "25021" "7756053" "30" "4" "0" "16-03-05" "HVs" "AS BUILT" "AZA" "AZA" "1" "17-09-10" "HVs" "NEW 110VAC PROJECT N901" "AVe" "AVe" "2" "15-02-12" "HVs" "PROJECT N952 ZDDP RATE INCREASE" "BTh" "BTh" "3" "25-08-17" "RAO" "UPDATE MNS03" "BTH" "BTH" "4" "11/10/2019" "EDC" "Projet E1913 Transfert des I/O Utilités" "TBR" "TBR" "" "C:\\LoopUpdate\\Fichiers de travail\\New loops_20220307\\560530030.dwg") ("56960" "E0428" "NONE" "MS1650A-A" "SKIMMER MS1650A" "HVs" "AZA" "25021" "7756053" "29" "4" "0" "16-03-05" "HVs" "AS BUILT" "AZA" "AZA" "1" "20-09-10" "HVs" "NEW 110VAC PROJECT N901" "AVe" "AVe" "2" "15-02-12" "HVs" "PROJECT N952 ZDDP RATE INCREASE" "BTh" "BTh" "3" "25-08-17" "RAO" "UPDATE MNS03" "BTH" "BTH" "4" "11/10/2019" "EDC" "Projet E1913 Transfert des I/O Utilités" "TBR" "TBR" "" "C:\\LoopUpdate\\Fichiers de travail\\New loops_20220307\\560530029.dwg") ("56960" "(ALBE)N684" "NONE" "Ph EQUALIZATION POND" "" "JLe" "JPD" "25021" "7756053" "25" "5" "1" "13-12-94" "JLe" "REVISED AFTER ALBEMARLE PROJECT N684" "JPD" "JPD" "2" "6/1/2005" "HVs" "ISSUED FOR CONSTRUCTION PROJECT E0428" "AZA" "AZA" "3" "16-03-05" "HVs" "AS BUILT AFTER PROJECT E0428" "AZA" "AZA" "4" "6/2/2012" "HVs" "PROJECT N952 ZDDP RATE INCREASE" "BTh" "BTh" "5" "11/10/2019" "EDC" "Projet E1913 Transfert des I/O Utilités" "TBR" "TBR" "" "C:\\LoopUpdate\\Fichiers de travail\\New loops_20220307\\560530025.dwg") ("56960" "2082C" "NONE" "AT-P1659-B" "PH CONTROL ON VF1651" "EH" "BTh" "25021" "7756053" "24" "3" "0" "18-09-98" "EH" "FOR CONSTRUCTION" "BTh" "" "1" "29-08-07" "HVs" "CHANGE TAG AND LOCALISATION" "BTh" "BTh" "2" "3/2/2012" "HVs" "PROJECT N952 ZDDP RATE INCREASE" "BTh" "BTh" "3" "11/10/2019" "EDC" "Projet E1913 Transfert des I/O Utilités" "TBR" "TBR" "" "" "" "" "" "" "" "C:\\LoopUpdate\\Fichiers de travail\\New loops_20220307\\560530024.dwg") ("56960" "MNT" "NONE" "AIT-VF1652-A" "VF1652 PH ANALYSER" "HVs" "MNT" "25021" "7756053" "23" "5" "5" "6/9/2021" "RAO" "F0001: ADD ALIM" "JMO" "JMO" "1" "6/9/2010" "HVs" "NEW 110VAC PROJECT N901" "AVe" "AVe" "2" "6/2/2012" "HVs" "PROJECT N952 ZDDP RATE INCREASE" "BTh" "BTh" "3" "11/10/2019" "EDC" "Projet E1913 Transfert des I/O Utilités" "TBR" "TBR" "4" "26-08-21" "RAO" "F0001: ASBUILT" "JMO" "JMO" "" "C:\\LoopUpdate\\Fichiers de travail\\New loops_20220307\\560530023.dwg") ("56960" "MNT" "NONE" "PT-D1590-A & B" "Mesure de Pression réseau incendie" "HVs" "MNT" "25021" "7756053" "22" "3" "0" "16-09-09" "HVs" "AS BUILT" "MNT" "MNT" "1" "30-04-10" "HVs" "ADD. PT-D1590-B" "MNT" "MNT" "2" "3/2/2012" "HVs" "PROJECT N952 ZDDP RATE INCREASE" "BTh" "BTh" "3" "11/10/2019" "EDC" "Projet E1913 Transfert des I/O Utilités" "TBR" "TBR" "" "" "" "" "" "" "" "C:\\LoopUpdate\\Fichiers de travail\\New loops_20220307\\560530022.dwg") ("56960" "" "NONE" "FT-P1659-A" "FLOW on P1659 TO AMOCO " "HVs" "BTh" "25021" "7756053" "20" "3" "A" "24-11-98" "HVs" "ISSUED FOR CONSTRUCTION" "BTh" "BTh" "0" "30-11-98" "HVs" "AS BUILT" "BTh" "BTh" "1" "2/9/2010" "HVs" "NEW 110VAC PROJECT N901" "AVe" "AVe" "2" "3/2/2012" "HVs" "PROJECT N952 ZDDP RATE INCREASE" "BTh" "BTh" "3" "11/10/2019" "EDC" "Projet E1913 Transfert des I/O Utilités" "TBR" "TBR" "" "C:\\LoopUpdate\\Fichiers de travail\\New loops_20220307\\560530020.dwg") ("56960" "" "NONE" "FT-VF1650-A" "FLOW to VF1650 from AMOCO" "HVs" "BTh" "25021" "7756053" "18" "4" "0" "18-02-99" "HVs" "AS BUILT" "BTh" "BTh" "1" "23-03-99" "HVs" "REMARK OF BTh" "BTh" "BTh" "2" "2/9/2010" "HVs" "NEW 110VAC PROJECT N901" "AVe" "AVe" "3" "3/2/2012" "HVs" "PROJECT N952 ZDDP RATE INCREASE" "BTh" "BTh" "4" "11/10/2019" "EDC" "Projet E1913 Transfert des I/O Utilités" "TBR" "TBR" "" "C:\\LoopUpdate\\Fichiers de travail\\New loops_20220307\\560530018.dwg") ("56960" "E12-03" "NONE" "LT-D1604-A" "Niveau D1604" "HVs" "MCA" "25021" "7756053" "66" "1" "A" "25-09-10" "HVs" "ISSUED FOR CONSTRUCTION" "MCA" "MCA" "0" "26-10-12" "HVs" "AS BUILT" "MCA" "MCA" "1" "15-06-21" "RAO" "UPDATE" "BTH" "BTH" "" "" "" "" "" "" "" "" "" "" "" "" "" "C:\\LoopUpdate\\Fichiers de travail\\560530066.dwg") ("56960" "N876" "NONE" "OV-VF1658-C" "WASTE OIL DECANTER INPUT VALVE FROM TRUCK" "HVs" "AZA" "25021" "7756053" "55" "3" "A" "11/6/2009" "HVs" "ISSUED FOR CONSTRUCTION" "AZA" "AZA" "0" "19-10-09" "HVs" "AS BUILT" "AZA" "AZA" "1" "20-09-10" "HVs" "NEW 110VAC PROJECT N901" "AVe" "AVe" "2" "16-02-12" "HVs" "PROJECT N952 ZDDP RATE INCREASE" "BTh" "BTh" "3" "11/10/2019" "EDC" "Projet E1913 Transfert des I/O Utilités" "TBR" "TBR" "" "C:\\LoopUpdate\\Fichiers de travail\\560530055.dwg") ("56960" "MNT" "NONE" "AIT-VF1652-A" "VF1652 PH ANALYSER" "HVs" "MNT" "25021" "7756053" "23" "5" "5" "6/9/2021" "RAO" "F0001: ADD ALIM" "JMO" "JMO" "1" "6/9/2010" "HVs" "NEW 110VAC PROJECT N901" "AVe" "AVe" "2" "6/2/2012" "HVs" "PROJECT N952 ZDDP RATE INCREASE" "BTh" "BTh" "3" "11/10/2019" "EDC" "Projet E1913 Transfert des I/O Utilités" "TBR" "TBR" "4" "26-08-21" "RAO" "F0001: ASBUILT" "JMO" "JMO" "" "C:\\LoopUpdate\\Fichiers de travail\\560530023.dwg") ("56960" "" "NONE" "FT-VF1650-A" "FLOW to VF1650 from AMOCO" "HVs" "BTh" "25021" "7756053" "18" "4" "0" "18-02-99" "HVs" "AS BUILT" "BTh" "BTh" "1" "23-03-99" "HVs" "REMARK OF BTh" "BTh" "BTh" "2" "2/9/2010" "HVs" "NEW 110VAC PROJECT N901" "AVe" "AVe" "3" "3/2/2012" "HVs" "PROJECT N952 ZDDP RATE INCREASE" "BTh" "BTh" "4" "11/10/2019" "EDC" "Projet E1913 Transfert des I/O Utilités" "TBR" "TBR" "" "C:\\LoopUpdate\\Fichiers de travail\\560530018.dwg") 560531384 not found in first column of CSV file. Quote Link to comment Share on other sites More sharing options...
Lee Mac Posted May 18, 2022 Share Posted May 18, 2022 Are you saying that the program is reading from the wrong CSV file? Have you configured the CSV file parameter correctly? Does the program perform succesfully if you set the CSV parameter to nil and manually select the CSV file? Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.