This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
CALL FUNCTION 'ENQUEUE_EZ_FACT_LOGALI' | |
EXPORTING | |
mode_zfact_logali = 'E' | |
mandt = sy-mandt | |
* factura = | |
* x_factura = ' ' | |
_scope = '2' | |
_wait = ' ' | |
_collect = ' ' | |
EXCEPTIONS |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@AbapCatalog.sqlViewName: 'ZVB_02_GVALER' | |
@AbapCatalog.compiler.compareFilter: true | |
@AccessControl.authorizationCheck: #NOT_REQUIRED | |
@EndUserText.label: 'CDS - Inner Join' | |
define view zb_02_gvaler | |
with parameters | |
p_plant :abap.char( 4 ) | |
as select from mara as Material | |
inner join marc as Plant on Material.matnr = Plant.matnr |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
PROCESS AFTER INPUT. | |
* MODULE USER_COMMAND_0100. | |
LOOP AT gt_vuelos. | |
ENDLOOP. | |
MODULE user_command_0100_exit AT EXIT-COMMAND. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
PROCESS BEFORE OUTPUT. | |
MODULE status_0100. | |
LOOP AT gt_vuelos INTO spfli | |
WITH CONTROL tc_vuelos | |
CURSOR tc_vuelos-current_line. | |
ENDLOOP. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
MODULE user_command_0100_exit INPUT. | |
CASE sy-ucomm. | |
WHEN 'EXIT'. | |
LEAVE TO SCREEN 0. | |
ENDCASE. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
PROCESS BEFORE OUTPUT. | |
MODULE status_0100. | |
PROCESS AFTER INPUT. | |
* MODULE USER_COMMAND_0100. | |
MODULE user_command_0100_exit AT EXIT-COMMAND. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
MODULE status_0100 OUTPUT. | |
SET PF-STATUS 'STATUS_100'. | |
SET TITLEBAR 'TITLE_100'. | |
ENDMODULE. " STATUS_0100 OUTPUT |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
*----------------------------------------------------------------------* | |
***INCLUDE ZTABLE_CONTROLS_STATUS_0100O01 . | |
*----------------------------------------------------------------------* | |
*&---------------------------------------------------------------------* | |
*& Module STATUS_0100 OUTPUT | |
*&---------------------------------------------------------------------* | |
* text | |
*----------------------------------------------------------------------* | |
MODULE status_0100 OUTPUT. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
*&---------------------------------------------------------------------* | |
*& Report ZTABLE_CONTROLS | |
*& | |
*&---------------------------------------------------------------------* | |
*& | |
*& | |
*&---------------------------------------------------------------------* | |
REPORT ZTABLE_CONTROLS. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
*&---------------------------------------------------------------------* | |
*& Report ZTABLE_CONTROLS | |
*& | |
*&---------------------------------------------------------------------* | |
*& | |
*& | |
*&---------------------------------------------------------------------* | |
REPORT ztable_controls. |