<?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: CU50 simulation and get values in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/cu50-simulation-and-get-values/m-p/1134909#M112752</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Marc,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am wondering if you have been able to fix it. I have the same requirement. I need to simulate CU50 for mass creation of material variants. I would appreciate if you can please help me.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Arvind&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 16 Jan 2009 21:59:15 GMT</pubDate>
    <dc:creator>maravind</dc:creator>
    <dc:date>2009-01-16T21:59:15Z</dc:date>
    <item>
      <title>CU50 simulation and get values</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/cu50-simulation-and-get-values/m-p/1134906#M112749</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi, (sorry for my english because i'm french)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i'm writing a CU50 simulation program and i have a problem when reading the values of a charcteristic.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;All is correct unless the read characteristic has no value (values are assigned by rules on variant table).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here are the functions i use :&lt;/P&gt;&lt;P&gt;CUX1_CFG_NEW&lt;/P&gt;&lt;P&gt;CAVC_I_CHARS_GET_ALLOWED_VALS&lt;/P&gt;&lt;P&gt;CAVC_I_CHARS_GET_VALID_VALS&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Which function should i use when i want to read the allowed and the valid values for a characteristic which all values are assigned by rules on variant table ?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 01 Feb 2006 17:30:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/cu50-simulation-and-get-values/m-p/1134906#M112749</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-02-01T17:30:50Z</dc:date>
    </item>
    <item>
      <title>Re: CU50 simulation and get values</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/cu50-simulation-and-get-values/m-p/1134907#M112750</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Marc,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please use function module :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CARD_TABLE_SELECT_LINES  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'CARD_TABLE_SELECT_LINES'&lt;/P&gt;&lt;P&gt;    EXPORTING&lt;/P&gt;&lt;P&gt;      VAR_TAB             = P_TAB  "table name &lt;/P&gt;&lt;P&gt;      FL_WITH_ENTRIES     = C_X&lt;/P&gt;&lt;P&gt;    TABLES&lt;/P&gt;&lt;P&gt;      SELECT_WHERE_VALUES = I_CHAR_VAL  "Char Values&lt;/P&gt;&lt;P&gt;      VAR_TAB_ENTRIES     = I_VAR_TAB_N&lt;/P&gt;&lt;P&gt;    EXCEPTIONS&lt;/P&gt;&lt;P&gt;      WARNING             = 1&lt;/P&gt;&lt;P&gt;      ERROR               = 2&lt;/P&gt;&lt;P&gt;      OTHERS              = 3.&lt;/P&gt;&lt;P&gt;  IF SY-SUBRC &amp;lt;&amp;gt; 0.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;        WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;  ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  SORT I_VAR_TAB_N BY VTLINNOINT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Need Any help on VC please let me know.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Lanka&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 01 Feb 2006 17:36:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/cu50-simulation-and-get-values/m-p/1134907#M112750</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-02-01T17:36:33Z</dc:date>
    </item>
    <item>
      <title>Re: CU50 simulation and get values</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/cu50-simulation-and-get-values/m-p/1134908#M112751</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for your response but your solution gives all the values (the rules are not played so the values are not constraint). Another idea ?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 02 Feb 2006 10:52:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/cu50-simulation-and-get-values/m-p/1134908#M112751</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-02-02T10:52:48Z</dc:date>
    </item>
    <item>
      <title>Re: CU50 simulation and get values</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/cu50-simulation-and-get-values/m-p/1134909#M112752</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Marc,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am wondering if you have been able to fix it. I have the same requirement. I need to simulate CU50 for mass creation of material variants. I would appreciate if you can please help me.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Arvind&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 16 Jan 2009 21:59:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/cu50-simulation-and-get-values/m-p/1134909#M112752</guid>
      <dc:creator>maravind</dc:creator>
      <dc:date>2009-01-16T21:59:15Z</dc:date>
    </item>
    <item>
      <title>Re: CU50 simulation and get values</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/cu50-simulation-and-get-values/m-p/1134910#M112753</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Murthy,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;We have a similar kind of requirement to simulate the costing for different combination of configuration materils...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i want to know,  is it possible to write a report and get costing details as similar to CU50...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if it is possible, please share with me the sample code or related information...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards, Sri&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 26 Oct 2009 07:07:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/cu50-simulation-and-get-values/m-p/1134910#M112753</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-10-26T07:07:24Z</dc:date>
    </item>
    <item>
      <title>Re: CU50 simulation and get values</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/cu50-simulation-and-get-values/m-p/1134911#M112754</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Murthy,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;We have a similar kind of requirement to simulate the costing for different combination of configuration materils...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i want to know,  is it possible to write a report and get costing details as similar to CU50...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if it is possible, please share with me the sample code or related information...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards, Sri&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 26 Oct 2009 07:07:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/cu50-simulation-and-get-values/m-p/1134911#M112754</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-10-26T07:07:28Z</dc:date>
    </item>
    <item>
      <title>Re: CU50 simulation and get values</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/cu50-simulation-and-get-values/m-p/1134912#M112755</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Murthy,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is there is anyway to read the characteristic value data from CU50 screen ? after simulating values i need to capture those values , so is there is any way to get the data &amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please help in this regard,&lt;/P&gt;&lt;P&gt;Thanks ,&lt;/P&gt;&lt;P&gt;Gayathri.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 16 Nov 2009 05:57:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/cu50-simulation-and-get-values/m-p/1134912#M112755</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-11-16T05:57:18Z</dc:date>
    </item>
    <item>
      <title>Re: CU50 simulation and get values</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/cu50-simulation-and-get-values/m-p/1134913#M112756</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear murthy,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have a an issue with tcode  CU50.  Here we are trying to create a quotation and order from external system.  Our materials are configurable . Suppose if a material have  35 characters we will give only few of them to customer to select as option. I know that limited option is maintained at Cu50. By using the fm CE_C_PROCESSING i can see that screen and characteristics. Can you give me some idea how to fetch that into a table . I am asking you by seeing this thread .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Madhu&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 22 Mar 2010 17:04:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/cu50-simulation-and-get-values/m-p/1134913#M112756</guid>
      <dc:creator>madhu_vadlamani</dc:creator>
      <dc:date>2010-03-22T17:04:09Z</dc:date>
    </item>
    <item>
      <title>Re: CU50 simulation and get values</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/cu50-simulation-and-get-values/m-p/1134914#M112757</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I need help where to read the values entered in the configuration editor of CU50.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Jun 2011 17:54:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/cu50-simulation-and-get-values/m-p/1134914#M112757</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-06-15T17:54:38Z</dc:date>
    </item>
    <item>
      <title>Re: CU50 simulation and get values</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/cu50-simulation-and-get-values/m-p/1134915#M112758</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;You can use the FM 'BAPI_UI_GETDETAIL' to read the Characteristic Grouping detail in CU50.&lt;/P&gt;&lt;P&gt;You can use the FM 'BAPI_UI_SAVEM' or IDOC 'VCUI_SAVEM02' to create Characteristic Grouping tabs in CU50.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this solves your query.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Bhawit Kumar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 01 Sep 2011 13:39:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/cu50-simulation-and-get-values/m-p/1134915#M112758</guid>
      <dc:creator>former_member823402</dc:creator>
      <dc:date>2011-09-01T13:39:43Z</dc:date>
    </item>
    <item>
      <title>Re: CU50 simulation and get values</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/cu50-simulation-and-get-values/m-p/14066842#M2041538</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;i am also French.&lt;/P&gt;&lt;P&gt;can you please share your program simulation of CU50.&lt;/P&gt;&lt;P&gt;please please please&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;thanks in advance&lt;/P&gt;</description>
      <pubDate>Fri, 04 Apr 2025 20:08:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/cu50-simulation-and-get-values/m-p/14066842#M2041538</guid>
      <dc:creator>wbenkahla</dc:creator>
      <dc:date>2025-04-04T20:08:57Z</dc:date>
    </item>
  </channel>
</rss>

