Application Development 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: 

Error message appearing as Information message in FI validation

Former Member
0 Kudos

HI All,

I have a problem where in I have created a FI validation to issue an error message based

on some conditions. I have implemented a user exit for the same and it is working as per expectation.

It is working fine but the only problem is instead of error message it is displaying information (pop up)

message. Though this information message is not letting me move forwars but still I would like it to be

in the form of error message.

Please reply.

Thanks in advace,

Sumit

1 ACCEPTED SOLUTION

former_member213851
Active Contributor
0 Kudos

Hi Sumit,

Please check statement used  for Message dispaly.

Eg:

   MESSAGE E000(ZERR) DISPLAY LIKE 'I' .

Here although it has bben declared as error message , due to addition DISPLAY LIKE 'I' , the message will be dispalyed  as information message but not allow further processing untill Errot is resolved.

So to resove the issue just remove DISPLAY LIKE 'I' form MESSAGE statement.

Best Regards

Sachin

10 REPLIES 10

Former Member
0 Kudos

Hi,

Please show us your error message. Maybe there's a mistake on it.

Jake.

0 Kudos

I think currently the message is of type 'A'. Screen-shot would be better.

Rgds,

Kumud

former_member213851
Active Contributor
0 Kudos

Hi Sumit,

Please check statement used  for Message dispaly.

Eg:

   MESSAGE E000(ZERR) DISPLAY LIKE 'I' .

Here although it has bben declared as error message , due to addition DISPLAY LIKE 'I' , the message will be dispalyed  as information message but not allow further processing untill Errot is resolved.

So to resove the issue just remove DISPLAY LIKE 'I' form MESSAGE statement.

Best Regards

Sachin

Former Member
0 Kudos

Hi Sumit,

Go to the Validation Configuration Transaction GGB0 and see what is given against message type in your validation message details.

Regards,

Karthik D

0 Kudos

Hello All,

Thanks for your replies.

The actual reason for the error message to appear as information message

is described in note 863267.

It says the validation in enjoy transactions( including FB60 ) which contains tabbed screens are

not provided with error message rather the message is changed to information though the further

processing stops.

0 Kudos

Hi Sumit ,

That's what I was explaining to you in my earlier post.

MESSAGE E000(ZERR) DISPLAY LIKE 'I' .

Here although it has bben declared as error message , due to addition DISPLAY LIKE 'I' , the message will be dispalyed  as information message but not allow further processing untill Errot is resolved.

0 Kudos

Hi Sachin,

I understand that what you were saying was right.

But I didn't wrote the code like that.

In my validation I had declared it as error message only.

Now I have implemented an implicit enhancement to achieve the same.

Nevertheless, I appreciate your comments on the post.

Thanks once again.

0 Kudos

Hi Sumit,

Could you please share that on which user exit you are using for the validation.

Or the implicit enhacement is at which point.

It would be gr8 if you could share.

Thanks & Regards

Sachin

0 Kudos

HI Sachin,

I am using the implicit enhancement in the include LFDCBFG0.

Hope it helps,

Sumit

Former Member
0 Kudos

HI Sumit,

Try like this.

MESSAGE id 'ZV2'  TYPE 'E' NUMBER '001'.

Thank YOu.

Shyam