{"id":1005,"date":"2014-05-27T10:53:18","date_gmt":"2014-05-27T09:53:18","guid":{"rendered":"http:\/\/oprsteny.cz\/?p=1005"},"modified":"2014-05-27T10:53:18","modified_gmt":"2014-05-27T09:53:18","slug":"abap-currency-conversions","status":"publish","type":"post","link":"https:\/\/oprsteny.cz\/?p=1005","title":{"rendered":"ABAP &#8211; Currency conversions"},"content":{"rendered":"<p><img loading=\"lazy\" decoding=\"async\" data-attachment-id=\"358\" data-permalink=\"https:\/\/oprsteny.cz\/?attachment_id=358\" data-orig-file=\"https:\/\/oprsteny.cz\/wp-content\/uploads\/SAP.jpg\" data-orig-size=\"44,50\" data-comments-opened=\"1\" data-image-meta=\"{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;Picasa&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;1365690880&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;}\" data-image-title=\"SAP\" data-image-description=\"\" data-image-caption=\"\" data-medium-file=\"https:\/\/oprsteny.cz\/wp-content\/uploads\/SAP.jpg\" data-large-file=\"https:\/\/oprsteny.cz\/wp-content\/uploads\/SAP.jpg\" class=\"size-full wp-image-358 alignleft\" src=\"http:\/\/oprsteny.cz\/wp-content\/uploads\/SAP.jpg\" alt=\"SAP\" width=\"44\" height=\"50\" \/>In this article I&#8217;d like to show an easy approach on how to convert an amount given in one currency to another currency.<!--more--><\/p>\n<pre lang=\"abap\">DATA:\r\n  l_in(15) TYPE p DECIMALS 5,\r\n  l_out(15) TYPE p DECIMALS 5.\r\n\r\nl_in = 1.\r\n\r\nCALL FUNCTION 'CONVERT_TO_LOCAL_CURRENCY'\r\n  EXPORTING\r\n    date             = sy-datum\r\n    foreign_amount   = l_in\r\n    foreign_currency = 'EUR'\r\n    local_currency   = 'DKK'\r\n  IMPORTING\r\n    local_amount     = l_out\r\n  EXCEPTIONS\r\n    no_rate_found    = 1\r\n    overflow         = 2\r\n    no_factors_found = 3\r\n    no_spread_found  = 4\r\n    derived_2_times  = 5\r\n    OTHERS           = 6.\r\nIF sy-subrc = 0.\r\n  WRITE: l_in, 'EUR = ', l_out, 'DKK'.\r\nENDIF.<\/pre>\n<p>Result:<br \/>\n<a href=\"http:\/\/oprsteny.cz\/wp-content\/uploads\/CURRENCY_CONVERSION011.png\"><img loading=\"lazy\" decoding=\"async\" data-attachment-id=\"1008\" data-permalink=\"https:\/\/oprsteny.cz\/?attachment_id=1008\" data-orig-file=\"https:\/\/oprsteny.cz\/wp-content\/uploads\/CURRENCY_CONVERSION011.png\" data-orig-size=\"388,33\" data-comments-opened=\"1\" data-image-meta=\"{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;}\" data-image-title=\"01 Currency conversion\" data-image-description=\"\" data-image-caption=\"\" data-medium-file=\"https:\/\/oprsteny.cz\/wp-content\/uploads\/CURRENCY_CONVERSION011-300x25.png\" data-large-file=\"https:\/\/oprsteny.cz\/wp-content\/uploads\/CURRENCY_CONVERSION011.png\" class=\"alignnone size-medium wp-image-1008\" src=\"http:\/\/oprsteny.cz\/wp-content\/uploads\/CURRENCY_CONVERSION011-300x25.png\" alt=\"01 Currency conversion\" width=\"300\" height=\"25\" srcset=\"https:\/\/oprsteny.cz\/wp-content\/uploads\/CURRENCY_CONVERSION011-300x25.png 300w, https:\/\/oprsteny.cz\/wp-content\/uploads\/CURRENCY_CONVERSION011.png 388w\" sizes=\"auto, (max-width: 300px) 100vw, 300px\" \/><\/a><\/p>\n<p><strong>IMPORTANT NOTE (valid at 2014-05-27):<\/strong> It is VERY\u00a0important to use variables defined equally &#8211;\u00a0having the same\u00a0precision\/decimal places and length. Otherwise the results might be quite surprising: check the following modification with different decimal precision on INPUT and OUTPUT<\/p>\n<pre lang=\"abap\">DATA:\r\n  l_in(15) TYPE p DECIMALS 5,\r\n  l_out(15) TYPE p <span style=\"font-family: courier; color: #ff6600;\">DECIMALS 3.<\/span>\r\n\r\nl_in = 1.\r\n\r\nCALL FUNCTION 'CONVERT_TO_LOCAL_CURRENCY'\r\n  EXPORTING\r\n    date             = sy-datum\r\n    foreign_amount   = l_in\r\n    foreign_currency = 'EUR'\r\n    local_currency   = 'DKK'\r\n  IMPORTING\r\n    local_amount     = l_out\r\n  EXCEPTIONS\r\n    no_rate_found    = 1\r\n    overflow         = 2\r\n    no_factors_found = 3\r\n    no_spread_found  = 4\r\n    derived_2_times  = 5\r\n    OTHERS           = 6.\r\nIF sy-subrc = 0.\r\n  WRITE: l_in, 'EUR = ', l_out, 'DKK'.\r\nENDIF.<\/pre>\n<p>Result:<br \/>\n<a href=\"http:\/\/oprsteny.cz\/wp-content\/uploads\/CURRENCY_CONVERSION02.png\"><img loading=\"lazy\" decoding=\"async\" data-attachment-id=\"1007\" data-permalink=\"https:\/\/oprsteny.cz\/?attachment_id=1007\" data-orig-file=\"https:\/\/oprsteny.cz\/wp-content\/uploads\/CURRENCY_CONVERSION02.png\" data-orig-size=\"379,35\" data-comments-opened=\"1\" data-image-meta=\"{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;}\" data-image-title=\"02 Currency conversion\" data-image-description=\"\" data-image-caption=\"\" data-medium-file=\"https:\/\/oprsteny.cz\/wp-content\/uploads\/CURRENCY_CONVERSION02-300x27.png\" data-large-file=\"https:\/\/oprsteny.cz\/wp-content\/uploads\/CURRENCY_CONVERSION02.png\" class=\"alignnone size-medium wp-image-1007\" src=\"http:\/\/oprsteny.cz\/wp-content\/uploads\/CURRENCY_CONVERSION02-300x27.png\" alt=\"02 Currency conversion\" width=\"300\" height=\"27\" srcset=\"https:\/\/oprsteny.cz\/wp-content\/uploads\/CURRENCY_CONVERSION02-300x27.png 300w, https:\/\/oprsteny.cz\/wp-content\/uploads\/CURRENCY_CONVERSION02.png 379w\" sizes=\"auto, (max-width: 300px) 100vw, 300px\" \/><\/a><\/p>\n","protected":false},"excerpt":{"rendered":"<p>In this article I&#8217;d like to show an easy approach on how to convert an amount given in one currency to another currency.<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"jetpack_post_was_ever_published":false,"_jetpack_newsletter_access":"","_jetpack_dont_email_post_to_subs":false,"_jetpack_newsletter_tier_id":0,"_jetpack_memberships_contains_paywalled_content":false,"_jetpack_memberships_contains_paid_content":false,"footnotes":"","jetpack_publicize_message":"ABAP - Currency conversions","jetpack_publicize_feature_enabled":true,"jetpack_social_post_already_shared":true,"jetpack_social_options":{"image_generator_settings":{"template":"highway","default_image_id":0,"font":"","enabled":false},"version":2}},"categories":[16,9],"tags":[293,291,290,294,292],"class_list":["post-1005","post","type-post","status-publish","format-standard","hentry","category-abap","category-development","tag-convert","tag-convert_to_foreign_currency","tag-convert_to_local_currency","tag-currency","tag-read_exchange_rate"],"jetpack_publicize_connections":[],"jetpack_featured_media_url":"","jetpack_sharing_enabled":true,"jetpack_shortlink":"https:\/\/wp.me\/p3nYbe-gd","jetpack-related-posts":[],"_links":{"self":[{"href":"https:\/\/oprsteny.cz\/index.php?rest_route=\/wp\/v2\/posts\/1005","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/oprsteny.cz\/index.php?rest_route=\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/oprsteny.cz\/index.php?rest_route=\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/oprsteny.cz\/index.php?rest_route=\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/oprsteny.cz\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=1005"}],"version-history":[{"count":1,"href":"https:\/\/oprsteny.cz\/index.php?rest_route=\/wp\/v2\/posts\/1005\/revisions"}],"predecessor-version":[{"id":1009,"href":"https:\/\/oprsteny.cz\/index.php?rest_route=\/wp\/v2\/posts\/1005\/revisions\/1009"}],"wp:attachment":[{"href":"https:\/\/oprsteny.cz\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=1005"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/oprsteny.cz\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=1005"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/oprsteny.cz\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=1005"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}