PO is not creating in system

Hello Experts,
Iu2019m trying to create a PO through u2018BAPI_PO_CREATE1u2019. Iu2019ve gathered all the structure and fields which this bapi needs to create PO. When I call this BAPI in my report program the whole code get execute but I never get any message which tells me that a PO has been created in the system. Can somebody please tell me what is wrong with my code OR am I missing something in it.
For reference here is my code.
===========================================================
REPORT  zad_bapi_po_create                      .
Constant Declaration for BAPI *****************
Data: l_bsart like mepo_topline-bsart value 'NB',
      l_bsart1 like mepo_topline-bsart value 'ZNB'.
Constants: c_ekorg like mepo1222-ekorg value 'POMR',
           c_ekgrp like mepo1222-ekgrp value 'PG1',
           c_bukrs like ekko-bukrs value 'SBPL',
           c_x value 'X'.
Internal table Declaration for BAPI *****************
Data:begin of i_tab occurs 0,
     verkf like ekko-verkf,
     verkf1 like ekko-verkf,
     lifnr like ekko-lifnr,
     werks like ekpo-werks,
     ebelp1 like ekpo-ebelp,
     matnr like ekpo-matnr,
     idnlf like ekpo-idnlf,
     menge(16),
     bprme like ekpo-bprme,
     lewed like ekpo-lewed,
     netpr(13),
     currkey(5),
     ebeln like eord-ebeln,
     ebelp like eord-ebeln,
     verkf2 like ekko-verkf,
     kalsk like lfm1-kalsk,
     bsart like mepo_topline-bsart,
     lifnr1 like ekko-lifnr,
     flag(1),
     pstyp like ekpo-pstyp,
     end of i_tab.
Data Declaration for BAPI *****************
DATA: BEGIN OF pohead OCCURS 10.
        INCLUDE STRUCTURE bapimepoheader.
DATA: END OF pohead.
DATA: BEGIN OF poheadx OCCURS 10.
        INCLUDE STRUCTURE bapimepoheaderx.
DATA: END OF poheadx.
*EXPPURCHASEORDER
DATA: BEGIN OF ponum.
        INCLUDE STRUCTURE bapimepoheader.
DATA: END OF ponum.
DATA: BEGIN OF poitem OCCURS 100.
        INCLUDE STRUCTURE bapimepoitem.
DATA: END OF poitem.
DATA: BEGIN OF poitemx OCCURS 100.
        INCLUDE STRUCTURE bapimepoitemx.
DATA: END OF poitemx.
DATA: BEGIN OF poitemsch OCCURS 100.
        INCLUDE STRUCTURE bapimeposchedule.
DATA: END OF poitemsch.
DATA: BEGIN OF poitemschx OCCURS 100.
        INCLUDE STRUCTURE bapimeposchedulx.
DATA: END OF poitemschx.
DATA: BEGIN OF errmsg OCCURS 10.
        INCLUDE STRUCTURE bapiret2.
