cancel
Showing results for 
Search instead for 
Did you mean: 

Are there any interesting programs I can write?

Hi all, my mentor is on holiday for a week and I want something to do other than reading endless pages in books and on the web. Are there any useful programs I could write? I don't know much about the business side of SAP.

Sandra_Rossi
Active Contributor
0 Kudos

What are your centers of interest, what do you love doing?

0 Kudos

Anything in general, could be objects based. Just something that i'm going to gain from as i've only been doing abap for 6 months.

Accepted Solutions (1)

Accepted Solutions (1)

Tomas_Buryanek
Active Contributor

Parse any JSON string to internal table of [name] + [value] simple structure.

HINT: there are existing examples for JSON processing in abap docu.

If it is not too difficult to you...

Answers (2)

Answers (2)

Sandra_Rossi
Active Contributor

Any tool you want for helping answering a question often asked on SCN, share it on Github via abapGit, and publish a blog post 🙂

matt
Active Contributor

How about a generic class for outputting files to

1. The presentation server

2. The app server

3. The clipboard

For 1 and 2 - as Excel, CSV and / or tab delimited. With an interface something like...

INTERFACE zcl_file_handler.

  METHODS:
    open_file...
    write_line...
    close_file...

ENDINTERFACE.