\r\n \r\nIt was the third round of TPP talks we’ve had a chance to attend. Last year we participated in rounds in Ho Chi Minh City and in Chicago. AAFA will also continue to participate in future rounds. \r\n \r\nNegotiators are trying to trying to hammer out a trade agreement that will bring together Australia, Brunei, Chile, Malaysia, New Zealand, Peru, Singapore, the United States, and Vietnam into a single free trade agreement. Already-identified additional partners include Canada, Japan, and Mexico, but future aspirants include Korea, Thailand, and the Philippines. It is intended to be a 21st century trade agreement. Given the ambitious agenda and goals, it hopefully won’t take the entire 21st century to negotiate. If done correctly, the TPP will present incredible opportunities for U.S. textile, apparel, and footwear companies to open up new markets and sourcing venues that will generate trade (both exports and imports), investment, and jobs. \r\n \r\nIt is with this in mind that we were puzzled and disappointed to see several trade associations urge negotiators to adopt restrictive rules of origin for apparel. The so-called Textile and Apparel Alliance for TPP sent a letter last month to USTR Ambassador Ron Kirk opposing provisions that will help the TPP create new trade and investment flows or the jobs that come with them.The letter urged support for restrictive yarn forward rules of origin to diminish any possibility that the TPP will lead to more trade and investment. \r\n \r\nWhether by design or accident, the letter reinforces the view that restrictive rules of origin in apparel do not create trade and investment, undermining an argument that has been advanced at the negotiating table. Of course, AAFA and the TPP Apparel Coalition, have made the point repeatedly for the past year that complex global supply chains, and the millions of U.S. jobs they generate, demand fresh approaches in future FTAs. The data show that apparel companies shy away from FTAs that feature yarn forward rules. Imports of apparel under such FTAs have dropped markedly over the decade, even though the number of these FTAs have increased. A similar story is told on the export side as yarn and fabric exports to the four TPP partners with whom we have FTAs (using a yarn forward rule of origin) have remained static while exports to the quintessential non-FTA country – China – have climbed dramatically. When we unravel the truth behind yarn forward, we find that it does not create the trade, investment, and jobs that a 21st century TPP hopes to promote. \r\n \r\nWe understand the letter is motivated by fear of competition, but we also know that competition, combined with access to global supply chains, make our industry thrive. We are also aware that many of the countries that signed on to that letter also enjoy access to the very provisions – the ability to gain preferential access regardless of the source of the inputs – they themselves oppose in the TPP. \r\n \r\nNegotiators and policy makers have to balance many interests when they forge trade and economic policies. As they complete this task with respect to the TPP, we hope they will adopt an approach that takes us into the 21st century, and which is designed to promote economic growth and U.S. jobs by encouraging trade. \r\n \r\n Steve Lamar is executive vice president, American Apparel and Footwear Association. "}]}};
const country = "US";
const language = "en-US,en;q=0.5";
const SITE_LANGUAGE = "en";
const siteName = "RIS News";
const userRoles = ["anonymous"];
const userUid = 0;
const indexName = "risnews";
window.dataLayer = window.dataLayer || [];
const data = {};
data.entityTaxonomy = {};
const contentTypes = [
"article",
"blog",
"bulletin",
"embed_page",
"landing_page",
"event",
"image",
"page",
"product",
"whitepaper",
"video",
"tags",
];
if (
routeInfo &&
"bundle" in routeInfo &&
contentTypes.includes(routeInfo["bundle"])
) {
data.entityBundle = routeInfo.bundle;
data.entityTitle = `${routeInfo.title} | ${siteName}`;
data.entityId = routeInfo.id;
data.entityName = routeInfo.author?.uname;
data.entityCreated = routeInfo.created;
data.sponsored = routeInfo.sponsored;
data.sponsor = routeInfo.sponsoringCompany;
data.entityType = "node";
data.entityLangcode = SITE_LANGUAGE;
data.siteName = siteName;
data.drupalLanguage = language;
data.drupalCountry = country;
data.userRoles = userRoles;
data.userUid = userUid;
data.entityTaxonomyKeys = {};
data.entityTaxonomyHierarchies = {};
data.parentNaicsCode = {};
data.isPro = false;
data.algoliaIndexName = indexName;
// Add toxonomy data
const taxonomies = {
businessTopic: "business_topic",
contentType: "content_type",
company: "company",
marketSegment: "market_segment",
};
const getHierarchy = (term, terms = []) => {
terms.push({ id: term.id, name: term.name });
if (term.parentTerm != null) {
getHierarchy(term.parentTerm, terms);
}
return terms;
};
const getTerms = (term, useApiId = false) => {
return { id: useApiId ? term.apiId : term.id, name: term.name };
};
const getKeys = (term) => {
return { id: term.id, name: term.apiId };
};
Object.entries(taxonomies).forEach(([key, item]) => {
terms = routeInfo[key];
if (terms && terms.length > 0) {
data["entityTaxonomy"][item] = terms.map((term) =>
getTerms(term, key === "company")
);
if (key !== "company") {
data["entityTaxonomyKeys"][item] = terms.map(getKeys);
termGroups = [];
terms.forEach((term, termInd) => {
termGroups[termInd] = getHierarchy(term);
});
data["entityTaxonomyHierarchies"][item] = termGroups;
}
}
});
data["entityTaxonomy"]["tags"] = routeInfo["topics"] || [];
// Primary Topic is either the business topic or the top tag.
if (routeInfo["businessTopic"]?.length > 0) {
data["entityPrimaryTopic"] = routeInfo["businessTopic"][0]["name"];
} else {
if (routeInfo["topics"]?.length > 0) {
data["entityPrimaryTopic"] = routeInfo["topics"][0]["name"];
}
}
// Primary and secondary entityNaicsCodes come from the MarketSegment
if (routeInfo.marketSegment?.length > 0) {
data.entityNaicsCode = {};
data["entityNaicsCode"]["id"] = routeInfo["marketSegment"][0]["id"];
data["entityNaicsCode"]["name"] =
routeInfo["marketSegment"][0]["naicsCode"];
if (routeInfo["marketSegment"][0]["parentTerm"] != null) {
data["parentNaicsCode"]["id"] =
routeInfo["marketSegment"][0]["parentTerm"]["id"];
data["parentNaicsCode"]["name"] =
routeInfo["marketSegment"][0]["parentTerm"]["naicsCode"];
}
} else {
data.entityNaicsCode = [];
}
if (routeInfo.taggedPro) {
data.isPro = routeInfo.taggedPro;
}
window.dataLayer.push(data);
} else if (routeInfo && "vid" in routeInfo) {
data.entityBundle = "tags";
data.entityTitle = routeInfo.name;
data.entityId = routeInfo.id;
data.entityName = routeInfo.author?.uname;
data.entityCreated = routeInfo.created;
data.entityType = "taxonomy_term";
data.entityLangcode = SITE_LANGUAGE;
data.siteName = siteName;
data.sponsored = routeInfo.sponsored;
data.sponsor = routeInfo.sponsoringCompany;
data.drupalLanguage = language;
data.drupalCountry = country;
data.userRoles = userRoles;
data.userUid = userUid;
data.algoliaIndexName = indexName;
data["entityTaxonomy"]["tags"] = {
id: routeInfo["id"],
name: routeInfo["name"],
};
window.dataLayer.push(data);
}
})();
AAFA Exec: With the TPP, 'We Are Not in Kansas Anymore'
AAFA Exec: With the TPP, 'We Are Not in Kansas Anymore'
3/14/2012
Last week, American Apparel and Footwear Association participated as a stakeholder in the 11th round of the Trans-Pacific Partnership talks that took place in Melbourne, Australia (which the locals call OZ).
It was the third round of TPP talks we’ve had a chance to attend. Last year we participated in rounds in Ho Chi Minh City and in Chicago. AAFA will also continue to participate in future rounds.
Negotiators are trying to trying to hammer out a trade agreement that will bring together Australia, Brunei, Chile, Malaysia, New Zealand, Peru, Singapore, the United States, and Vietnam into a single free trade agreement. Already-identified additional partners include Canada, Japan, and Mexico, but future aspirants include Korea, Thailand, and the Philippines. It is intended to be a 21st century trade agreement. Given the ambitious agenda and goals, it hopefully won’t take the entire 21st century to negotiate. If done correctly, the TPP will present incredible opportunities for U.S. textile, apparel, and footwear companies to open up new markets and sourcing venues that will generate trade (both exports and imports), investment, and jobs.
It is with this in mind that we were puzzled and disappointed to see several trade associations urge negotiators to adopt restrictive rules of origin for apparel. The so-called Textile and Apparel Alliance for TPP sent a letter last month to USTR Ambassador Ron Kirk opposing provisions that will help the TPP create new trade and investment flows or the jobs that come with them.The letter urged support for restrictive yarn forward rules of origin to diminish any possibility that the TPP will lead to more trade and investment.
Whether by design or accident, the letter reinforces the view that restrictive rules of origin in apparel do not create trade and investment, undermining an argument that has been advanced at the negotiating table. Of course, AAFA and the TPP Apparel Coalition, have made the point repeatedly for the past year that complex global supply chains, and the millions of U.S. jobs they generate, demand fresh approaches in future FTAs. The data show that apparel companies shy away from FTAs that feature yarn forward rules. Imports of apparel under such FTAs have dropped markedly over the decade, even though the number of these FTAs have increased. A similar story is told on the export side as yarn and fabric exports to the four TPP partners with whom we have FTAs (using a yarn forward rule of origin) have remained static while exports to the quintessential non-FTA country – China – have climbed dramatically. When we unravel the truth behind yarn forward, we find that it does not create the trade, investment, and jobs that a 21st century TPP hopes to promote.
We understand the letter is motivated by fear of competition, but we also know that competition, combined with access to global supply chains, make our industry thrive. We are also aware that many of the countries that signed on to that letter also enjoy access to the very provisions – the ability to gain preferential access regardless of the source of the inputs – they themselves oppose in the TPP.
Negotiators and policy makers have to balance many interests when they forge trade and economic policies. As they complete this task with respect to the TPP, we hope they will adopt an approach that takes us into the 21st century, and which is designed to promote economic growth and U.S. jobs by encouraging trade.
Steve Lamar is executive vice president, American Apparel and Footwear Association.