‎2006 Jul 21 5:36 AM
Hi All..
I will input some text in input box of a screen.
Later if i click "SAVE" push button, it should save in a Z-Table.
But i am facing a error message which reads
" Status 1000 of the user interface ZTEST_SCREEN missing
Message no. 00264
Diagnosis
The specified GUI status either does not exist or was not generated.
Procedure
Use the Menu Painter to check whether the status required actually exists. If it does, then generate the interface ZTEST_SCREEN (using the Menu Painter).
How to resolve this issue...??
‎2006 Jul 21 5:56 AM
Hi Pavan,
The reason may be u have not defined any PF Status.
Do like this.
In PBO
SET PF-STATUS 'XYZ'.
dobule click on XYZ.
It will take u to SE41.
Click on arrow against Function keys.
Write Save Against SAVE icon.
Save it and activate it.
Now handle it in PAI.
CASE SY-UCOMM.
When 'SAVE'.
code ... Insert in DB..
ENDCASE.
Hope This will help.
Regards
-
Sachin Dhingra
‎2006 Jul 21 5:40 AM
In The PBO Module STATUS, you are trying to assign an unknow GUI Status, please check if the status you are trying to assign exists, if not create the same.
‎2006 Jul 21 5:40 AM
‎2006 Jul 21 5:42 AM
GUI STATUS is nothing but the MENU that you would reuqire to create and attach to the screen. Use transaction SE41 to create it and use SET PF-STATUS 'xxx' in the PBO of the screen to attach the menu to the screen, don't forget to activate the menu in SE41..
Regards,
Ravi
Note : Please mark all the helpful answers
‎2006 Jul 21 5:56 AM
Hi Pavan,
The reason may be u have not defined any PF Status.
Do like this.
In PBO
SET PF-STATUS 'XYZ'.
dobule click on XYZ.
It will take u to SE41.
Click on arrow against Function keys.
Write Save Against SAVE icon.
Save it and activate it.
Now handle it in PAI.
CASE SY-UCOMM.
When 'SAVE'.
code ... Insert in DB..
ENDCASE.
Hope This will help.
Regards
-
Sachin Dhingra