HI Sunil,
Now I understood what I did wrong.But the actual requirement of mine is to build a Involved parties tab with various parties involved for my custom BO.
For Example:
1.Admin Party
2.Employee Party
3.Buyer Party
4.Account
5.Owner etc
When I checked the standard BOs all these parties are stored under only one node that is PARTY node with different role codes.
I am placing fields of type OVS such as Admin Party,Employee Party,Buyer Party,Account,Owner etc in TI screen.When I select the OVS of these fields PARTY node should get filled with the Party ID and a Role code has to be assigned for that automatically.
node Party [1,n]
{
element PartyID : PartyID;
element RoleCode :PartyRoleCode;
}
association EmployeeParty to Party valuation (RoleCode=="1215");
association AdminParty to Party valuation (RoleCode=="1122");
Above is the structure of my Party node.Could you please suggest how this can be achieved.