Skip to Main Content
Merative Ideas Portal

Shape the future of Merative!

We invite you to shape the future of Merative, including product roadmaps, by submitting ideas that matter to you the most. Here's how it works:

Post your ideas

Start by posting ideas and requests to enhance a product or service. Take a look at ideas others have posted and upvote them if they matter to you,

  1. Post an idea

  2. Upvote ideas that matter most to you

  3. Get feedback from the Merative team to refine your idea

Help Merative prioritize your ideas and requests

The Merative team may need your help to refine the ideas so they may ask for more information or feedback. The offering manager team will then decide if they can begin working on your idea. If they can start during the next development cycle, they will put the idea on the priority list. Each team at Merative works on a different schedule, where some ideas can be implemented right away, others may be placed on a different schedule.

Receive notification on the decision

Some ideas can be implemented at Merative, while others may not fit within the development plans for the product. In either case, the team will let you know as soon as possible. In some cases, we may be able to find alternatives for ideas which cannot be implemented in a reasonable time.


Merative External Privacy Statement: https://www.merative.com/privacy

Status Future consideration
Created by Guest
Created on Mar 3, 2020

TaxRelationshipDataIntakeApplicationListener.specifyTaxFilerSpouse() is executed only for HCR applications but Client needs t

Detailed description of the issue

OOTB method - TaxRelationshipDataIntakeApplicationListener.specifyTaxFilerSpouse() is executed only for HCR applications but State of Missouri needs this method to be executed for Presumptive applications as well.

Customer Name Missouri
  • Attach files
  • Guest
    Reply
    |
    Jul 2, 2020

    Hi Maribeth,

    We acknowledge that this enhancement request has been accepted for consideration. It may not be delivered within the release currently under development however the theme is aligned with our current multi-year strategy and will be considered for a future release.

    IBM may consider and evaluate any RFE Community feedback for this request through activities such as voting.

    IBM will update this request in the future.

    Thank you for your interest in the Cúram product.
    Shane McFadden, Cúram SPM Product Management team

  • Guest
    Reply
    |
    Jun 10, 2020

    Following are comments from our developer. Please provide your feedback here to his comments.

    Thank you,

    Maribeth Kane

    Taking the proposed approach still burdens the State with needing to maintain a decompiled copy of nearly all of the code from the class TaxRelationshipDataIntakeApplicationListener in order to keep functionality consistent between the two application types as the helper methods are marked private and are inaccessible. This solution only changes the name of where that code lives to a class named 'CustomMissouriListener'.

    A preferable solution would be to instead of calling ApplicationMappingUtility.isHCRApplication() which attempts to match against a single DataStore schema to determine if a tax filer spouse should be specified, instead call a method which matches against a collection of DataStore schemas that are injected via Guice. Then, OOTB can continue injecting a single DataStore schema in the collection to maintain backwards compatibility, but customers can inject additional schemas as necessary.

  • Guest
    Reply
    |
    May 26, 2020

    Thank you. I have provided the details below to the developer and am awaiting his feedback. Any questions I will post here.

    Regards,

    Maribeth Kane

  • Guest
    Reply
    |
    Mar 27, 2020

    Hi Maribeth,

    We have evaluated your request and have determined that your request can be met compliantly at present as follows:

    IntakeApplicationEvents is the public (EXTERNAL) interface that contains the method:

    o preMapDataToCuram

    This interface lives within IntakeApplication, which is also public (EXTERNAL).

    You could just do the following:

    /**
    * Custom implementation.
    */
    CustomMissouriListener implements IntakeApplication.IntakeApplicationEvents {

    @Override
    public void preMapDataToCuram(final IntakeApplication intakeApplication)
    throws AppException, InformationalException {

    /**
    * Perform processing for Presumption applications.
    */
    if (MissouriUtility.isPresumptiveApplication(intakeApplication)) {

    // Get the data store root entity id
    final long rootEntityID = intakeApplication.getRootEntityID();
    specifyTaxFilerSpouse(rootEntityID);
    }
    }

    void specifyTaxFilerSpouse(final Long rootEntityID) {
    // do some stuff here to update the tax filer spouse
    }

    }

    Please do revert back if you have any further questions.

    Thank you for your interest in the Cúram SPM product.
    Shane McFadden, Cúram SPM Product Management team

  • Guest
    Reply
    |
    Mar 4, 2020

    Hi Maribeth,

    Thank you for your enhancement request.
    We require some further analysis to determine whether or not this enhancement can be considered in a future release.
    I will provide another response when our investigation is complete.

    Thank you,
    Shane McFadden, Cúram SPM Product Management team