Techskills


June 22, 2009

Learn SAP — Parallel Processing in ABAP programing

In this post let us see how we can write a parallel processing report. I explained here and the code is at end of the post.

 The usual way of programming is serial processing. The program executes one line at a time and if you call a function that will wait until the control returns from the function and executes the rest of the code. In some case you might be calling the same function again and again for different set of master data. You know that there wont be any conflict between the data and you would like to execute the same function multiple times with different set of data. We need to do this in parallel processing this way the process will be completed much faster with multiple processes in different servers. Let us see how we can achieve this with an example.

…continue reading >> Learn SAP — Parallel Processing in ABAP programing

June 2, 2009

SAP CRM — WEB IC Search view and Result view Navigation

Let us see how we can navigate between search and result view.

To learn how to create search and result view Click Here.

Once you know created the search and result view now we need to create a search button. I added the following code in the srviewset.htm.
…continue reading >> SAP CRM — WEB IC Search view and Result view Navigation

May 15, 2009

SAP CRM — Web-IC Component — Navigation between views

In this post let us create two view and navigate between the views.

First create a veiw firstview in the component.  (to get more information on view creation Click Here).

Once the view is created then make the view as configurable and add all the fields in structure to the screen. (for more info Click Here).

Once you made the view configurable then add the following code addition the the existing code.

  <thtmlb:button id      = “NextBtn”
               design  = “EMPHASIZED”
               onClick = “NEXT”
               text    = “Next”
               tooltip = “Second View” />

This will create a button on the first view. See the following screen shot.
…continue reading >> SAP CRM — Web-IC Component — Navigation between views

May 9, 2009

SAP CRM — WEB IC Create a new search view and result view

In this post let is see how to create a search and result view and link the view to the BOL object.

To learn about Custom BOL for a Z Table Click here.

Click Here to Go thru that post to understand how to create a New component and the new view.
…continue reading >> SAP CRM — WEB IC Create a new search view and result view

SAP CRM — Create Custom Controller for a WEB-IC Component

In this post let us see how to create custom controller to a component.

Once the custom controller is created we need to link this custom controller in the views so that the data will be available to all views that are linked together. See the following screen shot.
…continue reading >> SAP CRM — Create Custom Controller for a WEB-IC Component

Older Posts »

Powered by WordPress