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
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
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
BOL — Business Object Layer.
Usually we no need to build a BOL object. We will end up changing the existing BOL. I came across a situation that I need a screen for a component and create a screen for add/ modify and search the Z table.
In this post let us see how we create a custom BOL object for a Z table. Once this bol is create we need to add this bol in the custom view and show that on the screen. For now let us see how we can create a custom BOL.
…continue reading >> SAP CRM — Create a Custom BOL for WEB-IC