To what does this Dynamics NAV Filter resolve - microsoft-dynamics

We have a Rapid Start that has an Item No. filter set to _#!#$. It is returning no records. I don't know how to interpret this filter. Can someone point me in the right direction?

Related

Build a new Attributes for Product Variant

My customers want me do a GAP like this on Dynamics 365 F&O:
They want to build a new Attributes, Attribute group for Product Variants. On D365FO only Released Products have attributes, now they want to build it for Product Variants.
I check the data structure of Attributes and Attribute Group, It's very complicated.
You guys thinks this GAP is possible or not?
Please help me, thank you guys!

Setting PowerBi filter on Report Load and maintaining dataColor order

I'm trying to set a PowerBi report filter on load but also maintain my dataColors array position. I've created a video to illustrate my issue - I hope that's allowed...
https://www.loom.com/share/40f0040311ee4487a46a0ad23c6ea1c9
When I apply a filter the behaviour differs to selecting the filter in the UI. I guess it's because as there is only one strand of data on load that it takes the first data colour from the array but I'd like to maintain this order.
Any help appreciated - cheers!
Rob
Currently, it is not possible to maintain the dataColors array position w.r.t filters / data. The dataColors array within the themes file will be applied sequentially. Color at position one will be applied to the very first data strand that was specified in this scenario.

Qualtrics: I have a 2x2 matrix table, and I'm trying to generate a custom validation

I have a 2x2 matrix table question in qualtrics, each response option being a text box. I would like to only accept numerical responses. The two left columns can be any number. For the right two, they can be any number that is less than or equal to the respective box on the left, or a percentage. Having tried options, I'm not thinking tha this can only be done using matches regex option. This is new to me, so any help would be appreciated.
Thanks,
You can't do it with Custom Validation. There isn't any way to reference a value on the same page in the right side of a validation condition.
You'll have to use JavaScript.

PowerApps: Filter by user no delegation

Need some help with PowerApps - I am trying to filter the gallery where the Person column (ROMEmail) equals the logged in user.
This code is working, but the blue circle of death comes up - whilst in test at the moment, i dont have over 500 records, but will do within a month of trialling this
Any ideas on how to workaround this? Using a collection or variable perhaps? I haven't really used these yet so a detailed resolution would be greatly appreciated.
SortByColumns(Filter('Reviews', StartsWith(LocationName, TextSearchBox1.Text),ROMEmail.Email = User().Email), "Modified", If(SortDescending1, Descending, Ascending))
A collection would be your best choice.
To add a collection in your app replace the code where you grab your data by something like this:
ClearCollect(localData,'Reviews')
This collects all the data in a locally collection. The ClearCollect replaces all your data by the new ones.
After this you can sort and filter directly on your collection. For example in a gallery. Using your code it would look like this:
SortByColumns(Filter(localData, StartsWith(LocationName, TextSearchBox1.Text),ROMEmail.Email = User().Email), "Modified", If(SortDescending1, Descending, Ascending))

variable date option in opencart

1st I want to remove text field for date so the calendar will replace it.
2nd I want to make the status order.. I want to sell the service, so I need to make booking order by calendar. If the date is green client can make an order. If red the client can't book an order. If yellow there certain items can be ordered.
I hope someone can help..
Thanks.
You have to try something at least and ask only for advice then.
Anyway, few suggestions:
it cannot be done using that option field of type date, at least not with the default datepicker.
You will need to create Your own datepicker component that will search for free/partialy/fully ordered days in the database and color the table cells accordingly.
It is not very wise to hide the input - by this visible user could anytime check what date did he pick - if it is not visible he would need to always open the datepicker to check for it...
Disallowing to order some service based on some reservations is highly decreasing Your conversion rate - thus decreasing Your income. I would definitely go the way let the user buy/order anything at anytime while having separate reservation system. If user buys a service at thank You page I would recommend him to book a concrete date for the service to be drawn. Here You do not need to fight with product options which are meant totally for something different that You are trying to.
Keep that in mind (mainly the 4th point) and re-think Your problem.