Skip to main content
Solved

BPA Workflow - Set defaults values in sub Contract revision and Items

  • May 9, 2024
  • 2 replies
  • 203 views

Forum|alt.badge.img+1

I’m trying to set defaults values to SubContract Revision and items → Items section via a BPA workflow.

 

 

Tried adding values for different fields but none of it worked. Above is the one I tried to add a default value for ItemName field.

The projection Action I used is this,

 

Any idea why this is not working as expected?

Version is 23R1.

Best answer by kamnlk

Hi, 

Bit late to reply, but i hope this would benefit someone experiencing the same issue in the future.

Workflow has a limitation when it comes to trigging to a nested projection action that goes beyond one nested level.

In this case the request goes as following:

ContractRevisionSet --> ContractLines (1st nested) --> ContractItems (2nd nested):> ContractItem_Default()

That could be the reason for this behavior

2 replies

Forum|alt.badge.img+9
  • Hero (Employee)
  • Answer
  • December 23, 2024

Hi, 

Bit late to reply, but i hope this would benefit someone experiencing the same issue in the future.

Workflow has a limitation when it comes to trigging to a nested projection action that goes beyond one nested level.

In this case the request goes as following:

ContractRevisionSet --> ContractLines (1st nested) --> ContractItems (2nd nested):> ContractItem_Default()

That could be the reason for this behavior


Forum|alt.badge.img+1

@kamnlk 

Thank you for the reply.