Guided Buying Solution

download Guided Buying Solution

of 20

description

With the markets turning increasingly competitive every day, the systems have been witnessing the proliferation of the Supplier, Sites, their offerings and Approved Supplier Lists data. The growing numbers have complicated the process of buying and ease of system use thereby. The fact is corroborated by the increasing number of the support tickets in iprocurement track logged by relatively newer users of the system. Through close interaction with the users and business, we have devised “Guided Buying” solution simplifying the process of buying and cranking up the effectiveness and productivity of the system.

Transcript of Guided Buying Solution

Customizing Oracle HRMS Workflow Notification

Guided Buying -Simplified & User Friendly Solution for the indirect ProcurementAuthor: Amit JainDeclaration

I hereby declare that this document is based on my project experiences. To the best of my knowledge, this document does not contain any material that infringes the copyrights of any other individual or organization. The Key members involved in the development of the solution are Amit Jain (Solution Architect), Vinay Kadimi (JSP Developer), Papiya Chattopadhyaya (OAF Developer), Kunali Somkuwar (OAF Developer + PL/SQL Developer), Y, Kiran (Web Designer)Target ReadersIprocurementIndirect ProcurementCommodity Based Approved Supplier ListSmart Forms

Punch OutKeywordsIprocurement

Indirect Procurement

Commodity Based Approved Supplier List

Smart Forms

Punch OutIntroductionWith the markets turning increasingly competitive every day, the systems have been witnessing the proliferation of the Supplier, Sites, their offerings and Approved Supplier Lists data. The growing numbers have complicated the process of buying and ease of system use thereby. The fact is corroborated by the increasing number of the support tickets in iprocurement track logged by relatively newer users of the system.Through close interaction with the users and business, we have devised Guided Buying solution simplifying the process of buying and cranking up the effectiveness and productivity of the system.Salient Features of the Footprint1) Guided Buying for indirect procurement simplifying the process of procurement and enhancing the system usability

2) Providing a more Agile and robust system to the users

3) Automatic switching responsibility and operating unit context based from the list of drop down

4) Enabling of Guided Buying for selective Operating units

5) Direct Punch out to Vinimaya site through clicking a button. Punch out will auto derive the Operating unit of the Requesting Person using the solution

6) Category Hierarchy simplifying the search of the items to be ordered

7) Configurable Index Page Screens using the Custom Lookups

8) Auto Displaying the List of Preferred suppliers for the Item Category using commodity based Approved Suppliers

9) Keyword and Supplier based Search capabilities

10) Direct Landing for the users on the Smart Forms by choosing the category

11) Auto Deriving of the HP Catalogs specific to the Operating unit and for the Category

12) Easing out the complexity of ordering the items with the increasing Item Categories and preferred suppliers through guided buying will result into lesser tickets logged by the users

13) Ease of requesting the items.

14) HTML5.0 leveraged for UI design makes it browser dependent and compatible to Mobiles Devices.Key Solution Points1) Commodity based Approved Supplier Lists for Preferred Suppliers. Interface has been written for same.2) Re-organization and logical classification of the Item Categories in Custom Lookups

3) Smart Forms based on Categories and Restrict by Preferred Suppliers4) Operating Unit based Switch Context from the UI5) Suppliers and Sites Defaulting on the Smart Forms

6) Operating Unit based Punch outs from the UI

7) Securing of the Buying pages from unauthorized access through Form Functions

8) Customizing Controller for iProcurement NonCatalog PageFlow Diagram

SolutionSetting up the Custom Lookups

We have used the Custom Lookups table and a custom form to update the Lookup Values. An excerpt of the Category classification data file for the ease of the use is as attached.

The Actual file used for the Category Lookups is as attached

Once the Lookups are uploaded, we run a concurrent program in the environment to validate the Categories Name and populate the category_id in Attribute13. The code is as attached.

Setting up Smart Forms

As indicated below, please set up the smart forms for the rest of the categories along the same lines

Landing Page (Entry point into the application)

FIGURE 1

Brief on Functionality Points of Figure1The Page above will be registered as a Form Function so as to prevent the unauthorized access. Anyone attempting to access the URL directly will be prompted to the SSO Login page.1) Point 1 marked will display the description field of the User.2) Point 2 will be the drop down of all the Operating Units to which the user has iProcurment Access. But by default the Operating Unit which attached to the persons HR Assignment will be listed. The query used for the drop down is given in the screenshot3) Point 3 will be link to Vinimaya CatalogA) Upon clicking the Catalog Button, using the AJAX call we will derive the operating unit from Point#2 and send the control to the Vinimaya Punchout. The Content Zone ID for the punch out can be derived using PL/SQL Call.B) Redirect the control to an intermediate OAF Page with Dummy AM Definition. However, the controller of this page will set the Responsibility Context using the below code.hashmap1.put("contentZoneId", oapagecontext.getSessionValueDirect("CZID"));

hashmap1.put("action", "shopping");

hashmap1.put("shopFlow", s1);

oapagecontext.removeParameter("OARespContextSwitcherValuesKey");

oapagecontext.removeTransactionTransientValue("OARespContextSwitcherValuesKey");

String key = (String)oapagecontext.getSessionValueDirect("respk");

oapagecontext.changeResponsibility(key, "ICX");

oapagecontext.setForwardURL("ICX_CAT_PUNCHOUT_LOGIN", (byte)0, null, hashmap1, false, "N", (byte)99);Please see the controller file attached

4) Point 5 tagged in the Figure 1 will extend the flexibility to the solution to go to the iProcurement Seeded Page and changing the responsibility base on OU Context Switch. Redirect the control to an intermediate OAF Page with Dummy AM Definition. However, the controller of this page will set the Responsibility Context using the below code.oapagecontext.removeParameter("OARespContextSwitcherValuesKey");

oapagecontext.removeTransactionTransientValue("OARespContextSwitcherValuesKey");

oapagecontext.changeResponsibility((String)oapagecontext.getSessionValueDirect("respk"), "ICX");

oapagecontext.setForwardURL("OA.jsp?OAFunc=ICX_CAT_SHOP_HOME", null, (byte)0, null, hashmap, true, "Y", (byte)99);

Please see the controller file attached

5) Point6 he news section will display the news items based on the Lookup Type Values entered. Queries related to the existing setups are shown in the screenshot above6) Point 4 lands to the Guided Buying Page (Please Refer Figure2 below)

Figure 2Brief on Functionality Points of Figure21) Point 1 takes the value of the operating unit as selected from Landing Page (Landing page). Besides, defaulting the OU from the Landing Page, it also extends the flexibility to change the operating unit using the drop down.2) Point 3 : The category classification Lookups also bags in the details if the Application Type is a Smart form or a Catalog. (I shall attach a extract of the complete category lookups in the appendix). Catalog entries are represented by For the Catalog Application Type one the Lookups column also contains the Name of the Catalogs eg. HP, Vinimaya. We have a PL/SQL Module to derive the content zone ID based on the Catalog Name and the OU selected from the Responsibility context switch. Once the content Zone ID is derived, we land on the Catalog Punch out site using the logic as depicted in Figure1 ( Point 3 (B)

3) Point 4: Smart form entries are represented by .For the Smart form links, we have the Category ID derived from the Extended Lookups Table; find all the Preferred Suppliers for the Category ID specific to the OU and display the matching result on the next page. We shall cover this section in the Figure 3. Once someone will click on the Smart form link, he/she will be navigated to Figure4.4) Point 5: News section is same as depicted in Figure1 Point 65) Point 6 uses the Policy URL, Meaning of the Lookups. Please refer XXAT_IPROCUREMENT_LOOKUPS.xlsx attached in Custom Lookups section above6) Point 7: Brief about the Category Description comes from Category_Detail_Description column. Please refer XXAT_IPROCUREMENT_LOOKUPS.xlsx attached in Custom Lookups section above7) Point 8: Banner Images for every Top Level Categorty will be different. Images are saved as Top_Category.png and placed under OA_HTML/ imags/banners folder.8) Point 2 is the Search Functionality based on the Keyword as captured under DFF Column of ASL Attributes and the Keywords captured in the Smart Form Definiton

The query for Keyword search will be as follows:

SELECT Attribute6||'>>'|| Attribute8 FROM XXAT_LOOKUP_VALUES WHERE LOOKUP_ID=(SELECT LOOKUP_ID FROM XXAT_LOOKUP_TYPES WHERE LOOKUP_TYPE='XXAT_IPROCUREMENT_LOOKUPS')

and Attribute9='Y' AND Attribute4='Y'

AND ATTRIBUTE13 IN (

--****for searching the Smart Forms--------

select distinct category_id

from por_noncat_templates_all_vl

where instr(upper(keywords),upper(:1))0 --:1 will be input from the Textbox of Search functionality.

UNION

--****for searching the ASL--------

select DISTINCT CATEGORY_ID from po_approved_supplier_list where category_id is not null

and nvl(disable_flag,'N')'Y'

AND trunc(review_by_date)>=TRUNC(SYSDATE)

AND instr(upper(attribute14),upper(:1))0

)Please see the screenshot below for the Search Keyword as Event

Figure3

Once some one will click on Levl 3 category, the matcing preferred Suppliers will be pulled as shown in the Figure 4

Figure4

Brief on Functionality Points of Figure41) Point1 : This will be the drop down to select the Mode of Ordering (if we want to Order by Amount, Services, Goods). Based upon the selection from the drop down, we shall be navigated to the appropriate Smart Form in the Store.

2) Point 2: The grid contains all the matching records for the Preferred Suppliers in the Grid. So if the data retrieved in the grid cant be displayed on single page, instead of user navigating to different pages for the Search result, he can directly key-in the Supplier Name/ Keywords/ Both to retrieve the matching result. (Please refer for Figure5)3) Point 3 and 6: Query that will be used to pull the Suppliers in the Grid is as below. But, we are grouping the records while displaying the dataset on the grid. All the columns from the query below will be visible only upon expanding the + sign next to the Vendor NameSELECT a.asl_id, c.vendor_name c_vendor_name, address_line1 || ' ' || address_line2 || ' ' || address_line3 || ' '

|| city || ' ' || state || ' ' || zip || ' ' || province || ' ' || country c_address, d.vendor_site_code c_vendor_site,

f.first_name || ' ' || f.middle_name || ' ' || f.last_name c_contact_person, f.area_code || '-' || f.phone c_contact_phone, f.EMAIL_ADDRESS c_email,

TO_CHAR (c.vendor_id) c_vid, TO_CHAR (d.vendor_site_id) d_vsid, TO_CHAR (f.vendor_contact_id) f_vcid, TO_CHAR (j.template_id) temp_id, item_type, a.attribute14 key_words FROM po_approved_supplier_list a, po_asl_statuses b, ap_suppliers c, ap_supplier_sites_all d,

ap_supplier_contacts f, mtl_parameters e, po_asl_attributes g, mtl_categories h, hr_operating_units i, por_noncat_templates_all_vl j

WHERE 1 = 1 AND a.category_id IS NOT NULL AND i.organization_id = :1 AND a.asl_status_id = b.status_id AND a.vendor_id = c.vendor_id

AND a.vendor_site_id = d.vendor_site_id(+) AND a.owning_organization_id = e.organization_id(+) AND a.vendor_site_id = f.vendor_site_id(+)

AND a.category_id = :2 AND a.asl_id = g.asl_id(+) AND a.category_id = h.category_id AND h.disable_date IS NULL

AND h.end_date_active IS NULL AND h.enabled_flag = 'Y' AND d.org_id = i.organization_id AND j.category_id = a.category_id AND f.INACTIVE_DATE IS NULLOnce we expand the + sign next to the Supplier Name, it will dispay all the Supplier Site , Smart Form Details based on 3 criteria

A) Supplier name

B) Keywords

C) Item Type (Order By)

Please refer Figure5 below

