<?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: help needed in  bapi _requistion _create in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/help-needed-in-bapi-requistion-create/m-p/1419693#M201581</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Suchitra,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Have you looked table &amp;lt;b&amp;gt;KNVA&amp;lt;/b&amp;gt; or FM &amp;lt;b&amp;gt;KNVA_SINGLE_READ&amp;lt;/b&amp;gt;?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Ferry Lianto&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 19 Jun 2006 16:28:22 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-06-19T16:28:22Z</dc:date>
    <item>
      <title>help needed in  bapi _requistion _create</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/help-needed-in-bapi-requistion-create/m-p/1419689#M201577</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;&lt;/P&gt;&lt;P&gt;I want to assign a delivery address and unloading point to a purchase requistion i got the delvery address but iam not able to figure out the unloading point.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I want you guys to let me know from which table i have to retrieve the unloading point and assign to which part of BAPI.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Iam sending my code please take a look at it and let me know if iam wrong any where and what i need to add for unloading point.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data: begin of itab_bapiebkn occurs 100.&lt;/P&gt;&lt;P&gt;include structure bapiebkn.&lt;/P&gt;&lt;P&gt;data: end of itab_bapiebkn.&lt;/P&gt;&lt;P&gt;data : I_BAPIMERQADDRDELIVERY TYPE TABLE OF BAPIMERQADDRDELIVERY,&lt;/P&gt;&lt;P&gt;W_BAPIMERQADDRDELIVERY TYPE BAPIMERQADDRDELIVERY.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;w_quantity = itab-multiple * itab-bstrf.&lt;/P&gt;&lt;P&gt;w_item_no = w_item_no + 1.&lt;/P&gt;&lt;P&gt;itab_bapiebanc-preq_item = w_item_no.&lt;/P&gt;&lt;P&gt;itab_bapiebanc-doc_type = c_doc_type.&lt;/P&gt;&lt;P&gt;itab_bapiebanc-created_by = sy-uname.&lt;/P&gt;&lt;P&gt;itab_bapiebanc-material = itab-matnr.&lt;/P&gt;&lt;P&gt;itab_bapiebanc-plant = itab-werks.&lt;/P&gt;&lt;P&gt;itab_bapiebanc-quantity = w_quantity.&lt;/P&gt;&lt;P&gt;itab_bapiebanc-deliv_date = sy-datum + 1.&lt;/P&gt;&lt;P&gt;itab_bapiebanc-trackingno = w_bednr.&lt;/P&gt;&lt;P&gt;append itab_bapiebanc.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;w_bapimerqaddrdelivery-PREQ_ITEM = w_item_no.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IF S_GROUP = '2'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT SINGLE * FROM TVARV WHERE NAME EQ 'ZGRP1'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IF SY-SUBRC EQ 0.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT SINGLE ADDRNUMBER FROM ADRC INTO w_bapimerqaddrdelivery-ADDR_NO&lt;/P&gt;&lt;P&gt;WHERE ADDRNUMBER = TVARV-LOW.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&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;Suchitra&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 19 Jun 2006 15:17:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/help-needed-in-bapi-requistion-create/m-p/1419689#M201577</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-06-19T15:17:25Z</dc:date>
    </item>
    <item>
      <title>Re: help needed in  bapi _requistion _create</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/help-needed-in-bapi-requistion-create/m-p/1419690#M201578</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi guys,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;please let me know if you have any idea on this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 19 Jun 2006 16:17:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/help-needed-in-bapi-requistion-create/m-p/1419690#M201578</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-06-19T16:17:46Z</dc:date>
    </item>
    <item>
      <title>Re: help needed in  bapi _requistion _create</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/help-needed-in-bapi-requistion-create/m-p/1419691#M201579</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;See table ...&amp;lt;b&amp;gt;T663A&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Saquib&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 19 Jun 2006 16:23:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/help-needed-in-bapi-requistion-create/m-p/1419691#M201579</guid>
      <dc:creator>former_member181966</dc:creator>
      <dc:date>2006-06-19T16:23:09Z</dc:date>
    </item>
    <item>
      <title>Re: help needed in  bapi _requistion _create</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/help-needed-in-bapi-requistion-create/m-p/1419692#M201580</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Check the sample code.&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
