• 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. Open "Choosing Analyses form" for specific analysis with...

Stats

  • Locked Locked
  • Replies 5
  • Subscribers 143
  • Views 1420
  • 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

Open "Choosing Analyses form" for specific analysis with skill

fatcat1206
fatcat1206 over 9 years ago

Hi All

I am tring to open "Choosing Analyses form" for specific analysis with skill.

What I found is "sevEditSelectedAnas(session)", it can open the "Choosing Analyses Form"

but it requires to select the analyses first, and I cannot find an API to select the analysis.

What I need is something similar as "sevEditSelectedAnas(session)"

instead of having one argument, it can receive the second argument as "analysis name".

Thus some functions like "xxxSevEditAnas(session anaName)"

Then I can open "Choosing Analyses form" for specific analysis defined by the second argument.

 

Best Regards


Yi

  • Cancel
Parents
  • fatcat1206
    fatcat1206 over 9 years ago

    Hi All

    I just find a work around for my question.

    on the beginning, I just bring out the "Choose Analyses Form" with "sevEditSelectedAnas()" API.

    Then with "SISdisplayedFormList()", I create a list for all the displayed form.

    by some filtering, I can find the "Choose Analyses Form" of specified test session.

    Then I change the value of "asiiAnalysisRadioField" to the analyses I want.

    It was not a perfect solution, but it works for me :)

    Please find the procedure below.

    Best Regards

    Yi

    xxxSevEditAnas(session anaName)

    procedure(SISsevEditAnas(session anaName)
    let((

        analysisForm
    )
        sevEditSelectedAnas(session)
        analysisForm = eval(car(setof(x SISdisplayedFormList() and(eval(x)~>sevSession == session eval(x)~>asiiAnalysisRadioField))))              
        analysisForm ->asiiAnalysisRadioField->value = anaName
    );let
    );proc


    procedure(SISdisplayedFormList()
    let((
        displayedFormList
    )
        displayedFormList = nil
        foreach(form hiFormList()
            when(and(hiIsForm(eval(form)) hiIsFormDisplayed(eval(form)))
                displayedFormList = cons(form displayedFormList)
            );when
        );foreach
        displayedFormList
    );let
    );proc

    • Cancel
    • Vote Up 0 Vote Down
    • Cancel
Reply
  • fatcat1206
    fatcat1206 over 9 years ago

    Hi All

    I just find a work around for my question.

    on the beginning, I just bring out the "Choose Analyses Form" with "sevEditSelectedAnas()" API.

    Then with "SISdisplayedFormList()", I create a list for all the displayed form.

    by some filtering, I can find the "Choose Analyses Form" of specified test session.

    Then I change the value of "asiiAnalysisRadioField" to the analyses I want.

    It was not a perfect solution, but it works for me :)

    Please find the procedure below.

    Best Regards

    Yi

    xxxSevEditAnas(session anaName)

    procedure(SISsevEditAnas(session anaName)
    let((

        analysisForm
    )
        sevEditSelectedAnas(session)
        analysisForm = eval(car(setof(x SISdisplayedFormList() and(eval(x)~>sevSession == session eval(x)~>asiiAnalysisRadioField))))              
        analysisForm ->asiiAnalysisRadioField->value = anaName
    );let
    );proc


    procedure(SISdisplayedFormList()
    let((
        displayedFormList
    )
        displayedFormList = nil
        foreach(form hiFormList()
            when(and(hiIsForm(eval(form)) hiIsFormDisplayed(eval(form)))
                displayedFormList = cons(form displayedFormList)
            );when
        );foreach
        displayedFormList
    );let
    );proc

    • Cancel
    • Vote Up 0 Vote Down
    • Cancel
Children
No Data

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