• Skip to main content
  • Skip to search
  • Skip to footer
Cadence Home
  • This search text may be transcribed, used, stored, or accessed by our third-party service providers per our Cookie Policy and Privacy Policy.

  1. Community Forums
  2. Custom IC SKILL
  3. Auto-update QRC form based on a specific field being mo...

Stats

  • Locked Locked
  • Replies 2
  • Subscribers 144
  • Views 13021
  • Members are here 0
This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

Auto-update QRC form based on a specific field being modified

frankp
frankp over 7 years ago

Hello Cadence folk,

(ICADV12.30.ISR15)

Concerning the QRC form, "Setup" Tab:

I would like for the view name of the extracted output view to be modified upon a change in the "RuleSet" field (drop-down menu).

In other words, if the ruleset is changed to "ruleset_typical" the (extracted) view name will automatically be modified to "av_extracted_typical"  and so on. Is there a way to do this ?

Thanks,

Regards,

Frank

  • Cancel
  • Quek
    Quek over 7 years ago

    Hi Frank

    You can do it as follows:

    a. Save the following codes in a file named "vuiUserDefinedRCXFormSetupCB.il"

    procedure( vuiUserDefinedRCXFormSetupCB(form)
      prog( (setupTab)
          when( form~>hiFormSym=='vuiRcxRunForm
             setupTab=_vuiRcxGetTabField("vuiRcxRunForm" "setupTab")
             when( setupTab~>outputFormat~>value=="Extracted View"
                setupTab~>ruleSetField~>_callback="_vuiRcxSetupDirCB_q()"
                _vuiRcxSetupDirCB_q()
             ) ;when
          ) ;when
          return(t)
       ) ;prog
    ) ;procedure


    procedure( _vuiRcxSetupDirCB_q()
       let( (setupTab ruleSet)
          _vuiRcxSetupDirCB()
          setupTab=_vuiRcxGetTabField("vuiRcxRunForm" "setupTab")
          ruleSet=setupTab~>ruleSetField~>value||""
          setupTab~>extractedView~>value=strcat("av_extracted_" ruleSet)
       ) ;let
    ) ;procedure


    b. Load it in CIW using:

    load "./vuiUserDefinedRCXFormSetupCB.il"

    c. Open Quantus form and try changing the ruleset


    Best regards
    Quek

    • Cancel
    • Vote Up 0 Vote Down
    • Cancel
  • frankp
    frankp over 7 years ago in reply to Quek

    Thanks Quek,

    Looking at the code, it seems to be doing exactly what I was searching for - haven't given it spin yet though.

    Thanks

    Regards,

    Frank

    • Cancel
    • Vote Up 0 Vote Down
    • Cancel

Community Guidelines

The Cadence Design Communities support Cadence users and technologists interacting to exchange ideas, news, technical information, and best practices to solve problems and get the most from Cadence technology. The community is open to everyone, and to provide the most value, we require participants to follow our Community Guidelines that facilitate a quality exchange of ideas and information. By accessing, contributing, using or downloading any materials from the site, you agree to be bound by the full Community Guidelines.

© 2025 Cadence Design Systems, Inc. All Rights Reserved.

  • Terms of Use
  • Privacy
  • Cookie Policy
  • US Trademarks
  • Do Not Sell or Share My Personal Information