Ads Top

Oracle apps ECCN Value

Oracle apps ECCN:--



1. What is ECCN?


Answer:
ECCN stands for Export Control Classification Number, it refers to a code that is assigned to part or item in oracle apps.


The ECCN value helps in classifying items based on their export control status and determining whether they require a license for export to certain countries or individuals.


It ensures compliance with export control laws and regulations enforced by government authorities.


These values are typically managed through configuration settings and can be viewed or modified as needed to ensure compliance with export regulations.


2. Why eccn needed for an organization?


Answer:



Export Control Classification Numbers (ECCNs) are essential for organizations operating in international markets for several reasons:


a. Legal Compliance: ECCNs help organizations comply with export control laws and regulations imposed by government authorities. Failure to comply


with these regulations can result in severe penalties, including fines and legal actions.


b. Risk Mitigation: By accurately classifying products with ECCNs, organizations can mitigate the risk of inadvertently exporting controlled items to restricted destinations or individuals. This helps prevent potential violations of export regulations and minimizes the risk of reputational damage.


c. Access to Markets: Some products may require an export license for shipment to certain countries or end-users, depending on their ECCN classification.


Understanding ECCNs allows organizations to assess market access and evaluate the regulatory requirements associated with exporting products to specific regions.


d. Supply Chain Management: ECCNs play a crucial role in supply chain management by facilitating the identification and tracking of controlled items throughout the export process.


This ensures that appropriate controls are applied to restricted products and that they are not diverted to unauthorized destinations.


e. Customer Relationships: Demonstrating compliance with export regulations through accurate ECCN classification can enhance customer trust and confidence.


Many customers, especially those in regulated industries or government sectors, require assurance that products comply with applicable export control laws before engaging in business transactions.


3. How we use it and what is the navigation to use ECCN Value?


Answer:



a) Navigate to the Item Master Form:



In Oracle Apps R12, you typically access the Item Master form through the Inventory Responsibility.


Navigate to the Inventory responsibility.


Navigate to the Master Items >Open the global org as ECCN Value you can see only from global org level.


b)Query or Create the Part Number:



Use the search functionality to find the part number you want to associate with an ECCN. If it doesn't exist yet, you can create a new item record.


And if it exists then you go to tools>Catalog under this screen you can see the ECCN Value.


c)Access the Item Attributes:



Once you've created the part number, access its attributes or details.


You can access the desired eccn value using tools>Catalog navigation.


d)Save the Changes:



Once you've entered the ECCN value, save the changes to the item record. This ensures that the ECCN is associated with the part number in the Oracle


EBS system.


e)Review and Verify:



After saving the changes, review the item record to ensure that the ECCN value has been successfully associated with the part number.


Double-check for accuracy and completeness.


4.Query to get eccn value?


Answer:



Now the last but not least , one question came into our mind if there is a requirement to get thousands of part number eccn information then manually


going to navigation is not feasible.


In that case you must use query to get extract of eccn values.As eccn field newly implemented in oracle apps so the table would be might be customized one.


--query to get eccn value


SELECT


DISTINCT MSBI.SEGMENT1,


MDEV.ELEMENT_VALUE ECCN


FROM


APPS.MTL_DESCR_ELEMENT_VALUES MDEV,


APPS.MTL_SYSTEM_ITEMS_B MSBI


WHERE MDEV.INVENTORY_ITEM_ID = MSBI.INVENTORY_ITEM_ID


AND MDEV.ELEMENT_NAME = 'ECCN'


AND MSBI.SEGMENT1='570034589' --need to put all part numbers


order by MSBI.SEGMENT1 asc;


Query to get both EAR ECCN Value and HTS/HS Category Value:--
SELECT DISTINCT MSBI.SEGMENT1 PN,

( SELECT DISTINCT

MDEV.ELEMENT_VALUE

FROM

APPS.MTL_DESCR_ELEMENT_VALUES MDEV

WHERE MDEV.INVENTORY_ITEM_ID = MSBI.INVENTORY_ITEM_ID

AND MDEV.ELEMENT_NAME = 'ECCN') "EAR ECCN",



(select distinct micv.CATEGORY_CONCAT_SEGS

from apps.MTL_ITEM_CATEGORIES_V micv

where micv.CATEGORY_SET_NAME='HTS Category'

and MSBI.INVENTORY_ITEM_ID=micv.INVENTORY_ITEM_ID

and micv.organization_id=MSBI.organization_id) "HS Code"

FROM APPS.MTL_SYSTEM_ITEMS_B MSBI

WHERE MSBI.SEGMENT1 in ('570033656','S626P0413');

No comments:

We encourage respectful comments.
Did this article help you? Let us know in the comments!
What questions do you have about this topic?
We'd love to hear your suggestions for future content.
Please Share this article with your friends and see what they think!

Powered by Blogger.