Hi Yuben,
What you should do is get the screen buffers from the GX session and extract whatever you want from it.
Here is code example (.NET - GXBasicWebForm):
In OnInit - add this line:
gx_appConfig.getSessionConfig().addVariable(GXBaseObjectConstants.GX_VAR_RETURN_SCREEN_BUFFERS, GXBaseObjectConstants.GX_VAR_VAL_BUFFERS_SCREEN_DATA);
After base.OnInit(e);
And in user_postConnect add this code:
GXScreenBuffers gxsb = new GXScreenBuffers();
gx_connect();
gxsb = (gx_session.getScreen().getBuffers(true));
This will fill the variable gxsb with the screen content.
You can then use some sub string function in order to retrieve any sub string you want from it according to the position you want.
Hope this will do the job,
Asaf
#webMethods#ApplinX#Mainframe-Integration