I am trying to create XML business rule that exececutes on the Creation of a request
the business rule is expected to insert a a new line in a custom table for the most part it is working. but in one of the fields it need to combine the Place id with some text and im not sure how i would go about doing that the line question is the charge_code i would like it to insert S-22222-M where 22222 is the place id.
I tried the below but it populates exactly what is seen below if i put spaces around the @place_id it does populate the field with the 22222 but it also has a space on either side of the place_id.
Any help would be appriated
Thanks
<perform_batch>
<sequential_dependent>
<update_rid_settlement regex_validated="true">
<rid_settlement>
<insert is_initialized="false" />
<charge_group>STANDARD</charge_group>
<cost_split>ALL</cost_split>
<charge_code>S-@place_id-M</charge_code>
<request_id>@request_id</request_id>
</imax_rid_settlement>
</update_rid_settlement>
</sequential_dependent>
</perform_batch>