简体   繁体   中英

Replace 0 with Blank in SAP CRM Web UI

I have AET-filed (Type: INT ) on Web UI. The field name is Duration . At the moment, I want to realize the logic: If Duration value is 0, then don't show it in my field else show the value.

Use IS INITIAL, that parameter automatically matches the type you are comparing with. If you compare with I then INITIAL is 0, if C then ' ', if DATS then '00000000'.

IF <variable> IS INITIAL.

ENDIF.

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