cancel
Showing results for 
Search instead for 
Did you mean: 

How to create dynamic thing type mode?

abhishek_raj07
Participant
0 Kudos

Hi Expert,

I need to create a dynamic thing type mode for one column in the advance list pane as it contain more than one role i.e. Customer ,Employee ,Contact etc. Please find the screenshot below:-

Static is working fine for me in the TI Screen but it is only giving data for one role ,if anyone had implemented this functionality before ,please provide the step for it.

Thanks,

Abhishek Raj

Accepted Solutions (1)

Accepted Solutions (1)

HorstSchaude
Product and Topic Expert
Product and Topic Expert
0 Kudos

Hello Raj,

If you know the ThingType you may add this information as an element to the list.

Next you map this element to the tag "Thing Type Information" -> "Associated Thing Type".

HTH,

   Horst

abhishek_raj07
Participant
0 Kudos

Hi Horst,

Thanks for the quick reply.I have added a element in the BO and also map this element to the the Thing Type Information  but not able to understand how to add multiple thing type to it for e.g. ( COD_ACCOUNT_TT , COD_EMPLOYEES , COD_CONTACT ) so on hovering on the respective role it gives the data for that.

Thanks,

Abhishek

abhishek_raj07
Participant
0 Kudos

Hi Horst,

I have implemented the above functionality with the help of the calculation rule..

Thanks,

Abhishek

former_member187149
Participant
0 Kudos

Hi Abhishek,

Can you share the code snippet which you used in the calculation rule for this functionality.That would be very helpful for my requirement.

Thanks in advance.

Regards,

Navin

abhishek_raj07
Participant
0 Kudos

Hi Navin,

I used the following code :-

if($currentrow.Rolecode==39)

$currentrow.ThingType="COD_EMPLOYEES"

elif($currentrow.Rolecode=="ZC1")

$currentrow.ThingType="COD_CONTACT_TT"

else

$currentrow.ThingType="COD_ACCOUNT_TT"

end

but  I don't know the on what basis you are using the above code snippet as I used on the condition of RoleCode.

Thanks,

Abhishek

former_member187149
Participant
0 Kudos

Hi Abhishek,

First of all thanks for your response.I am going to try for my scenario.Even my requirement is to enable dynamic thing type for my custom involved parties based on the rolecode.

I have one more query here ,where should I embed this snippet in my screen.

Regards,

Navin

abhishek_raj07
Participant
0 Kudos

Hi Navin,

I had added a element in my BO and the assign the thing type value through calculation rule so u need to add this rule to the value of the field with the help of calc. rule and then add this element in the dynamic association of the field.

Thanks,

Abhishek

Answers (0)