Hi! Team ,
I have created custom dashboard and taken field of GLJrnGrp.GroupID and I want right click function to open Journal entry form but the condition would be , those groupID is selected at dashboard the same GroupID would be open when journal entry opens.
Look at the out of the box process that opens AR invoice entry from an RMA credit. That launches into a specific group. Can probably copy their methods.
I have created custom dashboard and taken field of GLJrnGrp.GroupID and I want right click function to open Journal entry form but the condition would be , those groupID is selected at dashboard the same GroupID would be open when journal entry opens.
I have taken Like field and checked , it open only journal entry form , it is not taking selected line , GroupID.
I have checked by context menu as well.. That also opens only journal entry . That is not picking GroupID parameter.
I have checked , custom context Menu as well ..That also did not work..
{
“options”: {
“valueIn”: “GLJrnGrp.GroupID”,
“contextValue”: {
“Param1”: “%GLJrnGrp.GroupID%”
}
}
}
I have checked by app open event also. it opens journal entry but did not take GroupID parameter or journalnum parameter from dashboard.
If you don’t already have a custom MENU for Journal Entry, you’ll need to do that as well.
Find Journal Entry in Menu Maintenance, copy to current company (from action/overflow menu). Set it to open in Kinetic. Add you custom layer that you just created.
Your NEW Journal Entry menu, which now has your NEW custom layer applied, will now fire your NEW event… which will update the GroupKeyField.GroupID value that is being passed by the Context Menu.
Results:
Right-click on a GroupID… Choosing GL Journal Entry (from my added context menu as it did not exist out of the box)
Thank you so much for your valuable words.I just want to know , what event I need to trigger from my dashboard end. Should I just need to create context menu and added to dashboard by Like command or I need to write and event for the same. Please help me from dashboard end also ..
If I need to write event from my dashboard end also then , please help me which event I need to write and which column I need to take in my valueIN , BAQ field or dahsbaordview.Coloumn..
Should I take this ?
“valueIn”: “GLJrnGrp.GroupID”,
or
This ..
“valueIn”: “{[JVLevel1Approval_0_0].[GLJrnHed_GroupID]}”