• 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 Design
  3. Embedding a hypertext link in Report Fields

Stats

  • Locked Locked
  • Replies 5
  • Subscribers 126
  • Views 13746
  • 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

Embedding a hypertext link in Report Fields

Aditya A S V
Aditya A S V over 13 years ago

 Hi all,

I am working on developing a Skill based GUI which will do the following...

[1] Submit some jobs (say some quality check flows) and monitor their status (running/complete/error).

[2] Display the various results generated by them as links alongside in the GUI, so that user may click the link and open the reports individually as described below

S.No   cells     Flow1_Status     Flow2_Status     Flow1_Report    Flow2_Report

1        cell1     Complete          Running              link(report)         link(report)

2        cell2     Running             Complete           link(report)         link(report)

I chose to use "hiCreateReportField()" to do this and was looking for an option wherein I can embedd a hypertext link as an element of a report field. Hence, help me to know if this is possible. If not, what other alternative can I use to display my report in a clear and legible manner.

 

Regards,

Aditya

 

  • Cancel
Parents
  • dmay
    dmay over 13 years ago

    I'm glad you got it to work. I have a little routine I use to pull specific columns of information from any report field that I define. You pass it the field id (hiGetCurrentForm()~>ReportField in your case) and an optional list of columns that you want to retrieve.

    myfpGetSelectedReportFieldList(hiGetCurrentForm()~>ReportField)
    or
    myfpGetSelectedReportFieldList(hiGetCurrentForm()~>ReportField list(2 3)) ;Retrieve data from columns 2 and 3

    Derek

    /*
    myfpGetSelectedReportFieldList(
        field
        [columns]
    )

    Reads the integer list of selected items in report field and returns the corresponding data.
    You can request which columns are returned.

    #ARGUMENTS
    =field
    fieldId
    =[columns]
    list(0 1 ...) - specify a list of column numbers to return

    #RETURN_VALUES
    =list(values) - each value may be a list if more than one column is requrested

    */
    procedure(myfpGetSelectedReportFieldList(field @optional (columns list(0)))
      let((item itemInfo itemList)
        foreach(num field->value
            item=nth(num field->choices)
            itemInfo=nil
            foreach(column reverse(columns)
                itemInfo=cons(nth(column item) itemInfo)
            )
            when(length(itemInfo)==1 itemInfo=car(itemInfo))
            itemList=cons(itemInfo itemList)
        )
        itemList
      ) ;let
    ) ;proc

    • Cancel
    • Vote Up 0 Vote Down
    • Cancel
Reply
  • dmay
    dmay over 13 years ago

    I'm glad you got it to work. I have a little routine I use to pull specific columns of information from any report field that I define. You pass it the field id (hiGetCurrentForm()~>ReportField in your case) and an optional list of columns that you want to retrieve.

    myfpGetSelectedReportFieldList(hiGetCurrentForm()~>ReportField)
    or
    myfpGetSelectedReportFieldList(hiGetCurrentForm()~>ReportField list(2 3)) ;Retrieve data from columns 2 and 3

    Derek

    /*
    myfpGetSelectedReportFieldList(
        field
        [columns]
    )

    Reads the integer list of selected items in report field and returns the corresponding data.
    You can request which columns are returned.

    #ARGUMENTS
    =field
    fieldId
    =[columns]
    list(0 1 ...) - specify a list of column numbers to return

    #RETURN_VALUES
    =list(values) - each value may be a list if more than one column is requrested

    */
    procedure(myfpGetSelectedReportFieldList(field @optional (columns list(0)))
      let((item itemInfo itemList)
        foreach(num field->value
            item=nth(num field->choices)
            itemInfo=nil
            foreach(column reverse(columns)
                itemInfo=cons(nth(column item) itemInfo)
            )
            when(length(itemInfo)==1 itemInfo=car(itemInfo))
            itemList=cons(itemInfo itemList)
        )
        itemList
      ) ;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