Hi all..
I want to log every notification that came out of my app. And create collection for it, and show it in a data table.
For example,
Assume that i have multiple notification when the user load master data:
If(CountRows(ProductTranslationColl1)=2000, Notify("Error, only 2000 Product translation Iter 1 have been loaded. Contact IT team.", NotificationType.Error));
If(CountRows(ProductTranslationColl2)=2000, Notify("Error, only 2000 Product translation Iter 2 have been loaded. Contact IT team.", NotificationType.Error));
If(CountRows(ProductTranslationColl3)=2000, Notify("Error, only 2000 Product translation Iter 3 have been loaded. Contact IT team.", NotificationType.Error));
If(CountRows(ProductTranslationColl4)=2000, Notify("Error, only 2000 Product translation Iter 4 have been loaded. Contact IT team.", NotificationType.Error));
If(CountRows(ProductTranslationColl5)=2000, Notify("Error, only 2000 Product translation Iter 5 have been loaded. Contact IT team.", NotificationType.Error));
If(CountRows(ProductTranslationColl6)=2000, Notify("Error, only 2000 Product translation Iter 6 have been loaded. Contact IT team.", NotificationType.Error));
If(CountRows(ProductTranslationColl7)=2000, Notify("Error, only 2000 Product translation Iter 7 have been loaded. Contact IT team.", NotificationType.Error));
Now, what i need to achieve is capture all notification that appears in the app screen and store it in a collection.
Is this possible to achieve in powerapps?
How can i do this?
Please help.
Regards.
pytbyt