DATA: END OF errmsg.
DATA : errflag.
START-OF-SELECTION.
refresh pohead.
refresh poheadx.
clear pohead.
refresh poitem.
refresh poitemx.
pohead-DOC_type = i_tab-bsart.
pohead-vendor = i_tab-lifnr.
pohead-purch_org = c_ekorg.
pohead-creat_date = sy-DATUM.
pohead-pur_group = c_ekgrp.
pohead-comp_code = c_bukrs.
pohead-sales_pers = i_tab-verkf2.
pohead-doc_Date = sy-datum.
pohead-langu = sy-langu.
pohead-currency = 'USDN'.
pohead-item_intvl = ''.
append pohead.
poheadx-doc_type = c_x.
poheadx-vendor = c_x.
poheadx-purch_org = c_x.
poheadx-pur_group = c_x.
poheadx-comp_code = c_x.
poheadx-sales_pers = c_x.
poheadx-item_intvl = c_x.
poheadx-doc_date = c_x.
poheadx-currency = c_x.
poheadx-langu = c_x.
append poheadx.
refresh poitem.
clear poitem.
refresh poitemsch.
clear poitemsch.
refresh poitemschx.
clear poitemschx.
poitem-po_item = '0010'.
poitem-material = '40-210'.
poitem-quantity = '1'.
poitem-po_unit = 'ST'.
poitem-net_price = '1'.
poitem-no_rounding = 'X'.
poitem-plant = '1200'.
poitem-info_upd = ''.
poitem-item_cat = '0'.
poitem-vend_mat = ''.
append poitem.
clear poitemx.
poitemx-po_item = '0010'.
poitemx-MATERIAL = c_x.
poitemx-QUANTITY = c_x.
poitemx-PO_UNIT = c_x.
poitemx-NET_PRICE = c_x.
poitemx-NO_ROUNDING = c_x.
poitemx-PLANT = c_x.
poitemx-GR_TO_DATE = c_x.
poitemx-INFO_UPD = c_x.
poitemx-tax_code = c_x.
poitemx-item_cat = c_x.
POITEMx-ACCTASSCAT = c_x.
poitemx-AGREEMENT = 'X'.
poitemx-AGMT_ITEM = 'X'.
poitemx-VEND_MAT = c_x.
append poitemx.
poitemsch-po_item = '0010'.
poitemsch-sched_line = '0001'.
poitemsch-delivery_date = sy-datum.
poitemsch-quantity = '1'.
append poitemsch.
poitemschx-po_item = '0010'.
poitemschx-sched_line = '0001'.
poitemschx-po_itemx = c_x.
poitemschx-delivery_Date = c_x.
poitemschx-quantity = c_x.
append poitemschx.
CALL FUNCTION 'BAPI_PO_CREATE1'
  EXPORTING
    poheader                     = pohead
    POHEADERX                    = poheadx
  POADDRVENDOR                 =
  TESTRUN                      =
  MEMORY_UNCOMPLETE            =
  MEMORY_COMPLETE              =
  POEXPIMPHEADER               =
  POEXPIMPHEADERX              =
  VERSIONS                     =
  NO_MESSAGING                 =
  NO_MESSAGE_REQ               =
  NO_AUTHORITY                 =
  NO_PRICE_FROM_PO             =
IMPORTING
  EXPPURCHASEORDER             =
   EXPHEADER                    = ponum
  EXPPOEXPIMPHEADER            =
TABLES
   RETURN                       = errmsg
   POITEM                       = poitem
   POITEMX                      = poitemx
  POADDRDELIVERY               =
   POSCHEDULE                   = poitemsch
   POSCHEDULEX                  = poitemschx
  POACCOUNT                    =
  POACCOUNTPROFITSEGMENT       =
  POACCOUNTX                   =
  POCONDHEADER                 =
  POCONDHEADERX                =
  POCOND                       =
  POCONDX                      =
  POLIMITS                     =
  POCONTRACTLIMITS             =
  POSERVICES                   =
  POSRVACCESSVALUES            =
  POSERVICESTEXT               =
  EXTENSIONIN                  =
  EXTENSIONOUT                 =
  POEXPIMPITEM                 =
  POEXPIMPITEMX                =
  POTEXTHEADER                 =
  POTEXTITEM                   =
  ALLVERSIONS                  =
  POPARTNER                    =
if sy-subrc eq 0.
  write:/ 'PO Created successfully!!!'.
else.
  write:/ 'Error Occured during PO Creation'.
endif.
===========================================================
Thanks,

Bapi's do not set sy-subrc. The only way to check if it was succesfull is to loop into the return table for error messages:
You have to use BAPI_TRANSACTION_COMMIT after calling BAPI_PO_CREATE1:
    READ TABLE errmsg TRANSPORTING NO FIELDS
                        WITH KEY type = c_e.
    IF NOT sy-subrc IS INITIAL.
      CALL FUNCTION 'BAPI_TRANSACTION_COMMIT'
        EXPORTING
          wait = c_x.
  ENDIF.

