I have created some PML code to collect "PIPE" then run "DETAIL" for each one of them and it works fine in Isodraft Module. Accordingly, my question is, Is there any way to run that Macro in Design Module instead of entering Isodraft and get the same result?
in DESIGN Module, enter the command ISODRAFTMODE to make the isodraft syntax available then run you PML function. Type EXIT to go back to Normal Design.
There should be something like this code: isodraftmode
$M/C:\AVEVA\Plant\PDMS12.0.SP6\project\Sample\samiso\std\basic.met $* option file path
detail CE
handle any
$P $!!error.text
exit
endhandle
exit
[QUOTE=me_hungry;112272]There should be something like this code: isodraftmode
$M/C:\AVEVA\Plant\PDMS12.0.SP6\project\Sample\samiso\std\basic.met $* option file path
detail CE
handle any
$P $!!error.text
exit
endhandle
exit
Agreed. This is the standard method to extract Isometric from Design.
Prossly, You can list all your line numbers with against the word CE in a text file and drop it to command window.
Or Else you can modify previewisostd.TXT placed is std folder at project location with your desired folder Path and list all your lines in excel and add one column next to your line number and paste "!!isdRunIso('STA', true)" against each line number. you will get what you are looking for.