4) Point 4: Category Selected from the Index Page/ Search Page as shown in Figure 2 and 3 will be displayed on the Top.

5) Point5 : Go Back Button Navigates back to the Index Page.

Figure 5

Brief on Functionality Points of Figure 5

1) Point 1: This take the users to the Standard Iprocurement Page. This functionality is same as depicted in Figure 1 Functioanlity Point# 5

2) Point 2: Global Sourcing Manager information is derived from a Custom Lookup. The Database function written to retrieve the contact details of the Gloal Sourcing Manager is as below:FUNCTION xxat_get_global_sourcing_mgr (p_category_id NUMBER, p_org_id NUMBER) RETURN VARCHAR2

IS

l_emp_number number;

l_ret_message varchar2(1000);

BEGIN

-- get person id

select attribute8 into l_emp_number

from xxat_lookup_values

where lookup_id= (select lookup_id from xxat_lookup_types

where lookup_type='XXAT_GLOBAL_SOURCING_MGR' )

and attribute5 = p_category_id

and attribute6 = p_org_id;

-- join person-id from usr for usr_udf_person_id

select 'OR Contact Global Sourcing Manager '||USR_UDF_COMMON_NAME ||'(Email :' ||USR_EMAIL ||'Telnet :'||USR_UDF_TELEPHONE_NUMBER||')' into l_ret_message

from usr

where usr_udf_person_id = l_emp_number;

if l_ret_message is null

then

l_ret_message := 'Appropriate Sourcing contact not available in directory';

end if;

return l_ret_message;

EXCEPTION

WHEN OTHERS

THEN

RETURN 'Appropriate Sourcing contact not available in directory';

END xxat_get_global_sourcing_mgr;

3) Point3 : Upon clicking the (+) sign it will expand results for the Supplier Sites (based on the selected Operating Unit) and the Order by option selected from the Drop Down. Refer Figure 6

Figure 6

Brief on Functionality Points of Figure 6

1) Point1 : When we click on the listed Supplier, it redirects to OAF Page with Dummy AM Definition. However, the controller of this page will set the Responsibility Context using the below code. The parameters passed in the URL to the intermediate page will be SupplierID, SupplierSiteID, SupplierContactID , SmartFormID and the Flag indicating that the page is being accessed by Guided Buying Application and not elsewhere.2) The intermediate page will put the values of the Supplier_id, Suplier_Site_Id, Supplier_Contact_ID in a HashMap3) It will set the Responsibility Context 4) Redirect the control to the Seeded Page OA.jsp?OAFunc=ICX_CAT_NONCAT_REQUEST_STOREif(pageContext.isLoggingEnabled(1))

pageContext.writeDiagnostics(this, "processRequest.calling getRespKey method for supplier site id= "+(String)pageContext.getSessionValueDirect("SuppSiteId"), 1);

String respKey = getRespKey((String)pageContext.getSessionValueDirect("SuppSiteId"),pageContext,webBean);

if(respKey !=null && !"".equals(respKey))

pageContext.changeResponsibility(respKey , "ICX");

if(pageContext.isLoggingEnabled(1))

pageContext.writeDiagnostics(this, "processRequest. RespKey for supplier site id= "+(String)pageContext.getSessionValueDirect("SuppSiteId")+" is "+respKey , 1);

HashMap SuppHashMap = new HashMap();

SuppHashMap.put("SuppId",pageContext.getSessionValueDirect("SuppId"));

SuppHashMap.put("SuppSiteId",pageContext.getSessionValueDirect("SuppSiteId"));

SuppHashMap.put("SuppContactId",pageContext.getSessionValueDirect("SuppContactId"));

SuppHashMap.put("TemplateId",pageContext.getSessionValueDirect("TemplateId"));

SuppHashMap.put("fromRentCar",pageContext.getSessionValueDirect("fromRentCar"));

//debugStmt("inside of XXATNonCatFrwdCO "+pageContext.getSessionValueDirect("SuppId")+","+pageContext.getSessionValueDirect("SuppSiteId"), pageContext,webBean);

if(pageContext.isLoggingEnabled(1))

pageContext.writeDiagnostics(this, "processRequest. Forwarding to ICX_CAT_NONCAT_REQUEST_STORE " , 1);

pageContext.setForwardURL("OA.jsp?OAFunc=ICX_CAT_NONCAT_REQUEST_STORE",

5) Once the Control reaches to the seeded page NonCatalogRequestPG, we have customized the Controller of the Page. We shall first capture the values set in the HashMap from the intermediate page.

suppName = (String)oapagecontext.getParameter("SuppId");

suppSite= (String)oapagecontext.getParameter("SuppSiteId");

suppContact= (String)oapagecontext.getParameter("SuppContactId");

templatedId = (String)oapagecontext.getParameter("TemplateId");

fromRentCar = (String)oapagecontext.getParameter("fromRentCar");

6) Subsequently, the following lines of code will be used to default the LOV selectionString SuppDtlsQuery = getSuppDtlsQuery(suppName,suppSite,suppContact,oapagecontext,oawebbean);

-----

----

---

execStmt.append(" AND PoVendors.VENDOR_ID = "); execStmt.append(suppName) execStmt.append(" AND PoVendorSitesAll.VENDOR_SITE_ID=");execStmt.append(suppSite);

if(suppContact != null && suppContact != "null" && !"null".equals(suppContact) && !"".equals(suppContact))

{

execStmt.append(" AND PoVendorContacts.VENDOR_CONTACT_ID = ");

execStmt.append(suppContact);

};

Figure7

Page 20 of 20

_1428647767.xlsXXAT_IPROCUREMENT_LOOKUPS

LookupCodeMeaningDescriptionStartDateActiveEndDateActiveAttributeCategoryNatural AccountOracle CategoryOracle_Category_FlagVisible FlagTop_CategoryTop_Category_User_DescLevel2_CategoryLevel3_CategoryEnabled_FlagApplicationURLPolicy URLAttribute13Category_Detail_DescriptionAttribute15Attribute16OU_NAMEAttribute18

1200313PP Procurement PolicyAll Indirect.3rd Party Pass Through20-May-13120031All Indirect.3rd Party Pass ThroughYN3PPCommissions & Products/Services for resale3rd Party Products3rd Party Pass ThroughNhttp://wss1.it.agilent.com/sites/ExpensePolicy/Pages/Default.aspxThis is Category Information Details

7000013PP Procurement PolicyAll Indirect.Field 3rd Party Products Non PassThrough20-May-13700001All Indirect.Field 3rd Party Products Non PassThroughYN3PPCommissions & Products/Services for resale3rd Party ProductsField 3rd Party Products Non PassThroughNhttp://wss1.it.agilent.com/sites/ExpensePolicy/Pages/Default.aspxThis is Category Information Details

7000213PP Procurement PolicyAll Indirect.Field 3rd Party Services Non PassThrough20-May-13700021All Indirect.Field 3rd Party Services Non PassThroughN3PPCommissions & Products/Services for resaleCommissions/PaymentField 3rd Party Services Non PassThroughNhttp://wss1.it.agilent.com/sites/ExpensePolicy/Pages/Default.aspxThis is Category Information Details

8071313PP Procurement PolicyAll Indirect.Support Level Agreement Expenses20-May-13807131All Indirect.Support Level Agreement ExpensesYN3PPCommissions & Products/Services for resaleCommissions/PaymentSupport Level Agreement ExpensesNhttp://wss1.it.agilent.com/sites/ExpensePolicy/Pages/Default.aspxThis is Category Information Details

8071713PP Procurement PolicyAll Indirect.Third Party Commissions20-May-13807171All Indirect.Third Party CommissionsYN3PPCommissions & Products/Services for resaleCommissions/PaymentThird Party CommissionsNhttp://wss1.it.agilent.com/sites/ExpensePolicy/Pages/Default.aspxThis is Category Information Details

815000Donations Procurement PolicyAll Indirect.Donations20-May-13815000All Indirect.DonationsYNDonationsFees/Dues/DonationsDonationsDonationsNhttp://wss1.it.agilent.com/sites/ExpensePolicy/Pages/Default.aspxThis is Category Information Details

818051Donations Procurement PolicyAll Indirect.Donations - Non Philanthropic20-May-13818051All Indirect.Donations - Non PhilanthropicYNDonationsFees/Dues/DonationsDonationsDonations - Non PhilanthropicNhttp://wss1.it.agilent.com/sites/ExpensePolicy/Pages/Default.aspxThis is Category Information Details

815011Donations Procurement PolicyAll Indirect.Donations/Contributions - Charitable20-May-13815011All Indirect.Donations/Contributions - CharitableYNDonationsFees/Dues/DonationsDonationsDonations/Contributions - CharitableNhttp://wss1.it.agilent.com/sites/ExpensePolicy/Pages/Default.aspxThis is Category Information Details

815031Donations Procurement PolicyAll Indirect.Donations/Contributions - Scholarships20-May-13815031All Indirect.Donations/Contributions - ScholarshipsYNDonationsFees/Dues/DonationsDonationsDonations/Contributions - ScholarshipsNhttp://wss1.it.agilent.com/sites/ExpensePolicy/Pages/Default.aspxThis is Category Information Details

815001Donations Procurement PolicyAll Indirect.Donations/Contributions-Match Gifts Educ20-May-13815001All Indirect.Donations/Contributions-Match Gifts EducYNDonationsFees/Dues/DonationsDonationsDonations/Contributions-Match Gifts EducNhttp://wss1.it.agilent.com/sites/ExpensePolicy/Pages/Default.aspxThis is Category Information Details

815021Donations Procurement PolicyAll Indirect.In Kind Contrib_Donations20-May-13815021All Indirect.In Kind Contrib_DonationsYNDonationsFees/Dues/DonationsDonationsIn Kind Contrib_DonationsNhttp://wss1.it.agilent.com/sites/ExpensePolicy/Pages/Default.aspxThis is Category Information Details

818001Donations Procurement PolicyAll Indirect.Lobbying/Legislative Exp20-May-13818001All Indirect.Lobbying/Legislative ExpYNDonationsFees/Dues/DonationsDonationsLobbying/Legislative ExpNhttp://wss1.it.agilent.com/sites/ExpensePolicy/Pages/Default.aspxThis is Category Information Details

818021Donations Procurement PolicyAll Indirect.Political Campaign Expenditure20-May-13818021All Indirect.Political Campaign ExpenditureYNDonationsFees/Dues/DonationsDonationsPolitical Campaign ExpenditureNhttp://wss1.it.agilent.com/sites/ExpensePolicy/Pages/Default.aspxThis is Category Information Details

816081Fees/Dues/Subscriptions Procurement PolicyAll Indirect.Bank Charges20-May-13816081All Indirect.Bank ChargesYNFees/Dues/SubscriptionsFees/Dues/DonationsOther ExpensesBank ChargesNhttp://wss1.it.agilent.com/sites/ExpensePolicy/Pages/Default.aspxThis is Category Information Details

816071Fees/Dues/Subscriptions Procurement PolicyAll Indirect.Director's Fees20-May-13816071All Indirect.Director's FeesYNFees/Dues/SubscriptionsFees/Dues/DonationsOther ExpensesDirector's FeesNhttp://wss1.it.agilent.com/sites/ExpensePolicy/Pages/Default.aspxThis is Category Information Details

816001Fees/Dues/Subscriptions Procurement PolicyAll Indirect.Dues / Membership Fees20-May-13816001All Indirect.Dues / Membership FeesYNFees/Dues/SubscriptionsFees/Dues/DonationsProfessional AssocDues / Membership FeesNhttp://wss1.it.agilent.com/sites/ExpensePolicy/Pages/Default.aspxThis is Category Information Details

