2010 Jun 17 1:14 PM
Hello team
i have copied the standard PF-STATUS (ie standard_fullscreen) into ZSTANDARD and i am using in my Z program. some times it is working fine and some time it is not working. i mean when i click on the the required button, no action is taking place, i tried to debug also, the debug mode is activated but when i press the required button, just the processing symbol is comming and no action is taking place for a long time. i waited for long time but no action.
So can you please check and suggest me accordingly,if there is anything pending from my side to do.
Thanks and regards
Raj
2010 Jun 17 1:16 PM
Hard to tell without having a look at the relevant code. Please post the relevant code.
2010 Jun 17 1:16 PM
Hard to tell without having a look at the relevant code. Please post the relevant code.
2010 Jun 17 1:26 PM
HELLO
IT IS A STANDARD PROGRAM SDFAKSPE, FOR MY REQUIRED I HAVE COPIED THAT STANDARD PROGRAM INTO Z PROGRAM. IT IS ALREADY HAVING ONE PF STATUS BUT I WANT TO USE MY PF STATUS WHICH I HAVE COPIED.
REG
RAJ
2010 Jun 17 1:34 PM
Hi,
You are using your own PF-Status in the copied Program is it? If so you need to change the Function codes.
Just check the sy-ucomm when you are pressing on the required action. Then assign that sy-ucomm to required button.
With Regards,
Sumodh.P
2010 Jun 17 1:39 PM
thanks for your reply. here my problem is when i tried yesterday it was working fine, it went to correct CASE statement also. but now when i am trying it is just showing the processing symbol thats all. nothing is happening.
Now what may be the issue, please suggest.
2010 Jun 17 2:27 PM
Hi,
Just create ok_code .
then
ok_code = sy-ucomm.
case sy-ucomm.
when ' 1'.
endcase.
Just ensure that did you moved the sy-ucomm value to ok_code.
If this is not working , just find out excatly where its getting trigerr in the program.
With Regards,
Sumodh.P