‎2008 Jun 24 8:12 AM
Hi friends,
this subroutine returns always an empty table.
What can possible reasons for ?
It ibelongs to SAP Function Pool SDSD
and it is Include LSDSDF05.
PERFORM F4PROZ(SAPLSDSD)
TABLES RETURN_VALUES
USING SHLP
CHANGING CALLCONTROL OCXINTERFACE
RC.Regards
Ertas
‎2008 Jun 24 8:14 AM
may be the table is not getting populated within the subroutine......
‎2008 Jun 24 8:14 AM
may be the table is not getting populated within the subroutine......
‎2008 Jun 24 8:16 AM
In the debugger check when the subroutine is getting called.In the subroutine there may be a select query which is failing and that's why internal table is not getting filled.
‎2008 Jun 24 8:31 AM
‎2008 Jun 24 8:34 AM
inside of include LSDH4F02
there is a loop. Right here sy-subrc gets 4.
The listfields dont match with mask ?
Why is this loop with mask. Why is it needed?
loop at listfields
where mask4(1) is initial and mask1(1) ne dir.
if not fieldname is initial and fieldname ne listfields-fieldname.
continue.
endif.
l_need_conv = 'X'.
exit.
endloop