简体   繁体   中英

Call Local class within PAI Module

I have a program with 4 includes in it. One top-include (global data), one for pai-modules, one for pbo-modules and one for a local helper class.

I put the definition and implementation of my local class in the include "local helper class". Now I want to access the instance of this class inside the pai-module after an user-command with

lcl_class=>get_instance( )

I used the singleton pattern.

But when I want to activate the PAI Module, an error occurs, saying "Type lcl_class is unknown". Even when I set a variable inside my top-include, the same error occurs after I try to activate the program.

Any one know how to solve this?

Thank you and best regards

Timur

SOLVED

I solved this problem. Had to put the PAI-Include after the Local-Class-Helper-Include. So now its like:

INCLUDE Z_TEST_TOP             .    " global Data
INCLUDE Z_TEST_PBO.                 " PBO
INCLUDE Z_TEST_HELPER.              " Local Helper Class
INCLUDE Z_TEST_PAI.                 " PAI

Before this sequence the Include for Local Helper Class was the last one.

只需要对主程序中的 INCLUDE 进行适当的排序。

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM