<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: pricing simulation in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/pricing-simulation/m-p/1634736#M283095</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  Check material existence through table MVKE for sales&lt;/P&gt;&lt;P&gt;area. Nothing specific like existence w.r.t customer.&lt;/P&gt;&lt;P&gt;Kindly confirm the same with your functional consultant.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kind Regards&lt;/P&gt;&lt;P&gt;Eswar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 15 Sep 2006 18:04:27 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-09-15T18:04:27Z</dc:date>
    <item>
      <title>pricing simulation</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/pricing-simulation/m-p/1634730#M283089</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;i have written the following code but i dont see any result in the condition_ex.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;selection-screen begin of block b1 with frame title text-001.&lt;/P&gt;&lt;P&gt;parameters : p_kunnr like kna1-kunnr,&lt;/P&gt;&lt;P&gt;             p_matnr like vbap-matnr,&lt;/P&gt;&lt;P&gt;             p_vkorg like vbak-vkorg,&lt;/P&gt;&lt;P&gt;             p_vtweg like vbak-vtweg,&lt;/P&gt;&lt;P&gt;             p_spart like vbak-spart.&lt;/P&gt;&lt;P&gt;selection-screen end of block b1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data: doctype(4) value 'OR',&lt;/P&gt;&lt;P&gt;       itemno(6) type N value '000010',&lt;/P&gt;&lt;P&gt;       quantity(13) type N value '0000000000001',&lt;/P&gt;&lt;P&gt;       partnertype like knvp-parvw value 'AG'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data : order_condition_ex like bapicond occurs 0 with header line.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data: order_header_in like bapisdhead occurs 1 with header line,&lt;/P&gt;&lt;P&gt;      order_items_in like bapiitemin occurs 1 with header line,&lt;/P&gt;&lt;P&gt;      order_schedule_in like bapischdl occurs 1 with header line,&lt;/P&gt;&lt;P&gt;      order_partners like bapipartnr occurs 1 with header line.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      order_header_in-doc_type = doctype.&lt;/P&gt;&lt;P&gt;      order_header_in-sales_org = p_vkorg.&lt;/P&gt;&lt;P&gt;      order_header_in-distr_chan = p_vtweg.&lt;/P&gt;&lt;P&gt;      order_header_in-division = p_spart.&lt;/P&gt;&lt;P&gt;      order_header_in-purch_date = sy-datum.&lt;/P&gt;&lt;P&gt;      append order_header_in.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      order_items_in-itm_number = itemno.&lt;/P&gt;&lt;P&gt;      order_items_in-material = p_matnr.&lt;/P&gt;&lt;P&gt;      order_items_in-req_qty = quantity.&lt;/P&gt;&lt;P&gt;      append order_items_in.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      order_schedule_in-itm_number = itemno.&lt;/P&gt;&lt;P&gt;      order_schedule_in-req_qty = quantity.&lt;/P&gt;&lt;P&gt;      append order_schedule_in.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;     order_schedule_in-req_date = sy-datum.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      order_partners-partn_role = partnertype.&lt;/P&gt;&lt;P&gt;      order_partners-partn_numb = p_kunnr.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;     order_partners-itm_number = itemno.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;      append order_partners.&lt;/P&gt;&lt;P&gt;      &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'Z_BAPI_SALESORDER_SIMULATE'&lt;/P&gt;&lt;P&gt;  EXPORTING&lt;/P&gt;&lt;P&gt;    ORDER_HEADER_IN           = order_header_in&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  CONVERT_PARVW_AUART       = ' '&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  DELAY                     = 0&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;IMPORTING&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  SALESDOCUMENT             =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  ORDER_HEADER_EX           =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  SOLD_TO_PARTY             =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  SHIP_TO_PARTY             =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  BILLING_PARTY             =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  RETURN                    =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  ORDER_HEADER              =&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;  TABLES&lt;/P&gt;&lt;P&gt;    ORDER_ITEMS_IN            = order_items_in&lt;/P&gt;&lt;P&gt;    ORDER_PARTNERS            = order_partners&lt;/P&gt;&lt;P&gt;   ORDER_SCHEDULE_IN         =  order_schedule_in&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  ORDER_CONDITIONS_IN       =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  ORDER_ITEMS_OUT           =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  ORDER_CFGS_REF            =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  ORDER_CFGS_INST           =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  ORDER_CFGS_PART_OF        =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  ORDER_CFGS_VALUE          =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  ORDER_CFGS_BLOB           =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  ORDER_CCARD               =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  ORDER_CCARD_EX            =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  ORDER_SCHEDULE_EX         =&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;   ORDER_CONDITION_EX         =   order_condition_ex&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  ORDER_INCOMPLETE          =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  MESSAGETABLE              =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  EXTENSIONIN               =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  PARTNERADDRESSES          =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  WMDVSX                    =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  WMDVEX                    =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  Z_AVAIL_OUT               =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  ORDER_SCHEDULE_IN2        =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  ORDER_SCHEDULE_EX2        =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  ORDER_ITEMS_IN2           =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  ORDER_PARTNERS2           =&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;          .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;loop at order_condition_ex .&lt;/P&gt;&lt;P&gt;write:/ order_condition_ex.&lt;/P&gt;&lt;P&gt;write: / 'output'.&lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 15 Sep 2006 14:56:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/pricing-simulation/m-p/1634730#M283089</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-09-15T14:56:04Z</dc:date>
    </item>
    <item>
      <title>Re: pricing simulation</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/pricing-simulation/m-p/1634731#M283090</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi Priyanka,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;loop at order_condition_ex .&lt;/P&gt;&lt;P&gt;*write:/ order_condition_ex.    " since it is an internal table &lt;/P&gt;&lt;P&gt;*write: / 'output'.&lt;/P&gt;&lt;P&gt; write : order_condition_ex-field1,&lt;/P&gt;&lt;P&gt;         order_condition_ex-field2.        &lt;/P&gt;&lt;P&gt;endloop.&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 15 Sep 2006 15:00:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/pricing-simulation/m-p/1634731#M283090</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-09-15T15:00:20Z</dc:date>
    </item>
    <item>
      <title>Re: pricing simulation</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/pricing-simulation/m-p/1634732#M283091</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You will need to change your quantity to 0000000001000 to set it to 1.  There is an inherent 3 decimal places on the quantity fields.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 15 Sep 2006 15:01:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/pricing-simulation/m-p/1634732#M283091</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-09-15T15:01:12Z</dc:date>
    </item>
    <item>
      <title>Re: pricing simulation</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/pricing-simulation/m-p/1634733#M283092</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Priyanka,&lt;/P&gt;&lt;P&gt;    To check if the bapi behaved as expected, you should not loop at the order_condition_ex but check the return table.&amp;lt;b&amp;gt;In you case the MESSAGES table&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In a normal bapi, areturn table will be there which decribes what has happened .&lt;/P&gt;&lt;P&gt;If this is just simulation, then you cannot find the entries in the database.&lt;/P&gt;&lt;P&gt;If you want to see the changes in the database,then commit the transaction using&lt;/P&gt;&lt;P&gt;bapi_transaction_commit.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;ravi&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: Ravi Kanth Talagana&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 15 Sep 2006 15:01:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/pricing-simulation/m-p/1634733#M283092</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-09-15T15:01:16Z</dc:date>
    </item>
    <item>
      <title>Re: pricing simulation</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/pricing-simulation/m-p/1634734#M283093</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;how can we check the 'sold to' customer no for a given material.I am told to give customer no,material no and sales area as input.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 15 Sep 2006 17:14:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/pricing-simulation/m-p/1634734#M283093</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-09-15T17:14:37Z</dc:date>
    </item>
    <item>
      <title>Re: pricing simulation</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/pricing-simulation/m-p/1634735#M283094</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;table: KNVP&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 15 Sep 2006 17:37:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/pricing-simulation/m-p/1634735#M283094</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-09-15T17:37:47Z</dc:date>
    </item>
    <item>
      <title>Re: pricing simulation</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/pricing-simulation/m-p/1634736#M283095</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  Check material existence through table MVKE for sales&lt;/P&gt;&lt;P&gt;area. Nothing specific like existence w.r.t customer.&lt;/P&gt;&lt;P&gt;Kindly confirm the same with your functional consultant.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kind Regards&lt;/P&gt;&lt;P&gt;Eswar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 15 Sep 2006 18:04:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/pricing-simulation/m-p/1634736#M283095</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-09-15T18:04:27Z</dc:date>
    </item>
    <item>
      <title>Re: pricing simulation</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/pricing-simulation/m-p/1634737#M283096</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;i am getting the error document type 'OR' not found in messages table.I have tried to run using the same data in se37 and got the output in order_condition_ex.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;selection-screen begin of block b1 with frame title text-001.&lt;/P&gt;&lt;P&gt;parameters : p_kunnr like kna1-kunnr,&lt;/P&gt;&lt;P&gt;             p_matnr like vbap-matnr,&lt;/P&gt;&lt;P&gt;             p_vkorg like vbak-vkorg,&lt;/P&gt;&lt;P&gt;             p_vtweg like vbak-vtweg,&lt;/P&gt;&lt;P&gt;             p_spart like vbak-spart.&lt;/P&gt;&lt;P&gt;selection-screen end of block b1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data: doctype like bapisdhead-doc_type value 'OR',&lt;/P&gt;&lt;P&gt;       itemno like bapiitemin-itm_number value '000010',&lt;/P&gt;&lt;P&gt;       quantity(13) type N value '0000000000001',&lt;/P&gt;&lt;P&gt;       partnertype like knvp-parvw value 'AG'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data :count type i.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data : begin of order_condition_ex occurs 0.&lt;/P&gt;&lt;P&gt;       include structure bapicond.&lt;/P&gt;&lt;P&gt;data: end of order_condition_ex.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data: begin of order_header_in.&lt;/P&gt;&lt;P&gt;      include structure bapisdhead.&lt;/P&gt;&lt;P&gt;data: end of order_header_in.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data: begin of order_items_in occurs 1.&lt;/P&gt;&lt;P&gt;      include structure bapiitemin.&lt;/P&gt;&lt;P&gt;data: end of order_items_in.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data: begin of order_partners occurs 1.&lt;/P&gt;&lt;P&gt;      include structure bapipartnr.&lt;/P&gt;&lt;P&gt;data:end of order_partners.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data: begin of order_schedule_in occurs 1.&lt;/P&gt;&lt;P&gt;      include structure bapischdl.&lt;/P&gt;&lt;P&gt;data:end of order_schedule_in.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data: begin of messagetable occurs 0 .&lt;/P&gt;&lt;P&gt;      Include structure bapiret2.&lt;/P&gt;&lt;P&gt;data: end of messagetable.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      order_header_in-doc_type = doctype.&lt;/P&gt;&lt;P&gt;      order_header_in-sales_org = p_vkorg.&lt;/P&gt;&lt;P&gt;      order_header_in-distr_chan = p_vtweg.&lt;/P&gt;&lt;P&gt;      order_header_in-division = p_spart.&lt;/P&gt;&lt;P&gt;      order_header_in-purch_date = sy-datum .&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  order_header_in-req_date_h = sy-datum.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      order_items_in-itm_number = itemno.&lt;/P&gt;&lt;P&gt;      order_items_in-material = p_matnr.&lt;/P&gt;&lt;P&gt;      order_items_in-req_qty = quantity.&lt;/P&gt;&lt;P&gt;      append order_items_in.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      order_schedule_in-itm_number = itemno.&lt;/P&gt;&lt;P&gt;      order_schedule_in-req_qty = quantity.&lt;/P&gt;&lt;P&gt;      append order_schedule_in.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;    order_schedule_in-req_date = sy-datum.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      order_partners-partn_role = partnertype.&lt;/P&gt;&lt;P&gt;      order_partners-partn_numb = p_kunnr.&lt;/P&gt;&lt;P&gt;      append order_partners.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;     order_partners-itm_number = itemno.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'Z_BAPI_SALESORDER_SIMULATE'&lt;/P&gt;&lt;P&gt;  EXPORTING&lt;/P&gt;&lt;P&gt;    ORDER_HEADER_IN           = order_header_in&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  CONVERT_PARVW_AUART       = ' '&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  DELAY                     = 0&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;IMPORTING&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  SALESDOCUMENT             =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  ORDER_HEADER_EX           =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  SOLD_TO_PARTY             =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  SHIP_TO_PARTY             =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  BILLING_PARTY             =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  RETURN                    =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  ORDER_HEADER              =&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;  TABLES&lt;/P&gt;&lt;P&gt;    ORDER_ITEMS_IN            = order_items_in&lt;/P&gt;&lt;P&gt;    ORDER_PARTNERS            = order_partners&lt;/P&gt;&lt;P&gt;   ORDER_SCHEDULE_IN         =  order_schedule_in&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  ORDER_CONDITIONS_IN       =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  ORDER_ITEMS_OUT           =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  ORDER_CFGS_REF            =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  ORDER_CFGS_INST           =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  ORDER_CFGS_PART_OF        =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  ORDER_CFGS_VALUE          =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  ORDER_CFGS_BLOB           =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  ORDER_CCARD               =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  ORDER_CCARD_EX            =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  ORDER_SCHEDULE_EX         =&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;   ORDER_CONDITION_EX         =   order_condition_ex&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  ORDER_INCOMPLETE          =&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;   MESSAGETABLE              = messagetable&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  EXTENSIONIN               =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  PARTNERADDRESSES          =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  WMDVSX                    =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  WMDVEX                    =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  Z_AVAIL_OUT               =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  ORDER_SCHEDULE_IN2        =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  ORDER_SCHEDULE_EX2        =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  ORDER_ITEMS_IN2           =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  ORDER_PARTNERS2           =&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I really appreciate if anyone can help me in solving this problem.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 15 Sep 2006 21:08:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/pricing-simulation/m-p/1634737#M283096</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-09-15T21:08:28Z</dc:date>
    </item>
    <item>
      <title>Re: pricing simulation</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/pricing-simulation/m-p/1634738#M283097</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;thanks all for your help.Its just a silly mistake.doctype 'OR' is internally stored as 'TA' and i didnt knew that.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 15 Sep 2006 22:02:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/pricing-simulation/m-p/1634738#M283097</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-09-15T22:02:49Z</dc:date>
    </item>
  </channel>
</rss>