REPORT  ZTEST_BAPI_PR                             .

DATA:WA_EBAN LIKE EBAN.
DATA: BEGIN OF ITAB OCCURS 0,
            BSART(4),
*            ."Purchase requisition document type
            WERKS(4),
*             Plant
            TXZ01(40),
*            ."Short text
            MENGE(13),
*            ."Purchase requisition quantity
            MEINS(3),
*            ."Purchase requisition unit of measure
            EEIND(10),
*            ."Item delivery date
            WGBEZ(9),
*            ."Material Group
            NAME1(4),
*            ."Plant
            EKGRP(3),
*            ."Purchasing Group
            AFNAM(12),
*            ."Name of requisitioner/requester
            BEDNR(10),
*            ."Requirement Tracking Number
            KNTTP(1),
*            ."Account assignment category
            SAKTO(10),
*            ."G/L Account Number
            PS_POSID(8),
*            ."Work Breakdown Structure Element (WBS Element)
            EDITOR(132),
*            ."Text line
      END OF ITAB.

DATA: ITAB_BAPIEBANC  LIKE BAPIEBANC  OCCURS 0 WITH HEADER LINE.
DATA: ITAB_BAPIEBKN   LIKE BAPIEBKN   OCCURS 0 WITH HEADER LINE.
DATA: ITAB_BAPIEBANTX LIKE BAPIEBANTX OCCURS 0 WITH HEADER LINE.
DATA: BEGIN OF ERRMSG OCCURS 10.
        INCLUDE STRUCTURE BAPIRET2.
DATA: END OF ERRMSG.
DATA: ERRFLAG.

SELECT SINGLE * FROM EBAN
                INTO WA_EBAN.

 IF SY-SUBRC = 0.

MOVE-CORRESPONDING WA_EBAN TO ITAB.
APPEND ITAB.
CLEAR ITAB.
ENDIF.
*CALL FUNCTION 'UPLOAD'
*  EXPORTING
*    filename = 'C:Documents and SettingssapDesktopNew Text Document (2).txt'
*    filetype = 'DAT'
*  TABLES
*    data_tab = itab.
*
*         .
*if sy-subrc &amp;lt;&amp;gt; 0.
*  message id sy-msgid type sy-msgty number sy-msgno
*          with sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
*  exit.
*endif.

LOOP AT ITAB.
  ITAB_BAPIEBANC-DOC_TYPE       =    ITAB-BSART.
  ITAB_BAPIEBANC-SHORT_TEXT     =    ITAB-TXZ01.
  ITAB_BAPIEBANC-QUANTITY       =    ITAB-MENGE.
  ITAB_BAPIEBANC-UNIT           =    ITAB-MEINS.

  IF NOT ITAB-EEIND IS INITIAL.
    ITAB_BAPIEBANC-DELIV_DATE     =    ITAB-EEIND.
  ELSE.
    ITAB_BAPIEBANC-DELIV_DATE     =  SY-DATUM + 30.
  ENDIF.

  ITAB_BAPIEBANC-PLANT          =    ITAB-WERKS.
  ITAB_BAPIEBANC-PUR_GROUP      =    ITAB-EKGRP.
  ITAB_BAPIEBANC-PREQ_NAME      =    ITAB-AFNAM.
  ITAB_BAPIEBANC-TRACKINGNO     =    ITAB-BEDNR.
  ITAB_BAPIEBANC-MAT_GRP        =    ITAB-WGBEZ.
  ITAB_BAPIEBANC-ACCTASSCAT     =    ITAB-KNTTP.
    ITAB_BAPIEBANC-ACCTASSCAT     =    'A'.
  ITAB_BAPIEBKN-G_L_ACCT        =    ITAB-SAKTO.
  ITAB_BAPIEBKN-WBS_ELEM        =    ITAB-PS_POSID.
