Thursday, 16 March 2017

HOW TO GET SHIPPING AND PACKING INSTRUCTIONS DEFAULTED BASED ON CUSTOMER???

Oracle Standard functionality provides mechanism to default shipping and packing instructions without any customization.

You can follow below instructions to enable defaulting rules.

1. Please add following code into Package OE_Dependencies_Extn, which would enable the dependency between the Shipping Instruction and Customer field.

x_extn_dep_tbl(l_index).source_attribute := OE_HEADER_UTIL.G_SOLD_TO_ORG;
x_extn_dep_tbl(l_index).dependent_attribute := OE_HEADER_UTIL.G_SHIPPING_INSTRUCTIONS;
x_extn_dep_tbl(l_index).enabled_flag := 'Y';
l_index := l_index + 1;
  and/or
x_extn_dep_tbl(l_index).source_attribute := OE_HEADER_UTIL.G_SOLD_TO_ORG;
x_extn_dep_tbl(l_index).dependent_attribute := OE_HEADER_UTIL.G_PACKING_INSTRUCTIONS;
x_extn_dep_tbl(l_index).enabled_flag := 'Y';
l_index := l_index + 1;

2. Log on system as OM Super User responsibility
3. Navigate: Setup -> Rules -> Defaulting
4. Create a Defaulting Condition templates for a specific customer
5. Create Defaulting Rules for Shipping and/or Instructions with Condition created in Step 4.
6. Run "Defaulting Generator"concurrent request to active the change.

No comments:

Post a Comment