Model check
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
Model check
Hello, I would like to use the model check to verify if a parameter has been filled in.
Can you help me do this?
Thank you.
model check
Solved! Go to Solution.
- Labels:
-
General
Accepted Solutions
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
Thank you very much for your help, my friend. I managed to do what I wanted here.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
<TYPE>_PARAMETER <parameter_name> STR
Will return the value of the <parameter_name>
If you have a value that you want to check against
<TYPE>_PARAMETER <parameter_name> STR EQ <fixed value or a file containing a list of values>
<TYPE>_PARAMETER <parameter_name> NONE EQ PDM
Top line will verify the existance of your vale against its known value
Second line will tell if the parameter is designated to your PLM system
<TYPE> can be PRT, ASM or DRW for part, assembly or drawing checks.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
Thank you very much for your help, my friend. I managed to do what I wanted here.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
Ben is correct. Here are some examples that we list in our ModelCheck Start Files. The start files basically check to make sure the models contain specific information .
<TYPE>_PARAMETER <parameter_name> STR EQ <fixed value or a file containing a list of values>
PRT_PARAMETER CONTROL_NUMBER STR
ASM_PARAMETER CAGECODE STR EQ LENGTH_5
More start file information:
PRT_DATUM_PLANE RIGHT
PRT_VIEW BACK
PRT_LAYER COORD_SYS NONE
PRT_RELATION TITLE = PTC_COMMON_NAME
ASM_LAYER COMPONENTS NONE
