cancel
Showing results for 
Search instead for 
Did you mean: 

How to create a program like territories Setup

Former Member
0 Kudos

Hi Guys...

currently im ask to do a modules that look like territories setup , could somebody show me how to do it .? the object that i need to create,?

thanks

Loren

Accepted Solutions (0)

Answers (2)

Answers (2)

Former Member
0 Kudos

Hi Loren,

Do you mean you have an UDT and need an User Form to update through the form? Territories Setup form is a very simple form. Have you created your User Form already?

Thanks,

Gordon

Former Member
0 Kudos

Hi Gordon

i would like to make the grid like componet on the Territories-Setup, the one which the territories had been displayed. Is this a grid or what object is this. Could you please provide sample how to do this?

thanks

Loren

Former Member
0 Kudos

Hi Loren,

It's not a Grid, it's a TreeView control and the SDK (unfortunately) does not make that control available to us.

But you can easily implement something very similar with a Grid and using Collapse levels.

Regards,

Vítor Vieira

Former Member
0 Kudos

I made something similar few days ago. I was not succesful with grid (due limitation of colapse levels), but i made it with matrix. Its not so easy as someone wrote here before (you have to catch movements of groups, orders, ...), but you can do it within few hours.

What do you need to achieve exaclty?

Former Member
0 Kudos

Hi Petr,

You can achieve it with a grid. And you don't even need to use the collapse levels.

Using the collapse levels you'll need to concatenate the code with the value of the record.


1 - USA
        2 - South Carolina
                           4 - City 1
                           5 - City 2
        3 - North Carolina
                           6 - City 3
                           ...

With out collapse levels, you create something like:


1 | USA |   |                |   |
  |     | 2 | South Carolina |   |
  |     |   |                | 4 | City 1
  |     |   |                | 5 | City 2
  |     | 3 | North Carolina |   |
  |     |   |                | 6 | City 3
  |     |   |                | 7 |  ...

Then you hide the columns with the codes (odd number columns)

Regards,

Vítor Vieira

Former Member
0 Kudos

Hi

What exactly you want to do? if you want a new form like territory setup than you can create a user form or could you please explain your requirement further...

Thanks