Icon

AWB_​Duplicates_​Duties

<p><strong>AWB Duplication:</strong></p><p><strong>Part 1-</strong></p><ol><li><p>Excel Reader to import the data.</p></li><li><p>Row filter is used to merge duties and credits based on shipment number.</p></li><li><p>Concatenates all the imported data.</p></li><li><p>Filter the column which is required.</p></li><li><p>String manipulation is used to join order number and shipment number.</p></li><li><p>Aggregated the count based on shipment numbers.</p></li><li><p>Used inner join to join the 3 columns shipment number, base amount and counts.</p></li><li><p>Group By- shipment number and counts also aggregated the base amounts.</p></li><li><p>Math Formula to round off the amounts.</p></li><li><p>Java snippet- Java code use for different conditions based on counts of shipment numbers.</p></li><li><p>Row filters to segregates duplicates.</p></li><li><p>Used joiner to join the respective data we want for the duplicates.</p></li><li><p>For count=4, we use row filters and duplicates filters to filter out the duplicate shipment numbers.</p></li><li><p>Joiner to join all the data we required to move further.</p></li><li><p>We can export the duplicates file to excel before checking final part.</p></li></ol><p><strong>Part 2-</strong></p><ol><li><p>Import the detailed month data.</p></li><li><p>Used value lookup from the duplicates we found and the main detail data.</p></li><li><p>Group by with names.</p></li><li><p>Used 2 row filters to filter out shipment numbers with same and different names.</p></li><li><p>2 Joiner is used to join the whole data with the outputs(inner join technique implemented to join).</p></li><li><p>Again group by is performed to group with origin and destination to the outputs.</p></li><li><p>For duplicates again inner join is implemented to get the final output with other data.</p></li><li><p>For non-duplicates- row filter is used to segregates the different types of output mentioned in the comment section.</p></li><li><p>Last group by with the order number to get final duplicates.</p></li><li><p>To merge all the duplicates-concatenate is used.</p></li><li><p>Export to excel to get final duplicates in excel.</p></li></ol><p></p><p></p><p></p><p></p>

AWB Duplication:

Part 1-

  1. Excel Reader to import the data.

  2. Row filter is used to merge duties and credits based on shipment number.

  3. Concatenates all the imported data.

  4. Filter the column which is required.

  5. String manipulation is used to join order number and shipment number.

  6. Aggregated the count based on shipment numbers.

  7. Used inner join to join the 3 columns shipment number, base amount and counts.

  8. Group By- shipment number and counts also aggregated the base amounts.

  9. Math Formula to round off the amounts.

  10. Java snippet- Java code use for different conditions based on counts of shipment numbers.

  11. Row filters to segregates duplicates.

  12. Used joiner to join the respective data we want for the duplicates.

  13. For count=4, we use row filters and duplicates filters to filter out the duplicate shipment numbers.

  14. Joiner to join all the data we required to move further.

  15. We can export the duplicates file to excel before checking final part.

Part 2-

  1. Import the detailed month data.

  2. Used value lookup from the duplicates we found and the main detail data.

  3. Group by with names.

  4. Used 2 row filters to filter out shipment numbers with same and different names.

  5. 2 Joiner is used to join the whole data with the outputs(inner join technique implemented to join).

  6. Again group by is performed to group with origin and destination to the outputs.

  7. For duplicates again inner join is implemented to get the final output with other data.

  8. For non-duplicates- row filter is used to segregates the different types of output mentioned in the comment section.

  9. Last group by with the order number to get final duplicates.

  10. To merge all the duplicates-concatenate is used.

  11. Export to excel to get final duplicates in excel.

Nodes

Extensions

Links