‎2010 May 06 3:19 PM
Hello Everyone ,
I am facing some issues while using the standard function module :IQS4_GET_NOTIFICATION.
The function module returns the comments in the internal table in "ITF format" or SAP Script format for QMNUM (importing parameter) .
Eg :
-
04.05.2010 19:41:24 Z_HR_MSS01
No comments provided
C
04.05.2010 19:41:29 Z_HR_MSS01
/ Request routed to HR Connect for further Processing.
/ Initial Conversion personnel action is future dated beyond the
termination effective date. Please resolve conflict manually
-
I need to change the format of output so as to get rid of the formatting characters in the first two place of each line .
Kindly suggest the way if some FM can be used to do so .
‎2010 May 06 7:25 PM
you could do a loop... something like:
field-symbols: <fs> type tline.
loop at <tablename> assigning <fs>.
shift <fs>-tdline by 2 places.
endloop.