{"id":85,"date":"2012-04-26T13:37:00","date_gmt":"2012-04-26T13:37:00","guid":{"rendered":"http:\/\/www.greytrix.com\/blogs\/sagemas\/?p=85"},"modified":"2024-06-17T07:24:03","modified_gmt":"2024-06-17T07:24:03","slug":"how-to-update-extended-description-for-sales-order-and-purchase-order-line-items-when-creating-orders-using-pvxcom-in-sage-100-erp","status":"publish","type":"post","link":"https:\/\/www.greytrix.com\/blogs\/sagemas\/2012\/04\/26\/how-to-update-extended-description-for-sales-order-and-purchase-order-line-items-when-creating-orders-using-pvxcom-in-sage-100-erp\/","title":{"rendered":"How to Update Extended Description for Sales Order and Purchase Order Line Items when creating orders using PVXCOM in Sage 100 ERP"},"content":{"rendered":"<p>In earlier versions of Sage 100 ERP aka Sage MAS 90\/200 (i.e. before version 4.40), it was easy to add\/update \u201cExtended Description\u201d by using the \u201cCI_ExtendedDescription_BUS\u201d object and then updating the \u201cExtended Description\u201d with the desired string in Sage 100 ERP.<\/p>\n<p>From Sage 100 ERP version 4.40 onwards the \u201cCI_ExtendedDescription_BUS\u201d object is hidden and has no direct access to add\/update Extended Descriptions. Using the Business Object model this object is now available as a Child object of Sales Order Lines and Purchase Order lines object. The below code snippet shows how you can access the object and Add\/Update Extended Descriptions.<\/p>\n<div style=\"margin-left: 0.5in;\">\n<div style=\"margin-left: 0.5in;\"><span style=\"color: green; font-family: 'Courier New'; font-size: 10pt;\">&#8216;Get the Item Description<\/span><\/div>\n<div style=\"margin-left: 0.5in;\"><span style=\"font-family: 'Courier New'; font-size: 10pt;\">retVAL = oSOOrder.oLines.nGetValue(<span style=\"color: maroon;\">&#8220;ItemCodeDesc$&#8221;<\/span>, ItemCodeDesc)<\/span><\/div>\n<div style=\"margin-left: 0.5in;\">\u00a0<\/div>\n<div style=\"margin-left: 0.5in;\"><span style=\"color: green; font-family: 'Courier New'; font-size: 10pt;\">&#8216;Create the Extended Description Object <\/span><\/div>\n<div style=\"margin-left: 0.5in;\"><span style=\"font-family: 'Courier New'; font-size: 10pt;\">objSoExtDesc = oSOOrder.oLines.oExtendedDescriptionBusiness<\/span><\/div>\n<div style=\"margin-left: 0.5in;\">\u00a0<\/div>\n<div style=\"margin-left: 0.5in;\"><span style=\"color: green; font-family: 'Courier New'; font-size: 10pt;\">&#8216;Get the Extended Description code<\/span><\/div>\n<div style=\"margin-left: 0.5in;\"><span style=\"font-family: 'Courier New'; font-size: 10pt;\">retVAL = oSOOrder.oLines.nGetValue(<span style=\"color: maroon;\">&#8220;ExtendedDescritpionKey$&#8221;<\/span>, Key)<\/span><\/div>\n<div style=\"margin-left: 0.5in;\">\u00a0<\/div>\n<div style=\"margin-left: 0.5in;\"><span style=\"color: green; font-family: 'Courier New'; font-size: 10pt;\">&#8216;Create the object <\/span><\/div>\n<div style=\"margin-left: 0.5in;\"><b><span style=\"color: blue; font-family: 'Courier New'; font-size: 10pt;\">Set <\/span><\/b><span style=\"font-family: 'Courier New'; font-size: 10pt;\">obj = oSOOrder.oLines.oExtendedDescriptionBusiness<\/span><\/div>\n<div style=\"margin-left: 0.5in;\">\u00a0<\/div>\n<div style=\"margin-left: 0.5in;\"><span style=\"color: green; font-family: 'Courier New'; font-size: 10pt;\">&#8216;Create Update records <\/span><\/div>\n<div style=\"margin-left: 0.5in;\"><span style=\"color: blue; font-family: 'Courier New'; font-size: 10pt;\">If<\/span><span style=\"font-family: 'Courier New'; font-size: 10pt;\"><span style=\"color: blue;\">String<\/span>.IsNullOrEmpty(Key) <span style=\"color: blue;\">Then<\/span><\/span><\/div>\n<div style=\"margin-left: 0.5in;\"><span style=\"color: green; font-family: 'Courier New'; font-size: 10pt;\">&#8216;Create new Extended Description<\/span><\/div>\n<div style=\"margin-left: 0.5in;\"><span style=\"font-family: 'Courier New'; font-size: 10pt;\">\u00a0\u00a0\u00a0\u00a0\u00a0 Key = obj.sGetNextExtendedDescriptionKey()<\/span><\/div>\n<div style=\"margin-left: 0.5in;\"><span style=\"font-family: 'Courier New'; font-size: 10pt;\">\u00a0\u00a0\u00a0\u00a0\u00a0 retVAL = obj.nSetKey(Key)<\/span><\/div>\n<div style=\"margin-left: 0.5in;\"><span style=\"font-family: 'Courier New'; font-size: 10pt;\">\u00a0\u00a0\u00a0\u00a0\u00a0 retVAL = obj.nSetValue(<span style=\"color: maroon;\">&#8220;ExtendedDescriptionText$&#8221;<\/span>, ItemCodeDesc &amp; <span style=\"color: maroon;\">&#8221; &#8220;<\/span> &amp; ItemCodeDescription)<\/span><\/div>\n<div style=\"margin-left: 0.5in;\"><span style=\"font-family: 'Courier New'; font-size: 10pt;\">\u00a0\u00a0\u00a0\u00a0\u00a0 retVAL = obj.nSetValue(<span style=\"color: maroon;\">&#8220;CreationModuleCode$&#8221;<\/span>, <span style=\"color: maroon;\">&#8220;S\/O&#8221;<\/span>)<\/span><\/div>\n<div style=\"margin-left: 0.5in;\">\u00a0<\/div>\n<div style=\"margin-left: 0.5in;\"><span style=\"color: green; font-family: 'Courier New'; font-size: 10pt;\">&#8216;Insert the record<\/span><\/div>\n<div style=\"margin-left: 0.5in;\"><span style=\"font-family: 'Courier New'; font-size: 10pt;\">\u00a0\u00a0\u00a0\u00a0\u00a0 retVAL = obj.nWrite()<\/span><\/div>\n<div style=\"margin-left: 0.5in;\">\u00a0<\/div>\n<div style=\"margin-left: 0.5in;\"><span style=\"color: blue; font-family: 'Courier New'; font-size: 10pt;\">Else<\/span><\/div>\n<div style=\"margin-left: 0.5in;\"><span style=\"color: green; font-family: 'Courier New'; font-size: 10pt;\">&#8216;Update the existing one<\/span><\/div>\n<div style=\"margin-left: 0.5in;\"><span style=\"font-family: 'Courier New'; font-size: 10pt;\">\u00a0\u00a0\u00a0\u00a0\u00a0 retVAL = obj.nSetKey(Key)<\/span><\/div>\n<div style=\"margin-left: 0.5in;\"><span style=\"font-family: 'Courier New'; font-size: 10pt;\">\u00a0\u00a0\u00a0\u00a0\u00a0 retVAL = obj.nSetValue(<span style=\"color: maroon;\">&#8220;ExtendedDescriptionText$&#8221;<\/span>, ItemCodeDesc &amp; <span style=\"color: maroon;\">&#8221; &#8220;<\/span> &amp; ItemCodeDescription)<\/span><\/div>\n<div style=\"margin-left: 0.5in;\"><span style=\"font-family: 'Courier New'; font-size: 10pt;\">\u00a0\u00a0\u00a0\u00a0\u00a0 retVAL = obj.nSetValue(<span style=\"color: maroon;\">&#8220;CreationModuleCode$&#8221;<\/span>, <span style=\"color: maroon;\">&#8220;S\/O&#8221;<\/span>)<\/span><\/div>\n<div style=\"margin-left: 0.5in;\">\u00a0<\/div>\n<div style=\"margin-left: 0.5in;\"><span style=\"color: green; font-family: 'Courier New'; font-size: 10pt;\">&#8216;Update the record<\/span><\/div>\n<div style=\"margin-left: 0.5in;\"><span style=\"font-family: 'Courier New'; font-size: 10pt;\">\u00a0\u00a0\u00a0\u00a0\u00a0 retVAL = obj.nUpdate()<\/span><\/div>\n<div style=\"margin-left: 0.5in;\"><span style=\"color: blue; font-family: 'Courier New'; font-size: 10pt;\">End<\/span><span style=\"font-family: 'Courier New'; font-size: 10pt;\"><span style=\"color: blue;\">If<\/span><\/span><\/div>\n<div style=\"margin-left: 0.5in;\">\u00a0<\/div>\n<div style=\"margin-left: 0.5in;\"><span style=\"color: green; font-family: 'Courier New'; font-size: 10pt;\">&#8216;Update the Item Description<\/span><\/div>\n<div style=\"margin-left: 0.5in;\"><span style=\"color: green; font-family: 'Courier New'; font-size: 10pt;\">&#8216;the Value of retVal would be -1 as it gives warning while settings the Description<\/span><\/div>\n<div style=\"margin-left: 0.5in;\"><span style=\"font-family: 'Courier New'; font-size: 10pt;\">retVAL = oSOOrder.oLines.nSetValue(<span style=\"color: maroon;\">&#8220;ItemCodeDesc$&#8221;<\/span>, ItemCodeDesc &amp; <span style=\"color: maroon;\">&#8221; &#8220;<\/span> &amp; ItemCodeDescription)<\/span><\/div>\n<div style=\"margin-left: 0.5in;\">\u00a0<\/div>\n<div style=\"margin-left: 0.5in;\"><span style=\"color: green; font-family: 'Courier New'; font-size: 10pt;\">&#8216;write the new detail line of the Sales Order<\/span><\/div>\n<div style=\"margin-left: 0.5in;\"><span style=\"font-family: 'Courier New'; font-size: 10pt;\">oSOOrder.oLines.nWrite()<\/span><\/div>\n<\/div>\n\n\n<p><a rel=\"noreferrer noopener\" href=\"https:\/\/www.greytrix.com\/\" target=\"_blank\">Greytrix<\/a>&nbsp;&#8211; a globally recognized and one of the oldest Sage Development Partners is a one-stop solution provider for Sage ERP and Sage CRM organizational needs. Being acknowledged and rewarded for multi-man years of experience and expertise, we bring complete end-to-end assistance for your technical consultations, product customizations, data migration, system integrations, third-party add-on development, and implementation competence.<\/p>\n\n\n\n<p>The unique <a href=\"https:\/\/www.greytrix.com\/gumu\/connectors\/\">GUMU&#x2122;<\/a> integration solutions provided by Greytrix for Sage 100 include <a href=\"https:\/\/www.greytrix.com\/gumu\/sage-crm-sage-100-integration\/\">Sage 100 integration with Sage CRM<\/a>,\u00a0and\u00a0<a href=\"https:\/\/www.greytrix.com\/salesforce-cloud-services\/sage-100-integration\/\">Salesforce.com<\/a>,\u00a0<a href=\"https:\/\/www.greytrix.com\/dynamics-365-crm-sage-100-integration\/\">Dynamics 365 CRM<\/a>, the migration solutions include <a href=\"https:\/\/www.greytrix.com\/sage-100-erp\/#Migration\">Sage 100 Migration from Sage 50 US<\/a>,\u00a0<a href=\"https:\/\/www.greytrix.com\/gumu\/sage-intacct-integration\/\">Sage Intacct<\/a>,\u00a0QuickBooks, Sage Business Vision and Sage Business Works. We also offer best-in-class\u00a0<a href=\"https:\/\/www.greytrix.com\/sage-100-erp\/\">Sage 100 customization and development services\u00a0<\/a>to Sage business partners, end users, and Sage PSG worldwide. Sage 100 product listings by Greytrix include <a href=\"https:\/\/www.greytrix.com\/microsoft-dynamics-365-crm\/\">Salesforce \u2013 Sage ERP integration<\/a> available on <a href=\"https:\/\/appexchange.salesforce.com\/appxListingDetail?listingId=a0N30000000psM5EAI\">Salesforce Appexchange<\/a>, <a href=\"https:\/\/www.greytrix.com\/product\/gumu\/dynamics-365-crm-sage-erp-integration\">Dynamics 365 CRM \u2013 Sage ERP integration<\/a> available on <a href=\"https:\/\/appsource.microsoft.com\/en-us\/product\/dynamics-365\/greytrix.gumu_sage_erp_100_300_x3_intacct_integration?tab=Overview\">Microsoft Appsource (Free Trial)<\/a>.<\/p>\n\n\n\n<p>The GUMU&#x2122; Cloud framework by Greytrix forms the backbone of cloud integrations that are managed in real-time for processing and execution of application programs at the click of a button. <\/p>\n\n\n\n<p>For more details on Sage 100 Services, please contact us at&nbsp;<a href=\"mailto:sage@greytrix.com\">sage@greytrix.com<\/a>. We will like to hear from you.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>In earlier versions of Sage 100 ERP aka Sage MAS 90\/200 (i.e. before version 4.40), it was easy to add\/update \u201cExtended Description\u201d by using the \u201cCI_ExtendedDescription_BUS\u201d object and then updating the \u201cExtended Description\u201d with the desired string in Sage 100 ERP. From Sage 100 ERP version 4.40 onwards the \u201cCI_ExtendedDescription_BUS\u201d object is hidden and has\u2026 <span class=\"read-more\"><a href=\"https:\/\/www.greytrix.com\/blogs\/sagemas\/2012\/04\/26\/how-to-update-extended-description-for-sales-order-and-purchase-order-line-items-when-creating-orders-using-pvxcom-in-sage-100-erp\/\">Read More &raquo;<\/a><\/span><\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[158,191],"tags":[],"class_list":["post-85","post","type-post","status-publish","format-standard","hentry","category-purchase-order","category-sales-order"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v26.3 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>How to Update Purchase Order and Sales Order<\/title>\n<meta name=\"description\" content=\"Discover how\u00a0an\u00a0object can now be accessed as a Child object of Purchase Order Lines and Sales Order Lines objects using the Business.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.greytrix.com\/blogs\/sagemas\/2012\/04\/26\/how-to-update-extended-description-for-sales-order-and-purchase-order-line-items-when-creating-orders-using-pvxcom-in-sage-100-erp\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to Update Purchase Order and Sales Order\" \/>\n<meta property=\"og:description\" content=\"Discover how\u00a0an\u00a0object can now be accessed as a Child object of Purchase Order Lines and Sales Order Lines objects using the Business.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.greytrix.com\/blogs\/sagemas\/2012\/04\/26\/how-to-update-extended-description-for-sales-order-and-purchase-order-line-items-when-creating-orders-using-pvxcom-in-sage-100-erp\/\" \/>\n<meta property=\"og:site_name\" content=\"GUMU\u2122 Integrations \u2013 Tips, Tricks and Components\" \/>\n<meta property=\"article:published_time\" content=\"2012-04-26T13:37:00+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-06-17T07:24:03+00:00\" \/>\n<meta name=\"author\" content=\"greysagemas\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"greysagemas\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"3 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.greytrix.com\/blogs\/sagemas\/2012\/04\/26\/how-to-update-extended-description-for-sales-order-and-purchase-order-line-items-when-creating-orders-using-pvxcom-in-sage-100-erp\/\",\"url\":\"https:\/\/www.greytrix.com\/blogs\/sagemas\/2012\/04\/26\/how-to-update-extended-description-for-sales-order-and-purchase-order-line-items-when-creating-orders-using-pvxcom-in-sage-100-erp\/\",\"name\":\"How to Update Purchase Order and Sales Order\",\"isPartOf\":{\"@id\":\"https:\/\/www.greytrix.com\/blogs\/sagemas\/#website\"},\"datePublished\":\"2012-04-26T13:37:00+00:00\",\"dateModified\":\"2024-06-17T07:24:03+00:00\",\"author\":{\"@id\":\"https:\/\/www.greytrix.com\/blogs\/sagemas\/#\/schema\/person\/b57e6e3564a12ef62967850ae0416728\"},\"description\":\"Discover how\u00a0an\u00a0object can now be accessed as a Child object of Purchase Order Lines and Sales Order Lines objects using the Business.\",\"breadcrumb\":{\"@id\":\"https:\/\/www.greytrix.com\/blogs\/sagemas\/2012\/04\/26\/how-to-update-extended-description-for-sales-order-and-purchase-order-line-items-when-creating-orders-using-pvxcom-in-sage-100-erp\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.greytrix.com\/blogs\/sagemas\/2012\/04\/26\/how-to-update-extended-description-for-sales-order-and-purchase-order-line-items-when-creating-orders-using-pvxcom-in-sage-100-erp\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.greytrix.com\/blogs\/sagemas\/2012\/04\/26\/how-to-update-extended-description-for-sales-order-and-purchase-order-line-items-when-creating-orders-using-pvxcom-in-sage-100-erp\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.greytrix.com\/blogs\/sagemas\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to Update Extended Description for Sales Order and Purchase Order Line Items when creating orders using PVXCOM in Sage 100 ERP\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.greytrix.com\/blogs\/sagemas\/#website\",\"url\":\"https:\/\/www.greytrix.com\/blogs\/sagemas\/\",\"name\":\"GUMU\u2122 Integrations \u2013 Tips, Tricks and Components\",\"description\":\"Welcome to the GUMU\u2122 blog, your one-stop source to gain all the insights on seamless integration solutions for ERP and CRM systems. Developed by Greytrix, GUMU\u2122 is a powerful integration platform that bridges the gap between your business applications. Whether you\u2019re looking to integrate a CRM (Salesforce, Dynamics 365 CRM, and Sage CRM) or an ERP (Sage ERP, Acumatica) with each other or any other third-party application, GUMU\u2122 is a robust and reliable integrator tailored to your unique needs. Join us as we explore the abilities of GUMU\u2122 and learn how it transforms your integration experience. \",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.greytrix.com\/blogs\/sagemas\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\/\/www.greytrix.com\/blogs\/sagemas\/#\/schema\/person\/b57e6e3564a12ef62967850ae0416728\",\"name\":\"greysagemas\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.greytrix.com\/blogs\/sagemas\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/c3b4325cb326e36467f945b9b9adf2bb85e907fe092d42eb36b39743b492e626?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/c3b4325cb326e36467f945b9b9adf2bb85e907fe092d42eb36b39743b492e626?s=96&d=mm&r=g\",\"caption\":\"greysagemas\"},\"url\":\"https:\/\/www.greytrix.com\/blogs\/sagemas\/author\/greysagemas\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How to Update Purchase Order and Sales Order","description":"Discover how\u00a0an\u00a0object can now be accessed as a Child object of Purchase Order Lines and Sales Order Lines objects using the Business.","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/www.greytrix.com\/blogs\/sagemas\/2012\/04\/26\/how-to-update-extended-description-for-sales-order-and-purchase-order-line-items-when-creating-orders-using-pvxcom-in-sage-100-erp\/","og_locale":"en_US","og_type":"article","og_title":"How to Update Purchase Order and Sales Order","og_description":"Discover how\u00a0an\u00a0object can now be accessed as a Child object of Purchase Order Lines and Sales Order Lines objects using the Business.","og_url":"https:\/\/www.greytrix.com\/blogs\/sagemas\/2012\/04\/26\/how-to-update-extended-description-for-sales-order-and-purchase-order-line-items-when-creating-orders-using-pvxcom-in-sage-100-erp\/","og_site_name":"GUMU\u2122 Integrations \u2013 Tips, Tricks and Components","article_published_time":"2012-04-26T13:37:00+00:00","article_modified_time":"2024-06-17T07:24:03+00:00","author":"greysagemas","twitter_card":"summary_large_image","twitter_misc":{"Written by":"greysagemas","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/www.greytrix.com\/blogs\/sagemas\/2012\/04\/26\/how-to-update-extended-description-for-sales-order-and-purchase-order-line-items-when-creating-orders-using-pvxcom-in-sage-100-erp\/","url":"https:\/\/www.greytrix.com\/blogs\/sagemas\/2012\/04\/26\/how-to-update-extended-description-for-sales-order-and-purchase-order-line-items-when-creating-orders-using-pvxcom-in-sage-100-erp\/","name":"How to Update Purchase Order and Sales Order","isPartOf":{"@id":"https:\/\/www.greytrix.com\/blogs\/sagemas\/#website"},"datePublished":"2012-04-26T13:37:00+00:00","dateModified":"2024-06-17T07:24:03+00:00","author":{"@id":"https:\/\/www.greytrix.com\/blogs\/sagemas\/#\/schema\/person\/b57e6e3564a12ef62967850ae0416728"},"description":"Discover how\u00a0an\u00a0object can now be accessed as a Child object of Purchase Order Lines and Sales Order Lines objects using the Business.","breadcrumb":{"@id":"https:\/\/www.greytrix.com\/blogs\/sagemas\/2012\/04\/26\/how-to-update-extended-description-for-sales-order-and-purchase-order-line-items-when-creating-orders-using-pvxcom-in-sage-100-erp\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.greytrix.com\/blogs\/sagemas\/2012\/04\/26\/how-to-update-extended-description-for-sales-order-and-purchase-order-line-items-when-creating-orders-using-pvxcom-in-sage-100-erp\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/www.greytrix.com\/blogs\/sagemas\/2012\/04\/26\/how-to-update-extended-description-for-sales-order-and-purchase-order-line-items-when-creating-orders-using-pvxcom-in-sage-100-erp\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.greytrix.com\/blogs\/sagemas\/"},{"@type":"ListItem","position":2,"name":"How to Update Extended Description for Sales Order and Purchase Order Line Items when creating orders using PVXCOM in Sage 100 ERP"}]},{"@type":"WebSite","@id":"https:\/\/www.greytrix.com\/blogs\/sagemas\/#website","url":"https:\/\/www.greytrix.com\/blogs\/sagemas\/","name":"GUMU\u2122 Integrations \u2013 Tips, Tricks and Components","description":"Welcome to the GUMU\u2122 blog, your one-stop source to gain all the insights on seamless integration solutions for ERP and CRM systems. Developed by Greytrix, GUMU\u2122 is a powerful integration platform that bridges the gap between your business applications. Whether you\u2019re looking to integrate a CRM (Salesforce, Dynamics 365 CRM, and Sage CRM) or an ERP (Sage ERP, Acumatica) with each other or any other third-party application, GUMU\u2122 is a robust and reliable integrator tailored to your unique needs. Join us as we explore the abilities of GUMU\u2122 and learn how it transforms your integration experience. ","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.greytrix.com\/blogs\/sagemas\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/www.greytrix.com\/blogs\/sagemas\/#\/schema\/person\/b57e6e3564a12ef62967850ae0416728","name":"greysagemas","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.greytrix.com\/blogs\/sagemas\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/c3b4325cb326e36467f945b9b9adf2bb85e907fe092d42eb36b39743b492e626?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/c3b4325cb326e36467f945b9b9adf2bb85e907fe092d42eb36b39743b492e626?s=96&d=mm&r=g","caption":"greysagemas"},"url":"https:\/\/www.greytrix.com\/blogs\/sagemas\/author\/greysagemas\/"}]}},"_links":{"self":[{"href":"https:\/\/www.greytrix.com\/blogs\/sagemas\/wp-json\/wp\/v2\/posts\/85","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.greytrix.com\/blogs\/sagemas\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.greytrix.com\/blogs\/sagemas\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.greytrix.com\/blogs\/sagemas\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.greytrix.com\/blogs\/sagemas\/wp-json\/wp\/v2\/comments?post=85"}],"version-history":[{"count":3,"href":"https:\/\/www.greytrix.com\/blogs\/sagemas\/wp-json\/wp\/v2\/posts\/85\/revisions"}],"predecessor-version":[{"id":3598,"href":"https:\/\/www.greytrix.com\/blogs\/sagemas\/wp-json\/wp\/v2\/posts\/85\/revisions\/3598"}],"wp:attachment":[{"href":"https:\/\/www.greytrix.com\/blogs\/sagemas\/wp-json\/wp\/v2\/media?parent=85"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.greytrix.com\/blogs\/sagemas\/wp-json\/wp\/v2\/categories?post=85"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.greytrix.com\/blogs\/sagemas\/wp-json\/wp\/v2\/tags?post=85"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}