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

call transaction skip first screen

Former Member
0 Likes
983

Hi experts,

Iam working on dialog programing.As soon as i save the data i want to clear all the fields and i should be able to enter new record.So i have given

CALL TRANSACTION 'TCODE' AND SKIP FIRST SCREEN.

Since it is loading the new screen, iam missing 'Saved succfully message'.

How can i get this message? Or is there any way to do this?

thanks

kaki

Thanks

kaki

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
896

HI,

Instead of that option,

clear the screen fields or refresh table controls.

Then issue the message.'

Reward points if helpful.

Rgds

Hi experts,

Iam working on dialog programing.As soon as i save the data i want to clear all the fields and i should be able to enter new record.So i have given

CALL TRANSACTION 'TCODE' AND SKIP FIRST SCREEN.

Since it is loading the new screen, iam missing 'Saved succfully message'.

How can i get this message? Or is there any way to do this?

thanks

kaki

Thanks

kaki

6 REPLIES 6
Read only

Former Member
0 Likes
896

Hope you are trying the message type 'S'.

Read only

andreas_mann3
Active Contributor
0 Likes
896

hi,

use command:

message s001(00) with 'item saved successfully'.

or

fm SAPGUI_PROGRESS_INDICATOR

A.

Read only

Former Member
0 Likes
896

hi

good

you can create your own message type for this and can display at the appropriate place.

use statement ->

Messae msg1.

thanks

mrutyun

Read only

Former Member
0 Likes
897

HI,

Instead of that option,

clear the screen fields or refresh table controls.

Then issue the message.'

Reward points if helpful.

Rgds

Read only

0 Likes
896

you can launch a pop_up and load again bdcdata and continue with the process

regards

Read only

Former Member
0 Likes
896

Simplest solution will be to give message as I(Information). It will give a auto generated INFO popup and continue to the next processing.

Regards,

Vishal

*Reward if helpful*