Forum Discussion

Uzzi01's avatar
Uzzi01
Qrew Member
3 days ago

Date / Field stamp through pipeline

I have a step in my pipeline that creates line items and inserts required data in that line item.  The completion status of this line item is dependent on the field completed date.

How do i include the completed date in the step so that when the data is added so that the line item is complete

2 Replies

  • It's not completely clear what your question is, but for example, you could trigger a pipeline on a new event. The event would be whether a record was added or modified. Then you could trigger on the completed date field changing, and a filter saying that the completed date is set.

     

    It's not completely clear what your question is, but for example, you could trigger a pipeline on a new event. The event would be whether a record was added or modified. Then you could trigger on the completed date field changing, and a filter saying that the completed date is set.

     

    Then the next step  could be to update the record and change a status field on that record to be completed

    • Uzzi01's avatar
      Uzzi01
      Qrew Member

      Sorry for the confusion,

      So this is what im writing for the below "itemd"

       {% if itemid == "102" %}
        "165": { "value": "primary:{{ a.eclipse_lead_id if a is defined else '' }}" }

      My completed date field for this item is FID 92. 

      I need to have the field 92 filled if field 165 is filled. That would mean that based on my dynamic rule if I have a date filled on field 92 that the status for this "itemd 102" will be Completed 

      Currently it stays as incomplete because of the date note being present