Similar Messages

  • Could not create source System to r/3 Server

    hi,
    I have a BW QAS System
    I am  trying to create a r/3 system(QA2) as source system   to this server.
    When i go to RSA1 and create the source system, i am getting the following message Source system PD2CLNT100 does not exist
    R/3 System QA2 was copied from PD2 yesterday. The logical name for the client 100 is still PD2CLNT100
    I understand that this is a problem in R/3 Server that the logical name should reflect something like QA2CLNT100 which was before.
    Pls guide

    Hello Balaji,
    Have you run BDLS after  the system copy. If not please do it where in you need to replace PD2CLNT100 by QA2CLNT100 .
    Regards.
    Ruchit.

  • J2EE Cluster is not created during system copy.

    Hi all,
    Iu2019ve been trying to perform a system copy on our PI 7.0 sp14 test system & create a second system on the same server.
    I used the standard Sapinst tools for this because it is a PI ABAP+JAVA system.
    The copy process went smooth but after it finished I realized that the ABAP side has been installed correctly but when I tried running "SXMB_IFR" I saw that the system points me to the source system J2EE process.
    Looking into the file system of the target system, I saw that under the path \usr\sap\<SID>\<Instance>\j2ee\cluster only the bootstrap folder exists. Of course that in the SAP MMC, you cannot see any J2EE process under the new system process list.
    I tried using a newer sapinst but that didnu2019t help.
    Anyone ever encounter anything like that?
    Thanks for your help.
    Regards,
    Yoav Zilberman

    He again,
    Now i finally managed to make all the J2EE  process work but i keep having issues with the "server0" process in both systems on the server.
    the first system i starts works fine but the second one will get the error: [Thr 8944] JStartupICheckFrameworkPackage: can't find framework package E:\usr\sap\XIQ\DVEBMGS00\exe\jvmx.jar ; (SID changes according to which system started first).
    Thanks,
    Yoav

  • TR was not created after MIGO

    Hi, experts
    Sometimes after I did goods receipt with MIGO for purchsing order, the TR was not created by system. Normally after MIGO system create material document and TR at same time, then I use LT06 with reference the document no. place it to the storage bin.
    But for this case, no TR generaged. I can only use LT10 /mvt999 to move them to the storage bin.
    Can you please tell me the possible reason for this problem( TR not created)?

    Can you please check what is the movement type being used ? If you were able to use LT06 in some cases means that most probably 101 is correctly defined in LE--> Interfaces --> Movement types to trigger the TR's.
    1) however, if you are using / different movement type is being triggered and is not set up to create the TR.
    2) If you see that the movement type is still 101, you could still be creating the TR's in the background, however, if you have a background job or some other transaction that is confirming the open TR's , this could be one of the reasons why you are not able to use LT06.
    For this you can go to MIGO ( go to display tab for material document) , go to WM tab and find out the TR # there.
    You can then go to LB03 and if you scroll to the right , you will find the TO # created.
    Please go to LT21 and check who and how the TO is being created / confirmed, if thats something out of the process for you.
    Thanks

  • Early watch alert task not created in SDCCN in satellite system

    Hello Everyone,
    I am trying to configure EWA in solution manger 7.0 ehp1. I have added the system in SMSY, created RFC SM_SIDCLNTXXX_READ and SM_SIDCLNTXXX_TRUSTED in solution manger and also created RFC SM_SIDCLNTXXX_TRUSTED and SM_SIDCLNTXXX_BACK in satellite system sucessfully.
    The Early watch Alert in TA DSWP is showing me a red flag. The job  /BDL/TASK_PROCESSOR in satellite system is being sucessfully finished.
    The problem I am facing is I cannot find task Early watch Alert in SDCCN in my satellite system and can not create other RFC such as SAPOSS and SDCC_OSS
    Could anyone please suggest how should i go about it?
    Component version of my satellite system is
    ST-A/PI - 01M_SCM570
    ST-PI - 2005_1_700  00003

    Hello Sohrab
    1) The SDCCN task logs will be on the Done tab - You can also check the logs in SLG1 at the time, there could be more information there.
    Typically the refresh definitions will have nothing, except when there are updates, so it is not unusual to see no updates here each time the task runs. If there are service sessions the maintains package should pick them up with refresh service task.
    Is the SM_<SID>CLNT<nnn>_BACK RFC set as the master in SDCCN?
    One test you can make is create a Refresh session task on the satellite. This is the task that the Maint. Package should run.
    It will just be easier for testing. If the refresh session task does not create any EWA tasks for the service sessions outstanding, then there is a configuration issue.
    If it works, then the Maintenance task is failing before it can shcedule the  refresh session task.
    I realize I haven't offered a solution, but a way of finding out where it is failing. Once we isolate where it is failing, we reduce the possibilities of what it could be, and we should be left with the solution.
    So forget the Maintenace Package for Now. Lets see if you can pull the service sessions with a Refresh Session Task.
    You know in the SDCCN task logs errors in the logs are prefaced by what looks like a yellow lightening bolt.
    So if you see these in any of the logs, you are encountering an error, and you should copy it here.
    Hope this helps to move you forward.
    Regards,
    Paul

  • SRM: Create Contact Person Could not create user; contact your system admin

    Hi All,
    First, I am not sure this question should be posted here, or SRM General. From my point of view, here is more suitable.
    Our Problem:
    Activity "Create Contact Person With Reference" error with message:
    Step to reproduce:
    1. Login to SRM JAVA as super administrator
    2. Open tab "SRM Administration"
    3. Using the current query, search for Business-Partner no: 30000725
    4. Press "Create Contact Person with Reference"
    5. Fill all required fields, tick "Is contact person" checkbox
    6. Put: /SAPSRM/SUPPLIER as Role
    7. Save
    The following Message appear:
    Could not create user; contact your system administrator
    SPML Service error: Error reading request status.  Display Help
    Contact Person 2000000214 Created Successfully for BP 30000725  Display Help
    E-mail was sent
    The first error is intriguing. The username & password is created successfully in ABAP System (Our UME is in ABAP).
    QUESTIONS:
    1. What cause this problem? How to trace the error?
    2. We want the user have portal role automatically. How to achieve that?
    Thank you for any responses and helps.
    SRM ABAP Version:
    SRM_PLUS     700     0009     SAPKIBK209     SRM_PLUS for mySAP SRM
    SRM_SERVER     700     0009     SAPKIBKV09     SRM_SERVER
    SAP_ABA     701     0007     SAPKA70107     Cross-Application Component
    SAP_BASIS     701     0008     SAPKB70108     SAP Basis Component
    PI_BASIS     701     0007     SAPK-70107INPIBASIS     Basis Plug-In
    SRM JAVA Version:
    SRM JAVA: Release 7 SP Level 9.0
    BP SRM: Release 7 SP Level 9.0
    Edited by: Nur Agus Suryoko on Mar 11, 2011 11:36 AM
    Version information added

    Hi Fernando,
    Can you please tell me how you resolved this issue ??
    Regards,
    Adren

  • The system could not create any outputs for mv type 561

    Hi,
    I tried to print out a goods receipt others in MIGO and i received "The system could not create any outputs" when i tick on output control. I tried to follow the steps in How to print the material document in MB1C movement 561 I stuck at step 4 where i cannot find MvT 561. Please help
    Chk your setting as below to get GR print out.
    . Maintain the Printer Name in MM->Inv Mgmt and Phy Inv->Print Control-> Gen Settings-> Printer Setting Enter the local printer where you want to print your Goods posting document
    2. Ensure that in MM->Inv Mgmt and Phy Inv->Print Control->Gen Settings->Item Print Indicator, 1 stands for Matl Doc print out
    3. In MM->Inv Mgmt and Phy Inv->Print Control->Gen Settings->Print Version, maintain Print Version 2
    4. In MM->Inv Mgmt and Phy Inv->Print Control->Maintain Print Indicator for Goods Receipt/GI/Transfer Posting Documents
    Here for Particular mvt type 101,201,121,311,313,501,521,561 etcu2026 Maintain the Print item as 1--Material document printout
    5. In MM->Inv Mgmt and Phy Inv->Output Determination->Maintain Output Types, for the Output types WE01, WE02 and WE03, ensure the following--
    Select the particular Output type then goto Details
    a. Default Values: Dispatch Time is 3 or 4 as per reqmt. and Transmission medium is 1
    b. Print Parameter is 7
    6. In MM->Inv Mgmt and Phy Inv->Output Determination->Printer Det->Printer Determination by Plant/Str Loc , Maintain the Output device for all your Plants
    7. Go to MN21, for Tr Type WE, Print Version 3, maintain Print Item as 1.
    Now the settings are ready for Printing Material doc
    8. While doing MIGO, ensure that in General Tab, you get "3 Collective Slip" beside the Print Indicator and you tick mark the field.
    9. Now depending on the setting in 5a, the Matl doc is printed. If it is 3, you have to print it using MB90. If it is 4, it is printed immediately.

    issue is resolved

  • Why can I not create a PDF from a web page on my Adobe Acrobat 8 Pro on my new Windows 8 computer? It worked fine on my windows XP system?

    Why can I not create a PDF from a web page on my Adobe Acrobat 8 Pro on my new Windows 8 computer? It worked fine on my windows XP system?

    Acrobat 8 is not compatible with Windows 8,  for the simple reason it was
    created much before it and Adobe could not participate the changes to the
    OS that Microsoft implemented many years later on. You need to buy the
    current version for compatibility.

  • ** File to IDoc scenario - IDoc not created in target system

    Hi friends,
    We are doing File to IDoc scenario. We made required setting in both application as well as XI system. While test the scenario, the file is picked up and successfully processed in SXMB_MONI, but the inbound IDoc is not created in target system. What could be the problem?
    We are using DEBMAS message type DEBMAS06 IDoc type. We checked the following.
    1) SM59 - Connections are OK both application and XI system
    2) IDX1 - In XI System, we have assigned SAP<R/3> port.
    3) IDX2 - IDoc is imported.
    4) In ID - Sender File - Business Service - Adapter-Specific Identifier - Logical System name is given.
    5) In application system. - Partner Profile maintained correctly.
    6) SM58 - There is no error.
    So, what could be the reason ?
    Kindly reply, friends,
    Thanking you.
    Kind Regards,
    Jeg P.

    Hi,
    Check all the steps ..
    File to IDOC
    Do these configurations in R/3 and in XI...
    SAP XI
    1) RFC Destination (SM59)
    a) Choose create.
    b) Specify the name of the RFC destination
    c) Select connection type as 3 and save
    d) In the technical settings tab enter the details SAP SID/URL and system number#.
    e) Enter the Gateway host as same details above SID/URL.
    f) Gateway service is 3300+system number#.
    g) In the Logon /Security tab, enter the client user & Password details of Destination system.
    h) Test the connection and remote logon.
    2) Create Port (IDX1)
    a) Select create new button
    b) Enter the port name as SAP+SID (The starting char should be SAP)
    c) Enter the destination client.
    d) Enter the RFC Destination created in SAP R/3 towards other system.
    e) Save
    3) Load Meta Data for IDOC (IDX2)
    a) Create new
    b) IDOC Message Type
    c) Enter port created in IDX1.
    SAP R/3
    1) RFC Destination (SM59)
    a) Choose create.
    b) Specify the name of the RFC destination
    c) Select connection type as 3 and save
    d) In the technical settings tab enter the details SAP SID/URL and system number#.
    e) Enter the Gateway host as same details above SID/URL.
    f) Gateway service is 3300+system number#.
    g) In the Logon /Security tab, enter the client user & Password details of Destination system.
    h) Test the connection and remote logon.
    2) Create Port (We21)
    a) First Select Transactional RFC and then click create button
    b) Enter the destination port name as SAP+SID (The starting char should be SAP)
    c) Enter the destination client.
    d) Enter the RFC Destination created in SAP R/3 towards other system.
    e) Save
    3) Create Partner Profile (WE20)
    a) Create New
    b) Create the Partner no. name as same the logical system name of the destination system.
    c) Select Partner type LS
    d) Enter details for Type: US/USER, Agent, and Lang.
    e) Click on the + button to select the message type.
    f) Select Partner no. and LS which ever create above.
    g) Select Message type
    h) Select Process code related to the Message type.
    I) save.
    Thanks,
    Satya

  • BW and RFC problem  -- Source system not created.

    Hi Friends,
    Before posting this post , i have searched so many posts and docs and but still got a problem in creation of R3 source sytem in BI7.0.
    Steps i followed in R3 are as follws:
    1) created  alogical system for R3 and BI7.0
    2)assigned this logical system to clients 001 and 800
    001--Bi
    800--r3
    3)created user BWALEREMOTE in  su01  with profile sap_all
    Steps in BI7.0 are as follows:
    1) Created  logical systems  for Bi and r3
    2) assigned this logical systems to same clients
    3) created  user BWAleremote in su01  with profile SAp_ALL
    with respect to RFC's
    In R/3
    SM59--created a RFC name  same as logical system names
    for R3 RFC destination-- user is BWaleremote, client is 800
    for BI RFC destination -- user is Bwaleremote , client is 001
    when i checked the connections , i can sucessfully test the connections , But remote logins are having problems.
    r3 to BW is possible, but it is prompting the  password for BI again
    BW  to R3 is not possible.
    To my knowledge and search in forums,RFC connections are succesful, then it should not prompt for any passwords..so iam  wrong
    I also went into RSA!-- global settings-- i gave user as BWaleremote..
    Plz help me in this
    PAVAN

    Hi Pavan,
       The RFC configuration is probably wrong. Check the username/pswd that you are using to connect to the other system. Try logging normally through the sap logon pad using that username/pswd that you have mentioned in the logon tab in RFC connection entry. See if you are able to logon. In the remote logon, it should not ask for any password.
       If this succeeds, then create the source system in RSA1 in the BI box.

  • Could not create JCOClientConnection for logical System: WD_MODELDATA_DEST

    Hi ,
    I am getting the below error:
    Could not create JCOClientConnection for logical System: WD_MODELDATA_DEST - Model: class com.eligibilitymodel1.EligibilityModel1. The SSO ticket needed for authentication to WD_MODELDATA_DEST has expired. Close all applications and logon anew!
    Regards
    Anumit

    Anumit,
    when will you get this error?
    if you are getting this while using adaptive rfc model follow this link Could not create JCOClientConnection for logical System:
    if it doesnot work
    try to reimport the certificate or restart the server
    Thanks
    Bala Duvvuri

  • PISUPER not able to create business systems

    Dear All,
    I am trying to create business systems in ID using PISUPER by importing from SLD. However, I keep getting a warning message saying 'Insufficient authorisation to create communication component'.
    I check for all the required roles for PISUPER and they exist.
    When I checked the J2EE logs, i can see the below error:
    Context does not exist session id=com.sap.engine.session.exec.UserContextImpl@254ea7b6[ clientId=null, clientSessions=[], persistent Model=null]
    Location: com.sap.conn.jco
    Please could someone help me to resolve this.
    Thanks
    Vasu

    check if you have USERS: PIDIRUSER & PIREPUSER
    with Roles:
    SAP_XI_ID_SERV_USER
    SAP_XI_MONITOR_J2EE
    And User Type must be service.
    Also check Users are not locked.  
    also check if everything is fine with user SAPJSF...
    (TCP/IP) LCRSAPRFC should point to correct Integration Server.  Also the Program ID should be registered in the JCO connections of Integartion server with user SAPJSF.

  • Not able to find the created BI System

    Hi,
    I have configured the BI System as in the document.
    http://help.sap.com/saphelp_nwce10/helpdata/en/7e/6dbcea3700452195e3bddaa47c5906/frameset.htm
    I am having few doubts.
    1. Whether we need to choose only SAP system with load balancing template.
    2. Whether we can set
               BI Directory Provider: No
               BI Master System: No
    And also one more thing, I am using UIDPWD logon method. Whether there will any problem with this
    I need clarifications on these.
    Also after doing all these things i am not able to find the created BI System in VC.
    When i test the same in Portal, it is saying the connection is successful..
    Anyother step needs to be done, after this in configuration. Please let me know.
    Please help me to resolve this issue.
    Regards,
    Palani
    Edited by: Palani Appan on Sep 12, 2008 1:41 PM

    Hi Inna,
    Thanks for the reply.
    But in Portal I have done the User Mapping between Portal Server and BI System.
    I am using BI 3.5 System, Whether there will be any problem?
    The BI Kit is already installed and i am able to view the components.
    Still i am not able to get the System that i have created in portal into VC 7.1.
    I am only getting Web Services created in that system and Service Registry and Visual Composer Models in Search Tab.
    Whether we need to create a RFC destination also for this BI system?
    Please help me to solve this issue.
    Regards,
    Palani
    Edited by: Palani Appan on Sep 15, 2008 4:44 PM
    Edited by: Palani Appan on Sep 16, 2008 9:42 AM

  • System Type ERP not available while creating Buisness System For ECC in SAP Sourcing 9.0

    Hi,
    I need to import Master data in SAP Sourcing but when i am uploading master data i am getting this errror
    Business system ECQCLNT340 does not match with local SAP Sourcing System ID SOURCING.
    i have followed the steps in config guide of SAP ERP with SAP Sourcing.
    when i am creating business system in SAP Sourcing system type ERP is not available.
    i have also attached the error file, please check
    --------------Version---------------
    ECC 6.0 Ehp6
    SAP Sourcing 9.0 on NW7.3 Ehp1 on IBM DB2
    Thanks and Regards,
    Murtaza Najmi

    Thanks you Prasad,
    this issue has been resolved and i have completed the installation part of SAP Sourcing and Contract generation.
    Now , I am getting error while uploading clause document,  my functional team member are not able to upload clause document. kindly suggest.
    ----------------------Error Description---------------
    Login with buyer link into the system-> it has all authorizations
    then Goto -> Contract Management -> Clause Library -> Clause list -> Click on New button -> Click on Add button -> Browse Document
    it is showing POPUP with Error that "There is a problem with the Contract Generation web service Contact your system administrator"
    Thanks and Regards,
    Murtaza Najmi

  • Could not create JCOClientConnection for logical System:

    Hi,
    I am facing a wierd problem in using the JCO destinations.
    I created a page where it is using some JCO destinations say SAP_R3_HumanResources.
    when i open the page it is working for the first time .without closing the page if i open the same page again it is giving the following error
    Error connecting using JCO.Client: null
    Error connecting using JCO.Client: null
    Pernr:Could not create JCOClientConnection for logical System: SAP_R3_HumanResources - Model: class com.swissre.CustomData. Please assure that you have configured the RFC connections and/or logical system name properly for this model!
    Please let me know how to solve this issue
    Thanks
    Bala Duvvuri

    Hi Bala,
    It seems that this is a custom webdynpro application which when executed causes such problem.  This might be due to JCO connection not released back to the pool.
    Please refer to the following threads and that might be helpful. 
    Re: JCO Connection close
    How to close a model object connection for Adaptive RFC?
    You might have to call disconnectIfAlive method on your model.
    Regards,
    Jigar

Maybe you are looking for

  • How can I find a PO is closed or Canceled.

    Hi Friends, I Have a PO say 3000000001. How can I find this PO is closed or Canceled. Thro' Transaction and Table. Regards, Viji

  • Purchase of Assets during the Period

    Hi Experts, Recently I am facing a typical problem.I am new in SAP. We had purchased one asset in the month of April amounting to Rs.65,000/- dated 23.04.2009.When we run AFAB for the month of April-2009 we noticed that system is calculating deprecia

  • Prime Infrastructure Licensing question

    I received a PAK and I generated a license from it.  E Mail that I received shows this:    Product Name         : L-PILMS42-50-M    Product Description     : Prime Infrastructure LMS 4.2 - 50 Device Upgrade Lic                                        

  • C structure

    How does one convert a "c structure" that has been sent via a TCp/ip or UDP packet. Within a c program there is a structure that gets sent as a packet but on the LabView side it comes in as a binary string - There seems to be no way in Labview (at le

  • Problem in scheduling a 6i report from SRS

    Hi Guys, I have a 6i report which is a concurrent program. I want to schedule this concurrent program to run every month on a particular day. Also, my 6i report has a date parameter. For ex: the date parameter is " For the month of:", if we enter dec