Import data to Purchase Order Item Level Text from DMS system

Hi,
I have the material PO Text maintained against the Material in the DMS system.
In R/3, when I am creating the Purchase Order, I want the system to retreive the PO Text maintained in DMS against the material in the Purchase Order and paste it in the Purchase Order Item details - Material PO Texts.
Could anyone suggest me which User Exit or BAPI and the Function Module to fetch this data from DMS.
Thanks in advance.
Regards,
Jeetendra

Dear Gurus,
We are able to populate the "Import Data" in the backend PO in our backend system 4.6C, thorugh user exit
EXIT_SAPMM06E_004   &   EXIT_SAPLV50E_004.
Now when we create PO from SRM , the import related foreign trade data gets filled up from the master data.
Problem: In Header and Line item condition: We are not getting the condition type GRWR automatically, if the PO is comming from SRM. Because of this the statistical value is 0.
( If we create manual PO, the condition GRWR appears in PO - and the Statistical value gets filled in automatically )
How can we put the condition type GRWR into the PO using user exit ?
Thanks and regards,
Anil Rajpal
Edited by: ANIL on Aug 12, 2010 6:18 PM

Similar Messages

  • Purchase order  item long text

    Hi  to all experts,
    pls.help me of this requrement i need to get  a table of long text of  purchase order  item long text .
    can anybody know where long text will saved .
    Regards ,
    Kiran.

    Here is an example.
    report zrich_0001 .
    data: name type thead-tdname.
    data: lines type table of tline with header line.
    parameters: p_ebeln type ekko-ebeln,
                p_ebelp type ekpo-ebelp.
    concatenate p_ebeln p_ebelp into name.
    call function 'READ_TEXT'
         exporting
              id                      = 'F01'
              language                = sy-langu
              name                    = name
              object                  = 'EKPO'
         tables
              lines                   = lines
         exceptions
              id                      = 1
              language                = 2
              name                    = 3
              not_found               = 4
              object                  = 5
              reference_check         = 6
              wrong_access_to_archive = 7
              others                  = 8.
    loop at lines.
      write:/ lines.
    endloop.
    Regards.
    Rich Heilman

  • Sale Order Item Level Text Field which table and field

    Hi,
    Thanks for your prompt reply and best solution.
    Can you please tell me one more thing, in sale order at item level the TEXT Field maintaining by user at transaction level now they want that field in one of the report, so can you please tell what is the table and field where i will get this sale order item level text details.

    Hello,
    is this going to work for item level text as well.
    can you tell how to proceed with this functional module
    or is there any other thing required.Please elaborate to
    understand better way.
    You can check out two table in respect to Sales TEXT i.e. STXH (STXD SAPscript text file header) and STXL(SAPscript text file lines).
    The best approach of tracing out the Text in respect to Sales Order would be to use the Function module READ_TEXT and put this FM in SE37 and execute with the following parameter.
    Client
    Text ID of text to be read
    Language of text to be read
    Name of text to be read
    Object of text to be read
    Archive handle
    Text catalog local
    When you are essentially looking to read item level Text with respect to Sales Order then your Text OBject would be VBBP.
    Regards,
    Sarthak

  • Batch Field in the purchase order item level confirmation tab

    Hello Friends,
    Can anybody tell me the significance of Batch field in the Confirmation tab of  a purchase order item level?
    Can we make this field editable?
    Thanks,
    Bhairav

    Can anybody tell me the significance of Batch field in the Confirmation tab of a purchase order item level?
    Batch field can be populated via inbound delivery, when you receive the confirmation from vendor you can create inbound delivey using VL31N that time you can enter the batch or if oyu receive the confirmation via EDI, in this Idoc you can receive the batch from vendor
    eventually this batch number you will see the the PO confirmation tab
    Can we make this field editable
    No, this is dependent on the inbound delivery document

  • Sales order item level text missing

    Hello,
    An issue, our client is not getting text in the sales order item level for one item catgory only. however for the other item category he is getting sales text in item level.this is applicable for all the items in a sales order-meaning, all items are either having text or no text.all the configuration settings are fine.where can be the problem? solutions plz.
    Regards,
    Raj

    Hi,
    Goto VOTXN transaction and select item text for sales document and then see item categeory is assigned to text procedure.
    Make sure right text procedure should be assigned to item categeory(for ex: sales order item text procedure to be assogned to sales order item category) ,also check access sequence for text.
    Please get back with your observations.
    Regards,
    Chandra

  • How do I get Item Level text from PO ME21N Prior To Saving The PO?

    I saw this asked a few times but no solution so I will ask again.
    Imagine that you are creating a PO in ME21N. You have some Header Level Text and then imagine you have 2 items in this PO. Each of these two items has Item Level Text.
    Once a PO is saved, I know how to use Read_Text to get the texts for the header and items. You simply pass which text you want (ex. F01) the PO number and the language and it returns the texts for the header. For item level you combine PO number and Item number you want in the Name parameter of Read Text (example 112233445500010) then tell it which text you want (ex F01) and that is how it knows which item you want the text for.
    However: When the user is first creating the PO, they want to see how it will look in printing but prior to actually saving the PO. They dont want to save the PO until they know how it will print with Print Preview.
    I was very surprised that the print preview actually worked for the Header Texts prior to saving. I debugged Read_Text and see that when it sees no PO number passed, it simply supplies the text (F01) and the language and pulls it out of an FM READ_CATALOG which I am assuming is memory. In theory, you will only have one F01 text at the header level and it makes sense to me that it is able to retrieve that.
    BUT: My Item Level Texts are not returning anything. It makes sense to me as well because you cannot simply tell it give me the F01 texts you see because if you have multiple items, you will have multiple F01 texts, one for each item number if you put text to each item.
    How can I get the item level texts out before saving the PO? Since the PO is not saved yet, there is no PO number and nothing is stored in STXH and STXL. Where are the texts stored and how can I retrieve them? I tried passing just the item number but as expected it still returned nothing.
    Any ideas?

    Ok I figured it out. I will add this for anyone else that may have this issue.
    The short version is that just like header level texts, item level texts that have not yet been officially saved to the PO are stored in a catalog. If you were to debug READ_TEXT you will see that it will look in the catalog to see if there is an entry there for the corresponding texts (ex F01, F02 etc).
    For header texts, you simply pass the language and which text you want without the PO number and it will return header texts.
    Item level however you have to specify which line item you want plus which text and then the language.
    During debugging if you debug Read_text and go to the FM READ_CATALOG you will see the following:
    READ TABLE CATALOG WITH KEY CATALOG_KEY.
    Load the table Catalog into the debugger and see how it stores them.
    In one solution I read on this forum it said to use 10 zeros and then your item number.
    Mine was stored with 10 spaces, not zeros. Loaded 10 spaces plus the item number and it returned my text with READ_TEXT.
    Hope this helps someone else one day!!

  • Import Data in Purchase Order for Intrastat Reporting

    Dear Gurus,
    Technical Scenario: Extended Classic
    SRM Server: 5.5
    Backend:R/3:  4.6C
    For PO created for cross border purchasing, ( vendor country different from receiving plant country ) the PO when replicated to backend system, DOES NOT HAVE IMPORT TAB.
    We want Import tab to populate for cross border purchasing.
    How can we achieve this?
    Regards,
    Anil Rajpal

    Dear Gurus,
    We are able to populate the "Import Data" in the backend PO in our backend system 4.6C, thorugh user exit
    EXIT_SAPMM06E_004   &   EXIT_SAPLV50E_004.
    Now when we create PO from SRM , the import related foreign trade data gets filled up from the master data.
    Problem: In Header and Line item condition: We are not getting the condition type GRWR automatically, if the PO is comming from SRM. Because of this the statistical value is 0.
    ( If we create manual PO, the condition GRWR appears in PO - and the Statistical value gets filled in automatically )
    How can we put the condition type GRWR into the PO using user exit ?
    Thanks and regards,
    Anil Rajpal
    Edited by: ANIL on Aug 12, 2010 6:18 PM

  • BDC/BAPI for set delivery cmlition indicator in purchase order @ item level

    Hi Expert,
    could you please suggest me bapi to set/reset delivery completion  indicator in purchase order at item level for  t-code "ME22n"?
    Thanks and regard,
    Santosh Gupta

    Use BAPI_PO_CHANGE to set the delivery completed indicator.
    Refer to table section in the BAPI Interface
    POITEM     LIKE     BAPIMEPOITEM
    POITEMX     LIKE     BAPIMEPOITEMX
    Set Field POITEM-NO_MORE_GR = 'X' & Set field POITEMX-NO_MORE_GR = 'X'

  • BAPI to retrieve partial deliveries in purchase order item level

    We have implemented an invoice scanning solution for all our purchasing documents, we seem to have an issue picking up partial deliveries in our scanning interface, in the delivery schedule at item level, if the delivery is not complete, you will see this information in this tab, is there any FM available that can display this information??
    Will 'BAPI_PO_GETDETAIL' have this information??
    Regards
    mark

    Hi Mark
    If you simply put a PO number and execute you will see you have this information available in POSCHEDULE
    Nabheet

  • Purchase Order item level change

    Hi All,
    I am trying to edit Purchase Requisition line number at item level in ME22N. But it is in disable mode. Is there any way to change it? The same is editable in delivery schedule tab in same transaction i.e. ME22N . Please let me know how to edit the same at item level?
    Thanks in Advance.
    Regards.
    Sugandh

    Hi Sugandh Ameer Baba,
    This is working exactly the way the ME21N / ME22N transaction is designed!
    When you are in ME22N, if your "item details section" is open , then you cannot modify anything on the "item overview section".
    So, if you need to edit the Purchase Requisition line number at item overview section, COLLAPSE the "item details section "
    Hope I got your issue right !!!

  • Reg: Block purchase order item level using MEMASSPO

    Hi,
    I am checking to see if we can block PO item level  in MEMASSPO.There is field for deletion indicator but i could'nt find any option to block.I searched forum but i found that deletion indicator LOEKZ value could be S for blocking and L for deletion.I want to know if any enhancemet or exit is required to include the feature of blocking PO item through MEMASSPO.Any information on this would be appreciated.Thanks in advance

    why do you want to set the block?
    Blocking an item is from s SAP point of view a short term solution until you have decided about a final solution. E.g. you have not yet an accurate price, hence you wont allow a GR, so you set a block.
    But blocking does not close a business case. Someday you want archive old purchasing documents, but archiving is only possible for not blocked  items.

  • Purchase order item level messages EDI o/p control

    Hello,
    I need to create Item level message proposal...but when I tried to navigate from me22 Item->Morefunctions->Messages...It is disabled...How can I enable the messages @ item level...?How can I propose messages @ item level...
    Thanks,
    Larry

    Hi 'Vishnu,
    Thx for the response...I checked my procedure is defined there...I shall explain my requirement in detail...I have an access condition like for Outbound PO
    Doc type/Pur org/Pur grp/Vendor/Material
    Since material is in the Item level of PO the value is not proposed in the communication structure and the O/P is not automatically proposed...
    How can I resolve this issue...?
    Thanks in advance
    Larry

  • Purchase Order Item Shipping Data Update

    Hi xperts,
    I need to update shipping data of purchase order item. I need to update the Unloading Point (ablad) field. Inside exit 'EXIT_SAPMM06E_013' I am changing value of field xekpv-ablad. but the value is not updated in the purchase order. Please advise.

    Hi
    1 Activate the Project in which u have included this User exit.
    2. also check in which client you are checking
    3  Debug and see whether u code is executed and also after saving check the Table EKPV   whether inforamtion gets update or not.
    Or else use Classs IF_PURCHASE_ORDER_ITEM_MM---- METHOD -
    GET_SHIPPING_DATA
    surya

  • User exit to change item level data in purchase order

    Hi,
    Can anyone let me know the user exit to change item level data in purchase order . there is a badi ME_PROCESS_PO_CUST for this but the issue is its method process_item gets triggered only when the item is changed. My requirment is
    For purchase order document types u201CZSOu201D and u201CZCOu201D, where the purchase order is a u201CLimits Orderu201D only i.e. no materials or services on the purchase order, the print price indicator field should be set to u201Cblanku201D (unchecked).   now i cant use ME_PROCESS_PO_CUST  because process_item wont get triggered if there is no change in itemlevel data.
    Regards,
    Rahul

    Hi Rahul,
    Probably EXIT_SAPLMEKO_002.
    hope it helps,
    Edgar

  • Help - User exit to change item level data in Purchase Order

    Hi,
    Can anyone let me know the user exit to change item level data in purchase order . there is a badi ME_PROCESS_PO_CUST for this but the issue is its method process_item gets triggered only when the item is changed. My requirement is For purchase order document types u201CZSOu201D and u201CZCOu201D, where the purchase order is a u201CLimits Orderu201D only i.e. no materials or services on the purchase order, the print price indicator field should be set to u201Cblanku201D (unchecked).   now i cant use ME_PROCESS_PO_CUST  because process_item wont get triggered if there is no change in item level data.
    Thanks,
    Rahul

    Hi Rahul,
    Probably EXIT_SAPLMEKO_002.
    hope it helps,
    Edgar

Maybe you are looking for