Inicio del área de contenido

Este gráfico es explicado en el texto respectivo Adding a Report (Example) Localizar documento en árbol de navegación

You want to add an entry, Reporting, to the CATS notebook menu. You want to use this entry to start the CATS_REPORT_01 report.

Java Source Code

package com.sap.mycats.customer.examples;

 

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

public class ZCustomerReport implements ICustomerService {

 

    public char getApplication(){

    return ICustomerService.APPLICATION_INDEPENDENT;

    }

    public String getServiceDisplayLabel() {

      return "Reporting";

    }

    public String getServiceName() {

      return "cats_report_01";

    }

}

 

 

Fin del área de contenido