Problem in calling Client proxy using ABAP Report
All Your inputs and various threads were really helpful . i have followed this blog as well /people/ravikumar.allampallam/blog/2005/03/14/abap-proxies-in-xiclient-proxy
Now after all while trying to pass values to proxy i have an issue : in the above blog there is a small pinch of code for referencing the proxy through an abap report.
i.e. &----
*& Report ZBLOG_ABAP_PROXY
*&
&----
*&
*&
&----
REPORT zblog_abap_proxy.
DATA prxy TYPE REF TO zblogco_proxy_interface_ob.
*
CREATE OBJECT prxy.
DATA it TYPE zblogemp_profile_msg.
TRY.
it-emp_profile_msg-emp_name = 'Sravya'.
it-emp_profile_msg-empno = '80101'.
it-emp_profile_msg-DEPARTMENT_NAME = 'NetWeaver'.
.............
now instead of the DT being in this way : i.e. :
EMPProfile_MSG OCCURENCE
EmpNo 1
EmpName 1
DeptName 1
Instead if the DT / MT for which the proxy is generated is in this format for table data input then whats the way ?
EMPProfile_MSG OCCURENCE
.....Item 0..Unbounded
...........A 1
...........B 1
...........C 1
...........D 1
Please advice,
Krishna