Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

ITF format conversion .

Former Member
0 Likes
695

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 .

1 REPLY 1
Read only

Former Member
0 Likes
442

you could do a loop... something like:

field-symbols: <fs> type tline. 
loop at <tablename> assigning <fs>.
  shift <fs>-tdline by 2 places.
endloop.