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

IT Shop Help

Hi,

I have Departments, Location, Roles.

All three attributes having dependency on each other, How to reflect this in IT Shop.

Thanks.

Aad

 

  • Hi,
    Any pointers, Please.

    Regards,
    Aad
  • It's not really clear what you are asking. Maybe try rephrasing or posting more detail?
  • Sorry George,

    I have some Business Roles which I want to publish in IT Shop, which is based on the combination of Department and Location.

    For example I have, 2 departments,3 locations and 5 Roles.

    When I select Department 1, I should get a drop-down of location and only 2 location need to reflect in IT Shop, based on the location I select the roles has to differ and show.

    Department2, All three locations need to reflect and based on that the roles will differ.

    How to achieve this.

    Regards,
    Aad
  • Hi Aad,

    Doing this using drop-down will require Web Designer customization since the data you have is dynamic.

    An "easier" way to achieve the same would be to use request properties. You'll need to extend the ShoppingCartItem and PersonWantsOrg tables with the 3 FK columns to store UID_Department, UID_Location and UID_Org. Then, in the custom properties, you can start with Department as the first input. The second input can be Location, with a where clause something like "UID_Department='%CCC_UID_Department%'" (this means show only the list of locations where the department is what the user selected first). finally, you can use a similar logic to display the relevant UID_Org which the user can select.

    Using the approach above you won't get drop-downs but it might be much quicker to implement.

    HTH
    Kunal