0

我们有一个函数模块,它包含一个导入参数 IS_USER,它的类型是 S_USER,S_USER 是一个结构体,包含以下字段:

USER_ID         USER_ID         CHAR       60
IP_ADDR         IP_ADDR         CHAR       16
SESSION_ID      SESSION_ID      CHAR       20
LANGU           SPRAS           LANG        1
MACHINE_NAME    MACHINE_NAME    CHAR      128
SAP_PASSPORT    SAP_PASSPORT    STRING  
EXTRA_DATA                      STRING  

在 SE37 中试运行功能模块时,参数 IS_USER 始终有“<"Intial">”文本,其中不可修改任何字段。有谁知道这里有什么问题?

4

1 回答 1

3

You need to take the string out of your custom data structure if you want to use SE37 to test your FM. The SE37 test screen doesn't like deep structures.

If you must use a string you'll need to write a test program rather than using SE37.

于 2009-07-08T13:10:05.493 回答