816031Fees/Dues/Subscriptions Procurement PolicyAll Indirect.Fees/Dues/Subscriptions20-May-13816031All Indirect.Fees/Dues/SubscriptionsYNFees/Dues/SubscriptionsFees/Dues/DonationsProfessional AssocFees/Dues/SubscriptionsNhttp://wss1.it.agilent.com/sites/ExpensePolicy/Pages/Default.aspxThis is Category Information Details

818011Fees/Dues/Subscriptions Procurement PolicyAll Indirect.Fines / Penalties / Other20-May-13818011All Indirect.Fines / Penalties / OtherYNFees/Dues/SubscriptionsFees/Dues/DonationsOther ExpensesFines / Penalties / OtherNhttp://wss1.it.agilent.com/sites/ExpensePolicy/Pages/Default.aspxThis is Category Information Details

816041Fees/Dues/Subscriptions Procurement PolicyAll Indirect.Licenses / Permit / Fees20-May-13816041All Indirect.Licenses / Permit / FeesYNFees/Dues/SubscriptionsFees/Dues/DonationsProfessional AssocLicenses / Permit / FeesNhttp://wss1.it.agilent.com/sites/ExpensePolicy/Pages/Default.aspxThis is Category Information Details

816011Fees/Dues/Subscriptions Procurement PolicyAll Indirect.Subscriptions / Publications20-May-13816011All Indirect.Subscriptions / PublicationsYNFees/Dues/SubscriptionsFees/Dues/DonationsProfessional AssocSubscriptions / PublicationsNhttp://wss1.it.agilent.com/sites/ExpensePolicy/Pages/Default.aspxThis is Category Information Details

720021Fees/Dues/Subscriptions Procurement PolicyAll Indirect.Trade Royalty Expense20-May-13720021All Indirect.Trade Royalty ExpenseYNFees/Dues/SubscriptionsFees/Dues/DonationsOther ExpensesTrade Royalty ExpenseNhttp://wss1.it.agilent.com/sites/ExpensePolicy/Pages/Default.aspxThis is Category Information Details

808031Finance Procurement PolicyAll Indirect.Accting/Consulting Services - BDO20-May-13808031All Indirect.Accting/Consulting Services - BDOYNFinanceFinance,Legal, Tax ServicesAccountingAccting/Consulting Services - BDONhttp://wss1.it.agilent.com/sites/ExpensePolicy/Pages/Default.aspxThis is Category Information Details

808011Finance Procurement PolicyAll Indirect.Accting/Consulting - Price Waterhouse Coopers20-May-13808011All Indirect.Accting/Consulting - Price Waterhouse CoopersYNFinanceFinance,Legal, Tax ServicesAccountingAccting/Consulting - Price Waterhouse CoopersNhttp://wss1.it.agilent.com/sites/ExpensePolicy/Pages/Default.aspxThis is Category Information Details

808021Finance Procurement PolicyAll Indirect.Accting/Consulting - Non PWC20-May-13808021All Indirect.Accting/Consulting - Non PWCYNFinanceFinance,Legal, Tax ServicesAccountingAccting/Consulting - Non PWCNhttp://wss1.it.agilent.com/sites/ExpensePolicy/Pages/Default.aspxThis is Category Information Details

808041Finance Procurement PolicyAll Indirect.Audit Services - BDO20-May-13808041All Indirect.Audit Services - BDOYNFinanceFinance,Legal, Tax ServicesAuditAudit Services - BDONhttp://wss1.it.agilent.com/sites/ExpensePolicy/Pages/Default.aspxThis is Category Information Details

808001Finance Procurement PolicyAll Indirect.Audit/Consulting - Audit Services PWC20-May-13808001All Indirect.Audit/Consulting - Audit Services PWCYNFinanceFinance,Legal, Tax ServicesAuditAudit/Consulting - Audit Services PWCNhttp://wss1.it.agilent.com/sites/ExpensePolicy/Pages/Default.aspxThis is Category Information Details

807061Legal Procurement PolicyAll Indirect.Credit or Collections Services20-May-13807061All Indirect.Credit or Collections ServicesYNFinanceFinance,Legal, Tax ServicesCredit ServicesCredit or Collections ServicesNhttp://wss1.it.agilent.com/sites/ExpensePolicy/Pages/Default.aspxThis is Category Information Details

805002Freight & Logistics Procurement PolicyAll Indirect.Customs or Duties Purchase into Agilent20-May-13805002All Indirect.Customs or Duties Purchase into AgilentYNFreight & LogisticsFreight and LogisticsCustoms and DutyCustoms or Duties Purchase into AgilentNhttp://wss1.it.agilent.com/sites/ExpensePolicy/Pages/Default.aspxThis is Category Information Details

750011Freight & Logistics Procurement PolicyAll Indirect.Freight - Customs or Outbound duties20-May-13750011All Indirect.Freight - Customs or Outbound dutiesYNFreight & LogisticsFreight and LogisticsCustoms and DutyFreight - Customs or Outbound dutiesNhttp://wss1.it.agilent.com/sites/ExpensePolicy/Pages/Default.aspxThis is Category Information Details

750021Freight & Logistics Procurement PolicyAll Indirect.Freight - Outbound - Customs Brokers20-May-13750021All Indirect.Freight - Outbound - Customs BrokersYNFreight & LogisticsFreight and LogisticsCustoms and DutyFreight - Outbound - Customs BrokersNhttp://wss1.it.agilent.com/sites/ExpensePolicy/Pages/Default.aspxThis is Category Information Details

750031Freight & Logistics Procurement PolicyAll Indirect.Freight - Outbound - Freight Forwarding20-May-13750031All Indirect.Freight - Outbound - Freight ForwardingYYFreight & LogisticsFreight and LogisticsFreightFreight - Outbound - Freight ForwardingYSmart Formhttp://wss1.it.agilent.com/sites/ExpensePolicy/Pages/Default.aspxPurchasing of 3rd party services for Freight; warehousing and Customs and duties costs related to the inbound materials and outbound transportation of

750001Freight & Logistics Procurement PolicyAll Indirect.Freight - Outbound - Truck-Air Freight20-May-13750001All Indirect.Freight - Outbound - Truck-Air FreightYYFreight & LogisticsFreight and LogisticsFreightFreight - Outbound - Truck-Air FreightYSmart Formhttp://wss1.it.agilent.com/sites/ExpensePolicy/Pages/Default.aspxPurchasing of 3rd party services for Freight; warehousing and Customs and duties costs related to the inbound materials and outbound transportation of

807114MRO Procurement PolicyAll Indirect.Freight & Logistics Outsourced20-May-13807114All Indirect.Freight & Logistics OutsourcedYNFreight & LogisticsFreight and LogisticsLogistics, WarehousingFreight & Logistics OutsourcedNhttp://wss1.it.agilent.com/sites/ExpensePolicy/Pages/Default.aspxThis is Category Information Details

805001Freight & Logistics Procurement PolicyAll Indirect.Freight Purchased into Agilent20-May-13805001All Indirect.Freight Purchased into AgilentYNFreight & LogisticsFreight and LogisticsFreightFreight Purchased into AgilentNhttp://wss1.it.agilent.com/sites/ExpensePolicy/Pages/Default.aspxThis is Category Information Details

750041Freight & Logistics Procurement PolicyAll Indirect.Logistics and Warehousing20-May-13750041All Indirect.Logistics and WarehousingYYFreight & LogisticsFreight and LogisticsLogistics, WarehousingLogistics and WarehousingYSmart Formhttp://wss1.it.agilent.com/sites/ExpensePolicy/Pages/Default.aspxPurchasing of 3rd party services for Freight; warehousing and Customs and duties costs related to the inbound materials and outbound transportation of

809021HR Procurement PolicyAll Indirect.Education - Contin Course Fee Reimburse20-May-13809021All Indirect.Education - Contin Course Fee ReimburseYYHREmployee Services (HR)EducationEducation - Contin Course Fee ReimburseYSmart Formhttp://wss1.it.agilent.com/sites/ExpensePolicy/Pages/Default.aspxPurchasing of management and employee development resources related to Training courses; Seminars; Executive Development and Course Reimbursement etc.

809001HR Procurement PolicyAll Indirect.Education - Professional Programs20-May-13809001All Indirect.Education - Professional ProgramsYYHREmployee Services (HR)EducationEducation - Professional ProgramsYSmart Formhttp://wss1.it.agilent.com/sites/ExpensePolicy/Pages/Default.aspxPurchasing of management and employee development resources related to Training courses; Seminars; Executive Development and Course Reimbursement etc.

809011HR Procurement PolicyAll Indirect.Education-Empl Train/Dev/Trade Conf/Sem20-May-13809011All Indirect.Education-Empl Train/Dev/Trade Conf/SemYYHREmployee Services (HR)EducationEducation-Empl Train/Dev/Trade Conf/SemYSmart Formhttp://wss1.it.agilent.com/sites/ExpensePolicy/Pages/Default.aspxPurchasing of management and employee development resources related to Training courses; Seminars; Executive Development and Course Reimbursement etc.

809031HR Procurement PolicyAll Indirect.Education-Executive Training or Coaching20-May-13809031All Indirect.Education-Executive Training or CoachingYYHREmployee Services (HR)EducationEducation-Executive Training or CoachingYSmart Formhttp://wss1.it.agilent.com/sites/ExpensePolicy/Pages/Default.aspxPurchasing of management and employee development resources related to Training courses; Seminars; Executive Development and Course Reimbursement etc.

800111HR Procurement PolicyAll Indirect.Employee Service Awards20-May-13800111All Indirect.Employee Service AwardsYNHREmployee Services (HR)Benefits & AwardsEmployee Service AwardsNhttp://wss1.it.agilent.com/sites/ExpensePolicy/Pages/Default.aspxThis is Category Information Details

811001HR Procurement PolicyAll Indirect.Employee Transfer / Relocation Expense20-May-13811001All Indirect.Employee Transfer / Relocation ExpenseYNHREmployee Services (HR)RelocationEmployee Transfer / Relocation ExpenseNhttp://wss1.it.agilent.com/sites/ExpensePolicy/Pages/Default.aspxThis is Category Information Details

801071HR Procurement PolicyAll Indirect.Employer Provided Benefits Expense20-May-13801071All Indirect.Employer Provided Benefits ExpenseYNHREmployee Services (HR)Benefits & AwardsEmployer Provided Benefits ExpenseNhttp://wss1.it.agilent.com/sites/ExpensePolicy/Pages/Default.aspxThis is Category Information Details

801001HR Procurement PolicyAll Indirect.Employer Provided Medical Insurance20-May-13801001All Indirect.Employer Provided Medical InsuranceYNHREmployee Services (HR)Benefits & AwardsEmployer Provided Medical InsuranceNhttp://wss1.it.agilent.com/sites/ExpensePolicy/Pages/Default.aspxThis is Category Information Details

814021HR Procurement PolicyAll Indirect.External Temp Employment- Salaries/Wages20-May-13814021All Indirect.External Temp Employment- Salaries/WagesYNHRTemp laborExternal Temporary WorkersExternal Temp Employment- Salaries/WagesNhttp://wss1.it.agilent.com/sites/ExpensePolicy/Pages/Default.aspxThis is Category Information Details

807113HR Procurement PolicyAll Indirect.HR Outsourced Services20-May-13807113All Indirect.HR Outsourced ServicesYNHREmployee Services (HR)Outsourced Svcs.HR Outsourced ServicesNhttp://wss1.it.agilent.com/sites/ExpensePolicy/Pages/Default.aspxThis is Category Information Details

816021HR Procurement PolicyAll Indirect.Medical Exam Fees20-May-13816021All Indirect.Medical Exam FeesYNHREmployee Services (HR)Benefits & AwardsMedical Exam FeesNhttp://wss1.it.agilent.com/sites/ExpensePolicy/Pages/Default.aspxThis is Category Information Details

