Entering content frameThis graphic is explained in the accompanying text Example: Menu Enhancements Locate the document in its SAP Library structure

You want to add the entry SAP.com to the menu for Offline Travel Expenses. This entry should call up the HTML page www.sap.com.

Java Source Code

package com.sap.expense.customer.examples;

 

import com.sap.mycats.basics.customer.userInterface.ICustomerService;

 

public class ZTravelExpenseService implements ICustomerService {

 

public char getApplication(){

return ICustomerService.APPLICATION_INDEPENDENT;

}

public String getServiceDisplayLabel() {

return "SAP.com";

}

public String getServiceName() {

return "http://www.sap.com/";

}

 

}

 

 

Leaving content frame