Problem in "IAspect"
Hi all,
could anybody help me to solve my problem?
I have a method which takes "IAspect" as input parameter.
The method is like that---> PostData(IAspect aspect);
I have a table in webdynpro. I am fetching data from that table by using the following code
// Code..............
IPrivateXfrCompView.IBPDataElement bdele;
for(int i=0; i< wdContext.nodeBPData().size(); i++)
{
bdele = wdContext.nodeBPData().getBPDataElementAt(i);
}
Now I want to pass those data in to the above method
PostData(IAspect aspect). So, how can I do it?
Another one if the method takes AbstractList as input
parameter[PostData(AbstractList)] then how can I pass
the same data in the input parameter?
Thanks & Regards
Sudip