814011HR Procurement PolicyAll Indirect.Recruiting Expenses exclude Agency Fees20-May-13814011All Indirect.Recruiting Expenses exclude Agency FeesYNHREmployee Services (HR)RecruitingRecruiting Expenses exclude Agency FeesNhttp://wss1.it.agilent.com/sites/ExpensePolicy/Pages/Default.aspxThis is Category Information Details

814001HR Procurement PolicyAll Indirect.Recruiting-Employ Agency/RecruiterFees20-May-13814001All Indirect.Recruiting-Employ Agency/RecruiterFeesYNHREmployee Services (HR)RecruitingRecruiting-Employ Agency/RecruiterFeesNhttp://wss1.it.agilent.com/sites/ExpensePolicy/Pages/Default.aspxThis is Category Information Details

801031HR Procurement PolicyAll Indirect.Retirement or Pension Expense20-May-13801031All Indirect.Retirement or Pension ExpenseYNHREmployee Services (HR)Benefits & AwardsRetirement or Pension ExpenseNhttp://wss1.it.agilent.com/sites/ExpensePolicy/Pages/Default.aspxThis is Category Information Details

812061IT Procurement PolicyAll Indirect.Telecomm transmission expenses such as telephone, cell phone charges, internet, lease lines20-May-13812061All Indirect.Telecomm transmission expenses such as telephone, cell phone charges, internet, lease linesYNITIT Products and ServicesTelecomTelecomm transmission expenses such as telephone, cell phone charges, internet, lease linesNhttp://wss1.it.agilent.com/sites/ExpensePolicy/Pages/Default.aspxThis is Category Information Details

812061IT Procurement PolicyOPS Catalog only.Communications-Cell Phone20-May-13812061OPS Catalog only.Communications-Cell PhoneYYITIT Products and ServicesTelecomCommunications-Cell PhoneYCatalogVinimayahttp://wss1.it.agilent.com/sites/ExpensePolicy/Pages/Default.aspxPurchasing of IT equipment and services related to Network Hardware and PC Hardware; peripherals and accessories; Software and IT Services etc

813001IT Procurement PolicyOPS Catalog only.Computer Software20-May-13813001OPS Catalog only.Computer SoftwareYYITIT Products and ServicesSoftwareComputer SoftwareYCatalogVinimayahttp://wss1.it.agilent.com/sites/ExpensePolicy/Pages/Default.aspxPurchasing of IT equipment and services related to Network Hardware and PC Hardware; peripherals and accessories; Software and IT Services etc

813001IT Procurement PolicyAll Indirect.Software - Internal Use20-May-13813001All Indirect.Software - Internal UseYYITIT Products and ServicesSoftwareSoftware - Internal UseYSmart Formhttp://wss1.it.agilent.com/sites/ExpensePolicy/Pages/Default.aspxPurchasing of IT equipment and services related to Network Hardware and PC Hardware; peripherals and accessories; Software and IT Services etc

813031IT Procurement PolicyOPS Catalog only.Computer Hardware20-May-13813031OPS Catalog only.Computer HardwareYYITIT Products and ServicesHardware products and maintenanceComputer HardwareYCatalogVinimayahttp://wss1.it.agilent.com/sites/ExpensePolicy/Pages/Default.aspxPurchasing of IT equipment and services related to Network Hardware and PC Hardware; peripherals and accessories; Software and IT Services etc

807031IT Procurement PolicyAll Indirect.IT Consulting and Professional Services/Projects20-May-13807031All Indirect.IT Consulting and Professional Services/ProjectsYYITIT Products and ServicesConsultingIT Consulting and Professional Services/ProjectsYSmart Formhttp://wss1.it.agilent.com/sites/ExpensePolicy/Pages/Default.aspxPurchasing of IT equipment and services related to Network Hardware and PC Hardware; peripherals and accessories; Software and IT Services etc

813021IT Procurement PolicyAll Indirect.Computer Hardware,Printers&Accessories20-May-13813021All Indirect.Computer Hardware,Printers&AccessoriesYYITIT Products and ServicesHardware products and maintenanceExpd Computer HardwareYSmart Formhttp://wss1.it.agilent.com/sites/ExpensePolicy/Pages/Default.aspxPurchasing of IT equipment and services related to Network Hardware and PC Hardware; peripherals and accessories; Software and IT Services etc

813031IT Procurement PolicyAll Indirect.Hardware - Maintenance and support20-May-13813031All Indirect.Hardware - Maintenance and supportYNITIT Products and ServicesHardware products and maintenanceHardware - Maintenance and supportNhttp://wss1.it.agilent.com/sites/ExpensePolicy/Pages/Default.aspxThis is Category Information Details

813031IT Procurement PolicyAll Indirect.Hardware - Network (routers, firewall, telepresence )20-May-13813031All Indirect.Hardware - Network (routers, firewall, telepresence )YNITIT Products and ServicesHardware products and maintenanceHardware - Network (routers, firewall, telepresence )Nhttp://wss1.it.agilent.com/sites/ExpensePolicy/Pages/Default.aspxThis is Category Information Details

813031IT Procurement PolicyOPS Catalog only.Hardware - Network (routers, firewall, telepresence )20-May-13813031OPS Catalog only.Hardware - Network (routers, firewall, telepresence )YYITIT Products and ServicesHardware products and maintenanceHardware - Network (routers, firewall, telepresence )YCatalogVinimayahttp://wss1.it.agilent.com/sites/ExpensePolicy/Pages/Default.aspxPurchasing of IT equipment and services related to Network Hardware and PC Hardware; peripherals and accessories; Software and IT Services etc

813031IT Procurement PolicyAll Indirect.Hardware - Network Printers20-May-13813031All Indirect.Hardware - Network PrintersYNITIT Products and ServicesHardware products and maintenanceHardware - Network PrintersNhttp://wss1.it.agilent.com/sites/ExpensePolicy/Pages/Default.aspxThis is Category Information Details

813031IT Procurement PolicyOPS Catalog only.Hardware - Personal Computers (Laptop, Desktop leased only)20-May-13813031OPS Catalog only.Hardware - Personal Computers (Laptop, Desktop leased only)YYITIT Products and ServicesHardware products and maintenanceHardware - Personal Computers (Laptop, Desktop leased only)YCatalogHPhttp://wss1.it.agilent.com/sites/ExpensePolicy/Pages/Default.aspxPurchasing of IT equipment and services related to Network Hardware and PC Hardware; peripherals and accessories; Software and IT Services etc

813031IT Procurement PolicyOPS Catalog only.Hardware - Personal Computers (Laptop, Desktop leased only)20-May-13813031OPS Catalog only.Hardware - Personal Computers (Laptop, Desktop leased only)YYITIT Products and ServicesHardware products and maintenanceHardware - Personal Computers (Laptop, Desktop leased only)YCatalogHPhttp://wss1.it.agilent.com/sites/ExpensePolicy/Pages/Default.aspxPurchasing of IT equipment and services related to Network Hardware and PC Hardware; peripherals and accessories; Software and IT Services etc

813031IT Procurement PolicyOPS Catalog only.Hardware - Personal Printers20-May-13813031OPS Catalog only.Hardware - Personal PrintersYYITIT Products and ServicesHardware products and maintenanceHardware - Personal PrintersYCatalogVinimayahttp://wss1.it.agilent.com/sites/ExpensePolicy/Pages/Default.aspxPurchasing of IT equipment and services related to Network Hardware and PC Hardware; peripherals and accessories; Software and IT Services etc

813031IT Procurement PolicyAll Indirect.Hardware - Personal Printers20-May-13813031All Indirect.Hardware - Personal PrintersYNITIT Products and ServicesNhttp://wss1.it.agilent.com/sites/ExpensePolicy/Pages/Default.aspxThis is Category Information Details

813031IT Procurement PolicyAll Indirect.Hardware - Servers, Storage20-May-13813031All Indirect.Hardware - Servers, StorageYNITIT Products and ServicesHardware products and maintenanceHardware - Servers, StorageNhttp://wss1.it.agilent.com/sites/ExpensePolicy/Pages/Default.aspxThis is Category Information Details

813031IT Procurement PolicyAll Indirect.Hardware - Tablets or expensed hardware20-May-13813031All Indirect.Hardware - Tablets or expensed hardwareYNITIT Products and ServicesNhttp://wss1.it.agilent.com/sites/ExpensePolicy/Pages/Default.aspxThis is Category Information Details

813031IT Procurement PolicyAll Indirect.Hardware installation and implementation services20-May-13813031All Indirect.Hardware installation and implementation servicesYNITIT Products and ServicesHardware products and maintenanceHardware installation and implementation servicesNhttp://wss1.it.agilent.com/sites/ExpensePolicy/Pages/Default.aspxThis is Category Information Details

807111IT Procurement PolicyAll Indirect.IT Outsourced Services - Projects20-May-13807111All Indirect.IT Outsourced Services - ProjectsYNITIT Products and ServicesOutsourced Svcs.IT Outsourced Services - ProjectsNhttp://wss1.it.agilent.com/sites/ExpensePolicy/Pages/Default.aspxThis is Category Information Details

807111IT Procurement PolicyAll Indirect.IT Outsourced Services - Run20-May-13807111All Indirect.IT Outsourced Services - RunYNITIT Products and ServicesOutsourced Svcs.IT Outsourced Services - RunNhttp://wss1.it.agilent.com/sites/ExpensePolicy/Pages/Default.aspxThis is Category Information Details

813031IT Procurement PolicyAll Indirect.Leased lines and associated charges20-May-13813031All Indirect.Leased lines and associated chargesYNITIT Products and ServicesTelecomLeased lines and associated chargesNhttp://wss1.it.agilent.com/sites/ExpensePolicy/Pages/Default.aspxThis is Category Information Details

813011IT Procurement PolicyAll Indirect.Rental or Lease of Servers, Desktops, Laptops, accessories, and other expensed equipment20-May-13813011All Indirect.Rental or Lease of Servers, Desktops, Laptops, accessories, and other expensed equipmentYNITIT Products and ServicesComputer LeasesRental or Lease of Servers, Desktops, Laptops, accessories, and other expensed equipmentNhttp://wss1.it.agilent.com/sites/ExpensePolicy/Pages/Default.aspxThis is Category Information Details

813001IT Procurement PolicyAll Indirect.Software - Development Use20-May-13813001All Indirect.Software - Development UseYYITIT Products and ServicesSoftwareSoftware - Development UseYSmart Formhttp://wss1.it.agilent.com/sites/ExpensePolicy/Pages/Default.aspxPurchasing of IT equipment and services related to Network Hardware and PC Hardware; peripherals and accessories; Software and IT Services etc

813001IT Procurement PolicyAll Indirect.Software Externally Hosted - SaaS20-May-13813001All Indirect.Software Externally Hosted - SaaSYNITIT Products and ServicesSoftwareSoftware Externally Hosted - SaaSNhttp://wss1.it.agilent.com/sites/ExpensePolicy/Pages/Default.aspxThis is Category Information Details

813001IT Procurement PolicyAll Indirect.Information as a service - Cloud20-May-13813001All Indirect.Information as a service - CloudYNITIT Products and ServicesSoftwareInformation as a service - CloudNhttp://wss1.it.agilent.com/sites/ExpensePolicy/Pages/Default.aspxThis is Category Information Details

802002IT Procurement PolicyAll Indirect.Software License Costs20-May-13802002All Indirect.Software License CostsYNITIT Products and ServicesSoftwareSoftware License CostsNhttp://wss1.it.agilent.com/sites/ExpensePolicy/Pages/Default.aspxThis is Category Information Details

813001IT Procurement PolicyAll Indirect.Software Maintenance and Support20-May-13813001All Indirect.Software Maintenance and SupportYNITIT Products and ServicesSoftwareSoftware Maintenance and SupportNhttp://wss1.it.agilent.com/sites/ExpensePolicy/Pages/Default.aspxThis is Category Information Details

