Skip to main content

#Revenue Cloud86 personnes en discutent

Does anyone know if to disqualify a product, we strictly need to create a Product disqualification record?

The use case I have is that we want to replace entitlement policies with disqualification rules, and basically we have a custom field on the product2 object, we want to disqualify (and hide in our storefront) all products that don’t have an specific value on that picklist field (value != goodValue). 

All examples I could find involved creating records for the disqualification standard object, and I want to know if that is the only way. Category disqualification is not applicable as we still want to see those specific categories on the storefront, only products hidden.

If there is no way to do that then I would need to create a disqualification record for each product I want to disqualify, which would be a lot of tech debt.    @* Salesforce Revenue Cloud * 

2 réponses
  1. Hier, à 15:43

    As long as your custom field is in the context definition, in theory you should be able to have a qualification based in that field

0/9000

When a Renewal Quote is created from a Ramp Contract, the expected Ramp Segments are not being created on the Renewal Quote. 

Is this the standard Salesforce behavior

for Ramp Renewals? If not, what configuration or process is required to automatically create the Ramp Segments on the Renewal Quote based on the original Ramp Contract?  

 

#Revenue Cloud  #Salesforce Revenue Cloud  #Salesforce Developer

0/9000

Can you renew a Contract or only Assets?   

If you can renew a Contract, please share any setup pre-requisites and execution steps. 

 

If Contracts cannot be renewed, what other options do you have for the Contract End?  What happens to Assets under a Contract beyond the Contract End Date? 

 

Thank you!

0/9000

Hi everyone, 

I'm currently working on attribute-based pricing in Salesforce Revenue Cloud and came across a scenario I'd like some guidance on. 

For example, I have an attribute called Color. If Color = Blue, I want to apply a 5% discount. This pricing rule should apply to every product in my product catalog. 

Using Price Adjustment Schedules , the pricing adjustment is tied to a specific product. This works well for a small catalog, but in a large product catalog with thousands of products, creating and maintaining separate Price Adjustment Schedules for each product is time-consuming and difficult to manage. 

Is there a way to define the pricing logic once and have it apply to all products instead of configuring it product by product? 

I'd appreciate any suggestions or best practices. Thanks!   

 

@* Salesforce Revenue Cloud * 

1 réponse
0/9000

I have a scenario when the Product A added to the quote and i try to add any other product then i should have a error. Also if i have added other products then i should not be allowed to add a Product A. Can this be done just with RCA configurations or CML?

2 réponses
  1. 12 août, 10:57

    The question is likely no longer relevant, but here is a possible solution for anyone who might encounter this in the future. 

    In the example bellow Product A is a Laptop. 

     

    CML:

    type LineItem;

    type Laptop : LineItem;

    type Desktop : LineItem;

    type Printer : LineItem;

    @(virtual = true)

    type Quote {

    @(sourceContextNode = "SalesTransaction.SalesTransactionItem")

    relation lines : LineItem[0..200];

    constraint(lines[Laptop] == 0 || lines[LineItem] == lines[Laptop], "Laptop must be quoted on its own. Remove the other products, or remove the Laptop.");

    }

    Result:The question is likely no longer relevant, but here is a possible solution for anyone who might encounter this in the future. In the example bellow Product A is a Laptop.

     

    When you will write your own CML please make sure it is not slow.

0/9000

Hi everyone,

I’m facing an issue with Renewal Opportunities in Revenue Cloud.

Assets are created successfully after Order Activation, and Amendments are also working correctly. However, the Renewal Opportunity is not being created, even though the Create and Update Renewal Opportunities flow is active.

Has anyone faced a similar issue or knows what configuration needs to be checked for Renewal Opportunity creation?

Any suggestions would be really helpful. Thank you! 

 

#Revenue Cloud  #Salesforce Revenue Cloud

