Purchase order doesn't create in srm sus

Dear customizer,
i have implemented a plan driven procurement with sus (r/3-sus) scenario,we have a problem when we transfer idoc from r/3 to sus.In sus sistem give me this error message
"An error occured within an XI interface: Exception occurredE:BBP_PD:147 -Enter a country for partner AER1 with type 'Sold-to Party' E:BS:002 -"Create" is not allowed (SUS Purchase Order 4500000005 ) Programm: CX_BBP_BD_ERROR===============CP; Include: CX_BBP_BD_ERROR===============CM002; Line: 57</FAULT_TEXT>"
I hope in your answer.Thank best regards.
Pernasetti Alessio

Hi
Please try this ->
Check whether the roles delivered by SAP meet your requirements. If not, you can create new roles and assign transactions to them. We recommend that you copy standard roles and tailor them to your requirements.
All users assigned to a respective role are then allowed to carry out the transactions. If required, you can refine the authorization check on the tab page Authorizations.
<u>Standard SAP Single-roles</u>
SAP_EC_SUS_ADMIN_PURCHASER (for purchasing administrators - SAP Supplier Self-Services)
SAP_EC_SUS_BIDDER (for bidders - SAP Supplier Self-Services)
SAP_EC_SUS_DISPATCHER (for dispatchers - SAP Supplier Self-Services)
SAP_EC_SUS_INVOICER (for invoicers - SAP Supplier Self-Services)
SAP_EC_SUS_ORDER_PROCESSOR (for order processors - SAP Supplier Self-Services)
SAP_EC_SUS_MANAGER (for managers - SAP Supplier Self-Services)
SAP_EC_SUS_SERVICE_AGENT (for service agents - SAP Supplier Self-Services)
<u>
If you want to use SAP Supplier Self-Services, proceed as follows:
1. Select one of the following single roles:
SAP_EC_SUS_ADMIN_PURCHASER
SAP_EC_SUS_ADMIN_VENDOR
SAP_EC_SUS_BIDDER
SAP_EC_SUS_DISPATCHER
SAP_EC_SUS_INVOICER
SAP_EC_SUS_MANAGER
SAP_EC_SUS_ORDER_PROCESSOR
SAP_EC_SUS_PRODUCT_MANAGER
SAP_EC_SUS_SAR_PROCESSOR
SAP_EC_SUS_SERVICE_AGENT
SAP_EC_SUS_SERVICE_MANAGER
2. Choose Change Roles.
3. Choose the Personalization tab page.
Note: The personalization applies to all roles, meaning the user can also create his own roles, for example copying the delivered SAP SUS roles. He can tailor these roles to his requirements by changing the SUS-specific attributes (BBP_SUS_ROLE_ATTRIBUTES).
1. Select the entry BBP_SUS_ROLE_ATTRIBUTES (SUS-specific role attributes).
2. Choose Change values.
A dialog box for maintaining SUS-specific roles appears.
3. If required, perform the following steps:
If the role should be displayed in the SUS User Management (UM) and should be able to be assigned to the relevant user by the supplier administrator, set the indicator to display the role in SUS UM.
If the user should be displayed as a service agent for the purchaser, set the Service agent indicator.
If you want to define the user as an SRM administrator, set the SRM administrator indicator. The user is then authorized to change all supplier data.
If want to assign the role SUS administrator automatically to the user during registration, set the SUS administratorindicator.
Sets the relevant indicators if you want users to receive the following notifications: Notification If Purchase Order Not Opened, Notification If Purchase Order Response Is Missing, Notification If ASN Is Missing, Notification If ConfirmationIs Missing, Notification If Invoice Is Missing,</u>
Regards
- Atul

