Tejeshwer

Tejeshwer

34p

41 comments posted · 0 followers · following 1

14 years ago @ Exploring Siebel - Siebel Product Configu... · 0 replies · +2 points

You need to modify the control web template for this. There would be one section for the promotion field, try removing that.

14 years ago @ Exploring Siebel - Fetching value of Orac... · 0 replies · +2 points

I am glad it helped someone... :)

14 years ago @ Exploring Siebel - Debugging Siebel - Cre... · 0 replies · +2 points

You can keep your log location in list of values and use it for saving the files. This way you can keep different location on server and local.

15 years ago @ Exploring Siebel - Editing conflict page ... · 1 reply · +2 points

pull that field as linked item in the configurator, and use constraints exclude that product. then use excluded = y user property to hide that product instead of showing it as red.

hope it helps.

15 years ago @ Exploring Siebel - Community · 0 replies · +3 points

If the requirement is to restrict user from entering new values into some attributes on the revise/renew order then it can be achieved by showing error to the user on attribute update by scripting "Cfg_AttributeSelected" event it would be an very easier workaround.

But if customer completely wants to remove some attributes from the view then I guess you need to create two different User Interface for the product and select one based upon the condition, read API to Select the Configurator User Interface section of the product admin pdf of the bookshelf. You will need to change Configurator Load workflow for this.

choose option that fits better.

15 years ago @ Exploring Siebel - Get Attribute Value - ... · 0 replies · +2 points

GetCPInstance uses SIS OM Asset Integation Object which also contain the Hierarchy Parent Key and Hierarchy Root Key user keys.

15 years ago @ Exploring Siebel - Get Attribute Value - ... · 0 replies · +2 points

SIS OM Order Integration object have Hierarchy Parent Key and Hierarchy Root Key set thus all the child objects line items and attributes are represented under one Root product in hierarchical nature.

Write output SIebel Message to file to understand the logic.

15 years ago @ Exploring Siebel - Read only Siebel Produ... · 0 replies · +1 points

Ideally this should work in all high interactive applications. you can also try by removing the top container as:

var readonly = theApplication().GetProfileAttr("ReadOnly");

also check whether the profile attribute is set before entering the configurator.
you check this by directing your browser to following code:

javascript:alert(theApplication().GetProfileAttr("ReadOnly"));

15 years ago @ Exploring Siebel - Read only Siebel Produ... · 0 replies · +2 points

Amitabh, you can disable the Done button in java script by accessing the container table data tag <td>. Read w3schools.com to take help in implementing it.

and i have already replied and updated the post on restricting the attribute length.

Hope it helps.

15 years ago @ Exploring Siebel - Read only Siebel Produ... · 2 replies · +2 points

This technique can also be used to make the product drop down read only, you have to add disabled="true" property for every control that you want to make read only.

Products usually shown in drop down thus you need to edit showCombo method for this.

you can also disable the done button but then user wont be able to go back to his quote or order. Choose solution that suits you best.