2012 May 30 7:59 AM
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
2012 May 30 8:05 AM
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
2012 May 30 8:01 AM
Hi,
Please show us your error message. Maybe there's a mistake on it.
Jake.
2012 May 30 8:03 AM
I think currently the message is of type 'A'. Screen-shot would be better.
Rgds,
Kumud
2012 May 30 8:05 AM
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
2012 May 30 8:13 AM
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
2012 May 31 12:13 PM
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.
2012 May 31 12:38 PM
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.
2012 May 31 5:38 PM
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.
2012 Jun 01 4:41 AM
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
2012 Jun 01 7:25 AM
HI Sachin,
I am using the implicit enhancement in the include LFDCBFG0.
Hope it helps,
Sumit
2012 Jun 01 12:45 AM
HI Sumit,
Try like this.
MESSAGE id 'ZV2' TYPE 'E' NUMBER '001'.
Thank YOu.
Shyam