Skip to main content
Question

Issue: Unable to Create a Custom Destination Type for Acumatica Community

  • June 12, 2025
  • 0 replies
  • 21 views

I'm following this document (https://help.acumatica.com/(W(4))/Wiki/ShowWiki.aspx?pageid=2cdef9b1-d4ef-48b4-8a92-093e7ea39552) to create a Custom Destination Type.

I am currently working on creating a custom destination type for push notifications in Acumatica by developing a custom DLL.

  • I have created a project named MyCustomNotificationLibrary in Visual Studio.
  • I have included references such as PX.PushNotifications, PX.Data, and other system libraries.
  • I have implemented two main classes:
    • MyCustomPushNotificationSenderFactory.cs: Implements the IPushNotificationSenderFactory interface to create notification sender objects.
    • MyCustomPushNotificationSender.cs: Implements the IPushNotificationSender interface to handle the sending of notifications.

 

Then I build my solution in Visual Studio.


Copy MyCustomNotificationLibrary.dll to the Bin folder of Acumatica.
 

Publish the customization project

Check the Acumatica interface to see if "MYTP" appears as an option.

However it doesn't work "My Custom Push Destination" doesn't appear in Destination Type.

I looked it up and it seems like there will be a factory registration step. However, I can't find any instructions or code samples.

Please help me with the setup. I need guidance on how to proceed or where I might be going wrong. Thank you!