diff --git a/gso/utils/workflow_steps.py b/gso/utils/workflow_steps.py
index bcc1cacb36009b6db7eccca2f0787e26db95dd7f..6ab00644bef668cecdf1c159e9502ec4879ff8a7 100644
--- a/gso/utils/workflow_steps.py
+++ b/gso/utils/workflow_steps.py
@@ -110,7 +110,7 @@ def run_checks_after_base_config(subscription: dict[str, Any], callback_route: s
 
 @inputstep("Prompt for new SharePoint checklist", assignee=Assignee.SYSTEM)
 def prompt_sharepoint_checklist_url(checklist_url: str) -> FormGenerator:
-    """Prompt the operator with the checklist in SharePoint for approving this new router."""
+    """Prompt the operator with the checklist in SharePoint for approving a new subscription."""
 
     class SharepointPrompt(FormPage):
         model_config = ConfigDict(title="Complete new checklist")
diff --git a/gso/workflows/iptrunk/create_iptrunk.py b/gso/workflows/iptrunk/create_iptrunk.py
index 390c3e137db575b64f3b4a85748729a49537ef3f..440bb8e2ac0eef37df5af277864e126d61245214 100644
--- a/gso/workflows/iptrunk/create_iptrunk.py
+++ b/gso/workflows/iptrunk/create_iptrunk.py
@@ -498,7 +498,7 @@ def create_new_sharepoint_checklist(subscription: IptrunkProvisioning, tt_number
     """Create a new checklist item in SharePoint for approving this IPtrunk."""
     new_list_item_url = SharePointClient().add_list_item(
         "ip_trunk",
-        {"Title": subscription.iptrunk.iptrunk_description or subscription.description, "TT_NUMBER": tt_number},
+        {"Title": f"{subscription.description} - {subscription.iptrunk.geant_s_sid}", "TT_NUMBER": tt_number},
     )
 
     return {"checklist_url": new_list_item_url}