Application Development and Automation 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: 
Read only

information message-urgent

Former Member
0 Likes
714

I am writing info message in a sales order user exit,

for some condition types,

the info message is coming as pop up

and for some condition types,

it is showing status.

message i378(zv2).

but i always need a pop up,

please let me know ur inputs.

thanks.

ramya

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
681

Hi,

If you just need a pop up with information, then use the function module

POPUP_TO_INFORM

Regards,

Renjith Michael.

I am writing info message in a sales order user exit,

for some condition types,

the info message is coming as pop up

and for some condition types,

it is showing status.

message i378(zv2).

but i always need a pop up,

please let me know ur inputs.

thanks.

ramya

3 REPLIES 3
Read only

JozsefSzikszai
Active Contributor
0 Likes
681

then try to call a popup FM, for example POPUP_DISPLAY_MESSAGE, than it will always come as popup.

Read only

Former Member
0 Likes
681

Ramya,

Diffrent case happend with me.

ONe of my selection screen made as pop_up window .Done the validations that screen input fields

when i raise status messgae it came as information message because that screen was small.

better use below FM

CALL FUNCTION 'POPUP_TO_CONFIRM'

EXPORTING

text_question = text-008

text_button_1 = 'YES'

text_button_2 = 'NO'

IMPORTING

answer = l_answer

EXCEPTIONS

text_not_found = 1

OTHERS = 2.

IF l_answer = '1'. "When Yes

ELSE. " when "NO"

ENDIF.

Don't forget to reward if useful...

Read only

Former Member
0 Likes
682

Hi,

If you just need a pop up with information, then use the function module

POPUP_TO_INFORM

Regards,

Renjith Michael.