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: 

information message-urgent

Former Member
0 Kudos

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

Former Member
0 Kudos

Hi,

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

POPUP_TO_INFORM

Regards,

Renjith Michael.

3 REPLIES 3

JozsefSzikszai
Active Contributor
0 Kudos

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

Former Member
0 Kudos

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...

Former Member
0 Kudos

Hi,

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

POPUP_TO_INFORM

Regards,

Renjith Michael.