Application Development Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 

Urgent help regarding OFM ws_msg

Former Member
0 Kudos

Hi All,

I have replaced Obsolete FM ws_msg with POPUP_TO_CONFIRM.

However, it is not showing me the same results as ws_msg. As after the replacement it should work similarly the way ws_MSG worked.

After the replacement its showing me 3 buttons yes, no, cancel with a error msg.

I have already commented the code lines for these buttons, still its showing.

Can you please help me resolving the issue.

3 REPLIES 3

Former Member
0 Kudos

Hi ,

POPUP_TO_CONFIRM has following import parameters

Import parameters

TITLEBAR

DIAGNOSE_OBJECT

TEXT_QUESTION

TEXT_BUTTON_1

ICON_BUTTON_1

TEXT_BUTTON_2

ICON_BUTTON_2

DEFAULT_BUTTON

DISPLAY_CANCEL_BUTTON = SPACE

USERDEFINED_F1_HELP

START_COLUMN

START_ROW

POPUP_TYPE

Pass BLANK to DISPLAY_CANCEL_BUTTON , so that it wont display Cancel button .

By default value passed to it is X , so make it initial

0 Kudos

I tried to passed Space there.

Also i deleted the lines what we were not using like

TEXT_BUTTON_1

ICON_BUTTON_1

TEXT_BUTTON_2

ICON_BUTTON_2

DEFAULT_BUTTON

DISPLAY_CANCEL_BUTTON = SPACE

Still the output is same as before

0 Kudos

DISPLAY_CANCEL_BUTTON = ' '

Wil disable the cancel button .

Other 2 buttons cant be disbled .