813101IT Procurement PolicyAll Indirect.SW Dev_Contra Expense_Capd20-May-13813101All Indirect.SW Dev_Contra Expense_CapdYNITIT Products and ServicesSoftwareSW Dev_Contra Expense_CapdNhttp://wss1.it.agilent.com/sites/ExpensePolicy/Pages/Default.aspxThis is Category Information Details

813001IT Procurement PolicyAll Indirect.Software Maintenance and Support20-May-13813001All Indirect.Software Maintenance and SupportYNITIT Products and ServicesSoftwareSoftware Maintenance and SupportNhttp://wss1.it.agilent.com/sites/ExpensePolicy/Pages/Default.aspxThis is Category Information Details

812041IT Procurement PolicyAll Indirect.Telecom Transmission20-May-13812041All Indirect.Telecom TransmissionYNITIT Products and ServicesTelecomTelecom TransmissionNhttp://wss1.it.agilent.com/sites/ExpensePolicy/Pages/Default.aspxThis is Category Information Details

816061Legal Procurement PolicyAll Indirect.Legal Entity Incorp/ Registration Fees20-May-13816061All Indirect.Legal Entity Incorp/ Registration FeesYYLegalFinance,Legal, Tax ServicesLegalLegal Entity Incorp/ Registration FeesYSmart Formhttp://wss1.it.agilent.com/sites/ExpensePolicy/Pages/Default.aspxThis is Category Information Details

807051Legal Procurement PolicyAll Indirect.Legal Outside Counsel Fees20-May-13807051All Indirect.Legal Outside Counsel FeesYYLegalFinance,Legal, Tax ServicesLegalLegal Outside Counsel FeesYSmart Formhttp://wss1.it.agilent.com/sites/ExpensePolicy/Pages/Default.aspxThis is Category Information Details

816101Legal Procurement PolicyAll Indirect.Settlement_Judgments_Lawsuits20-May-13816101All Indirect.Settlement_Judgments_LawsuitsYNLegalFinance,Legal, Tax ServicesLegalSettlement_Judgments_LawsuitsNhttp://wss1.it.agilent.com/sites/ExpensePolicy/Pages/Default.aspxThis is Category Information Details

807011Legal Procurement PolicyAll Indirect.Property-Business Risk Insurance20-May-13807011All Indirect.Property-Business Risk InsuranceYYLegalFinance,Legal, Tax ServicesLegalProperty-Business Risk InsuranceYSmart Formhttp://wss1.it.agilent.com/sites/ExpensePolicy/Pages/Default.aspxThis is Category Information Details

816091Marketing Procurement PolicyAll Indirect.Absd Costs Customer Relations20-May-13816091All Indirect.Absd Costs Customer RelationsYNMarketingMarketing Services & EventsCustomer RelationsAbsd Costs Customer RelationsNhttp://wss1.it.agilent.com/sites/ExpensePolicy/Pages/Default.aspxThis is Category Information Details

818031Marketing Procurement PolicyAll Indirect.Business Gifts20-May-13818031All Indirect.Business GiftsYNMarketingMarketing Services & EventsPromotionsBusiness GiftsNhttp://wss1.it.agilent.com/sites/ExpensePolicy/Pages/Default.aspxThis is Category Information Details

807181Marketing Procurement PolicyAll Indirect.Exhibit/Events/Trade Shows/Ext Meetings20-May-13807181All Indirect.Exhibit/Events/Trade Shows/Ext MeetingsYYMarketingMarketing Services & EventsEventsExhibit/Events/Trade Shows/Ext MeetingsYSmart Formhttp://wss1.it.agilent.com/sites/ExpensePolicy/Pages/Default.aspxPurchasing of market development and sales materials and services related to printing; exhibitions; trade shows; promotions; press relations etc.

816051Marketing Procurement PolicyAll Indirect.Global Branding Fees20-May-13816051All Indirect.Global Branding FeesYNMarketingMarketing Services & EventsCustomer RelationsGlobal Branding FeesNhttp://wss1.it.agilent.com/sites/ExpensePolicy/Pages/Default.aspxThis is Category Information Details

807181Marketing Procurement PolicyAll Indirect.Exhibit/Events/Trade Shows/Ext Meetings20-May-13807181All Indirect.Exhibit/Events/Trade Shows/Ext MeetingsYYMarketingMarketing Services & EventsEventsExhibit/Events/Trade Shows/Ext MeetingsYSmart Formhttp://wss1.it.agilent.com/sites/ExpensePolicy/Pages/Default.aspxPurchasing of market development and sales materials and services related to printing; exhibitions; trade shows; promotions; press relations etc.

807071Marketing Procurement PolicyAll Indirect.Marketing - Advertising & Media20-May-13807071All Indirect.Marketing - Advertising & MediaYYMarketingMarketing Services & EventsAdvertising &PRMarketing - Advertising & MediaYSmart Formhttp://wss1.it.agilent.com/sites/ExpensePolicy/Pages/Default.aspxPurchasing of market development and sales materials and services related to printing; exhibitions; trade shows; promotions; press relations etc.

807141Marketing Procurement PolicyAll Indirect.Mkting-Electronic/Telemkt/Mkt Research20-May-13807141All Indirect.Mkting-Electronic/Telemkt/Mkt ResearchYYMarketingMarketing Services & EventsE-MarketingMkting-Electronic/Telemkt/Mkt ResearchYSmart Formhttp://wss1.it.agilent.com/sites/ExpensePolicy/Pages/Default.aspxPurchasing of market development and sales materials and services related to printing; exhibitions; trade shows; promotions; press relations etc.

807161Marketing Procurement PolicyAll Indirect.Press Relations20-May-13807161All Indirect.Press RelationsYNMarketingMarketing Services & EventsCustomer RelationsPress RelationsNhttp://wss1.it.agilent.com/sites/ExpensePolicy/Pages/Default.aspxThis is Category Information Details

812031Marketing Procurement PolicyAll Indirect.Printing/Copying20-May-13812031All Indirect.Printing/CopyingYYMarketingMarketing Services & EventsPrintPrinting/CopyingYSmart Formhttp://wss1.it.agilent.com/sites/ExpensePolicy/Pages/Default.aspxPurchasing of market development and sales materials and services related to printing; exhibitions; trade shows; promotions; press relations etc.

812031Marketing Procurement PolicyOPS Catalog only.Printing/Copying20-May-13812031OPS Catalog only.Printing/CopyingYYMarketingMarketing Services & EventsPrintPrinting/CopyingYCatalogVinimayahttp://wss1.it.agilent.com/sites/ExpensePolicy/Pages/Default.aspxPurchasing of market development and sales materials and services related to printing; exhibitions; trade shows; promotions; press relations etc.

807151Marketing Procurement PolicyOPS Catalog only.Promotional Items20-May-13807151OPS Catalog only.Promotional ItemsYYMarketingMarketing Services & EventsPromotionsPromotional ItemsYURLhttp://theshopatagilent.com/http://wss1.it.agilent.com/sites/ExpensePolicy/Pages/Default.aspxPurchasing of market development and sales materials and services related to printing; exhibitions; trade shows; promotions; press relations etc.

807151Marketing Procurement PolicyALL Indirect.Promotional Items20-May-13807151ALL Indirect.Promotional ItemsYYMarketingMarketing Services & EventsPromotionsPromotional ItemsYSmart Formhttp://wss1.it.agilent.com/sites/ExpensePolicy/Pages/Default.aspxPurchasing of market development and sales materials and services related to printing; exhibitions; trade shows; promotions; press relations etc.

804001MRO Procurement PolicyAll Indirect.Chemicals & Gases20-May-13804001All Indirect.Chemicals & GasesYYMROMfg. Repair & Operating SuppliesChemicals and GasesChemicals & GasesYSmart Formhttp://wss1.it.agilent.com/sites/ExpensePolicy/Pages/Default.aspxPurchasing of materials to support the production and development environments related to Consumables; Chemicals; Tools; Gases and Safety Equipment et

804001MRO Procurement PolicyOPS Catalog only.Chemicals & Gases20-May-13804001OPS Catalog only.Chemicals & GasesYYMROMfg. Repair & Operating SuppliesChemicals and GasesChemicals & GasesYCatalogVinimayahttp://wss1.it.agilent.com/sites/ExpensePolicy/Pages/Default.aspxPurchasing of materials to support the production and development environments related to Consumables; Chemicals; Tools; Gases and Safety Equipment et

713071MRO Procurement PolicyAll Indirect.Custom Consumables20-May-13713071All Indirect.Custom ConsumablesYYMROMfg. Repair & Operating SuppliesConsumablesCustom ConsumablesYSmart Formhttp://wss1.it.agilent.com/sites/ExpensePolicy/Pages/Default.aspxPurchasing of materials to support the production and development environments related to Consumables; Chemicals; Tools; Gases and Safety Equipment et

804041MRO Procurement PolicyOPS Catalog only.Std. Consumables20-May-13804041OPS Catalog only.Std. ConsumablesYYMROMfg. Repair & Operating SuppliesConsumablesStd. ConsumablesYCatalogVinimayahttp://wss1.it.agilent.com/sites/ExpensePolicy/Pages/Default.aspxPurchasing of materials to support the production and development environments related to Consumables; Chemicals; Tools; Gases and Safety Equipment et

713071MRO Procurement PolicyAll Indirect.Miscellaneous Product Material20-May-13713071All Indirect.Miscellaneous Product MaterialYYMROMfg. Repair & Operating SuppliesConsumablesMiscellaneous Product MaterialYSmart Formhttp://wss1.it.agilent.com/sites/ExpensePolicy/Pages/Default.aspxPurchasing of materials to support the production and development environments related to Consumables; Chemicals; Tools; Gases and Safety Equipment et

816141MRO Procurement PolicyAll Indirect.Misc Operating Expense_Legacy20-May-13816141All Indirect.Misc Operating Expense_LegacyYNMROMfg. Repair & Operating SuppliesDirectMisc Operating Expense_LegacyNhttp://wss1.it.agilent.com/sites/ExpensePolicy/Pages/Default.aspxThis is Category Information Details

713061MRO Procurement PolicyAll Indirect.Packaging Material20-May-13713061All Indirect.Packaging MaterialYYMROMfg. Repair & Operating SuppliesDirectPackaging MaterialYSmart Formhttp://wss1.it.agilent.com/sites/ExpensePolicy/Pages/Default.aspxPurchasing of materials to support the production and development environments related to Consumables; Chemicals; Tools; Gases and Safety Equipment et

816131MRO Procurement PolicyAll Indirect.Uninsured Losses20-May-13816131All Indirect.Uninsured LossesYNMROMfg. Repair & Operating SuppliesDirectUninsured LossesNhttp://wss1.it.agilent.com/sites/ExpensePolicy/Pages/Default.aspxThis is Category Information Details

713051MRO Procurement PolicyAll Indirect.Vendor Rework-Jobs20-May-13713051All Indirect.Vendor Rework-JobsYYMROMfg. Repair & Operating SuppliesDirectVendor Rework-JobsYSmart Formhttp://wss1.it.agilent.com/sites/ExpensePolicy/Pages/Default.aspxPurchasing of materials to support the production and development environments related to Consumables; Chemicals; Tools; Gases and Safety Equipment et

802001MRO Procurement PolicyAll Indirect.Equip & Demo Repair and Maintenance20-May-13802001All Indirect.Equip & Demo Repair and MaintenanceYYMROMfg. Repair & Operating SuppliesEquip. and RepairEquip & Demo Repair and MaintenanceYSmart Formhttp://wss1.it.agilent.com/sites/ExpensePolicy/Pages/Default.aspxPurchasing of materials to support the production and development environments related to Consumables; Chemicals; Tools; Gases and Safety Equipment et

