Auto-Email in Schematic Composer

Discussion in 'Cadence' started by chickenwing2010, Jul 28, 2006.

  1. Hi friends,

    Is there any SKILL script that sends emails to notify other teamates
    evey time when a schematic in Composer is modified?? Let's say, we
    modified a schematic using Composer and an email will be sent
    automatically to all receiptants to inform them of the modification.

    Any guidance is highly appreciated.

    Best regards,
    Will
     
    chickenwing2010, Jul 28, 2006
    #1
  2. chickenwing2010

    Satya Guest

    Usually you would use a Version Control System to do that. They are
    separately licensed and are not cheap. Then you can configure the VC System
    to send and e-mail on every check-in (which is what you want I think).

    Regards,
    Satya
     
    Satya, Jul 28, 2006
    #2
  3. If you just want to get an email sent, you can write a skill function
    which will send the email to the team and register this skill function
    to be called every time the user does check and save.

    schRegPostCheckTrigger(
    s_functionName
    [ g_onceOnly ]
    )
    => t | nil

    Registers a function that will be called after a schematic is checked.
    The called function must be defined to accept three arguments: the
    cellview ID of the schematic, the number of errors encountered, and the
    number of warnings encountered during the check.


    You can probably confirm with the designer before sending with a pop-up:
    "You have modified the schematic, Do you want to inform the team" [Yes/No]

    Maybe you can have a multiline string field also in the form to capture
    any comments.

    regards,
    Suresh
     
    Suresh Jeevanandam, Aug 1, 2006
    #3
Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments (here). After that, you can post your question and our members will help you out.