T 代码 co11n 中的用户退出,CONFPP04 中的代码以验证日期字段

发布于 2024-12-14 13:33:49 字数 199 浏览 3 评论 0原文

只是想问

我想为 T 代码 co11n 创建一个用户出口

该用户出口的目的是确保日期值不留空

(确保必须填写日期字段)

我尝试制作它在CONFPP04中,但是当我获取日期值(日期字段是否填充)时,捕获的日期值是00000000

我想问如何处理它? 或者我可以有其他解决方案吗?

谢谢 :)

Just want to ask

I want to make a user exit for T-code co11n

The purpose of this user exit is to make sure that date value isn't left blank

(Make sure that date field must be filled)

I've try make it in CONFPP04 but when I get the date value (both date field is filled or not), the date value which is caught is 00000000

I wanna ask how to deal with it?
or can I have other solution?

Thanks :)

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

似最初 2024-12-21 13:33:49

您可以转到系统-->状态,您可以获取该交易的程序或屏幕名称
然后尝试搜索呼叫客户功能

You can go to system-->status from their you can get the program or screen name for that transaction
then try to search call customer function

乜一 2024-12-21 13:33:49

如果我理解你的问题,你只需检查日期是否不是初始日期。

正如我所看到的,您捕获了值“00000000”。现在,您所要做的就是检查日期是否为初始日期,如果是,则显示错误消息:

IF date = '00000000'。
消息 e(XX)。
ENDIF。

无论如何,您是否检查过是否可以通过自定义将该字段设置为必填字段?如果您可以从自定义中进行设置,那么您可能不必执行用户退出。

If I understand your question, You just have to check if the date is not initial.

As I can see you caught the value '00000000'. Now, all you have to do is check if the date is initial, and if so display an error message:

IF date = '00000000'.
MESSAGE e(XX).
ENDIF.

Anyways, have you check if you can set that field as mandatory from the customizing ? You probably don't have to do that User-Exit if you can set that from the customizing.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文