<?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 BAPI_ROUTING_CREATE in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-routing-create/m-p/4843712#M1132983</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I'm using this BAPI to create a "route". &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;After the BAPI I'm using the function BAPI_TRANSACTION_COMMIT. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Everthing seems ok ... it says that the route has been created but when I enter trx CA02 the route wasn't create. Anybody knows what can I do ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thx any way !&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 02 Dec 2008 17:30:13 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-12-02T17:30:13Z</dc:date>
    <item>
      <title>BAPI_ROUTING_CREATE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-routing-create/m-p/4843712#M1132983</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I'm using this BAPI to create a "route". &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;After the BAPI I'm using the function BAPI_TRANSACTION_COMMIT. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Everthing seems ok ... it says that the route has been created but when I enter trx CA02 the route wasn't create. Anybody knows what can I do ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thx any way !&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 02 Dec 2008 17:30:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-routing-create/m-p/4843712#M1132983</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-12-02T17:30:13Z</dc:date>
    </item>
    <item>
      <title>Re: BAPI_ROUTING_CREATE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-routing-create/m-p/4843713#M1132984</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;STRONG&gt;Refer the following code...&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: GROUP               TYPE BAPI1012_TSK_C-TASK_LIST_GROUP,&lt;/P&gt;&lt;P&gt;        GROUP_COUNTER       TYPE BAPI1012_TSK_C-GROUP_COUNTER,&lt;/P&gt;&lt;P&gt;        SEQUENCE_NO         TYPE BAPI1012_OPR_C-SEQUENCE_NO,&lt;/P&gt;&lt;P&gt;        TASK_LIST_USAGE     TYPE BAPI1012_TSK_C-TASK_LIST_USAGE,&lt;/P&gt;&lt;P&gt;        TASK_LIST_STATUS    TYPE BAPI1012_TSK_C-TASK_LIST_STATUS,&lt;/P&gt;&lt;P&gt;        LOT_SIZE_FROM       TYPE BAPI1012_TSK_C-LOT_SIZE_FROM,&lt;/P&gt;&lt;P&gt;        LOT_SIZE_TO         TYPE BAPI1012_TSK_C-LOT_SIZE_TO,&lt;/P&gt;&lt;P&gt;        TASK_MEASURE_UNIT   TYPE BAPI1012_TSK_C-TASK_MEASURE_UNIT,&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;        TESTRUN             TYPE BAPIFLAG,&lt;/P&gt;&lt;P&gt;        PROFILE             TYPE BAPI1012_CONTROL_DATA-PROFILE,&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;        TASK                TYPE BAPI1012_TSK_C&lt;/P&gt;&lt;P&gt;                              OCCURS 0 WITH HEADER LINE,&lt;/P&gt;&lt;P&gt;        MATERIALTASKALLOCATION TYPE BAPI1012_MTK_C&lt;/P&gt;&lt;P&gt;                              OCCURS 0 WITH HEADER LINE,&lt;/P&gt;&lt;P&gt;        SEQUENCE            TYPE BAPI1012_SEQ_C&lt;/P&gt;&lt;P&gt;                              OCCURS 0 WITH HEADER LINE,&lt;/P&gt;&lt;P&gt;        OPERATION           TYPE BAPI1012_OPR_C&lt;/P&gt;&lt;P&gt;                              OCCURS 0 WITH HEADER LINE,&lt;/P&gt;&lt;P&gt;        SUBOPERATION        TYPE BAPI1012_SUB_OPR_C&lt;/P&gt;&lt;P&gt;                              OCCURS 0 WITH HEADER LINE,&lt;/P&gt;&lt;P&gt;        REFERENCEOPERATION  TYPE BAPI1012_REF_OPR_C&lt;/P&gt;&lt;P&gt;                              OCCURS 0 WITH HEADER LINE,&lt;/P&gt;&lt;P&gt;        WORKCENTERREFERENCE TYPE BAPI1012_WC_REF_OPR_C&lt;/P&gt;&lt;P&gt;                              OCCURS 0 WITH HEADER LINE,&lt;/P&gt;&lt;P&gt;        COMPONENTALLOCATION TYPE BAPI1012_COM_C&lt;/P&gt;&lt;P&gt;                              OCCURS 0 WITH HEADER LINE,&lt;/P&gt;&lt;P&gt;        PRODUCTIONRESOURCE  TYPE BAPI1012_PRT_C&lt;/P&gt;&lt;P&gt;                              OCCURS 0 WITH HEADER LINE,&lt;/P&gt;&lt;P&gt;        INSPCHARACTERISTIC  TYPE BAPI1012_CHA_C&lt;/P&gt;&lt;P&gt;                              OCCURS 0 WITH HEADER LINE,&lt;/P&gt;&lt;P&gt;        TEXTALLOCATION      TYPE BAPI1012_TXT_HDR_C&lt;/P&gt;&lt;P&gt;                              OCCURS 0 WITH HEADER LINE,&lt;/P&gt;&lt;P&gt;        TEXT                TYPE BAPI1012_TXT_C&lt;/P&gt;&lt;P&gt;                              OCCURS 0 WITH HEADER LINE,&lt;/P&gt;&lt;P&gt;        RETURN              TYPE BAPIRET2&lt;/P&gt;&lt;P&gt;                              OCCURS 0 WITH HEADER LINE,&lt;/P&gt;&lt;P&gt;        BAPI_RETN_INFO      LIKE BAPIRET2 OCCURS 0 WITH HEADER LINE.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;task-task_list_usage = '1'.&lt;/P&gt;&lt;P&gt;task-plant = 'Z4'.&lt;/P&gt;&lt;P&gt;task-task_list_status = '4'.&lt;/P&gt;&lt;P&gt;task-task_measure_unit = 'KG'.&lt;/P&gt;&lt;P&gt;APPEND task.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;materialtaskallocation-group_counter = 'AC'.&lt;/P&gt;&lt;P&gt;materialtaskallocation-material = '3EP6001'.&lt;/P&gt;&lt;P&gt;materialtaskallocation-plant = 'Z4'.&lt;/P&gt;&lt;P&gt;APPEND materialtaskallocation.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;operation-group_counter = 'AC'.&lt;/P&gt;&lt;P&gt;operation-activity = '0010'.&lt;/P&gt;&lt;P&gt;operation-operation_id = 'V10'.&lt;/P&gt;&lt;P&gt;operation-control_key = 'ZS11'.&lt;/P&gt;&lt;P&gt;operation-work_cntr = 'NAM'.&lt;/P&gt;&lt;P&gt;operation-plant = 'Z4'.&lt;/P&gt;&lt;P&gt;operation-standard_text_key = 'Z400001'.&lt;/P&gt;&lt;P&gt;operation-operation_measure_unit = 'KG'.&lt;/P&gt;&lt;P&gt;operation-denominator = 1.&lt;/P&gt;&lt;P&gt;operation-nominator = 1.&lt;/P&gt;&lt;P&gt;operation-base_quantity = 200.&lt;/P&gt;&lt;P&gt;operation-std_unit_02 = 'MIN'.&lt;/P&gt;&lt;P&gt;operation-std_value_02 = '3.5'.&lt;/P&gt;&lt;P&gt;operation-std_unit_03 = 'MIN'.&lt;/P&gt;&lt;P&gt;operation-std_value_03 = '3.5'.&lt;/P&gt;&lt;P&gt;operation-required_wait_time_unit = 'STD'.&lt;/P&gt;&lt;P&gt;operation-required_wait_time = 1.&lt;/P&gt;&lt;P&gt;APPEND operation.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;operation-group_counter = 'AC'.&lt;/P&gt;&lt;P&gt;operation-activity = '0020'.&lt;/P&gt;&lt;P&gt;operation-operation_id = 'V20'.&lt;/P&gt;&lt;P&gt;operation-control_key = 'ZS05'.&lt;/P&gt;&lt;P&gt;operation-work_cntr = 'LP1K71'.&lt;/P&gt;&lt;P&gt;operation-plant = 'Z4'.&lt;/P&gt;&lt;P&gt;operation-standard_text_key = 'Z400002'.&lt;/P&gt;&lt;P&gt;operation-operation_measure_unit = 'KG'.&lt;/P&gt;&lt;P&gt;operation-denominator = 1.&lt;/P&gt;&lt;P&gt;operation-nominator = 1.&lt;/P&gt;&lt;P&gt;operation-base_quantity = 200.&lt;/P&gt;&lt;P&gt;operation-std_unit_02 = 'MIN'.&lt;/P&gt;&lt;P&gt;operation-std_value_02 = 4.&lt;/P&gt;&lt;P&gt;operation-std_unit_03 = 'MIN'.&lt;/P&gt;&lt;P&gt;operation-std_value_03 = 48.&lt;/P&gt;&lt;P&gt;operation-required_wait_time_unit = 'STD'.&lt;/P&gt;&lt;P&gt;operation-required_wait_time = 1.&lt;/P&gt;&lt;P&gt;APPEND operation.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;componentallocation-group_counter = 'AC'.&lt;/P&gt;&lt;P&gt;componentallocation-activity = '0010'.&lt;/P&gt;&lt;P&gt;componentallocation-operation_id = 'V10'.&lt;/P&gt;&lt;P&gt;componentallocation-bom_type = 'Z'.&lt;/P&gt;&lt;P&gt;componentallocation-bom_no = '00080331'.&lt;/P&gt;&lt;P&gt;componentallocation-alternative_bom = '01'.&lt;/P&gt;&lt;P&gt;componentallocation-item_id = '00000001'.&lt;/P&gt;&lt;P&gt;componentallocation-item_no = '0010'.&lt;/P&gt;&lt;P&gt;componentallocation-comp_qty = 200.&lt;/P&gt;&lt;P&gt;componentallocation-comp_unit = 'KG'.&lt;/P&gt;&lt;P&gt;componentallocation-material = '0200200354011'.&lt;/P&gt;&lt;P&gt;componentallocation-plant = 'Z4'.&lt;/P&gt;&lt;P&gt;componentallocation-bom_type_root = 'Z'.&lt;/P&gt;&lt;P&gt;componentallocation-bom_no_root = '00080331'.&lt;/P&gt;&lt;P&gt;componentallocation-alternative_bom_root = '01'.&lt;/P&gt;&lt;P&gt;APPEND componentallocation.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;componentallocation-group_counter = 'AC'.&lt;/P&gt;&lt;P&gt;componentallocation-activity = '0020'.&lt;/P&gt;&lt;P&gt;componentallocation-operation_id = 'V20'.&lt;/P&gt;&lt;P&gt;componentallocation-bom_type = 'Z'.&lt;/P&gt;&lt;P&gt;componentallocation-bom_no = '00080331'.&lt;/P&gt;&lt;P&gt;componentallocation-alternative_bom = '01'.&lt;/P&gt;&lt;P&gt;componentallocation-item_id = '00000002'.&lt;/P&gt;&lt;P&gt;componentallocation-item_no = '0020'.&lt;/P&gt;&lt;P&gt;componentallocation-comp_qty = 200.&lt;/P&gt;&lt;P&gt;componentallocation-comp_unit = 'KG'.&lt;/P&gt;&lt;P&gt;componentallocation-material = '0100400069051'.&lt;/P&gt;&lt;P&gt;componentallocation-plant = 'Z4'.&lt;/P&gt;&lt;P&gt;componentallocation-bom_type_root = 'Z'.&lt;/P&gt;&lt;P&gt;componentallocation-bom_no_root = '00080331'.&lt;/P&gt;&lt;P&gt;componentallocation-alternative_bom_root = '01'.&lt;/P&gt;&lt;P&gt;APPEND componentallocation.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt; CALL FUNCTION 'BAPI_ROUTING_CREATE'&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;   DESTINATION 'NONE'&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;    EXPORTING&lt;/P&gt;&lt;P&gt;      TESTRUN                = TESTRUN&lt;/P&gt;&lt;P&gt;      PROFILE                = PROFILE&lt;/P&gt;&lt;P&gt;      BOMUSAGE               = BOMUSAGE&lt;/P&gt;&lt;P&gt;      APPLICATION            = APPLICATION&lt;/P&gt;&lt;P&gt;    IMPORTING&lt;/P&gt;&lt;P&gt;      GROUP                  = GROUP&lt;/P&gt;&lt;P&gt;      GROUPCOUNTER           = GROUP_COUNTER&lt;/P&gt;&lt;P&gt;    TABLES&lt;/P&gt;&lt;P&gt;      TASK                   = TASK&lt;/P&gt;&lt;P&gt;      MATERIALTASKALLOCATION = MATERIALTASKALLOCATION&lt;/P&gt;&lt;P&gt;      SEQUENCE               = SEQUENCE&lt;/P&gt;&lt;P&gt;      OPERATION              = OPERATION&lt;/P&gt;&lt;P&gt;      SUBOPERATION           = SUBOPERATION&lt;/P&gt;&lt;P&gt;      REFERENCEOPERATION     = REFERENCEOPERATION&lt;/P&gt;&lt;P&gt;      WORKCENTERREFERENCE    = WORKCENTERREFERENCE&lt;/P&gt;&lt;P&gt;      COMPONENTALLOCATION    = COMPONENTALLOCATION&lt;/P&gt;&lt;P&gt;      PRODUCTIONRESOURCE     = PRODUCTIONRESOURCE&lt;/P&gt;&lt;P&gt;      INSPCHARACTERISTIC     = INSPCHARACTERISTIC&lt;/P&gt;&lt;P&gt;      TEXTALLOCATION         = TEXTALLOCATION&lt;/P&gt;&lt;P&gt;      TEXT                   = TEXT&lt;/P&gt;&lt;P&gt;      RETURN                 = RETURN.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 03 Dec 2008 05:40:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-routing-create/m-p/4843713#M1132984</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-12-03T05:40:01Z</dc:date>
    </item>
  </channel>
</rss>

