PARAMETERS: p_prg TYPE e071-obj_name.
PARAMETERS: p_type TYPE sewor_working_area-object DEFAULT 'REPS'. " REPS -> report, METH -> method
CALL FUNCTION 'REPS_OBJECT_ACTIVATE'
EXPORTING
object_name = p_prg
object_type = p_type
EXCEPTIONS
not_executed = 1
OTHERS = 2.
IF sy-subrc NE 0.
WRITE: / 'Fehler beim aktivieren des Objektes:', p_prg.
ENDIF.
Kategorien
-
Neueste Beiträge
- [CSS] Themes: Farbauswahl
- [TypeScript] Projekt im Visual Studio Code mit React, Typescript und Vite erstellen
- [ABAP] SALV: Events abfangen beim Klick auf die ALV Funktions-Buttons am Beispiel Filter-Setzen
- [SVG] Transparentes SVG-Icon
- [HTML] Favicon auf einer Webseite einbinden
- [HTML] Manifest (manifest.json) zu einer Webseite hinzufügen
- [VS Code] Visual Studio Code einrichten
- [JavaScript] Elemente zu Array hinzufügen
- [JavaScript] HTML-Tabellen mit ExcelJS exportieren
- [JavaScript] JSON-Datei per fetch( ) oder FilePicker laden