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

BDT Screen Error Message INSOCHANGE

Former Member
0 Likes
1,104

Hi Guru's

I have a Custom BDT Screen for the INSOCHANGE Transaction.

I need to place an error Message for a validating a custom field on the screen.

I got XCHNG Function Module to validate this particular field. but when I was trying to populate an error message CANCEL option is not working.

I came to know this is because of the error message, I was stuck once. But finally I got BUS_MESSAGE_STORE and the validation is working well . Now my question is I want to implement another validation on Address Tab (standard Tab) but every time my BDT Function Modules are triggering. I need to skip this. Please let me know possible ways. Thanks In Advance,

Regards

Neel.

1 ACCEPTED SOLUTION
Read only

Venkat_Sesha
Product and Topic Expert
Product and Topic Expert
0 Likes
821

BDT Function Modules can be found int he Event Table TBZ1F. Given the OBJAP value as INSO in the Selection Screen of the table and you will get all the BDT Events for that Insurance Object Transaction.

Everytime you execute this Transaction All the configured BDT FMs will trigger based on the Action/Event. example SAVE or Data Change etc... You cannot skip this as this is part of the process how BTEs work. For Addreess tab validation you can implement a BADI.

I hope this clears your question.

BDT Function Modules can be found int he Event Table TBZ1F. Given the OBJAP value as INSO in the Selection Screen of the table and you will get all the BDT Events for that Insurance Object Transaction.

Everytime you execute this Transaction All the configured BDT FMs will trigger based on the Action/Event. example SAVE or Data Change etc... You cannot skip this as this is part of the process how BTEs work. For Addreess tab validation you can implement a BADI.

I hope this clears your question.

2 REPLIES 2
Read only

Venkat_Sesha
Product and Topic Expert
Product and Topic Expert
0 Likes
822

BDT Function Modules can be found int he Event Table TBZ1F. Given the OBJAP value as INSO in the Selection Screen of the table and you will get all the BDT Events for that Insurance Object Transaction.

Everytime you execute this Transaction All the configured BDT FMs will trigger based on the Action/Event. example SAVE or Data Change etc... You cannot skip this as this is part of the process how BTEs work. For Addreess tab validation you can implement a BADI.

I hope this clears your question.

Read only

0 Likes
821

Thank You I got the Logic..