Symptom
You have noticed that the field {description/content} is not available for selection in the Assignment Block. While {description/noteId} is available, it does not accept a free-text value. Consequently, the case description text cannot be defaulted during Case creation.
Environment
SAP Service Cloud Version 2
Reproducing the Issue
- Click the Profile Icon.
- Go to the System Settings > All Settings.
- Open the Extensibility Administration.
- Select Case Service > Case.
- Go to the Determinations tab.
- Click to Create a new Determination.
- Attempt to set a value for description/content into the Assignment Block.
- Observe that description/content is not selectable and assigning {description/noteId} with a text value does not work.
Cause
The behavior you are observing is expected based on the current Case data model and design.
In the Case Service, the Case description is not stored as a simple text field. Instead, it is implemented as an association to a Note entity:
- The Case field
descriptionholds anoteIdreference. - The actual textual content of the description resides in the Note object (for example,
content).
Because of this design, {description/content} is not exposed in the Determination Assignment Block.
The Determination framework only exposes attributes that belong directly to the Case entity. Since the description text is part of a separate Note entity, its content field is intentionally not available for selection in the Assignment Block.
Resolution
Adding a description to a Case currently requires a two‑step process:
-
Create a Note instance
- Use the Note API to create a Note with
noteType = "S001"(Hyper Note). - Example API reference:
https://api.sap.com/api/SalesSvcCloudV2_noteService/overview
- Use the Note API to create a Note with
-
Associate the Note with the Case
- Pass the returned
noteIdinto the Case’sdescriptionattribute to link the Note as the Case description.
- Pass the returned
See Also
Keywords
determination rule, assignment rule, case description, description/noteId, description content, note association, note service api, default description, pre-hook, external hook, hyper note S001, case service, onPreHook, content not exposed, sales service cloud v2, Case Service, Determinations, Assignment Block, description/content, description/noteId, case description, default value, Note entity, Hyper Note, Create Note, Note API, SalesSvcCloudV2_noteService API , KBA , CEC-CRM-CAS , Case Management for SAP Sales/Service Cloud , CEC-CRM-CZM-CUL , Custom Logic for for SAP Sales/Service Cloud , Problem
SAP Knowledge Base Article - Public