Linking document info record and purchase order

Hi all,
I hope that someone can help me because I'm having a problem with creating links between document info records and purchase orders.
By default in SAP I can create links between document info record and purchase order ITEMS! When I create that link, I can see it in document info record under Object links tab, but when I double click on the number of purchase order nothing happens (I expected that this purchase order will open).
Why is that so?
Why can't I access purchase order from document info record even though the link exists?
The other question is about creating object links to purchase orders, not purchase order items! Is it possible to link document info record with purchase order?
I would appreciate quick answer because we're in the middle of a project and we're stuck with that problem.
Thanks!

Hi Karlo,
         As you mentioned, object links could be linked to Purchase order items. In customisation you maintain these entries under the node SPRO > Cross Application Components> Document Management--> Control Data --> Define Document Types --> Define Object Links.
There are many links in the standard system (possible entries).
The system automatically determines the screen number (dialog box) where the key data for the object is maintained for document maintenance.
You can check the screens when the screen entry is missing or contains errors by doing the following:
Start the Object Navigator and display the objects for the development class  CV.
Expand the function group 130. The structure nodescreens lista all screens that can be used for object links.
You can make an object link to SAP objects that are not shown in the possible entries list. To do this, proceed as follows:
In the standard system, there are already two special screens for the module pools SAPLCV130 and SAPLCV140 for the linked SAP object.
You must create two new screens with the same number for the module pools SAPLCV130 and SAPLCV140 .
The processing logic must follow that of screen 1204 in program SAPLVC130.
Create function module OBJECT_CHECK_XXXX (XXXX = object name)
If the object can be classified, this function module already exists .
Otherwise copy the function module for linking equipment DOCUMENT_CHECK_EQUI and change it as required for the new object.
Hope the above instruction helps in solving your problem,
Sojan
Note : Award points if you find the information useful