1 réponse
  1. 12 août, 12:12

    Hi Thanusha - when assets exist, amendments work, and the flow is active but no renewal opp appears, the cause is almost always timing/eligibility rather than a broken flow. Things to check, most likely first: 

     

    1) Renewal window / timing. Renewal Opportunities generate relative to the asset/subscription end date, not right after activation. If the asset's end date isn't yet inside the renewal window (e.g. a 1-year term that just started), the renewal opp isn't due to be created yet. Confirm how far ahead renewals are meant to generate and whether these assets fall in that window. 

     

    2) Is the flow actually running on schedule? 'Active' is not the same as 'scheduled/executed'. If it's a scheduled flow, verify it has a schedule and has actually run since the assets were created - check its run history / scheduled paths. A record-triggered version needs the triggering change to occur. 

     

    3) Asset/product renewability. The asset has to be renewable - the product configured with a renewal term/lifecycle so it's eligible. A non-subscription or non-lifecycle-managed asset won't spawn a renewal opp even if everything else is set. 

     

    4) Entry criteria / duplicates. Check the flow's entry conditions (asset status, lifecycle stage) and whether a renewal opp already exists for that asset - many renewal flows skip assets that already have one. 

     

    5) Errors. Check the flow's error/debug logs and Paused and Failed Flow Interviews - a silent failure (governor limit, a null on some records) would skip exactly those assets while working for others. 

     

    Since amendments already work, I'd bet on #1 or #2 (timing/schedule). If you can share the asset end date and whether the renewal flow is scheduled vs record-triggered, it's easy to narrow down.

0/9000

I have created a product category disqualification.  But, under quote when I click "Browse Catalogs" that particular category is visible.  I have even refreshed decision tables(Product Qualification, Product Disqualification) but still it isn't working.  Can anyone help me?     @* Salesforce Revenue Cloud * 

2 réponses
0/9000

We are using Agentforce Revenue Management (RCA). Our client uses Quote Line Groups with ramped segmentation. When we contract the quote, we get assets with asset state periods for each segment.

 

When we create a renewal quote using Renew Asset Action for a contract, renewal quote gets created without any groups and segments. Although the original asset has three segments, renewal quote creates lines without original groups and segments. It creates only quote line for only one year although the original contract was for three years. 

 

If there is no out of the box solution, how can this be accomplished?

 

Is there any out of the box solution to create renewal quote with the original contract term and segments with future renewal dates.

0/9000

We're on Agentforce Revenue Management (ARM). We have a requirement to periodically check whether a Renewal Quote (auto-generated ahead of a contract's end date) still matches the current state of the customer's Assets — since amendments or cancellations can happen after the renewal quote is created but before it's finalized. Our objective is to refresh the renewal quote for any changes in the Contract after the renewal quote is created.

 

We're trying to understand the correct data model traversal for this in ARM, given the objects involved: 

  • Contract — the source contract being renewed
  • Asset — related to the Contract
  • AssetContractRelationship — junction object between Asset and Contract
  • AssetAction — the transaction log capturing lifecycle events (amend, renew, cancel) on an Asset

 

Questions for the community: 

  1. What is the standard/recommended relationship path from a Quote (or Contract) to determine which Assets are currently associated with it — direct Asset.ContractId, or through AssetContractRelationship? When does ARM use one versus the other?
  2. Is AssetAction intended to be queried directly to detect "has this Asset changed since a given date," or is that considered an anti-pattern (i.e., should current state be read only from Asset's own fields, with AssetAction treated purely as historical/audit data)?
  3. Is there a standard/OOTB field or relationship that ties a Quote or its Quote Line Items back to the Asset(s) it's renewing, or is Contract the only reliable join point?
  4. Are there known data model diagrams or official Salesforce documentation that cover this specific Quote/Contract/Asset/AssetContractRelationship/AssetAction relationship set for ARM specifically (as opposed to CPQ Classic)?

Any pointers to official documentation, Trailhead modules, or real implementation experience would be appreciated.

0/9000

I have a nested bundle structure. I want to store the child line items in the bundle level. I used aggregate price element. It is including parent product count as well. I tried adding conditions but it is not working.  

Rollup number of childs on nested bundle.

 

5 réponses
  1. 11 août, 12:34

    Hi All, 

    I was able to achieve the Roll up aggregate on Parent Bundle .But I dont want on child items any data should be populated . So I have custom field called Package List price which holds Total of sum of List Prices of the child . Ideally I want only the total should be populated on Parent and not on Child Products

     

    Hi All, I was able to achieve the Roll up aggregate on Parent Bundle .But I dont want on child items any data should be populated .

     

    image.png

0/9000