Can someone help please?
When adding products to an opportunity using the mobile app I expect the amount to update QTY*Price as it does on the web.
But this doesn't happen?
Like
Hello Nicola,
There are not such functionality on mobile app but is possible to achieve using mobile sdk . This requires development skills.
Under the following link You may find more information about mobile sdk:
First of all You have to overwrite mobile application manifest to extend scope of synchronized product fields and add new page extension
MobileApplicationManifestDefaultWorkplace
"SyncOptions": { ... "ModelDataImportConfig": [ { "Name": "Product", "SyncColumns": ["Price"] }, ... ] } "Models": { ..... "OpportunityProductInterest": { "RequiredModels": [ "OpportunityProductInterest", "Product" ], "ModelExtensions": [], "PagesExtensions": [ "UsrOpportunityProductInterestMobileBusinessRules" ] } .... }
Next You have to add business rule with calculation Qty*Price triggered when Qty or Product is populated inside new created module
UsrOpportunityProductInterestMobileBusinessRules
Unfortunately i don't have any similar example to share but You can analyse this module MobileOpportunityProductInterestModelConfig from Opportunity package
Best regards,
Marcin