On Leave Event in Kinetic?

From Epicor Support:

Im afraid your issue is deeper than Epicor Support can assist with.

Can’t say I didn’t see that one coming.
Am I supposed to hire professional services to test kinetic with my customizations, just to tell Epicor Support how broken Kinetic is?

The problem was, they seemed to be here…

2 Likes

^ This is my shocked face.

1 Like

I’ve been under the influence that any Kinetic UI issues should be reported through the Feedback link on the right hand side of the screen.

image

1 Like

If it’s a bug, it goes to support.
If it’s feedback/suggestions, use that button.

The property disappearing is definitely a bug. :space_invader:

1 Like

Report the bug and then the feedback is, “Boy, wouldn’t it be great if this worked?”

2 Likes

Solid GIF.
I just used one from the same movie earlier! :smiley:

image

2 Likes

@hmwillett I am binding a panel card to a BAQ with parameters.

I added this to the RestParams section for the BAQ, but I am still getting a pop up to enter a parameter value for CustID… Any articles you can point me to on how to run a BAQ with parameters on a panel card?

It’s supposed to show all the jobs tied to a sales order for the customer that the user is currently viewing in Customer entry…

> {
> 	"ExecutionParameter": [
> 		{
> 			"ParameterID": "CustID",
> 			"ParameterValue": "TheCustomerID",
> 			"ValueType": "string"
> 		}
> 	]
> }

I never found a way to prevent the slide out panel when you have parameters.
You could try removing the parameter and, instead, use a where clause in the Provider Model.

1 Like

Yeah, that’s what I might have to do…

Just odd though, maybe there would be some type of form event we could latch onto to send the parameters?

I’ll keep trying things and update you if I get anywhere.

Thanks for getting back to me! :pray:

Issssssss it though? Kinetic isn’t very well thought out. This is just par for the course, lol.

I am trying my best to figure anything out. I wish there was more documentation.

It’s this type of launch that adds to the systemic knowledge gap between power users/developers and new people in the game just seeing Epicor/Kinetic ERP.

Kudos to so many here that have gone above and beyond to share their knowledge through youtube, podcasts, posts, secret realms, and meetups like insights sessions to help those trying to learn more.

And to all the leeches out there, may we shift from leeching, to learning, to teaching. I totally understand leeching though, this isn’t throwing any shade to us out there that simply come for answers- that’s why this exists to an extent.

Thank you @hmwillett for continuing to help with Kinetic customization. I’m hoping to try and stay up on it to help others like you have helped us.

5 Likes

I have some panels bound to a BAQ and using a where clause and also the where list for multiple filters seems to be working ok without a slide out happening like you mentioned in the parameters.

It is under Grid Model → Provider Model → Baq Options → Where List

For each parameter you had set put in Add a column condition and value.

If it is just a single item like the Cust ID then just use teh Where like below I have on a BAQ for part info

MIKE! Let me try this.

So you’re saying just add a BAQ option?

My parameter is CustID. That’s not a column in my results… you still think this will work?

@mmcwilliams --your screenshot is not setting a BAQ parameter. You’re just filtering the results of the BAQ using a where clause based on a column in the query.

1 Like

That’s how I read it too, but I thought Mike was talking about a parameter from the way Mike made it sound.

I can tell it’s a column Mike is filtering.

I’m heading out for the day, but here’s where I left off; it’s a step in the right direction.

Rest Params:

{
	"queryID": "PartsOnOrder",
	"executionParams": {
		"ExecutionParameter": [
			{
				"ParameterID": "OrderNum",
				"ParameterValue": "110607",
				"IsEmpty": "false"
			}
		]
	}
}

It executes without the parameter slide out appearing.

To Do:

  1. I hard-coded the parameter value. "?{KeyFields.OrderNum}" was giving me an error saying it could not convert from string to int. The JSON requires the field to be a string. Still investigating.
  2. It’s not returning the results to the View I created. Haven’t started looking into this yet.

Figure those out and you have yourself a solution.

3 Likes

Wow. Thank you is not enough. Crazy you got that to work!

1 Like

I am using the BAQ ID option of the grid’s provider model, I guess this doesn’t work unless I do what you did and use a view?