Change or modify sku after order being placed

Hi
Is there any way we can change sku being shown after order is placed.
example scenario
if my product has sku produSKU
and a customer places an order
on order page where order details are visible
I want produSKu to be appended with some string
expected output may be like prodSKu + my apended string

Yes, you can modify sku in order details page like below, it’s not exact as your case, just change as you need please:

{{order.line_items[0].sku|append:'string you want here'}}

Where we will have to place this snippet can you share some screen shot

it’s different place for different theme. Now I am using dawn

so when order will be placed the appended sku will be shown or orignal sku on admin side ??

Yes, You can try it.

alright will give it a try and let you know here

no it doesnot reflect on order details in admin

replace

{{line_item.sku}}

with

{{line_item.sku|append:'string you want here'}}

have replaced but admin side didnot shown the sku plus appended text

It’s client side sku change, not admin side change.

yes that’s what i mentioned earlier anyhow thanks for responses