防止选择屏幕输入字段转换为大写?

发布于 2024-12-25 04:31:34 字数 325 浏览 1 评论 0原文

我有一个带有字段 title_medi 的表格,其中包含两行,例如 Mr.Ms.

另外,我还有名为 title 的输入字段,其搜索帮助为 <代码>title_medi。当我在搜索帮助中选择先生时,它会显示在文本字段中。

如果我将该文本字段值与数据库字段进行比较。我收到错误。

但是当我调试并看到该值在某种程度上被转换为全大写,例如 MR. ,与表中的情况不完全一样。

你能帮我解决这个问题吗?

I have the table with field title_medi which contains two rows like Mr. and Ms.

Also I have input field called title with search help of title_medi. When I'm selecting Mr. in the search help it gets displayed in the textfield.

If I compare that text field value with the database field. I'm getting an error.

But when I debug and see the value is somewhat getting converted to all uppercase like MR. not as exactly in the table.

Could you please help me out with this?

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

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

发布评论

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

评论(4

莫相离 2025-01-01 04:31:34

为了解决这个问题,您有两个选择:

  1. 转到表字段的域并检查小写 选中此
  2. 使用在进行比较之前将 ABCD 转换为小写检查此项

In order to solve this you have 2 options:

  1. Go to the domain of the table field and check Lower case check this
  2. Use TRANSLATE ABCD TO LOWER CASE before making the comparison check this
痴情 2025-01-01 04:31:34

我检查了数据元素,但也用小写字母进行了检查。
所以我所做的是我在屏幕画家中选中了关注字段的大写/小写属性的复选框。效果很好

I checked the data element but that is also been checked with the lower case.
So what i did is i have checked the check-box for upper/lower case attribute in screen painter for the concern field. It works fine

給妳壹絲溫柔 2025-01-01 04:31:34

附加信息

在 HR 中,可能的质量(先生、女士...)存储在表 t522 中。相应的文本存储在T522T中。数据元素是 ANREX,与同名域相关联。该域启用小写。

此外,这还可以告诉您此人的性别。

additional info

In HR, possible quality (Mr, Ms...) are stored in table t522. Corresponding texts are stored in T522T. The data element is ANREX, associated with the domain of same name. This domain is lower case enabled.

moreover, this also give you the person's gender.

忆梦 2025-01-01 04:31:34

使用 小写除了参数之外,如果您参考选择屏幕输入字段。

PARAMETERS: p_matnr LIKE mara-matnr LOWER CASE.

我不知道 OP 使用的是哪个版本,因为这确实是老问题,但至少自 ABAP 700 SP05 以来此添加可用

Use LOWER CASE addition to PARAMETERS, if you refer to selection screen input field.

PARAMETERS: p_matnr LIKE mara-matnr LOWER CASE.

I don't know which version OP was using as this is really old question, but this addition is available at least since ABAP 700 SP05

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