Message 1 of 7
iLogic rules not found on ipart
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
Hi,
I wrote an iLogic rule (called Calcolo_Volume_dm3) to convert Volume from mm^2 to dm^3
(an custom iproperties called VOLUME_dm3 is writting)
Dim oValue As String = (Format(Round(iProperties.Volume / 1000000, 3), ".00")) If oValue < 1 Then iProperties.Value("Custom", "VOLUME_dm3") = "0" & oValue Else iProperties.Value("Custom", "VOLUME_dm3") = oValue End If
is't working well;
problem is just when I generate some ipart...if I open that one it gave me an error like:
"rules activates from ilogic events
RunRule: impossibile found a rule named "Calcolo_Volume_dm3" in that document"
I try to bypass that problem putting an external rule called "Calcolo_Volume_dm3" but it still not found
Have you some ideas to remove that error??
thanks