Skip to Content
0
Former Member
Jun 01, 2011 at 12:15 PM

dump while executing class method whose exporting parameter of type table

101 Views

hi,

i am getting dump after executing a method in which i want to export an internal table which will hold all the states name along with its code on the basis of the country name which is my importing parameter.

for the above i am using importing parameter named as country of type too5u-land1 and the exporting parameter named as itab of type table and below is my code for the requirement.

method PROCESS.

select BLAND BEZEI from T005U

INTO TABLE ITAB WHERE

LAND1 = COUNTRY.

endmethod.