z2soo's Blog

[EasyABAP] Program Type 본문

SAP/ABAP

[EasyABAP] Program Type

z2soo 2023. 1. 18. 16:01
반응형
해당 내용은 EasyABAP 교재를 참고하여 작성하였습니다. 

Program Type

Type-1

  • Report program, Executable program, Interactive program
  • 자동으로 생성되는 Initial screen(1000) 사용
  • Event block 단위
    > Initialization - Selection screen - At selection screen - Start of selection - End of selection
    > ALV 이전의 표현방식인 Selections screen & Output list 구성

Type-2

  • Include program
  • Include로 호출되는 내장형 프로그램

Type-3, Type-M

  • Module pool program, Online program
  • T-code 또는 Menu function(사용자 메뉴 Tree)에 의해서만 실행
  • Program 생성시 Top Include 클릭하면, 자동으로 Type-M 생성
  • Screen 단위
    > Design time에 화면 구성
    > PBO - Screen - PAI
    > Screen module process 구성

Type-4

  • Functions Groups

Type-5

  • Subroutine Program
  • External perform 구문에서 호출 가능한 form 구성

Type-6

  • Interface Pools
  • Interface 구성

Type-7

  • Class Pools
  • Class 구성
  • F~K는 Program attribute에서 변경 불가하며 각각의 builder에서 관리
반응형
Comments