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

screen modification

Former Member
0 Likes
518

Hi Experts,

I am getting the data from ztable to one custom screen.

there i am displaying the records one by one

if i click Previous pushbutton it will displaying the prevoius record.

if i click Next pushbutton it will displaying the Next record.

if i do any modifications there if i clic on Save pushbutton

the records are updated.

here i am doing validation for 3 fields if they are not correct

the status field is display "E" status

upto now the object is workig fine

but I HAVE ANOTHER REQUIREMENT

AT SCREEN LEVEL ONLY IF I DO CORRECT MODIFICATIONS AND IF I CLICK THE SAVE PUSHBUTTON ON THAT SPOT VALIDATION SHOULD BE DONE AND IT SHOULD SHOW THE STATUS 'C'.

PLEASE HELP ME

i WILL GIVE FULL POINTS IF IT WORKS

1 ACCEPTED SOLUTION
Read only

prasanth_kasturi
Active Contributor
0 Likes
497

hi,

Put an modify button and

use modify statemnt

Modify <Table > from <wa>

change the data as required

regards

prasanth

4 REPLIES 4
Read only

prasanth_kasturi
Active Contributor
0 Likes
498

hi,

Put an modify button and

use modify statemnt

Modify <Table > from <wa>

change the data as required

regards

prasanth

Read only

Former Member
0 Likes
497

Hi Hanuma,

You take a flag variable.

When you are validating the 3 fields... if value is wrong then set this flag to 'X' (use the same flag)

in your at selection screen output event

loop at screen.

if flag eq 'X'.

..... write the logic for setting the field value 'E'

else.

.... set the field value to 'C'

endif.

endloop.

this should help you.

regards

padma

Read only

Former Member
0 Likes
497

THANKS ABOVE ALL

I WILL TRY

Read only

Former Member
0 Likes
497

S