Resources for IT Professionals > Dynamics Forums > CRM Development > How can I add 2 sub-items under Campaign/Campaign Responses
Ask a questionAsk a question
 

AnswerHow can I add 2 sub-items under Campaign/Campaign Responses

  • Thursday, November 05, 2009 5:24 PMBILL_TETRAULT Users MedalsUsers MedalsUsers MedalsUsers MedalsUsers Medals
     
    I'm trying to come up with something looking like
    [Campaign Entity]

        Information
        Campaign Responses
              Accepted(#)
              Rejected(#)

    I've been looking at the ISV.Config and SiteMap but not sure how to implement.
    Woundering if any excamples are out there.

Answers

  • Friday, November 06, 2009 4:51 PMBILL_TETRAULT Users MedalsUsers MedalsUsers MedalsUsers MedalsUsers Medals
     Answer

    leftNavRename(

    'nav_mdv_campaign_campaignresponse_accepted', 'Campaign Responses', 'Accepted');

    leftNavRename(

    'nav_mdv_campaign_campaignresponse_registered', 'Campaign Responses', 'Registered');

All Replies

  • Thursday, November 05, 2009 5:37 PMTanguy T Users MedalsUsers MedalsUsers MedalsUsers MedalsUsers Medals
     
    I'm sure you can't add sub items in left navigation pane using ISV.Config...

    Maybe you could add Items (and not sub items) but you will need to develop your own page that displays Accepted or Rejected response since the associated view is always the same for the same type of entity.
    My blog : http://mscrmtools.blogspot.com You will find: Form Javascript Manager (export/import javascript from forms) ISV.Config Manager (graphical ISV.config edition - export/import) View Layout replicator (customize one view and replicate to others) And others (use tool tag on my blog)
  • Thursday, November 05, 2009 6:34 PMDavidBerry Users MedalsUsers MedalsUsers MedalsUsers MedalsUsers Medals
     
    If it helps, I would recommend embedding the child entities into the Campaign Response with my Embedded Advanced Find View code.  The standard embedded view model has the limitation of using the standard Associated View from custom entities, which hides deactivated records.

    I ran into a similar situation when trying to extend the Campaign Response entity to accept a dynamic list of questions and responses in situations where we used the Campaign model to implement a kind of satisfaction survey.
    Dave Berry
  • Friday, November 06, 2009 4:51 PMBILL_TETRAULT Users MedalsUsers MedalsUsers MedalsUsers MedalsUsers Medals
     Answer

    leftNavRename(

    'nav_mdv_campaign_campaignresponse_accepted', 'Campaign Responses', 'Accepted');

    leftNavRename(

    'nav_mdv_campaign_campaignresponse_registered', 'Campaign Responses', 'Registered');