Question

PrimaryAdd is already in Namescope error

  • 18 August 2023
  • 4 replies
  • 30 views

Userlevel 2
Badge +7

Hi all,

 

May I know what this error is? and how I can resolve it?

 

 


4 replies

Userlevel 6
Badge +26

Hi @StejonatL 

Please provide more dertails.

What are the steps? When do you get this message? etc.

Cheers!

Userlevel 2
Badge +7

I get this error when accessing the ‘Request’ screen from Menu. This error is shown before i am shown the Request List

Userlevel 1
Badge +4

Hi @StejonatL ,

 

    This error came when we add a New button in the screen menu.  Anybody added worked in UI for request screen?
 

 

Userlevel 2
Badge +6

@StejonatL ,

Sujoin is correct, 

The error message is telling you that there is already a button on the screen with the name to register as ‘PrimaryADD’. By default when a button is added and it is assigned as a new button name to register gets ‘PrimaryAdd’ You will need to look at all of the buttons that are for adding new records on that screen. If you want to check via sql prior to searching the screen you could use a simple script to confirm that this is the issue.

select * from cs_item where screen_name = ‘your screen name’ and control_type = ‘Button’ and register_name = ‘PrimaryAdd’

 

if you get back more than one line then you know that is where the problem is.

 

Regards,

Morris

Reply