<?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: {SOLVED] Create characteristics with BAPI_CREATE_BATCH in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/solved-create-characteristics-with-bapi-create-batch/m-p/1007964#M78219</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;As I understand you have to create batch with populated characteristics values. So my assumption was you already have corresponding characteristics in your system. Is it so?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Maxim.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 12 Sep 2005 03:27:53 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2005-09-12T03:27:53Z</dc:date>
    <item>
      <title>{SOLVED] Create characteristics with BAPI_CREATE_BATCH</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/solved-create-characteristics-with-bapi-create-batch/m-p/1007959#M78214</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In my program I create a batch before a good receipt. This good receipt is created with the bapi 'BAPI_GOODSMVT_CREATE'. In this last bapi I'm able to add the batch number.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If I create the batch I have also to add some characteristics. So I have looked for an example and found one. The example I follow is "Batch create and characteristics via BAPI (example)".&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.sapfans.com/forums/viewtopic.php?t=125320&amp;amp;highlight=bapibatchcreate" target="test_blank"&gt;http://www.sapfans.com/forums/viewtopic.php?t=125320&amp;amp;highlight=bapibatchcreate&lt;/A&gt;. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The creation of the batch number and the creation of the objectkey works fine but when I come to the form 'extract_original_batch' with the bapi 'BAPI_OBJCL_GETDETAIL' I receive the following error message "Assignment does not exist or is not valid on".&lt;/P&gt;&lt;P&gt;The class it self is valid till 31129999 and I'm able to assign values during a good receipt with MIGO. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What could be wrong or has an other example to find out what's the problem.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This is what I inserting into the bapi:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;p_matnr = '0000010393'  a valid materialnumber&lt;/P&gt;&lt;P&gt;p_werks = '0010'&lt;/P&gt;&lt;P&gt;p_charg = '0001000125'&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;w_object = 00000000000001039300100001000125&lt;/P&gt;&lt;P&gt;p_class  = 'ZMMGASOPSLAG'&lt;/P&gt;&lt;P&gt;p_klart  = '023'&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here is a part of the program.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;      FORM build_object_key                                         *&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;STRONG&gt;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FORM build_object_key&lt;/P&gt;&lt;P&gt;   TABLES&lt;/P&gt;&lt;P&gt;      p_it_messages          LIKE it_messages[]&lt;/P&gt;&lt;P&gt;      p_it_object            STRUCTURE bapi1003_object_keys&lt;/P&gt;&lt;P&gt;   USING&lt;/P&gt;&lt;P&gt;      P_WERKS                LIKE EKPO-werks&lt;/P&gt;&lt;P&gt;      P_MATNR                LIKE EKPO-matnr&lt;/P&gt;&lt;P&gt;      P_WA_ONTV_BEST_LGORT   LIKE EKPO-lgort&lt;/P&gt;&lt;P&gt;      P_charg                LIKE mcha-charg&lt;/P&gt;&lt;P&gt;      p_ebeln                LIKE EKPO-ebeln&lt;/P&gt;&lt;P&gt;      p_ebelp                LIKE EKPO-ebelp&lt;/P&gt;&lt;P&gt;   CHANGING&lt;/P&gt;&lt;P&gt;      p_object               LIKE bapi1003_key-object.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: BEGIN OF XEMSEG OCCURS 1.&lt;/P&gt;&lt;P&gt;        INCLUDE STRUCTURE BAPIRET2.&lt;/P&gt;&lt;P&gt;DATA: END OF XEMSEG.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  CLEAR XEMSEG.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;build the object key&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;  CLEAR: it_object.&lt;/P&gt;&lt;P&gt;  REFRESH: it_object.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  it_object-key_field = 'MATNR'.&lt;/P&gt;&lt;P&gt;  it_object-value_int = p_matnr.&lt;/P&gt;&lt;P&gt;  APPEND it_object.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  it_object-key_field = 'WERKS'.&lt;/P&gt;&lt;P&gt;  it_object-value_int = p_werks.&lt;/P&gt;&lt;P&gt;  APPEND it_object.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  it_object-key_field = 'CHARG'.&lt;/P&gt;&lt;P&gt;  it_object-value_int = p_charg.&lt;/P&gt;&lt;P&gt;  APPEND it_object.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  CALL FUNCTION 'BAPI_OBJCL_CONCATENATEKEY'&lt;/P&gt;&lt;P&gt;       EXPORTING&lt;/P&gt;&lt;P&gt;            objecttable    = 'MCHA'&lt;/P&gt;&lt;P&gt;       IMPORTING&lt;/P&gt;&lt;P&gt;            objectkey_conc = p_object&lt;/P&gt;&lt;P&gt;       TABLES&lt;/P&gt;&lt;P&gt;            objectkeytable = it_object&lt;/P&gt;&lt;P&gt;            return         = XEMSEG.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  IF not xemseg is initial.&lt;/P&gt;&lt;P&gt;       PERFORM ins_errors&lt;/P&gt;&lt;P&gt;          TABLES&lt;/P&gt;&lt;P&gt;             it_messages&lt;/P&gt;&lt;P&gt;             xemseg&lt;/P&gt;&lt;P&gt;           USING&lt;/P&gt;&lt;P&gt;              p_ebeln&lt;/P&gt;&lt;P&gt;              p_ebelp.&lt;/P&gt;&lt;P&gt;   ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ENDFORM.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kind regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Richard Meijn&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: R. Meijn&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 08 Sep 2005 08:45:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/solved-create-characteristics-with-bapi-create-batch/m-p/1007959#M78214</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-09-08T08:45:49Z</dc:date>
    </item>
    <item>
      <title>Re: {SOLVED] Create characteristics with BAPI_CREATE_BATCH</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/solved-create-characteristics-with-bapi-create-batch/m-p/1007960#M78215</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;1. Have you BAPI_TRANSACTION_COMMIT after creating the characteristics?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2. If yes, there might be some time lag before it is available for the code. Try introducing some wait time.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;Ravi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 08 Sep 2005 08:56:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/solved-create-characteristics-with-bapi-create-batch/m-p/1007960#M78215</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-09-08T08:56:00Z</dc:date>
    </item>
    <item>
      <title>Re: {SOLVED] Create characteristics with BAPI_CREATE_BATCH</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/solved-create-characteristics-with-bapi-create-batch/m-p/1007961#M78216</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;Have a look at alternative for classified batch creation:&lt;/P&gt;&lt;P&gt;&lt;A class="jive_macro jive_macro_message" href="https://community.sap.com/" __jive_macro_name="message" modifiedtitle="true" __default_attr="426545"&gt;&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Maxim.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 08 Sep 2005 09:14:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/solved-create-characteristics-with-bapi-create-batch/m-p/1007961#M78216</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-09-08T09:14:17Z</dc:date>
    </item>
    <item>
      <title>Re: {SOLVED] Create characteristics with BAPI_CREATE_BATCH</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/solved-create-characteristics-with-bapi-create-batch/m-p/1007962#M78217</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Ravi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have made a BAPI_TRANSACTION_COMMIT after creating the batchnumber.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Do you know how to create a time lag?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kind regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Richard Meijn&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 08 Sep 2005 10:08:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/solved-create-characteristics-with-bapi-create-batch/m-p/1007962#M78217</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-09-08T10:08:43Z</dc:date>
    </item>
    <item>
      <title>Re: {SOLVED] Create characteristics with BAPI_CREATE_BATCH</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/solved-create-characteristics-with-bapi-create-batch/m-p/1007963#M78218</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Maxim,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'm just starting writing ABAP code. So the example is not so clear for me. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;There is no example init for creating the characteristics?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So if you could explain this to me I will be pleased.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kind regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Richard Meijn&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 08 Sep 2005 10:14:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/solved-create-characteristics-with-bapi-create-batch/m-p/1007963#M78218</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-09-08T10:14:51Z</dc:date>
    </item>
    <item>
      <title>Re: {SOLVED] Create characteristics with BAPI_CREATE_BATCH</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/solved-create-characteristics-with-bapi-create-batch/m-p/1007964#M78219</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;As I understand you have to create batch with populated characteristics values. So my assumption was you already have corresponding characteristics in your system. Is it so?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Maxim.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 12 Sep 2005 03:27:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/solved-create-characteristics-with-bapi-create-batch/m-p/1007964#M78219</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-09-12T03:27:53Z</dc:date>
    </item>
    <item>
      <title>Re: {SOLVED] Create characteristics with BAPI_CREATE_BATCH</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/solved-create-characteristics-with-bapi-create-batch/m-p/1007965#M78220</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;As I see here, your "p_matnr" is having a value '0000010393' that is not in internal format. It should be converted to internal format using CONVERSION_EXIT_MATN1_INPUT before passing it to the BAPI.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Srinivas&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 12 Sep 2005 03:35:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/solved-create-characteristics-with-bapi-create-batch/m-p/1007965#M78220</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-09-12T03:35:10Z</dc:date>
    </item>
    <item>
      <title>Re: {SOLVED] Create characteristics with BAPI_CREATE_BATCH</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/solved-create-characteristics-with-bapi-create-batch/m-p/1007966#M78221</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Srinivas,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have jused the function 'CONVERSION_EXIT_MATN1_INPUT' but didn't solved the problem. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If I add tha values manualy in the function debugger even then I don't see anny insertions into the table INOB.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kind Regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Richard Meijn&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 12 Sep 2005 08:05:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/solved-create-characteristics-with-bapi-create-batch/m-p/1007966#M78221</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-09-12T08:05:47Z</dc:date>
    </item>
    <item>
      <title>Re: {SOLVED] Create characteristics with BAPI_CREATE_BATCH</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/solved-create-characteristics-with-bapi-create-batch/m-p/1007967#M78222</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Then let me know if you are calling the BAPI_TRANSACTION_COMMIT with WAIT = 'X' or not? You need WAIT = 'X'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Srinivas&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 12 Sep 2005 21:23:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/solved-create-characteristics-with-bapi-create-batch/m-p/1007967#M78222</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-09-12T21:23:55Z</dc:date>
    </item>
    <item>
      <title>Re: {SOLVED] Create characteristics with BAPI_CREATE_BATCH</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/solved-create-characteristics-with-bapi-create-batch/m-p/1007968#M78223</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Srinivas,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for your reply,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have tried both commits with and without wait. Both didn't work but I have look and tried the hole day. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;After some headache I have maybe found the solution. I will try it out.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My conclusion is the following.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The BAPI 'BAPI_BJC_CONCATENATEKEY' creates the key as shown in the table INOB but the bapi don't stores the key.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In my program I have to create a good movement. This is also done with a BAPI. When this BAPI is finalised the key is stored in the INOB table. So my conclusion is that the key is created with the BAPI 'bapi_goodsmvt_create' when necessary.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;After the creation of the key I could follow the example to modify the characteristics.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If everything is working I will explain the solution.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kind Regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Richard Meijn&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 13 Sep 2005 06:54:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/solved-create-characteristics-with-bapi-create-batch/m-p/1007968#M78223</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-09-13T06:54:35Z</dc:date>
    </item>
    <item>
      <title>Re: {SOLVED] Create characteristics with BAPI_CREATE_BATCH</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/solved-create-characteristics-with-bapi-create-batch/m-p/1007969#M78224</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The problem is solved.&lt;/P&gt;&lt;P&gt;The bapi create_batch doesn't create the characteristics and also not the key.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The bapi 'BAPI_GOODSMVT_CREATE' creates the batchnumber and the characreistics with the object key. If after creation of the good movement the characteristics are changed the program works fine.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for the help in hints you gave me.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kind regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Richard Meijn&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 14 Sep 2005 12:36:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/solved-create-characteristics-with-bapi-create-batch/m-p/1007969#M78224</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-09-14T12:36:30Z</dc:date>
    </item>
    <item>
      <title>Re: {SOLVED] Create characteristics with BAPI_CREATE_BATCH</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/solved-create-characteristics-with-bapi-create-batch/m-p/1007970#M78225</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;Can we create a Batch and charecteristic values with BAPI 'BAPI_GOODSMVT_CREATE'&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If yes do let me know how to pass the input parameters.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Ravi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 03 Jul 2006 13:45:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/solved-create-characteristics-with-bapi-create-batch/m-p/1007970#M78225</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-07-03T13:45:58Z</dc:date>
    </item>
  </channel>
</rss>

