AX 2012: How to use JumpRef method

AX 2012: How to use JumpRef method

MCP · Azure DevOpsYour delivery board, readable by an agentMCP · DataverseOne consent, and the data layer opensMCP · Dynamics 365 F&OConnecting F&O to an agent Microsoft hasn’t documented
JumpRef method is mostly used with fields which are not linked with an EDT however,  this depends on the design of the code and the requirement.

I got a requirement to show 'View Details' options to the field of type notes (memo). There can be multiple ways to accomplish it but its always better to have your code at a central location (best to have it in Class or at table level) to reuse it.

JumpRef method can be overridden at form level under control itself but we are not going to do [avoid code changes at form level]



















Better to override JumpRef method at datasource field level and call method from table.




















JumpRef Method:

public void jumpRef()
{
    JumpRef::peformJumpRef(JumpRef.Notes);

}

PerformJumpRef method at table

static void peformJumpRef(Notes _notes)
{
    MenuFunction    menuFunction;
    Args            args = new Args();
        
    DocumentNotes   documentNotes; // This is the table of the master where view details option will take you. Change table name here, this is just for sample
    ;

    if (_notes)
    {
        documentNotes = DocumentNotes::find(_notes);
    }

    args.record(documentNotes);
    args.lookupRecord(documentNotes);
    
    menuFunction = new MenuFunction(menuitemDisplayStr(DocumentNotes), MenuItemType::Display);
    menuFunction.run(args);
}
Previous article← AX 2012: Access Denied: ***Controller
Discussion

Ask a question or leave feedback

This is a review interaction. The WordPress version will store, thread and moderate comments.

Thanks — submitted for moderation in this review.
Search the whole site · Ctrl/⌘ + K