According to this article, they cannot at the time it was made, which was 2018:
https://asiablog.acumatica.com/2018/07/page-number-on-acumatica-grid.html
Are there any plans to implement this customization for the future or any way to do this differently today? A customer would like grids on base Acumatica pages to be paginated with record counts.
You can use the Status Field of the Grid for this.
So the idea is to calculate the quantity of the records in the View Delegate in the Graph and then just set it as the "StatusField" of the Grid in the same way as Acumatica is calculating the Available and Available for Shipments in the Sales Order Details grid.
Related
Just like expiration date on inventory number subrecord on Item Receipt, can we have a custom field for manufacturing date in inventory number subrecord. Is there any feature need to be enabled? Does NetSuite have any functionality of Production/Manufacturing date? or any way to create a custom field in inventory number subrecord that is visible in IR subrecord?
As far as I am aware, it is not possible to add a custom field to the inventory detail subrecord. Checking the CUSTOMISATION > LIST, RECORDS & FIELDS NS menu (using the administrator role), this sub-record is not available. I have, however, in the past re-created the subrecord using a Suitelet and a saved search which auto-populates the item lines with additional columns. Perhaps this route is a potential solution for you too.
I have recently encountered this in an implementation. We were requested to add the Gross Weight and Net Weight fields in the Inventory Details window.
We used a SuiteApp called Lot Auto Number (Answer ID: 100706).
I'd like to make certain products available/unavailable to certain customers. Similar to Netflix's blocking some movies on some customers depending on geographical locations. I'm assuming I'll need a custom table for the inventory item and list of restricted customers. And then attach this somehow to the lookup filtering. How can I customised the inventory lookup dialog to achieve this ?
You should add PXRestrictor attribute for each selector. For example for SO301000 you should add PXRestrictor on SOLine.InventoryID. You can add it by implementing SOLine_InventoryID_CacheAttached() handler in the extension of SOOrderEntry graph.
If you would like to limit visibility all over the product for specific users,
consider using Restriction Groups, see https://help.acumatica.com/(W(19))/Wiki/ShowWiki.aspx?pageid=ad9a42c1-ff5d-4298-86d9-683039c18512 for details.
I have added a add item functionality like Sales Order in Opportunity. I have followed the same functionality of Sales Order.
The Add Item works fine, but the filtering on Inventory is not filtering the records. I have compared the aspx code and not able to figure out the issue
If you refer the implementation of similar smart panel in SO301000 ASPX, it is performed via FastFilterID property of PXGrid.
Is there a way to create promotions in Netsuite 2016.1 so that items can have individually lowered prices? I know how to reduce items by percentages and how to set a flat price for all items, but I'm trying to allow individual items to have different temporary prices. Does Netsuite have this capability, or should I begin creating it via SuiteScript and custom records/fields?
Thanks!
Try the pricing groups feature of NetSuite. This lets you set a custom price for a set of items, which can then be assigned to various customers. This is primarily meant for negotiating prices with a large customer.
You might be able to use this feature to set temporary prices by switching the pricing group on and off for different customers with a script.
I am not aware of any way to temporarily set specific prices.
A thing I've done in the past was to create a set of custom fields and scripts that did the following for a Daily Specials program.
Take a group of products and copy their current on-line price to another field;
Update their online prices to a pre-determined value
assign them to a "Daily Specials" category.
set a custom checkbox field so that the item thumbnails could be easily bannered in a category list
A daily batch inspected a configuration table for that day's specials. It cleared all the current specials(prices back; remove from category; clear checkbox) and then assigned that day's specials.
this was driven by a table that allowed the product manager to schedule products based on seasonality and availability.
My boss has recently tasked me with developing an estimating form in Dynamics CRM Online for use by his sales team. The idea is that his sales team can enter the parameters into a dialog and have Dynamics spit out a rough estimate for the cost of the project. Sales team members need to be able to do this while on site at a customer's location.
I have no idea about anything with Dynamics. I could easily do this in Excel VBA and make it look nice. I could develop my own app in C# or Java. But the ideal is to integrate this into Dynamics CRM with existing opportunities and associated tools. I've looked at Dynamics on my boss' monitor and I've poked some of the existing dialogs on our old on-premises Dynamics server with a long stick.
Is this kind of application even possible with Dynamics Online? We'd need to take user input, query the product database for pricing info from that input, and do some fancy arithmetic to spit out a number and ideally save the data in some way associated with an opportunity. This is a flooring company, and I envision an estimating tool where you can dynamically add a room to a list in a dialog, specify the size of the room in two text entry boxes (length x width), and select a type of flooring and substrate from a combination of radial buttons and drop down boxes, and finally have a price displayed for that room with a cumulative price displayed for each additional room added to the list.
Somebody please tell me if this is possible and where I can go for some resources on developing for Dynamics CRM to teach me how to do it. Help!
:edit:
Essentially the current manual estimating process is rather laborious and takes a couple of days turnaround. Sales reps run through a checklist and submit a form to the office with information about the size of the job, substrate, and the products to be installed and then a human operator manually calculates an estimate with that information. An automated system should allow sales reps to input some basic information and get a rough estimate in minutes while on site with the customer making the sale.
At its most basic, the application must be able to accept user input for the substrate under the flooring, the new flooring type, and square footage for each type of flooring. With that information, it needs to query price information from a database and then calculate an estimate for the project. It needs to be available online via mobile devices (tablets or possibly phones) for sales reps who are on location with a customer.
Beyond that, if we can have it save the estimate into an existing opportunity or create a new opportunity within Dynamics CRM, that would be great.
To avoid learning specific CRM development features, you can add web resource, it could be HTML page, add link to the web resource on CRM page and using only javascript populate field you need with any data you need.
This could definitely be accomplished with the out-of-the-box features. It wouldn't work exactly like you envisioned, but it would be close.
You'd need to set up the Product Catalog in CRM. Each Product could be one of your flooring types or substrates. The Pricing List for each Product would show how much 1 square foot of each type of flooring costs.
When Sales creates an Opportunity, they can add Product Line Items for each different type of flooring, along with a Quantity (which would be total Sq Feet for that item). CRM would then calculate the Line Item and the total Opportunity from the Price List and Product Catalog. Each line item total can also be discounted or overridden from the Price List, if necessary.
Once the customer wants a Quote, you can convert the Opportunity into a Quote, and all line items are copied over. You could then print this out and give it to the customer.
If the customer accepts the Quote, you can convert the Quote into an Order. Again, all line items are copied over.
Finally, you can create multiple invoices for an Order, and again line items are copied over and you can override prices or line items if necessary for billing.
There are lots of good video tutorials out there on setting up the Product Catalog, Price Lists, Discount Lists, etc. Hope that helps!