Hi
I am running into issues when trying to access the contents of an context [form of internal table] that is not displayed in the page.
Replica of my data view is:
ZFIEXPRS
|____CARDS
|__DATA
|___ACCOUNT
|___SCORE
|___FRCSF
|___TEDSE
|___FLAG
With the program been triggered it extract 25 records and creates 25 pages. In each of the page I want to display a text based on the contents of the context element FLAG,
I tried to access the FLAG by:
this.parent.dataNode.CARDS.DATA.FLAG.value;
But i could see that it access only the first instance of the node and the same is copied to rest of the page, in other words only the first entry of the internal table is accessed. How i can access this variable in each of the page, such as in page one it would be CARDS[1]-FLAG, page 2 it is CARDS[2]-flag etc etc? Pls can any help be offered?