‎2008 Jul 04 1:37 PM
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
‎2008 Jul 04 1:43 PM
hi,
Put an modify button and
use modify statemnt
Modify <Table > from <wa>
change the data as required
regards
prasanth
‎2008 Jul 04 1:43 PM
hi,
Put an modify button and
use modify statemnt
Modify <Table > from <wa>
change the data as required
regards
prasanth
‎2008 Jul 04 1:44 PM
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
‎2008 Jul 04 1:52 PM
‎2008 Jul 04 1:53 PM