Triple A

It's all about ABAP.


Showing posts with label ABAP. Show all posts
Showing posts with label ABAP. Show all posts

Thursday, February 24, 2011

ABAP source scan

Having trouble to implement a RFC? need a piece of sample code but where-use list is not an option? Try this:

Report program: RPR_ABAP_SOURCE_SCAN

Specify package and search string, have a cup of tea and wait for the result.

Monday, February 21, 2011

Charts from XML doc

Simple transformation and CL_GUI_CHART_ENGINE do the magic!

All you need to do are:
1. Create a screen with a custom container.
2. Populate data to internal tables.
3. Create simple transformation based on your needs.
4. Call transformation to obtain XML document (Xstring).
5. Set the XML doc to chart engine object.
6. Render the chart in PBO.

Here's a very helpful SDN blog to show you the way.