Similar Messages

  • FM or BAPI for creating purchase info records and purchase conditions

    Hi all,
    i need create purchase info records and purchase conditions from txt-file,
    What FM or BAPI i can used for this?
    Thanks and Regards,
    Andrei

    You can use trasaction SXDA_TOOLS.....
    object type BUS3003
    program type BINP
    program/method RM06IBI0
    but the fields must be sequentially written in the txt, with every space inclusive....

  • Document Info Record and Archivelink

    Dear all,
    Can any expert help to distinguish Document Info Record (e.g. CV04N) and Archivelink (e.g. OAER)?
    When should we use these two document management systems?
    We're now using ArchiveLink but we it is hard for us to search for specific document since there're no business custom attributes or characteristics to describe the document. Can we add custom attributes to ArchiveLink document?
    Document Info Record support characteristics seem can solve the problem. But how do we upload the document by using BAPI rather than attach it manually by CV01N.

    Hi Karlo,
             As you mentioned, object links could be linked to Purchase order items. In customisation you maintain these entries under the node SPRO > Cross Application Components> Document Management--> Control Data --> Define Document Types --> Define Object Links.
    There are many links in the standard system (possible entries).
    The system automatically determines the screen number (dialog box) where the key data for the object is maintained for document maintenance.
    You can check the screens when the screen entry is missing or contains errors by doing the following:
    Start the Object Navigator and display the objects for the development class  CV.
    Expand the function group 130. The structure nodescreens lista all screens that can be used for object links.
    You can make an object link to SAP objects that are not shown in the possible entries list. To do this, proceed as follows:
    In the standard system, there are already two special screens for the module pools SAPLCV130 and SAPLCV140 for the linked SAP object.
    You must create two new screens with the same number for the module pools SAPLCV130 and SAPLCV140 .
    The processing logic must follow that of screen 1204 in program SAPLVC130.
    Create function module OBJECT_CHECK_XXXX (XXXX = object name)
    If the object can be classified, this function module already exists .
    Otherwise copy the function module for linking equipment DOCUMENT_CHECK_EQUI and change it as required for the new object.
    Hope the above instruction helps in solving your problem,
    Sojan
    Note : Award points if you find the information useful

  • Price Updation in Info-Record from Purchase Order

    Hi Experts,
    Please Suggest ur Valuable inputs.
    1) Created a Material
    2) Created a Vendor
    3) NOT MAINTAINED Info-Record
    4) Manually Entering  the Price in Purchase Order
    5) Raising a Purchase Order with respect to that Vendor with Info-Record Tick.
    Now after raising the Purchase Order for the first time without Maintaining Info-Record and With Info Update Tick in Purchase Order screen in Material Tab,  For the Next time when  i raise the P.O with respect to Same Vendor the Previous Price will be Picked up.
    But where i can see this Price ?
    If i go to Me12 Transaction and Check the  Inforecord the price is not updated ?
    Where i can find the price of the material with respect to that Vendor ?
    Best Regards
    Javeed

    Hi,
    It will get updated in the menu details of Inforecord. Goto Inforecord Purchasing data > In menu details go to environment > There you can find the order price history.
    Note: PO price will never update the conditions in inforecord.
    Regards,
    Prabu

  • Version Document Info Record and File Management

    Hi all!
    want to edit DMS document info records (as in cv04n - add, del files) without deleting original DIR -> Version management of DIRs.
    I use the following BAPI scenario:
    - BAPI_DOCUMENT_GETACTVERSION (get the highest version of a DIR)
    - BAPI_DOCUMENT_GETDETAIL2 (to get the object links of the DIR)
    - BAPI_DOCUMENT_CREATENEWVRS2 (create a new version of the DIR, copyoriginals = X, object links are copied as well)
    - again BAPI_DOCUMENT_GETACTVERSION (get this new version number)
    - again BAPI_DOCUMENT_GETDETAIL2 to get the files of the new version DIR)
    - to delete single files, i change the file record of the files table ( set deletevalue = X).
    - then BAPI_DOCUMENT_CHANGE2  as suggested in a nother thread of mine by 2 community members.
    the latest step runs for version = 00, but when having a version gt 00, the bapi_document_change2 returns : "original is already checked in and stored".
    also i checked the ph_objid and lo_objid (the ids are the same for Version n and n+1), which might be the reason for the error mentioned above.
    i can't find any solution.
    thanks for replies in advance,
    Christoph

    Hi all!
    got the solution: - finally !!!
    Problem:
    you want to edit Document info records - using a new version of this DIR. in the new version it is possible to add and delete files.
    Solution:
    - CALL FUNCTION 'BAPI_DOCUMENT_GETACTVERSION'
    and get the actual hightest version of the DIR
    - ls_objtype-OBJECTTYPE = '*'.
    append ls_objtype to myobjectlinks. to be able to copy all the objectlinks of the DIR.
    - lv_dokvr_new = lv_dokvr_ref + 1. - increment the DIR version number
    - CALL FUNCTION 'BAPI_DOCUMENT_CREATENEWVRS2 to create a new version of the DIR.
    - * get again the actual version
    CALL FUNCTION 'BAPI_DOCUMENT_GETACTVERSION'
    - * get files of the new version
    CALL FUNCTION 'BAPI_DOCUMENT_GETDETAIL2'
    - * set the delete flag for those you want to delete in the table documentfiles.
    - CALL FUNCTION 'BAPI_DOCUMENT_CHANGE2'
    IMPORTANT ***
    !!! transfer O N L Y the files you want to delete O R transfer all files but C L E A R the STORAGE_CATEGORY field !!!
    any questions? feel free to ask...

  • Info Record and Purchase Req

    I created a purchase Req and when and I have following doubts in this.
    1. Once I entered plant itu2019s automatically populating storage location. Material maintained for different storage locations but I am not sure how it's populating specific one.
    2. One I click on source of supply it shows me different info record and I selected one of the info record for assigning the source. How this process is different from mE57.To me both look same.
    3. I created the PO and I entered different price then info record and my info update was checked but still it didn't update info record with new price. Any suggestion why?
    Thanks

    hi,
    1. You would be maintaining the MRP view of the MMR....Never forget the possible assignment for the Plant to the storage location is provided in the SPRO enterprise structure for the MM....
    2. Yes the process is merely same...Also never forget that there may be many inforecords for the vendor material, based on the different organisatinal levels provided and for its combinations...
    3. THe price never gets updated in the info record, but always the PO price history gets updated...you can see the PO price history in transaction ME1P...
    Regards
    Priyanka.P

  • Table shows link between delivery no and purchase order no

    Hi All
    For particular delivery no, I want to know the purchase order no. which table stores this info.
    cheers
    AJ

    >
    Karthik D wrote:
    > Hi Anup,
    >
    > If you know the billing number(VBRK-VBELN) you can get the PO number from VBRK-BSTNK_VF.
    >
    > Even if you know delivery number pass it to VBFA table, get the salesorder number and pass it to VBAK and get the po number(VBAK-BSTNK)
    >
    > Revert back if you have any doubts.
    >
    > Regards
    > Karthik D
    And If SO is not derived from purchace order than?

  • Link Delivery Schedule Line and Purchase Order History

    Hello,
    Please, i need to know if there is some link between delivery schedule item and PO history like PO history.
    I need to know the quantity of goods issues per schedule line...
    thanxs a lot
    Jean Baena

    Hai.
    Check CO06 for undelivered item list.
    Regards,
    Mani

  • Link between Fixed Asset and Purchase Order Tables

    Hi,
    I am working in Fixed Asset Report. I have a folllowing Doubts.Please clarify.
    1. How to link the Fixed asset tables with PO_HEADERS_ALL
    2. I took the Asset_Account field from FA_ASSET_DISTRIBUTIONS_V . But how to link with this table to other Fixed asset tables.
    Please give me the link between these tables. It will be grate helpful for me.
    Thanks,
    Prakash

    Hi,
    This should be mentioned/explained in [Oracle eTRM|http://etrm.oracle.com/] website (which is down for now). Others who already know the exact link may be able to help.
    Regards,
    Hussein

  • ECR/ECO and Document Info Record creation

    Hi,
    I’m trying to find out if it’s possible to automatically create an document info record and attach the document info record to the ECR/ECO (in background  through “Accompanying docs) when I create a new ECR/ECO through transaction CC31 or when I save the ECR/ECO.
    Do anyone now if this is possible, if yes can you please also answer the User Exit and BADI to use.
    Thanks

    Hi,
    Try following it may be useful for your requirement.
    1. EXIT_SAPMC29C_006   --    Include program ‘ZXCCAU06’
    2.EXIT_SAPMC29C_005   --     Include program ‘ZXCCAU05’
    Enjoy SAP……
    Don’t forget to give points if its useful ans.
    Namskar,
    Ketan Dave

  • Get Linked Document info into Purchase Order

    Hi,
    There is a popup which comes up upon pressing the attachment key in ME21N. This is currently blank.
    My requirement is to fill this popup with Linked Document Info from Material master into Purchase order at PO creation (ME21N).
    The fields that I want are
    DRAW-DOKVR (Document Version) or DRAD-DOKVR
    DRAW-DOKNR (Document Number)
    I found a BADI Document_main01 but how do I pass material number (EKPO-MATNR) to it as the OBJKEY in DRAD table.
    Is there any other way to populate the document number and version which is stored in the material master.
    Appecriate your help !

    Hi Shyam,
    Thanks for your reply.
    Could you please briefly explain your point.
    I am stuck up at some point and unable to find exactly the place to insert the specified data in the BAPI.
    Also note that I need to update data which I will take from Sales order in header text of PO. This data should automatically be picked up while Saving the PO.
    Useful replies will be definitely rewarded.
    Regards,
    Daya.

  • Automatic Link of  Documents in purchase requisition and purchase order

    Dear guru.
    I have created a document in CV01N and I have linked it in document data view of a material master(MM02).
    For every purchase requisition and purchase order position created for this material I need that the system execute an automatic link to this document.
    How can I do that ?
    Thanks

    Hello,
    You can only derive the attached documents from the preceding documents only (for example. Purchase Requisition). Deriving the attached document from the material master is not a standard scenario. This scenario is not in the system. You need to manually attach it.
    bg, Gabor

  • Purchase info record and Contract are not reflected in SC

    Hi...
       while i am creating a shopping cart in SRM for a particular product... i am not able to find the Purchase info record or Contract in SC - Source of supply tab...
    I maintained the Purchase info record and Contract for the particular material in Backend(4.7n).
    Plz throw some lights on this...
    thx....

    Hi
    if you are using classic scenario it might have dispalyed in SOS.
    check info records/contracts  are existed in backend for your product in srm?
    is your cart is special request(describe requirement ) or internal goods and services?
    if you are in ecs mode. it is not possible to see your inforecord/ backend contract in srm sos window
    regards
    muthu

  • Linking Between Sales Order And Purchase ORder

    Dear Gurus,
      How to link the Sales Order Number and Purchase Order Number. I know the Sales Order Number and I need the tables from which I can know the Purchase Order Numbers for that Sales Order Number.
    Points will be awarded.
    Thanks,
    Ravi

    Hi,
    Goto Table Mseg-kdauf is sales order no.
    get mseg-ebeln is purchase order.
    Or u can do the following code.
    from sales order no VBELN get VBFA-VBELV.
    SELECT SINGLE vbeln  FROM  likp
             INTO l_delno
             WHERE  vbeln   = vbfa-vbelv.
    SELECT SINGLE ebeln
               INTO l_sono
               FROM ekbe
               WHERE  belnr = l_delno    
               AND   bewtp = 'L' .  
    L_DELNO IS PURCHASE ORDER.
    If it is helpfull pls reward it.
    Regards
    Srimanta

  • Need help to find out link between process order and purchase order.

    Hi All,
    Need help to find out link between process order and purchase order.
    We have purchase order, we can find out associated process order in MD09 (No Purchase Requisition found in Purchase order). When I tired to replicate this scenario with same material in system but not able to do.
    Please suggest me what needs to check to get purchase order link to process order.. (this is not subcontracting )
    Edited by: SAP PQ on Sep 26, 2011 5:24 PM
    Thanks,
    SAP PQ
    Edited by: SAP PQ on Sep 26, 2011 5:24 PM

    MD09 is pegging. In SAP pegging is dynamic, meaning that there's no fixed link between purchase order and process order in your case.
    This is why you did not get the same result when you tried again later.
    Such a link can exist only if you do direct procurement for the order.

Maybe you are looking for