Similar Messages

  • Purchase order Acknowledgement not create in SRM?

    Hi there,
    We are able to create Purchase order in SRM, but we don't see PO Ack generated. How do we set up PO Ack in SRM? Are we missing some configurations?
    Any help is appreciated.
    Thanks,
    Karma

    Hi there,
    We have a scenario where we trigger,from portal, in R/3 to send Orders02 to XI,XI maps Orders02 to Purchase Order to XML, and  sends to a SRM system. We see a Purchase Order being created in SRM system, and ALE AUDIT Idoc is sent to the sender R/3 system sucessfully. Now, when we "confirm" the purchase order in the SRM system, this should automatically trigger a Purchase Order Response from SRM to XI and then from XI to the R/3. This part isn't working for us. Are we missing some configurations the SRM side?
    Does anyone know how to fix this problem?
    Any help is appreciated.
    Thanks.
    Karma

  • I am trying to generate purchase order and i create a BAPI also which is active. But when i call the BAPI from SYbase Mobile Object RFC then after calling it gives an Error "Conflict when calling a Function Module (Field Length)".

    i am trying to generate purchase order and i create a BAPI also which is active.
    But when i call the BAPI from SYbase Mobile Object RFC then after calling it gives an Error "Conflict when calling a Function Module (Field Length)".

    Hi,
    Yeah i tried my Z_BAPI in R3 and then giving some ERROR.
    This is my CODE-
    FUNCTION ZBAPIPOTV2.
    *"*"Local Interface:
    *"  IMPORTING
    *"     VALUE(POHD) TYPE  ZPOHD OPTIONAL
    *"     VALUE(POITEM) TYPE  ZPOITEM OPTIONAL
    *"  TABLES
    *"      RETURN STRUCTURE  BAPIRET1 OPTIONAL
    data: ls_pohd type bapimepoheader,
             ls_pohdx TYPE bapimepoheaderx,
             lt_poit TYPE TABLE OF bapimepoitem,
             lt_poitx TYPE TABLE OF bapimepoitemx,
             ls_poit TYPE bapimepoitem,
             ls_poitx TYPE bapimepoitemx.
       MOVE-CORRESPONDING pohd to ls_pohd.
       MOVE-CORRESPONDING poitem to ls_poit.
       ls_pohdx-comp_code = 'x'.
       ls_pohdx-doc_type = 'x'.
       ls_pohdx-vendor = 'x'.
       ls_pohdx-purch_org = 'x'.
       ls_pohdx-pur_group = 'x'.
       ls_poit-po_item = '00010'.
       APPEND ls_poit to lt_poit.
       ls_poitx-po_item = '00010'.
       ls_poitx-po_itemx = 'x'.
       ls_poitx-material = 'x'.
       ls_poitx-plant = 'x'.
       ls_poitx-quantity = 'x'.
       APPEND ls_poitx to lt_poitx.
    CALL FUNCTION 'BAPI_PO_CREATE1'
       EXPORTING
         POHEADER                     = ls_pohd
        POHEADERX                    =  ls_pohdx
    *   POADDRVENDOR                 =
    *   TESTRUN                      =
    *   MEMORY_UNCOMPLETE            =
    *   MEMORY_COMPLETE              =
    *   POEXPIMPHEADER               =
    *   POEXPIMPHEADERX              =
    *   VERSIONS                     =
    *   NO_MESSAGING                 =
    *   NO_MESSAGE_REQ               =
    *   NO_AUTHORITY                 =
    *   NO_PRICE_FROM_PO             =
    *   PARK_COMPLETE                =
    *   PARK_UNCOMPLETE              =
    * IMPORTING
    *   EXPPURCHASEORDER             =
    *   EXPHEADER                    =
    *   EXPPOEXPIMPHEADER            =
      TABLES
        RETURN                       = return
        POITEM                       = lt_poit
        POITEMX                      = lt_poitx
    *   POADDRDELIVERY               =
    *   POSCHEDULE                   =
    *   POSCHEDULEX                  =
    *   POACCOUNT                    =
    *   POACCOUNTPROFITSEGMENT       =
    *   POACCOUNTX                   =
    *   POCONDHEADER                 =
    *   POCONDHEADERX                =
    *   POCOND                       =
    *   POCONDX                      =
    *   POLIMITS                     =
    *   POCONTRACTLIMITS             =
    *   POSERVICES                   =
    *   POSRVACCESSVALUES            =
    *   POSERVICESTEXT               =
    *   EXTENSIONIN                  =
    *   EXTENSIONOUT                 =
    *   POEXPIMPITEM                 =
    *   POEXPIMPITEMX                =
    *   POTEXTHEADER                 =
    *   POTEXTITEM                   =
    *   ALLVERSIONS                  =
    *   POPARTNER                    =
    *   POCOMPONENTS                 =
    *   POCOMPONENTSX                =
    *   POSHIPPING                   =
    *   POSHIPPINGX                  =
    *   POSHIPPINGEXP                =
    *   SERIALNUMBER                 =
    *   SERIALNUMBERX                =
    *   INVPLANHEADER                =
    *   INVPLANHEADERX               =
    *   INVPLANITEM                  =
    *   INVPLANITEMX                 =
    ENDFUNCTION.
    i am trying to generate purchase order and i create a BAPI also which is active. But when i call the BAPI from SYbase Mobile Object RFC then after calling it gives an Error "Conflict when calling a Function Module (Field Length)". 

  • Report for the List of Vendor for which no Purchase order has been created

    Hi ALL
    Please let me know if there is any Report for the List of Vendor for which no Purchase order has been created
    regards,

    Hi Prateksha Vaid ,
    Go to transaction S_ALR_87012093
    Select accounts with no purchases checkbox and execute
    Diwakar
    reward if useful

  • Output Message for Purchase order not being created Automatically

    Hi all,
    I created a Condition type for Purchase order in MN04 with key combination "Doc.Type/Purch.Org/Vendor". The problem arises when i delete this condition record. After deletion when i create purchase order in me21n for that condition type, the system gives an error.
    Message no. 06261 - No message generated for output of purchasing document.
    Is there anyway the purchase order message is created automatically again when its condition type has been deleted from MN04.
    - Regards
    Sahar Khalid

    Before creating the entry in MN04 the message was being created automatically. I want the system to create the same output message as it was creating before the creation of the entry in MN04.

  • MM - SUS: transfer text of the purchase order from R/3 to SRM

    Dear gurus,
    I 'm implementing a scenario of plan driven procurement with R/3, i have a release of SRM SERVER 5.5,R/3 is connected to sus via XI.
    ICan you help me to trasfer text from R/3 purchase order item to Sus purchase order item.?
    Best regards.
    Alessio Pernasetti

    Hi
    Which SRM version are you using ?
    Please specify what is your detailed requirement.
    <b>Please try these links -></b>
    <u>Note 761150 MM-SUS: sending texts from SUS (ORDRSP) to R/3-MM
    Note 995388 MM-SUS: sending texts from SUS (ORDRSP) to R/3-MM
    Note 868192 Consulting solution: SUS-MM (SUS-MMSRV) service procurement
    Note 703876 Release note SRM Server 5.0 SP00</u>
    <u>Other links -></u>
    Replicating the material master purchase order test from R/3 to SRM
    Purchase Order Response in SRM from R/3 through XI
    Re: Retrieving data from R/3 into SRM
    SRM Purchase Order Response
    Re: View "Purchase Order Text" in Material Master
    Mapping fields in SRM with R/3
    Regards
    - Atul

  • "Create purchase order" doesn't work, trans. me21n

    hello all,
    in me21n (trans. for creating purchase order) I've got this message:
    Material not subj. to inventory mgmt. in plant 1302 (Pl. check your input)
    Message no. ME124
    Diagnosis
    There is no data for plant 1302 (plant/storage location stock view) in the material master record.
    Procedure
    Enter a different material or - if possible - a different plant.
    Or maintain the missing view in the material master record.
    Could you please let me where is problem???
    I'm trying to do "creating purchase order" for material 000000-1331-894 and plant 1302.
    For another plant 5600 "it" works OK. I' ve checked purchasing in mm03 and compared "right" and "wrong" plant but I didn't find difference in mm03 for both of materials :(((
    Any ideas???
    V.

    Dear Vladislav Rossa
    Just check in SPRO for Material types whether u have set Quantity ahd Value field as Tick mark for that particualr plant-1302
    After that just checked whether that material is extended for that plant
    Just Go in Create mode
    T code MM01 and  copy paste ur material 000000-1331-894
    in Copy from also mention the same material
    select the views u want
    in org structure: Copy from Plant-5600 and store location
    in copy to enter the plant 1302 and str loc
    Hope after that while creating u will not get any errors
    regds
    shailesh

  • Purchase Order Request: (Third party -- XI-- SRM)

    Hi,
    We have the following scenario:
    Purchase order is send from our application to XI and then from XI to SRM. This purchase order will have a unique ID (our application assigns the ID). We would like SRM to send back Purchase Order Confirmation, and this PO Confirmation to have a unique PO number generated by SRM as well as its associated request unique ID (the one our application assigned to it).
    1. First of all, is this scenario possible?
    2. If it is possible, do we have to create our own purchaseOrderRequest_In interface in XI or can we use the standared purchaseOrderRequest_In interface to send the request from XI to SRM?
    3. What do we need to do for PurchaseOrderConfirmaton to be sent from SRM to XI?
    Any help is greatly appreciated.
    Thanks in advance for your help.
    Karma

    Hi Karma,
    This is standard scenario of SRM SUS(Supplier Self Service) .
    Where SAP sends Purchase Order to SRM SUS via XI through standard setting .
    In this, unique number is assigned in SRM SUS that  will be stamped while comming from SRM SUS to SAP Purchase Order's  tracking number field .
    Only we have to map in standard XI PurchaseOder_In Interface in XI .
    Regards,
    Sachin S M
    Message was edited by:
            Sachin S Murab

  • Purchase order cannot be created

    Hi friends...
    I am new to SRM and now in learning problem. I am trying to observer and study a case and I need opinions from experts out there.
    I appreciate the value u spend in responding me.
    Here is the problem :
    Purchaser A tried to create purchase order with SC xxxxx, he received error message "Enter exactly one partner of type Vendor " . SC has 2 lines, both have the same vendors but the message is displayed only for item 1.
    What I should I do to avoid/solve  this problem.

    Hi,
    it seems that a vendor was added twice to the document. It is possible that a vendor is added within the CHANGE BAdI (BBP_DOC_CHANGE_BADI).
    Ask the user to hold the SC.
    Check the cart with transaction BBP_PD. Enter the SC no. in field object_id and click on the header data in the output list.
    Check the partner entries if there is more than 1 vendor assigned.
    Regards
    Dennis

  • SRM alert configurations for SUS ASN not created in SRM SUS system

    Hi All,
    We are trying to configure the SRM ASN alerts with the alert category SRM_SUS_AVIS ( Alerts for ASN-SUS) by the same way we did for the SRM_BID_INV for bidinvitation in different client and scenario.
    Is the configuration for SUS anyway different than EBP? ( I have posted another thread for bid alert doubt and later it was configured and working fine sometime ago)
    If the config for SUS ASN alert is different then what is that?
    With our configurations in SLAERT and ALRTCATDEF, and thru RSALERTTEST job we are getting alerts for PO not viewed and Order confirmation not created.
    But we are not able to get alerts for ASN  not created.
    Can anyone throw some light on this please?
    Best regards,
    Sridhar

    Vendor data is maintained in table CRMD_PARTNER only when transactional documents exist for the vendor.

  • Do the purchase order can be created with several purchasing groups?

    Hello gúrus,
    I need your help again a.s.a.p. please!
    We are implementing SAP R/3 ECC 600 and we have SRM too.
    In the SRM is possible to create a purchase order with several purchasing groups, but, in MM we cannot because of the purchasing groups is the the header level.
    Somebody expert from SAP told to the client that its possible to create a Purchase order in MM with several purchasing groups..
    Is it possible? or, where I can find information from SAP that said that its not possible?
    Could you help me please?
    Regards,
    Sandra Palomo

    How can I create a PO with different purchasing groups to the same PO?
    Could you give me a detail?
    Regards,
    Sandra Palomo

  • Material description VS Purchase order Text when creating a PO

    Hi Gurus,
    When creating a PO for a specific material, I have to print a purchase order text different from the material description.
    To do this, a specific text has be added to the material master data in the tab "Purchase order Text" with the italian language maintained.
    But, when i start to create a new PO for this material, the short text that is shown is retrieved form the Material description and not from the Purchase order text that has been added before.
    How can I do to have the purchase order text shown in the PO instead of the common material description?
    Thanks in advance for your support.
    Regards,
    Valentino
    Edited by: Valentino Rosso on Sep 9, 2009 10:58 AM

    Hi Rajaram,
    thansk a lot for your answer, it has been very helpful.
    Could you please clarify me the below points?
    1) Could you please confirm me that this is the functionality of the standard SAP System? That means that in case we want to put the purchase order text in to "short text" we would need to create an ad hoc development, right?
    2) In case we print the PO with the purchase order text added for the material, is there any point where we can find this information for the material, or we will see just the material description from the Material Master Data?
    Thanks a lot for your support.
    Regards,
    Roberto

  • Purchase Order is not created once in a while

    Hi All,
    I have peculiar problem that, when we are creating purchase orders some of the purchase orders are not existing even it gives message "Purchase Order created with purchase order number" is displayed.
    But if I try to create the purchase ordrer with same data it is creating, this problem is coming once in a while.
    points will be rewarded
    Regards,
    Venkat.

    customizing problem.
    or
    field mapping not correct.

  • BAPI for purchase order .. to create and delete confirmation

    HI Gurus
    I need to create and delete PO(Purchase order) confirmation in SAP 4.7 R3 .
    Please let me know which BAPI i can use for .. in SAP 4.7
    1. Create PO confirmation
    2. Delete PO confirmation
    Many thanks and regards
    Sandeep Sharma

    Hi Sandeep,
    In SAP 4.7 R3 & ECC 5.0. we don't have BAPI to delete / create PO confirmatons.
    Use this FM for both : ME_CONFIRMATION_UPDATE
    In addition to above , we need to use this FM : ME_CONFIRMATION_REDISTR_ITEMS , for PO item update in MD04 transaction.
    In addtion to above 2 FM, you need to used Change doucment FM for write log data.
    Thanks.

  • No Purchase order to be create if WBS is not released

    Hi,
    We are using the PS system and we create a purchase order with account assignment Q, and we enter the WBS in to the purchase order.
    Now the requirement is if WBS is not release system should stop to create a PO. System should allow to create a PO if wbs is fully released.
    Pl advise how to do this.
    Thanks,
    Samir Bhatt

    Please go through CJ02-Edit-Status-Lock fictionally.
    It will not allow you to create a PO if the WBS is under released and locked. Hope this functionality guide/help you...
    Regards
    Vikrant

Maybe you are looking for

  • Commitment deletion

    Hi SAP gurus I want to close the Project while closing i am getting error that purchase requisition commitment exists for the WBS . PR's created from the project builder and these purchase requistion are unwanted. Tried by deleting the components / l

  • Jar file downloaded still the old version

    If I update a new jar file in the web server, The jar file being downloaded by a remote pc is still the old jar file even if the java plugin cache has been deleted. In my source below, I have already specified applet option as plugin. Below is the so

  • HT201210 firmware file not compatable

    When trying to upgrade my iphone 4 to latest version of iso I get a download error message saying firmware file not compatible

  • New Factory Update available for the EOS-1D C Cinema EOS Camera

    Incorporating feedback from professional users, Firmware Version 1.3.4 adds lens aberration correction data for Canon EF-mount Cinema lenses and Audio Recording updates. Please read our announcement to learn more about the Feature Upgrade.

  • Help Diagnosing Kernel Panics (MBP 8,2 on ML)

    Hello all, I'm hoping you can help me resolve these kernel panics on my Early 2011 MacBook Pro. They occur regardless of whether or not there is any external hardware attached, so we probably can rule that out straight away. In fact, they primarily s