The requests imported within an urgent correction, getting reimorted in MC

Hello All
Using change request management, I found that when we are importing normal corrections, the previous imported requests via urgent corrections are getting re-imported in to the production. It’s the standard configuration that SAP provided, but its going to be trouble if its going to overwrite the previous imported changes.
Does any one know how to resolve this issue to avoid re-importing of already imported requests in maintenance cycle [MC]?  Is there any way to resolve this issue?
Urgent help will be appreciated,
Thanks & Regards
Sharmishtha

Hi Jason
I am using solution manager 4.0 SP 12, with default functionality I am facing following issue.
For example request T1 is released from Dev and imported in QA, then after PRD in urgent correction. In maintenance cycle i.e. normal correction, request T2 is released from Dev, but while import in QA, its importing T1 and T2, same happens when we are trying to import it PRD, its importing again T1 and then T2.
This is happening because requests are getting import with “import again” tp option, but its set default for preliminary transports i.e. urgent correction. As its happening via change request management I don’t know where do we can change/set this option or change these default configuration settings.
Its problem if its try to import the already import request as it may have impact on the current functionality as per our users & client’s concerns.
Will you please help me in this ?
Waiting for reply;
Regards,
Sharmishtha

Similar Messages

  • I have no bar which shows the words import. How can I get my favorites moved over or do i have to just keep going back to explorer to get them. I did the auto set up to move them but cant find them on any tool bar

    i downloaded firefox and said to import my favorites and stuff from my qwest homepage and can't find them . I have no tool box on any of my pages that I can drop down that says import. not on my old homepage or the firefox page. Help, i dont want to have to keep going back and forth

    You can usually find the imported IE Favorites in a folder ("From Internet Explorer") at the bottom of the Bookmarks Menu folder (Bookmarks > Organize Bookmarks).
    If you can't find them in the "From Internet Explorer" folder then try this:
    * Export the favorites in IE to an HTML file (bookmarks.html): File > Import and Export
    * Import the HTML file in Firefox: Bookmarks > Organize Bookmarks > Import & Backup > Import HTML: From File
    See also:
    * http://kb.mozillazine.org/Import_bookmarks ("Import from another browser" and "Import from file")

  • I just stepped up from my trusty 4gig generation ipod to an 8gb ipod touch. I have many questions but the most important is how can I get my music from the old one to the new ipod since it took me over a week to download all my CDs onto my last computer

    is anyone here?

    Are these tracks that are on your old iPod still in your iTunes library? If so, just configure them to sync to your iPod Touch.
    Otherwise you'll need to copy everything from the old iPod to your PC and into iTunes first. See this older post from another forum member Zevoneer covering the different methods and software available to assist you with the task of copying content from your iPod back to your PC and into iTunes.
    https://discussions.apple.com/thread/2452022?start=0&tstart=0
    B-rock

  • Urgent Correction: Release transport request (transport is red)

    Hello!
    Has some one experience to solve the problem bellow:
    By an urgent correction it is not possible to release transport. In the field "Task" I can see a red point that not allow to proceed.
    If I release the transport manually in the satelite syytem, without CharM, my import runs with error:
    AGR_1016 table class is 'C'. Entries are only imported to client '000'.
    AGR_1016B table class is 'C'. Entries are only imported to client '000'.
    AGR_PROF table class is 'C'. Entries are only imported to client '000'.
    AGR_USERT table class is 'C'. Entries are only imported to client '000'.
    AGR_TIMEB table class is 'C'. Entries are only imported to client '000'.
    Main import
    End date and time : 20071115141115
    Ended with return code:  ===> 8 <===
    The question is:
    I would like to copy some existing role to  cutomer's namespace Z... save the rolle and transport the role via CharM.
    Is it usual to get the error I get?
    Thank you very much!
    regards
    Thom

    Hi Liza:
    You cannot delete released transport requests.
    Don't import them into QAS or PROD.
    If you already imported them, then your only option is to delete the Objects manually in DEV, capture the deletes in a new request and transport th enew one.
    As you know if you released a request, you can ignore it without moving it anywhere.
    Ram Chamarty
    Message was edited by: Ram Chamarty

  • Weblogic War application sending the requests every 3 minuts

    HI,
    There are 2 managed servers in one unix box.
    i have one war application deployed in cluster level. This war application will search the logs and will give particular content as a result.
    The Jsp page will send the request and it is able to get the correct results within 3 minutes. if there are so many logs, it is giving unrealiable results as war application is sending the request again and in the interval of 3 mins.
    Request parametes are get by servlet and this servlet will create the unix shellscript in background and it will execute in a box.
    0-3 mins 1st .sh creating and executing..
    3-6 mins 2nd .sh creats and starts the execution, once the 1 one is completed...
    its becomes infinite loop...
    after some time Browser is going to diagnostic error state..
    to avoid this i tried to give some parameters in weblogic.xml file...but its not working..
    please fine below weblogic.xml file
    ====================================
    <?xml version='1.0' encoding='UTF-8'?>
    <weblogic-web-app xmlns="http://xmlns.oracle.com/weblogic/weblogic-web-app" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://xmlns.oracle.com/weblogic/weblogic-web-app http://xmlns.oracle.com/weblogic/weblogic-web-app/1.2/weblogic-web-app.xsd">
    <session-descriptor>
    </session-descriptor>
    <jsp-descriptor>
    <page-check-seconds>-1</page-check-seconds>
    <debug>true</debug>
    </jsp-descriptor>
    <container-descriptor>
    <resource-reload-check-secs>-1</resource-reload-check-secs>
    <servlet-reload-check-secs>-1</servlet-reload-check-secs>
    <prefer-web-inf-classes>true</prefer-web-inf-classes>
    </container-descriptor>
    <logging>
    <log-filename>/wls_domains/b2borap2/application_MT/logs/messagetracker.log</log-filename>
    </logging>
    </weblogic-web-app>
    =======================================================
    and web.xml file is
    <?xml version="1.0" encoding="UTF-8"?>
    <web-app xmlns="http://java.sun.com/xml/ns/j2ee" xmlns:javaee="http://java.sun.com/xml/ns/javaee" xmlns:web="http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd">
    <listener>
    <listener-class>
    com.tm.messagetracker.listeners.MTrackerSession
    </listener-class>
    </listener>
    <servlet>
    <servlet-name>Controller</servlet-name>
    <servlet-class>com.tm.messagetracker.Controller</servlet-class>
    <load-on-startup>1</load-on-startup>
    </servlet>
    <servlet-mapping>
    <servlet-name>Controller</servlet-name>
    <url-pattern>*.do</url-pattern>
    </servlet-mapping>
    <session-config>
    <session-timeout>30</session-timeout>
    </session-config>
    <mime-mapping>
    <extension>txt</extension>
    <mime-type>text/plain</mime-type>
    </mime-mapping>
    <mime-mapping>
    <extension>html</extension>
    <mime-type>text/html</mime-type>
    </mime-mapping>
    <mime-mapping>
    <extension>htm</extension>
    <mime-type>text/html</mime-type>
    </mime-mapping>
    <welcome-file-list>
    <welcome-file>index.jsp</welcome-file>
    <welcome-file>index.html</welcome-file>
    </welcome-file-list>
    </web-app>
    =========================================
    anyone please help me on above......Thanks in advance..

    How is it related to Oracle B2B? If you need help on Weblogic front then please post your query in Weblogic Webapp forum -
    WebLogic Server - WebApp / Servlet / JSP / Plugin
    Regards,
    Anuj

  • Landscape for Urgent Correction

    Hi all,
    I am working on Urgent Correction process PoC.  I have created a logical component with multiple clients (two quality clients, two integration clients) between development and production client. 
    When I created an Urgent Correction change document (SDHF) with the above mentioned Logical Component, I could see only three clients (dev, quality, and production) not all the clients?
    When I used same logical component for Implementation Projects, I could see all the clients..
    Could anybody explain why Solution Manager behaves differently for Urgent Correction (SDHF) and Normal Correction (SDMJ) even though the same logical component is used.  Please make a note that I am working on PoC.
    Response is greately appreciated.
    Mike.

    Hi Mike,
    If we want to import to multiple clients/systems we need to include them in the system landscape under quality system.(even the integration clients should be included as quality system in system landscape).
    The task list of an urgent correction contains exactly one production system (where the problem occurred) and only the systems that are on the shortest transport route from a development system to the production system. The reason for this is that you want to implement your urgent correction as quickly as possible.
    So when we use Urgent correction the only option available to move the tp's across multiple clients is to use the report.
    We have also tried to do some setting in STMS but ended in Vain.
    Hope this information is useful.Please revert back for any clarification.
    Thanks and regards,
    Avinash.

  • Urgent Correction COmpletion

    Hi all,
    We are using SOLMAN 4.0 and SCM is configured for multi clients.Now when i do a urgent coorection,while completing the urgent correction it gives a warning "Not all mandatory phaseswere completed Do you still want tocomplete the task list?".
    We are haveing 3 developement clients and iam moveing the request from 110 client.
    Moreover when i click complete correction,it tries to log on to 120 client(i.e., i am taken to the logon screen)when i enter the password,it then gives the above warning.
    Can anyone tell what are all the mandatory pahses for a urgent correction?
    Why it logs to 120 client when i click complete correction?
    FYI:It was working fine when there is only single clients in dev and quality.
    Thanks in advance,
    Avinash

    Hello,
    the usual action after the completion of urgent correction via Task Plan called "Complete Correction".
    After this action the are no more action possible in SDHF because the SDHF has an intern status "finished".
    The last action in this process is in SDCR. Here you have execute the action "Confirms Realization".
    After this action the are no more action possible in SDCR because the SDCR has an intern status "finished".
    You can send an email notification after each action. This is not SAP standard. You must create your own CRM action.
    The note 691303 (Sending E-Mail from message after status change) will guide you.
    Best regards
    Thomas

  • Sys.WebForms.PageRequestManagerServerErrorException: An unknown error occurred while processing the request on the server. The status code returned from the server was: 504

    I get the following message soon after 120 seconds. Report query returns the full data set in SSMS withing 25 seconds.
    This is a fairly a large report. I get this same error messages many of my large data reports.
    Report server version 11.0.5058.0 on a VMware 2 GHz 4 core, 64GB RAM and Windows 2012 R2 (64 bit)
    DB Server version Standard Edition (64-bit) 11.0.5058.0 on a VMware 2 GHz 8 core, 96GB RAM and Windows 2012 R2 (64 bit)
    library!ReportServer_0-2!15ec!02/24/2015-14:29:07:: i INFO: Using folder C:\Program Files\Microsoft SQL Server\MSRS11.MSSQLSERVER\Reporting Services\RSTempFiles for temporary files.
    webserver!ReportServer_0-2!15ec!02/24/2015-14:29:17:: i INFO: Processed report. Report='/Head Office/UAE/RSH/Free Stock Report - Item wise', Stream=''
    rshost!rshost!1404!02/24/2015-14:29:46:: e ERROR: WriteCallback(): failed to write in write callback.
    rshost!rshost!1404!02/24/2015-14:29:46:: e ERROR: Failed with win32 error 0x03E3, pipeline=0x00000006101063B0.
    rshost!rshost!1684!02/24/2015-14:29:46:: e ERROR: HttpPipelineCallback::SendResponse(): failed async writing response.
    rshost!rshost!1684!02/24/2015-14:29:46:: e ERROR: Failed with win32 error 0x03E3, pipeline=0x00000006101063B0.
    httpruntime!ReportManager_0-1!1684!02/24/2015-14:29:46:: e ERROR: Failed in BaseWorkerRequest::SendHttpResponse(bool), exception=System.Runtime.InteropServices.COMException (0x800703E3): The I/O operation has been aborted because of either a thread exit or an application request. (Exception from HRESULT: 0x800703E3)
    at Microsoft.ReportingServices.HostingInterfaces.IRsHttpPipeline.SendResponse(Void* response, Boolean finalWrite, Boolean closeConn)
    at ReportingServicesHttpRuntime.BaseWorkerRequest.SendHttpResponse(Boolean finalFlush)
    library!ReportManager_0-1!1684!02/24/2015-14:29:46:: e ERROR: Throwing Microsoft.ReportingServices.Diagnostics.Utilities.ReportServerHttpRuntimeInternalException: RsWorkerRequest::FlushResponse., Microsoft.ReportingServices.Diagnostics.Utilities.ReportServerHttpRuntimeInternalException: An internal or system error occurred in the HTTP Runtime object for application domain ReportManager_MSSQLSERVER_0-1-130692470239287110. ---> System.Runtime.InteropServices.COMException (0x800703E3): The I/O operation has been aborted because of either a thread exit or an application request. (Exception from HRESULT: 0x800703E3)
    at ReportingServicesHttpRuntime.BaseWorkerRequest.SendHttpResponse(Boolean finalFlush)
    at ReportingServicesHttpRuntime.RsWorkerRequest.FlushResponse(Boolean finalFlush)
    --- End of inner exception stack trace ---;
    I get the following error in visual studio

    Hi Jinantha Perera,
    According to the screenshot, when you preview the report, you got System.OutOfMemoryException error.
    Based on the error message, this issue occurs when the computer does not have sufficient memory to complete the requested operation. In order to get rid of the problem, please refer to the following steps:
    Add sufficient physical memory to the computer
    Schedule reports to run at off-hours when memory constraints are lower
    Adjust the MemoryLimit setting accordingly
     (Note: When you render a report through the Reporting Services Web service, the Reporting Services Web service obtains the MemoryLimit setting from the Machine.config file. However, a scheduled report is rendered by the Report Server Windows service.
    The Report Server Windows service obtains the MemoryLimit setting from the RSReportServer.config file)
    Reporting services has a MemoryThreshold, which specifies a percentage ofWorkingSetMaximum that defines the boundary between high and medium pressure scenarios, if you rendering large amount records, you could also configure settings that control memory
    allocation for the report server include WorkingSetMaximum, WorkingSetMinimum,MemorySafetyMargin, and MemoryThreshold. Configuration settings are specified in the RSReportServer.config file.
    For more information about "System.OutOfMemoryException" error and Configuring Available Memory for Report Server, please refer to:
    http://support.microsoft.com/kb/909678
    https://msdn.microsoft.com/en-us/library/ms159206%28v=sql.110%29.aspx?f=255&MSPPError=-2147217396
    If you have any more questions, please feel free to ask.
    Thanks,
    Wendy Fu
    Wendy Fu
    TechNet Community Support

  • HT201210 The iPad "My iPad" could not be updated. This device isn't eligible for the requested build.

    It says, 'The iPad "My iPad" could not be updated. This device isn't eligible for the requested build." I don't get an error number. It's an iPad 2.

    Have you tried following the troubleshooting for that error message on this page : http://support.apple.com/kb/TS3694 ?

  • How received the following error message:  iTunes was not installed correctly. Please reinstall iTunes. Error 7 (Windows error 998).  I did what was requested and reinstalled iTunes, but still get this error message.  Help!

    My Toshiba laptop just recently started showing the the following error message when I try to open iTunes: " iTunes was not installed correctly. Please reinstall iTunes. Error 7 (Windows error 998)".  I did what was requested and reinstalled iTunes, but still get this error message.  Help!

    b noir I never got any message about an entry point
    Many thanks. If we're looking at a "naked" Error 7, I'd start with box two in the following user tip:
    Troubleshooting issues with iTunes for Windows updates

  • I can't import photos from a card, file or anything.  I get "could not copy a file to the requested location"..  This has never happened before.

    I can't import photos from a card, file or anything.  I get "could not copy a file to the requested location".  I have never had this happen before.  I use a MacBook Pro

    I also have the exact same issue.  New IMac, installed LR, imported approximately 900 photos no problem, across the network from a Windows PC.   The import stopped when the network connection was lost.   Now I cannot import for the same reason "could not copy a file to the requested location".  I have plenty of disk space and i have permission to the needed folders.   I cannot even import from a folder already on the IMac.   

  • I purchased and downloaded a movie and when I it backed up to my computer it changed something and now when I try to watch the movie I get an error message that says "The request URL was not found on this server.? What do I need to do to correct it?

    I purchased a movie and downloaded it and when I conected my I Pod to my computer, now I get a message "The requested URL was not found on this server".   What do I do to fix it?

    Because the location for each song in your library is on your hard drive.  If the hard drive isn't there, how can iTunes play it?
    You'll have to move/copy the music from your hard drive to your computer's hard drive.
    Basically, EASIEST way to do all this, if you don't care about your play counts, etc...
    -Delete EVERYTHING from iTunes, so that your library is now empty.
    -Go to "Advanced" inside of the "Preferences" window, found in the "Edit" drop-down.  You can also access Preferences by pressing Ctrl+, (Press Ctrl and the comma key)
    -Change your iTunes Media Folder Location to something simple, but on your computer. I use C:/iTunes.  Make sure "Keep iTunes Media Folder Organized" and "Copy files to...." are both checked.  You can close Preferences now.
    -Now, drag and drop your music from your hard drive into your iTunes library.  iTunes will automatically add the music to your library, as you would expect, and also creates a copy of each file to place into that iTunes Media Folder you just created.
    Shouldn't have any more problems...

  • How to import a transport from an urgent correction into QAS again ?

    Hi guys,
    we're new in charm.
    We have an urgent correction document, with 1 transport.
    We've put the urgent correction in status "to be tested" so now the linked transport is imported into QAS system. But this was a little bit too soon :-s
    I had to do some manual work on QAS before importing that transport.
    Can I easily (or how can I do this at all) import that same transport again into QAS ?
    kind regards,
    David De Boel

    Hi Guys,
    We have implemented change request and upgraded for SP 15 support pack
    when the user tries to import through urgent correction by selecting pass correction to test the TP is not getting imported, when i checked the log it is saying
    System cancel RFC destination SM_BQ2CLNT100_TRUSTED, Call TMW_SET_PROJECT_SWITCHES: No authorization to logon as trusted system (Trust ed RC=2).
    You cannot import any requests for project BD2_P00001 at the moment
    Then i went to show project status switches and changed as "Request can be imported" from " request cannot be imported", then the user is able to import the UC from the task list,
    But ideally the status switches should be " request cannot be imported" so that the TP can be imported only through change request.
    kindly give ur inputs as it is very urgent.
    Regards
    Raju

  • Type-mapping not working correctly, get "Unable to find a javaType for the xmlType" WARNING

    I'm manually creating a web-services.xml file, and using the autogen ant task to
    generate the codec XML/Java classes. The XML definition is provided by SAP.
    The ant build.xml file:
    <project name="buildWebservice" default="stubgen">
    <target name="stubgen">
    <clientgen ear="C:\projects\RMIS\ifrrequests\RMIS.ear"
    packageName="com.aa.rmis.webservice.client"
    clientJar="C:\projects\RMIS\ifrrequests\rmisws-client.jar"
    autotype="False" />
    </target>
    <target name="all" depends="stubgen"/>
    </project>
    The problem is seen below in the output from Ant. Note the WARNINIG. The problem
    is that the xml type cannot be mapped to the Java type.
    C:\projects\RMIS\ifrrequests>ant -buildfile clientbuild.xml
    Buildfile: clientbuild.xml
    stubgen:
    [clientgen] Generating client jar for RMIS.ear ...
    [clientgen] WARNINIG: Unable to find a javaType for the xmlType:['urn:sap-com:do
    cument:sap:business']:PaymentRequest.Create. Make sure that you have registered
    this xml type in the type mapping
    [clientgen] Using SOAPElement instead
    [clientgen] Compiling 4 source files to C:\DOCUME~1\944377\LOCALS~1\Temp\rmisws-
    client.jar-836624340
    [clientgen] Building jar: C:\projects\RMIS\ifrrequests\rmisws-client.jar
    BUILD SUCCESSFUL
    Total time: 17 seconds
    The Java source that has the implementation of the service methods is simply:
    package com.aa.rmis.webservice;
    import com.aa.rmis.ifr.request.*;
    public class TestService
    public TestService()
    public int serviceRequest(PaymentRequestCreate request)
    System.out.println("Received serviceRequest message");
    return 0;
    public void testStringRequest(String request)
    The web-service.xml file is attached, which contains the schema for the SAP PaymentRequest.Create
    object definition.
    Another problem I have, which is probably related, is that the service method
    that has a complex data type (non-built in data type) is not being deployed into
    the WebLogic server. But the other service method that simply takes a String
    parameter is.
    The steps I took are:
    1. Get XML from SAP Interface Repository (IFR) for PaymentRequest
    2. Use ant task autogen to generate the request codec classes
    3. Create the web-services.xml file by inserting the schema definition and the
    mapping file created by the autogen task, and defining the operations
    4. Build web-services.war file that contains all autogen compiled class files,
    the web-services.xml file, and the service implementation class
    5. Build the ear file that holds the web service files
    6. Use the clientgen ant task to generate (included above) to generate the client
    jar file that should contain the proxy for both of the service methods
    Environment:
    * WebLogic 7.02
    * JDK 1.3.1_06
    * JBuilder 9 Enterprise
    * Ant 1.4
    Possible causes:
    * Namespace not being used correctly
    * copied verbatim the mapping xml file generated by autogen into the web-services.xml
    file
    * xml-schema part of web-services.xml might not be set correctly
    * operation definition might not be using the correct namespace
    * Classpath used for ant might not be right
    * Doubt this is the problem, but I'm out of other ideas
    * Set by using the setWLEnv.cmd file provided by WebLogic
    * Tried adding the generated classes directory for my project to the classpath,
    but did not work
    I've been referencing the Programming WebLogic Web Services document throughout
    this entire process. I must be missing something.
    Can anybody from BEA help me out with this problem?
    Thanks in advance.
    [web-services.xml]

    Hi JD,
    I spent a few cycles looking over your web-services.xml file, however I
    don't have any suggestions other that one that looks like you have
    already tried, at the top, in the <schema...>
    targetNamespace="urn:sap-com:document:sap:business"
    Making edits to these generated files can be tricky and my only
    suggestion is to create a small reproducer to run by our outstanding
    support team.
    A quick look at our problem database shows one issue (CR095109) related
    to a similar problem at deploy time that was fixed with 7.0SP3. Again,
    the support folks will be able to help focus in on the issue.
    Regards,
    Bruce
    JD wrote:
    >
    The first posting contains the wrong web-services.xml file. Please refer to this
    one instead.
    "JD" <[email protected]> wrote:
    I'm manually creating a web-services.xml file, and using the autogen
    ant task to
    generate the codec XML/Java classes. The XML definition is provided
    by SAP.
    The ant build.xml file:
    <project name="buildWebservice" default="stubgen">
    <target name="stubgen">
    <clientgen ear="C:\projects\RMIS\ifrrequests\RMIS.ear"
    packageName="com.aa.rmis.webservice.client"
    clientJar="C:\projects\RMIS\ifrrequests\rmisws-client.jar"
    autotype="False" />
    </target>
    <target name="all" depends="stubgen"/>
    </project>
    The problem is seen below in the output from Ant. Note the WARNINIG.
    The problem
    is that the xml type cannot be mapped to the Java type.
    C:\projects\RMIS\ifrrequests>ant -buildfile clientbuild.xml
    Buildfile: clientbuild.xml
    stubgen:
    [clientgen] Generating client jar for RMIS.ear ...
    [clientgen] WARNINIG: Unable to find a javaType for the xmlType:['urn:sap-com:do
    cument:sap:business']:PaymentRequest.Create. Make sure that you have
    registered
    this xml type in the type mapping
    [clientgen] Using SOAPElement instead
    [clientgen] Compiling 4 source files to C:\DOCUME~1\944377\LOCALS~1\Temp\rmisws-
    client.jar-836624340
    [clientgen] Building jar: C:\projects\RMIS\ifrrequests\rmisws-client.jar
    BUILD SUCCESSFUL
    Total time: 17 seconds
    The Java source that has the implementation of the service methods is
    simply:
    package com.aa.rmis.webservice;
    import com.aa.rmis.ifr.request.*;
    public class TestService
    public TestService()
    public int serviceRequest(PaymentRequestCreate request)
    System.out.println("Received serviceRequest message");
    return 0;
    public void testStringRequest(String request)
    The web-service.xml file is attached, which contains the schema for the
    SAP PaymentRequest.Create
    object definition.
    Another problem I have, which is probably related, is that the service
    method
    that has a complex data type (non-built in data type) is not being deployed
    into
    the WebLogic server. But the other service method that simply takes
    a String
    parameter is.
    The steps I took are:
    1. Get XML from SAP Interface Repository (IFR) for PaymentRequest
    2. Use ant task autogen to generate the request codec classes
    3. Create the web-services.xml file by inserting the schema definition
    and the
    mapping file created by the autogen task, and defining the operations
    4. Build web-services.war file that contains all autogen compiled class
    files,
    the web-services.xml file, and the service implementation class
    5. Build the ear file that holds the web service files
    6. Use the clientgen ant task to generate (included above) to generate
    the client
    jar file that should contain the proxy for both of the service methods
    Environment:
    * WebLogic 7.02
    * JDK 1.3.1_06
    * JBuilder 9 Enterprise
    * Ant 1.4
    Possible causes:
    * Namespace not being used correctly
    * copied verbatim the mapping xml file generated by autogen into
    the web-services.xml
    file
    * xml-schema part of web-services.xml might not be set correctly
    * operation definition might not be using the correct namespace
    * Classpath used for ant might not be right
    * Doubt this is the problem, but I'm out of other ideas
    * Set by using the setWLEnv.cmd file provided by WebLogic
    * Tried adding the generated classes directory for my project to
    the classpath,
    but did not work
    I've been referencing the Programming WebLogic Web Services document
    throughout
    this entire process. I must be missing something.
    Can anybody from BEA help me out with this problem?
    Thanks in advance.
    Name: web-services.xml
    web-services.xml Type: ACT Project (text/xml)
    Encoding: base64

  • Error when importing the request

    Hi All,
    I have collected few queries in to one request and imported the request in to quality client and iam getting below mentioned error
      Execution of programs after import (XPRA)
      Transport request   : NBDK900366
      System              : NBP
      tp path             : tp
      Version and release: 372.04.08 700
      Post-import methods for change/transport request: NBDK900366
      Post-import method RS_AFTER_IMPORT started for ELEM L, date and time: 20100406151003
      Start of the after-import method RS_ELEM_AFTER_IMPORT for object type(s) ELEM (Activation Mode)
      Error when activating element 4HBCVLNBZJBOCJ2A2NP4Y0XEM
      Start of the after-import method RS_ELEM_AFTER_IMPORT for object type(s) ELEM (Delete Mode)
      Errors occurred during post-handling RS_AFTER_IMPORT for ELEM L
      The errors affect the following components:
         BW-WHM (Warehouse Management)
      Post-import methods of change/transport request NBDK900366 completed
           Start of subsequent processing ... 20100406151003
           End of subsequent processing... 20100406151018
      Execute reports for change/transport request: NBDK900366
      Reports for change/transport request NBDK900366 have been executed
           Start of................ 20100406151018
           End of.................. 20100406151018
      Execution of programs after import (XPRA)
      End date and time : 20100406151018
      Ended with return code:  ===> 8 <===
    Kindly let me know how to correct the error.
    Regards

    Hi,
    As you have collected more than one queries in a single request,first identify the query which is giving problem.For this you can go to se11 and diasplay table RSRREPDIR,go to output list of the table and under ID field give the hexa decimal Id that you got in the error log.The table will display the query associated with this.
    In the target system check whether your query changes are reflecting or not.
    Make sure that you have collected all the necessary elements ,that is variables ,resricted KFs etc.You can check this via RSA1 Transport connections.
    Thanks
    Sreeja

Maybe you are looking for

  • I can't sign in to my computer with my apple id....

    Im trying to sign in to my apple ID on my mac book air but i cant and i cant upgrade to os 10.... what shall i do. Going crazy on this ****! Almost regret bying this advanced ****....

  • Website has gaps and spaces

    http://contentsofadeadmanspockets.com/meet.html The website that I made is showing spaces between the navigation bar and the banner. Can anyone please take a look at the code for me and suggest what I should do cause as you can see there appears to b

  • Will two iTunes libraries work on Apple TV?

    I'm struggling to understand how iTunes purchases work on my apple TV?  I have a huge library and want to split it into two.  One on an external HD and one on my Mac.  Apple TV streams what is in my iTunes library, correct?  So if I'm home sharing on

  • How to edit host file...

    I have ICS on my SK17i  . I want to edit my /etc/host file. How  is it possible. Solved! Go to Solution.

  • .mov files panasonic

    I have .mov files from a panasonic camere which I cannot play in premiere elements 10, is there a solution?