*  itab_bapiebantx-text_line     =    itab-editor.
 ITAB_BAPIEBANTX-TEXT_LINE     =    'Test for Purchase requisiton'.
  APPEND ITAB_BAPIEBKN.
  APPEND ITAB_BAPIEBANC.
  APPEND ITAB_BAPIEBANTX.
ENDLOOP.
*
CALL FUNCTION 'BAPI_REQUISITION_CREATE'
  TABLES
    REQUISITION_ITEMS              = ITAB_BAPIEBANC
    REQUISITION_ACCOUNT_ASSIGNMENT = ITAB_BAPIEBKN
    REQUISITION_ITEM_TEXT          = ITAB_BAPIEBANTX
    RETURN                         = ERRMSG.

LOOP AT ERRMSG.
  IF ERRMSG-TYPE EQ 'E'.
    WRITE:/'Error in function', ERRMSG-MESSAGE.
    ERRFLAG = 'X'.
  ELSEif ERRMSG-TYPE = 'S' .
CALL FUNCTION 'BAPI_TRANSACTION_COMMIT'
    WRITE:/ ERRMSG-MESSAGE.
  ENDIF.
ENDLOOP.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;vijay&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 19 Jun 2006 16:25:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/help-needed-in-bapi-requistion-create/m-p/1419692#M201580</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-06-19T16:25:48Z</dc:date>
    </item>
    <item>
      <title>Re: help needed in  bapi _requistion _create</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/help-needed-in-bapi-requistion-create/m-p/1419693#M201581</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Suchitra,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Have you looked table &amp;lt;b&amp;gt;KNVA&amp;lt;/b&amp;gt; or FM &amp;lt;b&amp;gt;KNVA_SINGLE_READ&amp;lt;/b&amp;gt;?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Ferry Lianto&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 19 Jun 2006 16:28:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/help-needed-in-bapi-requistion-create/m-p/1419693#M201581</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-06-19T16:28:22Z</dc:date>
    </item>
    <item>
      <title>Re: help needed in  bapi _requistion _create</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/help-needed-in-bapi-requistion-create/m-p/1419694#M201582</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi guys,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have couple of questions regarding unloading point and delivery address.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The deklivery address was created in transaction mean i.e all the details regarding were given and saved so it generated a address number and everything the address number and the address details got stored in adrc table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now iam retrieving the delivery address from ADRC TABLE BASED ON ADDRESS NUMBER AND ASSIGNING IT TO BAPI.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My question is where do we Create the unloading point and its get populated in which table so that if can retrieve that data.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I don't see any unloading point field in my purchase requistion transaction .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I don't have any functional help in here.&lt;/P&gt;&lt;P&gt;Please let me know your ideas.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 19 Jun 2006 18:10:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/help-needed-in-bapi-requistion-create/m-p/1419694#M201582</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-06-19T18:10:21Z</dc:date>
    </item>
    <item>
      <title>Re: help needed in  bapi _requistion _create</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/help-needed-in-bapi-requistion-create/m-p/1419695#M201583</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi guys,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have couple of questions regarding unloading point and delivery address.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The deklivery address was created in transaction mean i.e all the details regarding were given and saved so it generated a address number and everything the address number and the address details got stored in adrc table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now iam retrieving the delivery address from ADRC TABLE BASED ON ADDRESS NUMBER AND ASSIGNING IT TO BAPI.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My question is where do we Create the unloading point and its get populated in which table so that if can retrieve that data.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I don't see any unloading point field in my purchase requistion transaction .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I don't have any functional help in here.&lt;/P&gt;&lt;P&gt;Please let me know your ideas.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 19 Jun 2006 19:24:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/help-needed-in-bapi-requistion-create/m-p/1419695#M201583</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-06-19T19:24:10Z</dc:date>
    </item>
    <item>
      <title>Re: help needed in  bapi _requistion _create</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/help-needed-in-bapi-requistion-create/m-p/1419696#M201584</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Do you see unloading points in ME51N when you create purchase requisition online? I don't think they are tied to a purchase requisition. Check with your functional/business person and request to show it online.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 19 Jun 2006 19:46:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/help-needed-in-bapi-requistion-create/m-p/1419696#M201584</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-06-19T19:46:04Z</dc:date>
    </item>
    <item>
      <title>Re: help needed in  bapi _requistion _create</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/help-needed-in-bapi-requistion-create/m-p/1419697#M201585</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hI SRINIVAS,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can you tell me  how do we assign a unloading point to purchase order.Can you send me your email id so that i can send you screen shoots of what i am looking at.&lt;/P&gt;&lt;P&gt;Thanks in advance&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 19 Jun 2006 20:14:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/help-needed-in-bapi-requistion-create/m-p/1419697#M201585</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-06-19T20:14:25Z</dc:date>
    </item>
    <item>
      <title>Re: help needed in  bapi _requistion _create</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/help-needed-in-bapi-requistion-create/m-p/1419698#M201586</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Ok, I think I now found it. It is on the account assignment segment. You need to pass it to REQUISITION_ACCOUNT_ASSIGNMENT-UNLOAD_PT.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 19 Jun 2006 21:05:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/help-needed-in-bapi-requistion-create/m-p/1419698#M201586</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-06-19T21:05:05Z</dc:date>
    </item>
    <item>
      <title>Re: help needed in  bapi _requistion _create</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/help-needed-in-bapi-requistion-create/m-p/1419699#M201587</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi suchitra&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;in the Acount assingment Tab of the PR, if you click the tables icon which is at the top left hand corner that would enable you to enter multiple account assingment for the PR there the unloading point field is present&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 19 Jun 2006 22:01:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/help-needed-in-bapi-requistion-create/m-p/1419699#M201587</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-06-19T22:01:19Z</dc:date>
    </item>
    <item>
      <title>Re: help needed in  bapi _requistion _create</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/help-needed-in-bapi-requistion-create/m-p/1419700#M201588</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi srinivas i came to know that i need to assign to REQUISITION_ACCOUNT_ASSIGNMENT-UNLOAD_PT. &lt;/P&gt;&lt;P&gt; but before that i need to retrieve the unloading point to assign it to bapi?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;from what table i have retrieve so that i can move into internal table and assign it to bapi.&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;&lt;/P&gt;&lt;P&gt;Suchitra&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 20 Jun 2006 17:32:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/help-needed-in-bapi-requistion-create/m-p/1419700#M201588</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-06-20T17:32:46Z</dc:date>
    </item>
    <item>
      <title>Re: help needed in  bapi _requistion _create</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/help-needed-in-bapi-requistion-create/m-p/1419701#M201589</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Unloading points are not created in the system as some master data. Actually, why are you not asking the functional or business contact for this? They will be able to tell you where the information is.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You have to gather the requirement from them and if there are any technical hurdles, then you can approach this forum. It will be difficult to give you any answers without knowing your system configuration or business process or requirement. They vary from place to place.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 20 Jun 2006 19:09:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/help-needed-in-bapi-requistion-create/m-p/1419701#M201589</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-06-20T19:09:44Z</dc:date>
    </item>
    <item>
      <title>Re: help needed in  bapi _requistion _create</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/help-needed-in-bapi-requistion-create/m-p/1419702#M201590</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Search help / F4 / drop down button on the Unloading Point field for non-stock components is NOT SAP standard - it is a development hence no standard table will be found to populate with values.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Lew.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 01 Oct 2009 18:34:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/help-needed-in-bapi-requistion-create/m-p/1419702#M201590</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-10-01T18:34:15Z</dc:date>
    </item>
  </channel>
</rss>

