{"id":2556,"date":"2022-09-12T15:58:00","date_gmt":"2022-09-12T10:58:00","guid":{"rendered":"https:\/\/omar-iqbal.com\/?p=2556"},"modified":"2023-11-23T19:06:43","modified_gmt":"2023-11-23T14:06:43","slug":"purchase-order-confirmation-using-x-code","status":"publish","type":"post","link":"https:\/\/omar-iqbal.com\/index.php\/2022\/09\/12\/purchase-order-confirmation-using-x-code\/","title":{"rendered":"Purchase order confirmation using X++ code"},"content":{"rendered":"\n<p>In this article we will be focusing on confirmation of a <strong>purchase order<\/strong> using X++ code.<\/p>\n\n\n\n<h3 id=\"confirm-purchase-order\" class=\"wp-block-heading\">Confirm Purchase Order<\/h3>\n\n\n\n<p>First we will see how do we confirm purchase order from front end of Microsoft Finance and Operations and then we&#8217;ll jump over to do that process through X++ code.<\/p>\n\n\n\n<p>I will list down the steps to do that sequentially.<\/p>\n\n\n\n<ol class=\"is-style-cnvs-list-styled-positive wp-block-list\">\n<li>Firstly I need to select the purchase order which I want to confirm and the go to <strong>Purchase<\/strong> tab and then click <strong>Confirm<\/strong> button as seen in below image.<\/li>\n\n\n\n<li><img loading=\"lazy\" decoding=\"async\" width=\"600\" height=\"205\" class=\"wp-image-2558\" style=\"width: 600px;\" src=\"https:\/\/omar-iqbal.com\/wp-content\/uploads\/2022\/08\/1.png\" alt=\"\" srcset=\"https:\/\/omar-iqbal.com\/wp-content\/uploads\/2022\/08\/1.png 1366w, https:\/\/omar-iqbal.com\/wp-content\/uploads\/2022\/08\/1-300x103.png 300w, https:\/\/omar-iqbal.com\/wp-content\/uploads\/2022\/08\/1-1024x350.png 1024w, https:\/\/omar-iqbal.com\/wp-content\/uploads\/2022\/08\/1-768x263.png 768w, https:\/\/omar-iqbal.com\/wp-content\/uploads\/2022\/08\/1-380x130.png 380w, https:\/\/omar-iqbal.com\/wp-content\/uploads\/2022\/08\/1-800x273.png 800w, https:\/\/omar-iqbal.com\/wp-content\/uploads\/2022\/08\/1-1160x397.png 1160w\" sizes=\"auto, (max-width: 600px) 100vw, 600px\" \/><\/li>\n\n\n\n<li>It&#8217;ll take some time while confirming the purchase order.<\/li>\n\n\n\n<li><img loading=\"lazy\" decoding=\"async\" width=\"600\" height=\"177\" class=\"wp-image-2559\" style=\"width: 600px;\" src=\"https:\/\/omar-iqbal.com\/wp-content\/uploads\/2022\/08\/2.png\" alt=\"\" srcset=\"https:\/\/omar-iqbal.com\/wp-content\/uploads\/2022\/08\/2.png 1366w, https:\/\/omar-iqbal.com\/wp-content\/uploads\/2022\/08\/2-300x89.png 300w, https:\/\/omar-iqbal.com\/wp-content\/uploads\/2022\/08\/2-1024x302.png 1024w, https:\/\/omar-iqbal.com\/wp-content\/uploads\/2022\/08\/2-768x227.png 768w, https:\/\/omar-iqbal.com\/wp-content\/uploads\/2022\/08\/2-380x112.png 380w, https:\/\/omar-iqbal.com\/wp-content\/uploads\/2022\/08\/2-800x236.png 800w, https:\/\/omar-iqbal.com\/wp-content\/uploads\/2022\/08\/2-1160x342.png 1160w\" sizes=\"auto, (max-width: 600px) 100vw, 600px\" \/><\/li>\n\n\n\n<li>Now as you see after the operation is complete this purchase order is now confirmed.<\/li>\n\n\n\n<li><img loading=\"lazy\" decoding=\"async\" width=\"600\" height=\"194\" class=\"wp-image-2560\" style=\"width: 600px;\" src=\"https:\/\/omar-iqbal.com\/wp-content\/uploads\/2022\/08\/3.png\" alt=\"\" srcset=\"https:\/\/omar-iqbal.com\/wp-content\/uploads\/2022\/08\/3.png 1366w, https:\/\/omar-iqbal.com\/wp-content\/uploads\/2022\/08\/3-300x97.png 300w, https:\/\/omar-iqbal.com\/wp-content\/uploads\/2022\/08\/3-1024x331.png 1024w, https:\/\/omar-iqbal.com\/wp-content\/uploads\/2022\/08\/3-768x248.png 768w, https:\/\/omar-iqbal.com\/wp-content\/uploads\/2022\/08\/3-380x123.png 380w, https:\/\/omar-iqbal.com\/wp-content\/uploads\/2022\/08\/3-800x258.png 800w, https:\/\/omar-iqbal.com\/wp-content\/uploads\/2022\/08\/3-1160x374.png 1160w\" sizes=\"auto, (max-width: 600px) 100vw, 600px\" \/><\/li>\n<\/ol>\n\n\n\n<h3 id=\"confirm-purchase-order-using-x-code\" class=\"wp-block-heading\">Confirm Purchase Order using X++ code<\/h3>\n\n\n\n<p>Now we will see how to do that process through X++ code.<\/p>\n\n\n\n<p>Use this given method below to confirm a purchase order in X++ using <strong>PurchFormLetter <\/strong>class.<\/p>\n\n\n\n<p>The parameter passed to this method is purchase order id which needs to be confirmed.<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">public void purchaseOrderConfirm(PurchId _purchId)\n    {\n        PurchFormLetter             purchFormLetter;\n        PurchFormletterParmData     purchFormLetterParmData;\n        PurchParmUpdate             purchParmUpdate;\n        PurchParmTable              purchParmTable;\n        PurchTable                  purchTable;\n\n        purchTable = PurchTable::find(_purchId);\n\n        ttsBegin;\n\n        purchFormLetterParmData = PurchFormletterParmData::newData(DocumentStatus::PurchaseOrder,\n                                                                   VersioningUpdateType::Initial);\n\n        purchFormLetterParmData.parmOnlyCreateParmUpdate(true);\n        purchFormLetterParmData.createData(false);\n        purchParmUpdate = purchFormLetterParmData.parmParmUpdate();\n\n        purchParmTable.clear();\n        purchParmTable.TransDate                = DateTimeUtil::getSystemDate(DateTimeUtil::getUserPreferredTimeZone());\n        purchParmTable.DocumentDate             = DateTimeUtil::getSystemDate(DateTimeUtil::getUserPreferredTimeZone());\n        purchParmTable.Ordering                 = DocumentStatus::PurchaseOrder;\n        purchParmTable.ParmJobStatus            = ParmJobStatus::Waiting;\n        purchParmTable.PurchId                  = purchTable.PurchId;\n        purchParmTable.PurchName                = purchTable.PurchName;\n        purchParmTable.DeliveryName             = purchTable.DeliveryName;\n        purchParmTable.DeliveryPostalAddress    = purchTable.DeliveryPostalAddress;\n        purchParmTable.OrderAccount             = purchTable.OrderAccount;\n        purchParmTable.CurrencyCode             = purchTable.CurrencyCode;\n        purchParmTable.InvoiceAccount           = purchTable.InvoiceAccount;\n        purchParmTable.ParmId                   = purchParmUpdate.ParmId;\n        purchParmTable.insert();\n\n        purchFormLetter = PurchFormLetter::construct(DocumentStatus::PurchaseOrder);\n        purchFormLetter.transDate(DateTimeUtil::getSystemDate(DateTimeUtil::getUserPreferredTimeZone()));\n        purchFormLetter.proforma(false);\n        purchFormLetter.specQty(PurchUpdate::All);\n        purchFormLetter.purchTable(purchTable);\n\n        purchFormLetter.parmParmTableNum(purchParmTable.ParmId);\n        purchFormLetter.parmId(purchParmTable.ParmId);\n        purchFormLetter.purchParmUpdate(purchFormLetterParmData.parmParmUpdate());\n        purchFormLetter.run();\n\n        ttsCommit;\n    }\n<\/pre>\n\n\n\n<p>Thank you for reading this article hope you find it useful.<\/p>\n\n\n\n<p><a href=\"https:\/\/www.linkedin.com\/in\/omar-iqbal-here\/\" target=\"_blank\" rel=\"noreferrer noopener\">Omar Iqbal<\/a><\/p>\n\n\n\n<p>Technical Consultant<\/p>\n\n\n\n<p>References:<\/p>\n\n\n\n<ol class=\"wp-block-list\">\n<li><a href=\"https:\/\/dynamicsaxinsight.wordpress.com\/2015\/12\/28\/ax-2012-confirm-purchase-order-in-xpp\/\" target=\"_blank\" rel=\"noreferrer noopener\">https:\/\/dynamicsaxinsight.wordpress.com\/2015\/12\/28\/ax-2012-confirm-purchase-order-in-xpp\/<\/a><\/li>\n\n\n\n<li><a href=\"https:\/\/d365ffo.com\/2021\/04\/01\/d365ffo-ax-2012-confirm-purchase-order-in-x\/\" target=\"_blank\" rel=\"noreferrer noopener\">https:\/\/d365ffo.com\/2021\/04\/01\/d365ffo-ax-2012-confirm-purchase-order-in-x\/<\/a><\/li>\n\n\n\n<li><a href=\"http:\/\/axhelper.com\/?p=6019\" target=\"_blank\" rel=\"noreferrer noopener\">http:\/\/axhelper.com\/?p=6019<\/a><\/li>\n<\/ol>\n","protected":false},"excerpt":{"rendered":"In this article we will be focusing on confirmation of a purchase order using X++ code. Confirm Purchase&hellip;\n","protected":false},"author":1,"featured_media":2558,"comment_status":"closed","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_monsterinsights_skip_tracking":false,"_monsterinsights_sitenote_active":false,"_monsterinsights_sitenote_note":"","_monsterinsights_sitenote_category":0,"footnotes":""},"categories":[19,42,30],"tags":[58,21,20,33,56,57,31],"class_list":{"0":"post-2556","1":"post","2":"type-post","3":"status-publish","4":"format-standard","5":"has-post-thumbnail","7":"category-finance-operations","8":"category-microsoft-dynamics-ax","9":"category-x","10":"tag-confirmpurchaseorder","11":"tag-finance-operations","12":"tag-finops","13":"tag-microsoft-dynamics-ax","14":"tag-purchaseorder","15":"tag-purchaseorderconfirmation","16":"tag-x","17":"cs-entry","18":"cs-video-wrap"},"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.1.1 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Purchase order confirmation using X++ code - Omar Iqbal&#039;s Blog<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/omar-iqbal.com\/index.php\/2022\/09\/12\/purchase-order-confirmation-using-x-code\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Purchase order confirmation using X++ code - Omar Iqbal&#039;s Blog\" \/>\n<meta property=\"og:description\" content=\"In this article we will be focusing on confirmation of a purchase order using X++ code. Confirm Purchase&hellip;\" \/>\n<meta property=\"og:url\" content=\"https:\/\/omar-iqbal.com\/index.php\/2022\/09\/12\/purchase-order-confirmation-using-x-code\/\" \/>\n<meta property=\"og:site_name\" content=\"Omar Iqbal&#039;s Blog\" \/>\n<meta property=\"article:author\" content=\"https:\/\/www.facebook.com\/umerk26\" \/>\n<meta property=\"article:published_time\" content=\"2022-09-12T10:58:00+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2023-11-23T14:06:43+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/omar-iqbal.com\/wp-content\/uploads\/2022\/08\/1.png\" \/>\n\t<meta property=\"og:image:width\" content=\"1366\" \/>\n\t<meta property=\"og:image:height\" content=\"467\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"omar_iqbal\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@https:\/\/twitter.com\/omarshykh\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"omar_iqbal\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"2 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/omar-iqbal.com\/index.php\/2022\/09\/12\/purchase-order-confirmation-using-x-code\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/omar-iqbal.com\/index.php\/2022\/09\/12\/purchase-order-confirmation-using-x-code\/\"},\"author\":{\"name\":\"omar_iqbal\",\"@id\":\"https:\/\/omar-iqbal.com\/#\/schema\/person\/bf76b3bc6da3287f49fd4713189accd4\"},\"headline\":\"Purchase order confirmation using X++ code\",\"datePublished\":\"2022-09-12T10:58:00+00:00\",\"dateModified\":\"2023-11-23T14:06:43+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/omar-iqbal.com\/index.php\/2022\/09\/12\/purchase-order-confirmation-using-x-code\/\"},\"wordCount\":199,\"image\":{\"@id\":\"https:\/\/omar-iqbal.com\/index.php\/2022\/09\/12\/purchase-order-confirmation-using-x-code\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/omar-iqbal.com\/wp-content\/uploads\/2022\/08\/1.png\",\"keywords\":[\"ConfirmPurchaseOrder\",\"Finance &amp; Operations\",\"FinOps\",\"Microsoft Dynamics AX\",\"PurchaseOrder\",\"PurchaseOrderConfirmation\",\"X++\"],\"articleSection\":[\"Finance &amp; Operations\",\"Microsoft Dynamics AX\",\"X++\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/omar-iqbal.com\/index.php\/2022\/09\/12\/purchase-order-confirmation-using-x-code\/\",\"url\":\"https:\/\/omar-iqbal.com\/index.php\/2022\/09\/12\/purchase-order-confirmation-using-x-code\/\",\"name\":\"Purchase order confirmation using X++ code - Omar Iqbal&#039;s Blog\",\"isPartOf\":{\"@id\":\"https:\/\/omar-iqbal.com\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/omar-iqbal.com\/index.php\/2022\/09\/12\/purchase-order-confirmation-using-x-code\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/omar-iqbal.com\/index.php\/2022\/09\/12\/purchase-order-confirmation-using-x-code\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/omar-iqbal.com\/wp-content\/uploads\/2022\/08\/1.png\",\"datePublished\":\"2022-09-12T10:58:00+00:00\",\"dateModified\":\"2023-11-23T14:06:43+00:00\",\"author\":{\"@id\":\"https:\/\/omar-iqbal.com\/#\/schema\/person\/bf76b3bc6da3287f49fd4713189accd4\"},\"breadcrumb\":{\"@id\":\"https:\/\/omar-iqbal.com\/index.php\/2022\/09\/12\/purchase-order-confirmation-using-x-code\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/omar-iqbal.com\/index.php\/2022\/09\/12\/purchase-order-confirmation-using-x-code\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/omar-iqbal.com\/index.php\/2022\/09\/12\/purchase-order-confirmation-using-x-code\/#primaryimage\",\"url\":\"https:\/\/omar-iqbal.com\/wp-content\/uploads\/2022\/08\/1.png\",\"contentUrl\":\"https:\/\/omar-iqbal.com\/wp-content\/uploads\/2022\/08\/1.png\",\"width\":1366,\"height\":467},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/omar-iqbal.com\/index.php\/2022\/09\/12\/purchase-order-confirmation-using-x-code\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/omar-iqbal.com\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Finance &amp; Operations\",\"item\":\"https:\/\/omar-iqbal.com\/index.php\/category\/finance-operations\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"Purchase order confirmation using X++ code\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/omar-iqbal.com\/#website\",\"url\":\"https:\/\/omar-iqbal.com\/\",\"name\":\"Omar Iqbal&#039;s Blog\",\"description\":\"Associate Technical Consultant\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/omar-iqbal.com\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\/\/omar-iqbal.com\/#\/schema\/person\/bf76b3bc6da3287f49fd4713189accd4\",\"name\":\"omar_iqbal\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/omar-iqbal.com\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/77c8e6d449070e5f91d3609398694fed75736ca7b40f3b8b29a94259cb446d49?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/77c8e6d449070e5f91d3609398694fed75736ca7b40f3b8b29a94259cb446d49?s=96&d=mm&r=g\",\"caption\":\"omar_iqbal\"},\"sameAs\":[\"https:\/\/omar-iqbal.com\",\"https:\/\/www.facebook.com\/umerk26\",\"https:\/\/www.instagram.com\/omariqbal_here\/\",\"https:\/\/www.linkedin.com\/in\/omar-iqbal-here\/\",\"https:\/\/x.com\/https:\/\/twitter.com\/omarshykh\"],\"url\":\"https:\/\/omar-iqbal.com\/index.php\/author\/omar_iqbal\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Purchase order confirmation using X++ code - Omar Iqbal&#039;s Blog","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:\/\/omar-iqbal.com\/index.php\/2022\/09\/12\/purchase-order-confirmation-using-x-code\/","og_locale":"en_US","og_type":"article","og_title":"Purchase order confirmation using X++ code - Omar Iqbal&#039;s Blog","og_description":"In this article we will be focusing on confirmation of a purchase order using X++ code. Confirm Purchase&hellip;","og_url":"https:\/\/omar-iqbal.com\/index.php\/2022\/09\/12\/purchase-order-confirmation-using-x-code\/","og_site_name":"Omar Iqbal&#039;s Blog","article_author":"https:\/\/www.facebook.com\/umerk26","article_published_time":"2022-09-12T10:58:00+00:00","article_modified_time":"2023-11-23T14:06:43+00:00","og_image":[{"width":1366,"height":467,"url":"https:\/\/omar-iqbal.com\/wp-content\/uploads\/2022\/08\/1.png","type":"image\/png"}],"author":"omar_iqbal","twitter_card":"summary_large_image","twitter_creator":"@https:\/\/twitter.com\/omarshykh","twitter_misc":{"Written by":"omar_iqbal","Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/omar-iqbal.com\/index.php\/2022\/09\/12\/purchase-order-confirmation-using-x-code\/#article","isPartOf":{"@id":"https:\/\/omar-iqbal.com\/index.php\/2022\/09\/12\/purchase-order-confirmation-using-x-code\/"},"author":{"name":"omar_iqbal","@id":"https:\/\/omar-iqbal.com\/#\/schema\/person\/bf76b3bc6da3287f49fd4713189accd4"},"headline":"Purchase order confirmation using X++ code","datePublished":"2022-09-12T10:58:00+00:00","dateModified":"2023-11-23T14:06:43+00:00","mainEntityOfPage":{"@id":"https:\/\/omar-iqbal.com\/index.php\/2022\/09\/12\/purchase-order-confirmation-using-x-code\/"},"wordCount":199,"image":{"@id":"https:\/\/omar-iqbal.com\/index.php\/2022\/09\/12\/purchase-order-confirmation-using-x-code\/#primaryimage"},"thumbnailUrl":"https:\/\/omar-iqbal.com\/wp-content\/uploads\/2022\/08\/1.png","keywords":["ConfirmPurchaseOrder","Finance &amp; Operations","FinOps","Microsoft Dynamics AX","PurchaseOrder","PurchaseOrderConfirmation","X++"],"articleSection":["Finance &amp; Operations","Microsoft Dynamics AX","X++"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/omar-iqbal.com\/index.php\/2022\/09\/12\/purchase-order-confirmation-using-x-code\/","url":"https:\/\/omar-iqbal.com\/index.php\/2022\/09\/12\/purchase-order-confirmation-using-x-code\/","name":"Purchase order confirmation using X++ code - Omar Iqbal&#039;s Blog","isPartOf":{"@id":"https:\/\/omar-iqbal.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/omar-iqbal.com\/index.php\/2022\/09\/12\/purchase-order-confirmation-using-x-code\/#primaryimage"},"image":{"@id":"https:\/\/omar-iqbal.com\/index.php\/2022\/09\/12\/purchase-order-confirmation-using-x-code\/#primaryimage"},"thumbnailUrl":"https:\/\/omar-iqbal.com\/wp-content\/uploads\/2022\/08\/1.png","datePublished":"2022-09-12T10:58:00+00:00","dateModified":"2023-11-23T14:06:43+00:00","author":{"@id":"https:\/\/omar-iqbal.com\/#\/schema\/person\/bf76b3bc6da3287f49fd4713189accd4"},"breadcrumb":{"@id":"https:\/\/omar-iqbal.com\/index.php\/2022\/09\/12\/purchase-order-confirmation-using-x-code\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/omar-iqbal.com\/index.php\/2022\/09\/12\/purchase-order-confirmation-using-x-code\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/omar-iqbal.com\/index.php\/2022\/09\/12\/purchase-order-confirmation-using-x-code\/#primaryimage","url":"https:\/\/omar-iqbal.com\/wp-content\/uploads\/2022\/08\/1.png","contentUrl":"https:\/\/omar-iqbal.com\/wp-content\/uploads\/2022\/08\/1.png","width":1366,"height":467},{"@type":"BreadcrumbList","@id":"https:\/\/omar-iqbal.com\/index.php\/2022\/09\/12\/purchase-order-confirmation-using-x-code\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/omar-iqbal.com\/"},{"@type":"ListItem","position":2,"name":"Finance &amp; Operations","item":"https:\/\/omar-iqbal.com\/index.php\/category\/finance-operations\/"},{"@type":"ListItem","position":3,"name":"Purchase order confirmation using X++ code"}]},{"@type":"WebSite","@id":"https:\/\/omar-iqbal.com\/#website","url":"https:\/\/omar-iqbal.com\/","name":"Omar Iqbal&#039;s Blog","description":"Associate Technical Consultant","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/omar-iqbal.com\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/omar-iqbal.com\/#\/schema\/person\/bf76b3bc6da3287f49fd4713189accd4","name":"omar_iqbal","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/omar-iqbal.com\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/77c8e6d449070e5f91d3609398694fed75736ca7b40f3b8b29a94259cb446d49?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/77c8e6d449070e5f91d3609398694fed75736ca7b40f3b8b29a94259cb446d49?s=96&d=mm&r=g","caption":"omar_iqbal"},"sameAs":["https:\/\/omar-iqbal.com","https:\/\/www.facebook.com\/umerk26","https:\/\/www.instagram.com\/omariqbal_here\/","https:\/\/www.linkedin.com\/in\/omar-iqbal-here\/","https:\/\/x.com\/https:\/\/twitter.com\/omarshykh"],"url":"https:\/\/omar-iqbal.com\/index.php\/author\/omar_iqbal\/"}]}},"_links":{"self":[{"href":"https:\/\/omar-iqbal.com\/index.php\/wp-json\/wp\/v2\/posts\/2556","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/omar-iqbal.com\/index.php\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/omar-iqbal.com\/index.php\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/omar-iqbal.com\/index.php\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/omar-iqbal.com\/index.php\/wp-json\/wp\/v2\/comments?post=2556"}],"version-history":[{"count":6,"href":"https:\/\/omar-iqbal.com\/index.php\/wp-json\/wp\/v2\/posts\/2556\/revisions"}],"predecessor-version":[{"id":2588,"href":"https:\/\/omar-iqbal.com\/index.php\/wp-json\/wp\/v2\/posts\/2556\/revisions\/2588"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/omar-iqbal.com\/index.php\/wp-json\/wp\/v2\/media\/2558"}],"wp:attachment":[{"href":"https:\/\/omar-iqbal.com\/index.php\/wp-json\/wp\/v2\/media?parent=2556"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/omar-iqbal.com\/index.php\/wp-json\/wp\/v2\/categories?post=2556"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/omar-iqbal.com\/index.php\/wp-json\/wp\/v2\/tags?post=2556"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}