cancel
Showing results for 
Search instead for 
Did you mean: 

How to know Which all places a given context node is being used???

Former Member
0 Kudos

can we know where the Context node(C1) is used in the complete component.

Accepted Solutions (0)

Answers (1)

Answers (1)

Former Member
0 Kudos

Hi Rahul,

Can you please elaborate your requirement ?

Context node can be compared to a Internal table which hold the data.

if you really want to find where  a particular context node is being used it will be kind of manual search where you would have to look into views and component/custom controller.

In a particluar view implemenation class you can go to attribute TYPED_CONTEXT and the find the context node class and do  a where used list.

Hope this helps.

Thanks,

Poonam

Former Member
0 Kudos

Hi Poonam,

I want to know which all places the context node is used...

former_member210661
Active Contributor
0 Kudos

Hi Rahul Sharma,

as poonam says context nodes are like internal table which holds data at run time.

i will give you a brief explanation.

here we are working with fields this fields are coming from base entitys example i will take btadminh

this is one base entity in under this there is a Attribute Structure CRMST_ADMINH_BTIL. if you click

on this there will be a fields.

this fields we are using in our views. when ever we are enter any data corresponding fields data will

store on that corresponding tables.

in your view configuration you will see this base entitys and there fields..

these are the context nodes under this we have a fields...

like this..

Thanks & Regards,

Srinivask.

Former Member
0 Kudos

Thanks Srinivas...