803001MRO Procurement PolicyAll Indirect.Machinery and Equipment20-May-13803001All Indirect.Machinery and EquipmentYYMROMfg. Repair & Operating SuppliesEquip. and RepairMachinery and EquipmentYSmart Formhttp://wss1.it.agilent.com/sites/ExpensePolicy/Pages/Default.aspxPurchasing of materials to support the production and development environments related to Consumables; Chemicals; Tools; Gases and Safety Equipment et

807001MRO Procurement PolicyOPS Catalog only.Equip Hire-Lease20-May-13807001OPS Catalog only.Equip Hire-LeaseYYMROMfg. Repair & Operating SuppliesEquip. and RepairEquip Hire-LeaseYCatalogVinimayahttp://wss1.it.agilent.com/sites/ExpensePolicy/Pages/Default.aspxPurchasing of materials to support the production and development environments related to Consumables; Chemicals; Tools; Gases and Safety Equipment et

802001MRO Procurement PolicyOPS Catalog only.Equipment Repair-Parts20-May-13802001OPS Catalog only.Equipment Repair-PartsYYMROMfg. Repair & Operating SuppliesEquip. and RepairEquipment Repair-PartsYCatalogVinimayahttp://wss1.it.agilent.com/sites/ExpensePolicy/Pages/Default.aspxPurchasing of materials to support the production and development environments related to Consumables; Chemicals; Tools; Gases and Safety Equipment et

172001MRO Procurement PolicyAll Indirect.Fixed Asset Clearing20-May-13172001All Indirect.Fixed Asset ClearingYNMROMfg. Repair & Operating SuppliesEquip. and RepairFixed Asset ClearingNhttp://wss1.it.agilent.com/sites/ExpensePolicy/Pages/Default.aspxThis is Category Information Details

803001MRO Procurement PolicyAll Indirect.Equip Hire-Lease20-May-13803001All Indirect.Equip Hire-LeaseYYMROMfg. Repair & Operating SuppliesEquip. and RepairEquip Hire-LeaseYSmart Formhttp://wss1.it.agilent.com/sites/ExpensePolicy/Pages/Default.aspxPurchasing of materials to support the production and development environments related to Consumables; Chemicals; Tools; Gases and Safety Equipment et

804041MRO Procurement PolicyAll Indirect.Mfg.Supplies20-May-13804041All Indirect.Mfg.SuppliesYYMROMfg. Repair & Operating SuppliesEquip. and RepairEquip Hire-LeaseYSmart Formhttp://wss1.it.agilent.com/sites/ExpensePolicy/Pages/Default.aspxPurchasing of materials to support the production and development environments related to Consumables; Chemicals; Tools; Gases and Safety Equipment et

807001MRO Procurement PolicyAll Indirect.External Services20-May-13807001All Indirect.External ServicesYNMROMfg. Repair & Operating SuppliesNPI, R&D (not mgd. by Global Sourcing)External ServicesNhttp://wss1.it.agilent.com/sites/ExpensePolicy/Pages/Default.aspxThis is Category Information Details

812021MRO Procurement PolicyOPS Catalog only.Office Supplies20-May-13812021OPS Catalog only.Office SuppliesYYMROOffice Supplies excl. equipBusiness CardsOffice SuppliesYCatalogVinimayahttp://wss1.it.agilent.com/sites/ExpensePolicy/Pages/Default.aspxPurchasing of materials to support the Agilent and Work at Home office environment related to Stationary; Pens; Binders; Headsets; Printer Toner and I

812021MRO Procurement PolicyOPS Catalog only.Office Supplies20-May-13812021OPS Catalog only.Office SuppliesYYMROOffice Supplies excl. equipOffice SuppliesOffice SuppliesYCatalogVinimayahttp://wss1.it.agilent.com/sites/ExpensePolicy/Pages/Default.aspxPurchasing of materials to support the Agilent and Work at Home office environment related to Stationary; Pens; Binders; Headsets; Printer Toner and I

812021MRO Procurement PolicyAll Indirect.Office Supplies20-May-13812021All Indirect.Office SuppliesYYMROOffice Supplies excl. equipOffice SuppliesOffice SuppliesYSmart Formhttp://wss1.it.agilent.com/sites/ExpensePolicy/Pages/Default.aspxPurchasing of materials to support the Agilent and Work at Home office environment related to Stationary; Pens; Binders; Headsets; Printer Toner and I

713071MRO Procurement PolicyAll Indirect.Materials - Miscellaneous20-May-13713071All Indirect.Materials - MiscellaneousYNMROMfg. Repair & Operating SuppliesNPI, R&D (not mgd. by Global Sourcing)Materials - MiscellaneousNhttp://wss1.it.agilent.com/sites/ExpensePolicy/Pages/Default.aspxThis is Category Information Details

804011MRO Procurement PolicyAll Indirect.Process Materials/Supplies/Consumables20-May-13804011All Indirect.Process Materials/Supplies/ConsumablesYNMROMfg. Repair & Operating SuppliesNPI, R&D (not mgd. by Global Sourcing)Process Materials/Supplies/ConsumablesNhttp://wss1.it.agilent.com/sites/ExpensePolicy/Pages/Default.aspxThis is Category Information Details

807114MRO Procurement PolicyAll Indirect.Business Outsourced20-May-13807114All Indirect.Business OutsourcedYYMROMfg. Repair & Operating SuppliesOutsourced Svcs.Business OutsourcedYSmart Formhttp://wss1.it.agilent.com/sites/ExpensePolicy/Pages/Default.aspxPurchasing of materials to support the production and development environments related to Consumables; Chemicals; Tools; Gases and Safety Equipment et

812011MRO Procurement PolicyAll Indirect.Postage / Delivery Services20-May-13812011All Indirect.Postage / Delivery ServicesYYMROOffice Supplies excl. equipPostage MaterialsPostage / Delivery ServicesYSmart Formhttp://wss1.it.agilent.com/sites/ExpensePolicy/Pages/Default.aspxPurchasing of materials to support the Agilent and Work at Home office environment related to Stationary; Pens; Binders; Headsets; Printer Toner and I

807101MRO Procurement PolicyAll Indirect.Safety and Regulatory Testing20-May-13807101All Indirect.Safety and Regulatory TestingYYMROMfg. Repair & Operating SuppliesSafety SuppliesSafety and Regulatory TestingYSmart Formhttp://wss1.it.agilent.com/sites/ExpensePolicy/Pages/Default.aspxPurchasing of materials to support the production and development environments related to Consumables; Chemicals; Tools; Gases and Safety Equipment et

812011MRO Procurement PolicyAll Indirect.Postage / Delivery Services20-May-13812011All Indirect.Postage / Delivery ServicesYYMROOffice Supplies excl. equipPostage MaterialsPostage / Delivery ServicesYSmart Formhttp://wss1.it.agilent.com/sites/ExpensePolicy/Pages/Default.aspxPurchasing of materials to support the Agilent and Work at Home office environment related to Stationary; Pens; Binders; Headsets; Printer Toner and I

804021MRO Procurement PolicyOPS Catalog only.Safety Equipment20-May-13804021OPS Catalog only.Safety EquipmentYYMROMfg. Repair & Operating SuppliesSafety SuppliesSafety EquipmentYCatalogVinimayahttp://wss1.it.agilent.com/sites/ExpensePolicy/Pages/Default.aspxPurchasing of materials to support the production and development environments related to Consumables; Chemicals; Tools; Gases and Safety Equipment et

807101MRO Procurement PolicyAll Indirect.Safety and Regulatory Testing20-May-13807101All Indirect.Safety and Regulatory TestingYYMROMfg. Repair & Operating SuppliesSafety SuppliesSafety and Regulatory TestingYSmart Formhttp://wss1.it.agilent.com/sites/ExpensePolicy/Pages/Default.aspxPurchasing of materials to support the production and development environments related to Consumables; Chemicals; Tools; Gases and Safety Equipment et

804021MRO Procurement PolicyAll Indirect.Safety Equipment/Lab Supplies20-May-13804021All Indirect.Safety Equipment/Lab SuppliesYNMROMfg. Repair & Operating SuppliesSafety SuppliesSafety Equipment/Lab SuppliesNhttp://wss1.it.agilent.com/sites/ExpensePolicy/Pages/Default.aspxThis is Category Information Details

804041MRO Procurement PolicyOPS Catalog only.Mfg. Supplies20-May-13804041OPS Catalog only.Mfg. SuppliesYYMROMfg. Repair & Operating SuppliesSuppliesMfg. SuppliesYCatalogVinimayahttp://wss1.it.agilent.com/sites/ExpensePolicy/Pages/Default.aspxPurchasing of materials to support the production and development environments related to Consumables; Chemicals; Tools; Gases and Safety Equipment et

804041MRO Procurement PolicyAll Indirect.Mfg & Oper Supplies/Tools/Consumables20-May-13804041All Indirect.Mfg & Oper Supplies/Tools/ConsumablesYYMROMfg. Repair & Operating SuppliesSuppliesMfg. SuppliesYSmart Formhttp://wss1.it.agilent.com/sites/ExpensePolicy/Pages/Default.aspxPurchasing of materials to support the production and development environments related to Consumables; Chemicals; Tools; Gases and Safety Equipment et

804041MRO Procurement PolicyAll Indirect.Photomasks20-May-13804041All Indirect.PhotomasksYYMROMfg. Repair & Operating SuppliesTools & Tooling FixturesPhotomasksYSmart Formhttp://wss1.it.agilent.com/sites/ExpensePolicy/Pages/Default.aspxPurchasing of materials to support the production and development environments related to Consumables; Chemicals; Tools; Gases and Safety Equipment et

804041MRO Procurement PolicyOPS Catalog only.Tools20-May-13804041OPS Catalog only.ToolsYYMROMfg. Repair & Operating SuppliesTools & Tooling FixturesToolsYCatalogVinimayahttp://wss1.it.agilent.com/sites/ExpensePolicy/Pages/Default.aspxPurchasing of materials to support the production and development environments related to Consumables; Chemicals; Tools; Gases and Safety Equipment et

804041MRO Procurement PolicyAll Indirect.Tools20-May-13804041All Indirect.ToolsYYMROMfg. Repair & Operating SuppliesTools & Tooling FixturesTools & ToolingYSmart Formhttp://wss1.it.agilent.com/sites/ExpensePolicy/Pages/Default.aspxPurchasing of materials to support the production and development environments related to Consumables; Chemicals; Tools; Gases and Safety Equipment et

713051MRO Procurement PolicyAll Indirect.Vendor Rework-Jobs20-May-13713051All Indirect.Vendor Rework-JobsYNMROMfg. Repair & Operating SuppliesNhttp://wss1.it.agilent.com/sites/ExpensePolicy/Pages/Default.aspxThis is Category Information Details

804041MRO Procurement PolicyAll Indirect.Tools & Tooling20-May-13804041All Indirect.Tools & ToolingYYMROMfg. Repair & Operating SuppliesTools & Tooling FixturesTools & ToolingYSmart Formhttp://wss1.it.agilent.com/sites/ExpensePolicy/Pages/Default.aspxPurchasing of materials to support the production and development environments related to Consumables; Chemicals; Tools; Gases and Safety Equipment et

807041Professional Services Procurement PolicyAll Indirect.Consulting Other, Speakers, Presenters - New20-May-13807041All Indirect.Consulting Other, Speakers, Presenters - NewYNProfessional ServicesProfessional Services excl. ETWsGeneral ConsultingConsulting Other, Speakers, Presenters - NewNhttp://wss1.it.agilent.com/sites/ExpensePolicy/Pages/Default.aspxThis is Category Information Details

807041Professional Services Procurement PolicyAll Indirect.Mgt. Consultants20-May-13807041All Indirect.Mgt. ConsultantsYYProfessional ServicesProfessional Services excl. ETWsGeneral ConsultingMgt. ConsultantsYSmart Formhttp://wss1.it.agilent.com/sites/ExpensePolicy/Pages/Default.aspxThis is Category Information Details

