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

F4 help using matchcode need to compress standard error if entered material is not in search criteria

Former Member
0 Likes
497

Hi ,

I have used  prsm for project f4,when user entered material which is not in f4 help system throwing error lik' project does not exist'

user dnt any error even if wrong project entered same thing working fine in me2j standard tcode pls help

Hi ,

I have used  prsm for project f4,when user entered material which is not in f4 help system throwing error lik' project does not exist'

user dnt any error even if wrong project entered same thing working fine in me2j standard tcode pls help

1 REPLY 1
Read only

former_member182379
Contributor
0 Likes
452

Hi,

Implement the at selection screen event of alv,

and in the at selection screen event block add the required logic.

AT SELECTION SCREEN.

IF PS_PSPID is not intial

  SELECT PSPID FROM PROJ into GV_PSPID where   PS_PSPID =   PS_PSPID

 

IF SY-SUBRC <> 0.

      MESSAGE E000(8I) with 'Project does not exit.'

  ENDIF.

ENDIF.

Regards,

Zafar