I want to globally change a label in the system, meaning all users will see the change. (Unlike personalizing it and only having the effect for your user)
Normally I would go into AOT -> Tools -> Labels -> Label editor
This will allow me to find and change labels for table-like labels or column names. But in this particular case, I want to change a label on a Sales Order header. For example, the "Customer Reference" field.
Again, if I try to look this field up in the label editor I find nothing. However, if I looked up "Product Name" on the line details table, I would find it.
Any help or if someone can just point me in the right direction for changing labels Globally would be greatly appreciated.
Thank you.
The label is on \Data Dictionary\Extended Data Types\CustRef and is #SYS23010.
Change it there and it will reflect everywhere it is used.
Related
I have the following page :
I want to click on the name of the agent to move to report with more details for an agent, this is a simplified example:
Can I include filters in the detailed target page ?If yes, can I add a clear filters butto?
In this matrix, can I format only the Agent name ? Make the color blue and the font underlined?
Can I include filters in the detailed target page ?
Yes. It's the nature of Drill-Through to carry the active filters from the source page to the target page. If you want to include filters that aren't specifically included as drill-through filters, then there is a specific setting "Keep all filters" that governs this. Your detail page can also have it's own set of slicers and filters that will be applied regardless of the context that comes through via drill-through actions.
If yes, can I add a clear filters button?
There's one native in the service. You can also affect the filters using the filter pane. And you can add a bookmark that will restore the page to some pre-set state (without filters) and assign that bookmark to a button. That's a tiny bit different than removing filters, but for most folks it's close enough
In this matrix, can I format only the Agent name ?
Yes, but only in this simple case. Look for the 'Row Headers' and control formatting there. In Matrix visuals where there are hierarchal fields, they will all be colored by this setting so it will not just be agent names. Another approach would be to apply editing to subtotals and mark 'include label' and then turn the subtotals off. You would get color on the subtotal row, but it would show on every column.
Make the color blue and the font underlined
You can set the font color on 'Row Headers' to blue. Underscore is not an option.
I am trying to get the result in the image attached. If I check a checkBox in Column A, I want it to also to highlight the same SKU & Location Column H,I(in Bright Green). Conditional formatting or if script could do this?
try:
=REGEXMATCH($H2&$I2, TEXTJOIN("|", 1, FILTER($B$2:$B&$C$2:$C, $A$2:$A=TRUE)))
UPDATE:
=REGEXMATCH($H2, TEXTJOIN("|", 1, FILTER($B$2:$B, $A$2:$A=TRUE)))
You could simply achieve this using conditional formatting. These are the steps to follow:
Select the cell that you want to highlight with the checkbox, right click on it.
Go to conditional formation
Under Conditional format rules -> Format rules select custom formula is under (format cells if) and below it =A2 (or the checkbox cell basically)
Choose the color and press done and you will be ready!
Hope this has helped you, let me know if you need anything else (like an Apps Script implementation of this) or if you did not understand anything.
Using : Microsoft Dynamics CRM 2013 On Premise
I am working on Quote customization form. Here we have Products Subgrid by default added.
Also, I have added these last two custom fields in this grid to show.
If you notice here on the grid, Product Name is not displaying.
When I select that particular Line Item, I see product name on "Quote Product" entity form as below.
Below is the screen of my Subgrid set up.
What is missing here, so that it is not displaying Product name on the grid? Can anyone please guide me here?
Thank you,
Mittal.
since that grid is showing a particular view, is it possible that you used the wrong field? Sometimes is getting confusing between title, name or any other property.
I suggest you to open that particular view on the Quote Product list, and see if the product name appears there. If even in the list view the product name is blank you should try to modify the view until you found the field that you want.
i'm have to make a webshop with opencart.
The person who i am making this website for, wants to sell cooking pans, with different sizes.
so, if you click on a product, there has to be a list with the different sizes of the cooking pans, and different prizes.
Is this possible ?
many thx !
This, of course, is possible :-)
All You need to do is to set the product options. In Opencart administration, go to tab Catalog and select the Options item. Crete an option, let's call it Pan sizes and choose a form field for it - whether a radio buttons or select would be OK for it. After saving You would have to add Pan sizes option's values - here You can set all the possible sizes of the pans. When You are finished You can assign that option and set the concrete possible size options in the product detail -> open up the desired product, choose the Options tab and add an option - Pan sizes. Then add all the relevant sizes options and adjust the pieces count, price that is added or subtracted as well as other options there and hit Save at the end.
You should be done.
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.