807041Professional Services Procurement PolicyAll Indirect.Technical Consulting20-May-13807041All Indirect.Technical ConsultingYYProfessional ServicesProfessional Services excl. ETWsGeneral ConsultingTechnical ConsultingYSmart Formhttp://wss1.it.agilent.com/sites/ExpensePolicy/Pages/Default.aspxThis is Category Information Details

807041Professional Services Procurement PolicyAll Indirect.Consultants20-May-13807041All Indirect.ConsultantsYYProfessional ServicesProfessional Services excl. ETWsGeneral ConsultingTechnical ConsultingYSmart Formhttp://wss1.it.agilent.com/sites/ExpensePolicy/Pages/Default.aspxThis is Category Information Details

807113HR Procurement PolicyAll Indirect.HR Outsourced Services20-May-13807113All Indirect.HR Outsourced ServicesYYProfessional ServicesProfessional Services excl. ETWsBusiness specific ConsultingHR Outsourced ServicesYSmart Formhttp://wss1.it.agilent.com/sites/ExpensePolicy/Pages/Default.aspxThis is Category Information Details

807112WPS Procurement PolicyAll Indirect.WPS Outsourced Services20-May-13807112All Indirect.WPS Outsourced ServicesYYProfessional ServicesProfessional Services excl. ETWsBusiness specific ConsultingWPS Outsourced ServicesYSmart Formhttp://wss1.it.agilent.com/sites/ExpensePolicy/Pages/Default.aspxThis is Category Information Details

807031IT Procurement PolicyAll Indirect.IT Consulting20-May-13807031All Indirect.IT ConsultingYYProfessional ServicesProfessional Services excl. ETWsBusiness specific ConsultingIT ConsultingYSmart Formhttp://wss1.it.agilent.com/sites/ExpensePolicy/Pages/Default.aspxThis is Category Information Details

816121Travel Procurement PolicyAll Indirect.Business Entertainment - Employees20-May-13816121All Indirect.Business Entertainment - EmployeesYNTravelTravel and EntertainmentEntertainmentBusiness Entertainment - EmployeesNhttp://wss1.it.agilent.com/sites/ExpensePolicy/Pages/Default.aspxThis is Category Information Details

816111Travel Procurement PolicyAll Indirect.Business Entertainment - Non-employee20-May-13816111All Indirect.Business Entertainment - Non-employeeYNTravelTravel and EntertainmentEntertainmentBusiness Entertainment - Non-employeeNhttp://wss1.it.agilent.com/sites/ExpensePolicy/Pages/Default.aspxThis is Category Information Details

801061Travel Procurement PolicyAll Indirect.Company Funded Rec-Social Activities20-May-13801061All Indirect.Company Funded Rec-Social ActivitiesYYTravelTravel and EntertainmentEntertainmentCompany Funded Rec-Social ActivitiesNhttp://wss1.it.agilent.com/sites/ExpensePolicy/Pages/Default.aspxThis is Category Information Details

818041Travel Procurement PolicyAll Indirect.Entertainment Facilities20-May-13818041All Indirect.Entertainment FacilitiesYYTravelTravel and EntertainmentEntertainmentEntertainment FacilitiesNhttp://wss1.it.agilent.com/sites/ExpensePolicy/Pages/Default.aspxThis is Category Information Details

810011Travel Procurement PolicyAll Indirect.Travel Airfare20-May-13810011All Indirect.Travel AirfareYNTravelTravel and EntertainmentTravelTravel AirfareNhttp://wss1.it.agilent.com/sites/ExpensePolicy/Pages/Default.aspxThis is Category Information Details

816112Travel Procurement PolicyAll Indirect.Travel and Entertainment_Non_3PP20-May-13816112All Indirect.Travel and Entertainment_Non_3PPYNTravelTravel and EntertainmentEntertainmentTravel and Entertainment_Non_3PPNhttp://wss1.it.agilent.com/sites/ExpensePolicy/Pages/Default.aspxThis is Category Information Details

810031Travel Procurement PolicyAll Indirect.Travel Car Mileage20-May-13810031All Indirect.Travel Car MileageYNTravelTravel and EntertainmentTravelTravel Car MileageNhttp://wss1.it.agilent.com/sites/ExpensePolicy/Pages/Default.aspxThis is Category Information Details

810021Travel Procurement PolicyAll Indirect.Travel Car Rental20-May-13810021All Indirect.Travel Car RentalYNTravelTravel and EntertainmentTravelTravel Car RentalNhttp://wss1.it.agilent.com/sites/ExpensePolicy/Pages/Default.aspxThis is Category Information Details

810001Travel Procurement PolicyAll Indirect.Travel Entertainment20-May-13810001All Indirect.Travel EntertainmentYNTravelTravel and EntertainmentEntertainmentTravel EntertainmentNhttp://wss1.it.agilent.com/sites/ExpensePolicy/Pages/Default.aspxThis is Category Information Details

810041Travel Procurement PolicyAll Indirect.Travel Lodging20-May-13810041All Indirect.Travel LodgingYNTravelTravel and EntertainmentTravelTravel LodgingNhttp://wss1.it.agilent.com/sites/ExpensePolicy/Pages/Default.aspxThis is Category Information Details

810051Travel Procurement PolicyAll Indirect.Travel Meals20-May-13810051All Indirect.Travel MealsYNTravelTravel and EntertainmentTravelTravel MealsNhttp://wss1.it.agilent.com/sites/ExpensePolicy/Pages/Default.aspxThis is Category Information Details

810501Travel Procurement PolicyAll Indirect.Travel Agency Fees20-May-13810501All Indirect.Travel Agency FeesYNTravelTravel and EntertainmentTravel AgencyTravel Agency FeesNhttp://wss1.it.agilent.com/sites/ExpensePolicy/Pages/Default.aspxThis is Category Information Details

810071Travel Procurement PolicyAll Indirect.Travel Other20-May-13810071All Indirect.Travel OtherYNTravelTravel and EntertainmentTravelTravel OtherNhttp://wss1.it.agilent.com/sites/ExpensePolicy/Pages/Default.aspxThis is Category Information Details

810091Travel Procurement PolicyAll Indirect.Travel_ Misc20-May-13810091All Indirect.Travel_ MiscYNTravelTravel and EntertainmentTravelTravel_ MiscNhttp://wss1.it.agilent.com/sites/ExpensePolicy/Pages/Default.aspxThis is Category Information Details

810101Travel Procurement PolicyAll Indirect.Travel_Captura Accrd Exp20-May-13810101All Indirect.Travel_Captura Accrd ExpYNTravelTravel and EntertainmentTravelTravel_Captura Accrd ExpNhttp://wss1.it.agilent.com/sites/ExpensePolicy/Pages/Default.aspxThis is Category Information Details

810081Travel Procurement PolicyAll Indirect.Travel_Transportation20-May-13810081All Indirect.Travel_TransportationYNTravelTravel and EntertainmentTravelTravel_TransportationNhttp://wss1.it.agilent.com/sites/ExpensePolicy/Pages/Default.aspxThis is Category Information Details

807001MRO Procurement PolicyAll Indirect.Auto Leasing Expenses20-May-13807001All Indirect.Auto Leasing ExpensesYYWPSWorkplace Services & FacilitiesFleetAuto Leasing ExpensesYSmart Formhttp://wss1.it.agilent.com/sites/ExpensePolicy/Pages/Default.aspxUsed for Agilent site related services related to local catering; Agilent fleet; facilities repair and office furniture etc.

807081WPS Procurement PolicyAll Indirect.Cleaning or Janitorial20-May-13807081All Indirect.Cleaning or JanitorialYNWPSWorkplace Services & FacilitiesFacilities Mgt.Cleaning or JanitorialNhttp://wss1.it.agilent.com/sites/ExpensePolicy/Pages/Default.aspxThis is Category Information Details

174011WPS Procurement PolicyAll Indirect.Construction in Progress Bus-CIP Project20-May-13174011All Indirect.Construction in Progress Bus-CIP ProjectYNWPSWorkplace Services & FacilitiesConstruction/RenovationConstruction in Progress Bus-CIP ProjectNhttp://wss1.it.agilent.com/sites/ExpensePolicy/Pages/Default.aspxThis is Category Information Details

174011WPS Procurement PolicyAll Indirect.Construction in Progress Project Costing20-May-13174011All Indirect.Construction in Progress Project CostingYNWPSWorkplace Services & FacilitiesConstruction/RenovationConstruction in Progress Project CostingNhttp://wss1.it.agilent.com/sites/ExpensePolicy/Pages/Default.aspxThis is Category Information Details

802011WPS Procurement PolicyAll Indirect.Equipment-Company Vehicle Repairs20-May-13802011All Indirect.Equipment-Company Vehicle RepairsYNWPSWorkplace Services & FacilitiesFleetEquipment-Company Vehicle RepairsNhttp://wss1.it.agilent.com/sites/ExpensePolicy/Pages/Default.aspxThis is Category Information Details

807191WPS Procurement PolicyAll Indirect.Facility Management20-May-13807191All Indirect.Facility ManagementYNWPSWorkplace Services & FacilitiesFacilities Mgt.Facility ManagementNhttp://wss1.it.agilent.com/sites/ExpensePolicy/Pages/Default.aspxThis is Category Information Details

807021WPS Procurement PolicyAll Indirect.Food Service/Catering20-May-13807021All Indirect.Food Service/CateringYNWPSWorkplace Services & FacilitiesCatering/Site eventsFood Service/CateringNhttp://wss1.it.agilent.com/sites/ExpensePolicy/Pages/Default.aspxThis is Category Information Details

812071WPS Procurement PolicyAll Indirect.Furniture/Office Equipment20-May-13812071All Indirect.Furniture/Office EquipmentYNWPSWorkplace Services & FacilitiesFacilities Mgt.Furniture/Office EquipmentNhttp://wss1.it.agilent.com/sites/ExpensePolicy/Pages/Default.aspxThis is Category Information Details

807091WPS Procurement PolicyAll Indirect.Hazardous Waste Disposal20-May-13807091All Indirect.Hazardous Waste DisposalYNWPSWorkplace Services & FacilitiesFacilities Mgt.Hazardous Waste DisposalNhttp://wss1.it.agilent.com/sites/ExpensePolicy/Pages/Default.aspxThis is Category Information Details

811011WPS Procurement PolicyAll Indirect.Op Site Relocation20-May-13811011All Indirect.Op Site RelocationYNWPSWorkplace Services & FacilitiesConstruction/RenovationOp Site RelocationNhttp://wss1.it.agilent.com/sites/ExpensePolicy/Pages/Default.aspxThis is Category Information Details

812001WPS Procurement PolicyAll Indirect.Rent - Land and Buildings20-May-13Y812001All Indirect.Rent - Land and BuildingsYNWPSWorkplace Services & FacilitiesRentRent - Land and BuildingsNhttp://wss1.it.agilent.com/sites/ExpensePolicy/Pages/Default.aspxThis is Category Information Details

812051WPS Procurement PolicyAll Indirect.Repair/Maintenance Office Facilities20-May-13812051All Indirect.Repair/Maintenance Office FacilitiesYYWPSWorkplace Services & FacilitiesFacilities Mgt.Repair/Maintenance Office FacilitiesYSmart Formhttp://wss1.it.agilent.com/sites/ExpensePolicy/Pages/Default.aspxUsed for Agilent site related services related to local catering; Agilent fleet; facilities repair and office furniture etc.

807121WPS Procurement PolicyAll Indirect.Security Services20-May-13807121All Indirect.Security ServicesYNWPSWorkplace Services & FacilitiesSecuritySecurity ServicesNhttp://wss1.it.agilent.com/sites/ExpensePolicy/Pages/Default.aspxThis is Category Information Details

804031WPS Procurement PolicyAll Indirect.Transp - Gas/Diesel/Propane/Lubes20-May-13804031All Indirect.Transp - Gas/Diesel/Propane/LubesYYWPSWorkplace Services & FacilitiesFleetTransp - Gas/Diesel/Propane/LubesYSmart Formhttp://wss1.it.agilent.com/sites/ExpensePolicy/Pages/Default.aspxUsed for Agilent site related services related to local catering; Agilent fleet; facilities repair and office furniture etc.

806021WPS Procurement PolicyAll Indirect.Utilities - Natural Gas or Propane20-May-13806021All Indirect.Utilities - Natural Gas or PropaneYNWPSWorkplace Services & FacilitiesUtilitiesUtilities - Natural Gas or PropaneNhttp://wss1.it.agilent.com/sites/ExpensePolicy/Pages/Default.aspxThis is Category Information Details

806001WPS Procurement PolicyAll Indirect.Utilities - Power20-May-13806001All Indirect.Utilities - PowerYNWPSWorkplace Services & FacilitiesUtilitiesUtilities - PowerNhttp://wss1.it.agilent.com/sites/ExpensePolicy/Pages/Default.aspxThis is Category Information Details

806031WPS Procurement PolicyAll Indirect.Utilities - Waste Disposal20-May-13806031All Indirect.Utilities - Waste DisposalYNWPSWorkplace Services & FacilitiesUtilitiesUtilities - Waste DisposalNhttp://wss1.it.agilent.com/sites/ExpensePolicy/Pages/Default.aspxThis is Category Information Details

806011WPS Procurement PolicyAll Indirect.Utilities - Water20-May-13806011All Indirect.Utilities - WaterYNWPSWorkplace Services & FacilitiesUtilitiesUtilities - WaterNhttp://wss1.it.agilent.com/sites/ExpensePolicy/Pages/Default.aspxThis is Category Information Details

807112WPS Procurement PolicyAll Indirect.WPS Outsourced Services20-May-13807112All Indirect.WPS Outsourced ServicesYNWPSWorkplace Services & FacilitiesOutsourced Svcs.WPS Outsourced ServicesNhttp://wss1.it.agilent.com/sites/ExpensePolicy/Pages/Default.aspxThis is Category Information Details

_1428648174/XXCatalogCO.java

_1428648174/XXCatalogCO.javapackagexx.oracle.apps.icx.icatalog.shopping.webui;

importcom.sun.java.util.collections.HashMap;

importjava.io.Serializable;

importoracle.apps.fnd.common.VersionInfo;

importoracle.apps.fnd.framework.OAApplicationModule;

importoracle.apps.fnd.framework.OAException;

importoracle.apps.fnd.framework.webui.OAControllerImpl;

importoracle.apps.fnd.framework.webui.OAPageContext;

importoracle.apps.fnd.framework.webui.beans.OAWebBean;

importoracle.apps.icx.icatalog.shopping.webui.ShoppingClientHelper;

publicclassXXCatalogCOextendsOAControllerImpl

{

publicstaticfinalStringRCS_ID="$Header$";

publicstaticfinalbooleanRCS_ID_RECORDED=VersionInfo.recordClassVersion("$Header$","%packagename%");

publicvoidprocessRequest(OAPageContextoapagecontext,OAWebBeanwebBean)

{

super.processRequest(oapagecontext,webBean);

OAApplicationModuleoaapplicationmodule=oapagecontext.getRootApplicationModule();

Strings1="iP";

booleanflag=true;

if(oapagecontext.isLoggingEnabled(1))

{

oapagecontext.writeDiagnostics(this,(newStringBuilder()).append("shoppingFlow=").append(s1).toString(),1);

oapagecontext.writeDiagnostics(this,(newStringBuilder()).append("isSicFlow=").append(flag).toString(),1);

oapagecontext.writeDiagnostics(this,(newStringBuilder()).append("contentZoneId=").append(oapagecontext.getSessionValueDirect("CZID")).toString(),1);

}

if(flag)

{

Strings2=ShoppingClientHelper.getCatalogLanguage(oapagecontext);

Serializableserializable=oaapplicationmodule.invokeMethod("populateReturnObject",newSerializable[]{

s2

});

}

oapagecontext.releaseRootApplicationModule();

HashMaphashmap1=newHashMap();

hashmap1.put("contentZoneId",oapagecontext.getSessionValueDirect("CZID"));

hashmap1.put("action","shopping");

hashmap1.put("shopFlow",s1);

oapagecontext.removeParameter("OARespContextSwitcherValuesKey");

oapagecontext.removeTransactionTransientValue("OARespContextSwitcherValuesKey");

try

{

Stringkey=(String)oapagecontext.getSessionValueDirect("respk");

oapagecontext.changeResponsibility(key,"ICX");

}

catch(Exceptionexp)

{

thrownewOAException(exp.toString());

}

Stringrespname=oapagecontext.getResponsibilityName();

intorgid=oapagecontext.getOrgId();

oapagecontext.writeDiagnostics(this,(newStringBuilder()).append("Responsibilitynameis").append(respname).toString(),1);

oapagecontext.writeDiagnostics(this,(newStringBuilder()).append("Organizationidis").append(orgid).toString(),1);

oapagecontext.setForwardURL("ICX_CAT_PUNCHOUT_LOGIN",(byte)0,null,hashmap1,false,"N",(byte)99);

}

publicvoidprocessFormRequest(OAPageContextpageContext,OAWebBeanwebBean)

{

super.processFormRequest(pageContext,webBean);

}

publicXXCatalogCO()

{

}

}

_1428926920/XXATNonCatFrwdCO.java

_1428926920/XXATNonCatFrwdCO.java/*===========================================================================+

|Copyright(c)2001,2005OracleCorporation,RedwoodShores,CA,USA|

|Allrightsreserved.|

+===========================================================================+

|HISTORY|

+===========================================================================*/

packagexx.oracle.apps.icx.icatalog.shopping.webui;

importcom.sun.java.util.collections.HashMap;

importjava.sql.PreparedStatement;

importjava.sql.Connection;

importjava.sql.SQLException;

importoracle.apps.fnd.common.VersionInfo;

importoracle.apps.fnd.framework.webui.OAControllerImpl;

importoracle.apps.fnd.framework.webui.OAPageContext;

importoracle.apps.fnd.framework.webui.OAWebBeanConstants;

importoracle.apps.fnd.framework.webui.beans.OAWebBean;

importjava.sql.*;

/**

*Controllerfor...

*/

publicclassXXATNonCatFrwdCOextendsOAControllerImpl

{

publicstaticfinalStringRCS_ID="$Header$";

publicstaticfinalbooleanRCS_ID_RECORDED=

VersionInfo.recordClassVersion(RCS_ID,"%packagename%");

/**

*Layoutandpagesetuplogicforaregion.

*@parampageContextthecurrentOApagecontext

*@paramwebBeanthewebbeancorrespondingtotheregion

*/

publicvoidprocessRequest(OAPageContextpageContext,OAWebBeanwebBean)

{

/*pageContext.removeParameter("OARespContextSwitcherValuesKey");

pageContext.removeTransactionTransientValue("OARespContextSwitcherValuesKey");

pageContext.changeResponsibility("IPROCUREMENT","ICX");*/

super.processRequest(pageContext,webBean);

if(pageContext.isLoggingEnabled(2))

pageContext.writeDiagnostics(this,"processRequest.begin",2);

pageContext.removeParameter("OARespContextSwitcherValuesKey");

pageContext.removeTransactionTransientValue("OARespContextSwitcherValuesKey");


/*if(pageContext.getSessionValueDirect("respk")!=null)

pageContext.changeResponsibility((String)pageContext.getSessionValueDirect("respk"),"ICX");*/

if(pageContext.isLoggingEnabled(1))

pageContext.writeDiagnostics(this,"processRequest.callinggetRespKeymethodforsuppliersiteid="+(String)pageContext.getSessionValueDirect("SuppSiteId"),1);

StringrespKey=getRespKey((String)pageContext.getSessionValueDirect("SuppSiteId"),pageContext,webBean);

if(respKey!=null&&!"".equals(respKey))

pageContext.changeResponsibility(respKey,"ICX");

if(pageContext.isLoggingEnabled(1))

pageContext.writeDiagnostics(this,"processRequest.RespKeyforsuppliersiteid="+(String)pageContext.getSessionValueDirect("SuppSiteId")+"is"+respKey,1);

HashMapSuppHashMap=newHashMap();

SuppHashMap.put("SuppId",pageContext.getSessionValueDirect("SuppId"));

SuppHashMap.put("SuppSiteId",pageContext.getSessionValueDirect("SuppSiteId"));

SuppHashMap.put("SuppContactId",pageContext.getSessionValueDirect("SuppContactId"));

SuppHashMap.put("TemplateId",pageContext.getSessionValueDirect("TemplateId"));

SuppHashMap.put("fromRentCar",pageContext.getSessionValueDirect("fromRentCar"));



//debugStmt("insideofXXATNonCatFrwdCO"+pageContext.getSessionValueDirect("SuppId")+","+pageContext.getSessionValueDirect("SuppSiteId"),pageContext,webBean);

if(pageContext.isLoggingEnabled(1))

pageContext.writeDiagnostics(this,"processRequest.ForwardingtoICX_CAT_NONCAT_REQUEST_STORE",1);

pageContext.setForwardURL("OA.jsp?OAFunc=ICX_CAT_NONCAT_REQUEST_STORE",

null,

OAWebBeanConstants.KEEP_MENU_CONTEXT,

null,

SuppHashMap,

true,

OAWebBeanConstants.ADD_BREAD_CRUMB_YES,

OAWebBeanConstants.IGNORE_MESSAGES);

}

/**

*Proceduretohandleformsubmissionsforformelementsin

*aregion.

*@parampageContextthecurrentOApagecontext

*@paramwebBeanthewebbeancorrespondingtotheregion

*/

publicvoidprocessFormRequest(OAPageContextpageContext,OAWebBeanwebBean)

{

super.processFormRequest(pageContext,webBean);

}

/*publicvoiddebugStmt(Stringmsg,OAPageContextoapagecontext,OAWebBeanoawebbean)

{

PreparedStatementstmt=null;

Connectionconn=null;

try{

conn=oapagecontext.getApplicationModule(oawebbean).getOADBTransaction().getJdbcConnection();

StringdeleteStmt="insertintotemp_tab(value)values(?)";

stmt=conn.prepareStatement(deleteStmt);

stmt.setString(1,msg);

stmt.executeUpdate();

conn.commit();

stmt.close();

}catch(SQLExceptionsqle)

{

//stmt.close();

sqle.printStackTrace();

}

}

*/

publicStringgetRespKey(StringsuppSiteId,OAPageContextoapagecontext,OAWebBeanoawebbean)

{

if(oapagecontext.isLoggingEnabled(1))

oapagecontext.writeDiagnostics(this,"processRequest.InsideofgetRespKeyMethod",1);

if(oapagecontext.isLoggingEnabled(1))

oapagecontext.writeDiagnostics(this,"processRequest.QuerytogettheResponsibilityKey=SELECTRESPONSIBILITY_KEYFROMfnd_responsibility,fnd_profile_option_valuesWHEREmenu_id=71395andprofile_option_id=1991andlevel_value=to_char(RESPONSIBILITY_ID)andprofile_option_value=(selectorg_idfromap_supplier_sites_allwherevendor_site_id="+suppSiteId+")andresponsibility_keylike'%_INTERNET_PROC'",1);

PreparedStatementstmt=null;

Connectionconn=null;

StringrespKey=null;

try{

conn=oapagecontext.getApplicationModule(oawebbean).getOADBTransaction().getJdbcConnection();

StringselectStmt="SELECTRESPONSIBILITY_KEYFROMfnd_responsibility,fnd_profile_option_valuesWHEREmenu_id=71395andprofile_option_id=1991andlevel_value=to_char(RESPONSIBILITY_ID)an