NWDS IDE Problem - Unable to associate activity

Hi All,
I have come across a problem with my NWDS IDE 7.0.09. I am able to successfully login to the dtr, but I am unable to associate activity with my work.
The DTR console view has the following trace
  <i>Unable to associate project ID4_CMD_DUtilsbp.com with DTR repository (Could not instantiate provider com.tssap.dtr.client.eclipse.DAVTeamProvider for project ID4_CMD_DUtilsbp.com.)
20:27:41.145  INFO: Set local file writable for folder item that is checked out  =>  AddLGComp.wdcontroller   (D:\Documents and Settings\kn.padmarajan\.dtc\0\DCs\bp.com\AddLG\_comp\src\packages\com\bp\cmd\wd\AddLGComp.wdcontroller)
20:27:41.145  INFO: Set local file writable for folder item that is checked out  =>  AddLGView.wdview   (D:\Documents and Settings\kn.padmarajan\.dtc\0\DCs\bp.com\AddLG\_comp\src\packages\com\bp\cmd\wd\AddLGView.wdview)
20:27:41.145  INFO: Set local file writable for folder item that is checked out  =>  AddLGView.wdcontroller   (D:\Documents and Settings\kn.padmarajan\.dtc\0\DCs\bp.com\AddLG\_comp\src\packages\com\bp\cmd\wd\AddLGView.wdcontroller)
20:27:41.145  INFO: Set local file writable for folder item that is checked out  =>  AddLGView.wdview.xlf   (D:\Documents and Settings\kn.padmarajan\.dtc\0\DCs\bp.com\AddLG\_comp\src\packages\com\bp\cmd\wd\AddLGView.wdview.xlf)
20:30:50.207  WARNING: Found checked out folder item without mount point.  =>  .dcdef   (/CMD/bp.com_CMD/dev/inactive/DCs/bp.com/Search/_comp/.dcdef)
20:30:50.207  WARNING: Found checked out folder item without mount point.  =>  AddLGBean.java   (/CMD/bp.com_CMD/dev/inactive/DCs/bp.com/AddLGBean/_comp/ejbModule/com/bp/cmd/ejb/AddLGBean.java)
20:30:51.409  WARNING: Found checked out folder item without mount point.  =>  .dcdef   (/CMD/bp.com_CMD/dev/inactive/DCs/bp.com/Search/_comp/.dcdef)
20:30:51.409  WARNING: Found checked out folder item without mount point.  =>  AddLGBean.java   (/CMD/bp.com_CMD/dev/inactive/DCs/bp.com/AddLGBean/_comp/ejbModule/com/bp/cmd/ejb/AddLGBean.java)
Server response time for login to server http://<server>:<port>/dtr/ : 1552 ms.</i>
<b>When I start the IDE, the DTR Console shows the following error message</b>
<i>There is no configuration found for com.tssap.dtr.client.eclipse.ui.treeBrowser.OpenActivityView view. Empty TreeInput provider will be used.</i>
Let me know if I need to give any more details.
Please provide some valuable inputs.
-Thanks,
Padmarajan.

Hi Kenny,
I changed the name of .metadata folder and started the IDE. I am able to login to dtr. But the Open activity view is showing up Offline. the DTR console shows the following error:
<i>Server response time for login to server http://<server>:51000/dtr/ : 1552 ms.
Accessing server root property (XCM_CLIENT:minVersion) failed: Unauthorized
Accessing server root property (XCM_CLIENT:minVersion) failed: Unauthorized
Server response time for login to server http://<server>:51000/dtr/ : 1562 ms.
Accessing server root property (XCM_CLIENT:minVersion) failed: Unauthorized</i>
Any inputs on this ?
-Thanks,
Padmarajan.

Similar Messages

  • RMI Activatable (unable to obtain activation system)

    Hello, I am new to forum... I have a simple rmi activation program.. Before writing program,I have checked some books and example in the sun site...
    Before starting to program, I command "start rmiregistry" and
    rmid -J-Djava.security.policy=rmi.policy -J-Dsun.rmi.activation.execPolicy=none
    Up to here ,everything is Ok.
    However,when I started to Setup program .I got the error Unable to obtaion activation system....
    Following my codes:
    my remote object...package impl.server;
    import java.rmi.*;
    import araclass.Kitapcik;
    import araclass.Soru;
    public interface Sinav extends Remote{
         Kitapcik bilgileriGetir() throws RemoteException;
         String sorulariGetir(Soru soru) throws RemoteException;
    package impl.activate;
    import impl.server.Sinav;
    import java.rmi.*;
    import java.rmi.activation.*;
    import araclass.Kitapcik;
    import database.Database;
    import araclass.Soru;
    public class SinavYordam extends Activatable implements Sinav{
         Database data;
         public SinavYordam(ActivationID id,MarshalledObject data) throws RemoteException{
              super(id,0);
         public Kitapcik bilgileriGetir(){
              data=new Database();
              data.baglan();
              Kitapcik kitap=data.kitapcikGetir(2);
              data.kapat();
              return kitap;
         public String sorulariGetir(Soru soru){
              String sor="";
              data=new Database();
              data.baglan();
              sor=data.soruGetir("Soru_Getir", soru.soru_no, soru.tabloAdi);
              data.kapat();
              return sor;
         public String[] siklariGetir(Soru soru){
              String[] sik;
              data=new Database();
              data.baglan();
              sik=data.siklariGetir("Soru_Getir", soru.soru_no, soru.tabloAdi);
              data.kapat();
              return sik;
    }and lastly setup program,
    import impl.server.Sinav;
    import java.rmi.*;
    import java.rmi.activation.*;
    import java.util.Properties;
    import java.util.prefs.Preferences;
    public class SinavServer {
         public SinavServer(){
         public static void main(String[] args) throws Exception{
                   System.setSecurityManager(new RMISecurityManager());
         Properties prop=new Properties();
            prop.put("java.security.policy","/workspace1/SINAV");
               ActivationGroupDesc.CommandEnvironment  cmd=null;
               ActivationGroupDesc grpdesc=new ActivationGroupDesc(prop,cmd);
              ActivationGroupID id=ActivationGroup.getSystem().registerGroup(grpdesc);
              String location="file:/workspace1/SINAV";
              ActivationDesc desc=new ActivationDesc(id,"impl.activate.SinavYordam",location,null);
              Sinav sin=(Sinav)Activatable.register(desc);
              Naming.rebind("Sinav", sin);
    } Thanks in advance..

    Actually, I got two diffirent exception in an interesting order.. I mean one day I got the following the error;
    Exception in  thread "main"  java.Access.Security.ControlException: access denied <java.io.FilePermission \\c\workspace1\SINAV read>
    at java.security.AccessControlContext.checkPermissionthat goes on...
    The other day ,
    Unable to obtain activation system exception today I could not have got so far. If I got, I would post.
    So anyone who I have an idea of this problem...
    Thanks in advance...

  • We are unable to continu activation ipad itunes

    Hi ,I'm try i g to activated my Ipad 2 but i won't activated
    "we are unable to continu activation ipad itunes" any ideas how to solve this problem

    Hi All,
    I solved the problem, Activation with Itunes 10.4.1 did n't work,
    Used an other Mac with Itunes 10.2 and no with activation problems. :-) strangsssss
    Regards Bram J

  • Can't invoke WS from BPEL process: Unable to locate activated endpoint

    I have a simple Calculator Web Service deployed on Glassfish, that I can access with any kind of SOAP client (e.g. soapUI). I have then created a BPEL process that invokes this external Web Service (which happens to run on the same Glassfish server, but that's largely irrelevant I suppose). I can instantiate and invoke the BPEL process (I've tried it with a dummy assign earlier just to make sure, and it runs successfully), but the BPEL process doesn't seem to be able to locate the external Web Service. I get the following fault:
    <S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/">
    <S:Body>
    <ns2:Fault xmlns:ns2="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ns3="http://www.w3.org/2003/05/soap-envelope">
    <faultcode>ns2:Server</faultcode>
    <faultstring>javax.jbi.messaging.MessagingException: Unable to locate activated endpoint for service connection {SigningCompositeApp}CalculatorService SignedCalculatorService.</faultstring>
    <detail>
    <ns2:exception class="java.lang.RuntimeException" note="To disable this feature, set com.sun.xml.ws.fault.SOAPFaultBuilder.disableCaptureStackTrace system property to false" xmlns:ns2="http://jax-ws.dev.java.net/">
    <message>javax.jbi.messaging.MessagingException: Unable to locate activated endpoint for service connection {SigningCompositeApp}CalculatorService SignedCalculatorService.</message>
    <ns2:stackTrace>
    <ns2:frame class="com.sun.xml.ws.server.provider.AsyncProviderInvokerTube$AsyncProviderCallbackImpl" file="AsyncProviderInvokerTube.java" line="114" method="sendError"/>
    <ns2:frame class="com.sun.jbi.httpsoapbc.jaxwssupport.AsyncJBIProvider" file="AsyncJBIProvider.java" line="136" method="invoke"/>
    <ns2:frame class="com.sun.jbi.httpsoapbc.jaxwssupport.AsyncJBIProvider" file="AsyncJBIProvider.java" line="94" method="invoke"/>
    <ns2:frame class="sun.reflect.GeneratedMethodAccessor305" line="unknown" method="invoke"/>
    <ns2:frame class="sun.reflect.DelegatingMethodAccessorImpl" file="DelegatingMethodAccessorImpl.java" line="25" method="invoke"/>
    <ns2:frame class="java.lang.reflect.Method" file="Method.java" line="597" method="invoke"/>
    <ns2:frame class="com.sun.jbi.httpsoapbc.jaxwssupport.InvokerImpl" file="InvokerImpl.java" line="72" method="invoke"/>
    <ns2:frame class="com.sun.xml.ws.api.server.Invoker" file="Invoker.java" line="115" method="invokeAsyncProvider"/>
    <ns2:frame class="com.sun.xml.ws.server.InvokerTube$2" file="InvokerTube.java" line="166" method="invokeAsyncProvider"/>
    <ns2:frame class="com.sun.xml.ws.server.provider.AsyncProviderInvokerTube" file="AsyncProviderInvokerTube.java" line="80" method="processRequest"/>
    <ns2:frame class="com.sun.xml.ws.api.pipe.Fiber" file="Fiber.java" line="595" method="__doRun"/>
    <ns2:frame class="com.sun.xml.ws.api.pipe.Fiber" file="Fiber.java" line="554" method="_doRun"/>
    <ns2:frame class="com.sun.xml.ws.api.pipe.Fiber" file="Fiber.java" line="539" method="doRun"/>
    <ns2:frame class="com.sun.xml.ws.api.pipe.Fiber" file="Fiber.java" line="388" method="run"/>
    <ns2:frame class="java.util.concurrent.ThreadPoolExecutor$Worker" file="ThreadPoolExecutor.java" line="885" method="runTask"/>
    <ns2:frame class="java.util.concurrent.ThreadPoolExecutor$Worker" file="ThreadPoolExecutor.java" line="907" method="run"/>
    <ns2:frame class="java.lang.Thread" file="Thread.java" line="619" method="run"/>
    </ns2:stackTrace>
    <ns2:cause class="javax.jbi.messaging.MessagingException" note="To disable this feature, set com.sun.xml.ws.fault.SOAPFaultBuilder.disableCaptureStackTrace system property to false">
    <message>Unable to locate activated endpoint for service connection {SigningCompositeApp}CalculatorService SignedCalculatorService.</message>
    <ns2:stackTrace>
    <ns2:frame class="com.sun.jbi.messaging.MessageService" file="MessageService.java" line="492" method="addressExchange"/>
    <ns2:frame class="com.sun.jbi.messaging.MessageService" file="MessageService.java" line="326" method="doExchange"/>
    <ns2:frame class="com.sun.jbi.messaging.DeliveryChannelImpl" file="DeliveryChannelImpl.java" line="209" method="send"/>
    <ns2:frame class="com.sun.jbi.httpsoapbc.InboundMessageProcessor" file="InboundMessageProcessor.java" line="268" method="sendInOut"/>
    <ns2:frame class="com.sun.jbi.httpsoapbc.InboundMessageProcessor" file="InboundMessageProcessor.java" line="479" method="executeSOAP"/>
    <ns2:frame class="com.sun.jbi.httpsoapbc.InboundMessageProcessor" file="InboundMessageProcessor.java" line="215" method="execute"/>
    <ns2:frame class="com.sun.jbi.httpsoapbc.jaxwssupport.AsyncJBIProvider" file="AsyncJBIProvider.java" line="134" method="invoke"/>
    <ns2:frame class="com.sun.jbi.httpsoapbc.jaxwssupport.AsyncJBIProvider" file="AsyncJBIProvider.java" line="94" method="invoke"/>
    <ns2:frame class="sun.reflect.GeneratedMethodAccessor305" line="unknown" method="invoke"/>
    <ns2:frame class="sun.reflect.DelegatingMethodAccessorImpl" file="DelegatingMethodAccessorImpl.java" line="25" method="invoke"/>
    <ns2:frame class="java.lang.reflect.Method" file="Method.java" line="597" method="invoke"/>
    <ns2:frame class="com.sun.jbi.httpsoapbc.jaxwssupport.InvokerImpl" file="InvokerImpl.java" line="72" method="invoke"/>
    <ns2:frame class="com.sun.xml.ws.api.server.Invoker" file="Invoker.java" line="115" method="invokeAsyncProvider"/>
    <ns2:frame class="com.sun.xml.ws.server.InvokerTube$2" file="InvokerTube.java" line="166" method="invokeAsyncProvider"/>
    <ns2:frame class="com.sun.xml.ws.server.provider.AsyncProviderInvokerTube" file="AsyncProviderInvokerTube.java" line="80" method="processRequest"/>
    <ns2:frame class="com.sun.xml.ws.api.pipe.Fiber" file="Fiber.java" line="595" method="__doRun"/>
    <ns2:frame class="com.sun.xml.ws.api.pipe.Fiber" file="Fiber.java" line="554" method="_doRun"/>
    <ns2:frame class="com.sun.xml.ws.api.pipe.Fiber" file="Fiber.java" line="539" method="doRun"/>
    <ns2:frame class="com.sun.xml.ws.api.pipe.Fiber" file="Fiber.java" line="388" method="run"/>
    <ns2:frame class="java.util.concurrent.ThreadPoolExecutor$Worker" file="ThreadPoolExecutor.java" line="885" method="runTask"/>
    <ns2:frame class="java.util.concurrent.ThreadPoolExecutor$Worker" file="ThreadPoolExecutor.java" line="907" method="run"/>
    <ns2:frame class="java.lang.Thread" file="Thread.java" line="619" method="run"/>
    </ns2:stackTrace>
    </ns2:cause>
    </ns2:exception>
    </detail>
    </ns2:Fault>
    </S:Body>
    </S:Envelope>
    For good measure, here's the WSDL (and partner link defn) for the external WS:
    <?xml version="1.0" encoding="UTF-8"?>
    <definitions name="CalculatorWSExternal" targetNamespace="http://j2ee.netbeans.org/wsdl/CalculatorWSExternal"
    xmlns="http://schemas.xmlsoap.org/wsdl/"
    xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/"
    xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:tns="http://j2ee.netbeans.org/wsdl/CalculatorWSExternal" xmlns:ns="http://calculator.me.org/" xmlns:plnk="http://docs.oasis-open.org/wsbpel/2.0/plnktype" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/">
    <types>
    <xsd:schema targetNamespace="http://j2ee.netbeans.org/wsdl/CalculatorWSExternal">
    <xsd:import namespace="http://calculator.me.org/" schemaLocation="CalculatorWSService.xsd"/>
    </xsd:schema>
    </types>
    <message name="addRequest">
    <part name="add" element="ns:add"/>
    </message>
    <message name="addReply">
    <part name="addResponse" element="ns:addResponse"/>
    </message>
    <portType name="CalculatorWSExternalPortType">
    <operation name="add">
    <input name="input1" message="tns:addRequest"/>
    <output name="output1" message="tns:addReply"/>
    </operation>
    </portType>
    <binding name="CalculatorWSExternalBinding" type="tns:CalculatorWSExternalPortType">
    <soap:binding style="document" transport="http://schemas.xmlsoap.org/soap/http"/>
    <operation name="add">
    <soap:operation/>
    <input name="input1">
    <soap:body use="literal"/>
    </input>
    <output name="output1">
    <soap:body use="literal"/>
    </output>
    </operation>
    </binding>
    <service name="CalculatorWSExternalService">
    <port name="CalculatorWSExternalPort" binding="tns:CalculatorWSExternalBinding">
    <soap:address location="http://localhost:8080/CalculatorApp/CalculatorWSService"/>
    </port>
    </service>
    <plnk:partnerLinkType name="CalculatorWSExternal1">
    <!-- A partner link type is automatically generated when a new port type is added. Partner link types are used by BPEL processes.
    In a BPEL process, a partner link represents the interaction between the BPEL process and a partner service. Each partner link is associated with a partner link type.
    A partner link type characterizes the conversational relationship between two services. The partner link type can have one or two roles.-->
    <plnk:role name="CalculatorWSExternalPortTypeRole" portType="tns:CalculatorWSExternalPortType"/>
    </plnk:partnerLinkType>
    </definitions>
    Any help? I've seen someone post a similar problem on the forum at http://forum.java.sun.com/thread.jspa?threadID=5273187&messageID=10157363#10157363
    but I haven't seen any answers. Thanks!
    Edited by: tboubez on Jun 9, 2008 10:56 AM

    Check the ports of Web services and those of BPEL, as Hambo have different communication ports.
    Normally Webservices point to the port 8080 and BPEL to 18181 or 9084.
    Check and I accounts.
    Greetings.

  • "Problem: Unable to play file type for...". Moderator please help

    When using the spotlfy app from squeeze box I get this message every time: "Problem: Unable to play file type for" then list the song name. I can pick the music and see the art but no play. This is when I am attempting to stream from spotlfy on squeeze box. Logitech customer service told me spotlfy has not been running on squeezebox for weeks. Please help or I'll have to cancel subscription.

    The 3rd party plug-in solved this problem for me, but only after I'd figured out a few other things, so I'm sharing them here: a) You have to have BOTH plug-ins running, both the v 1.0 "official Spotify plug-in "  *and*  the third party plug-in, which is on v2.3.8 as I write this. b) after you have activated the third party plug-in (and re-started the Squuezebox server)  You have to open up the settings for the plug-in ( link in the far right colum)  I don't think it matters how you choose to set these (I didn't mess with them.) The critical thing is that you must log into your Spotify account from within the this plug-in settings screen in order for the 3rd party plug-in to do its job.  (And maybe you'll have to re-start the Squeezebox server yet again.  I just do that without even thinking when trying to sort out these problems.) What makes this all challenging is that the symptoms change at each step:  At first, with just the official plug-in activated, I got the "can't read file format" error message.  After activating the 3rd party plug in (but before logging in from inside it)  Spotify appeared to be working perfectly on the screen of my Squeezbox controller, indicating that a song was playing (even the bright white light  that shows something is streaming was lit.) However. no sound was actually coming through.  After I logged in as above, I finally got music to match all the on-screen indications. No logic to this that I can figure out.  It just seems typical of life with Squeezebox.

  • Unable to conform activation

    I am trying to use apple configurator to upgrade numerous iPad 2 devices to iOS 7.  The iPads are already supervised by apple configurator.  iOS 7 installs but then I get an "Unable to conform activation.  The device is activated but not supervised." error in configurator.  Any ideas?

    I have contacts at Apple.  I just now went through the same errors with my Network Engineer.
    Issue 1
    The error messages, "unable to conform activation" or "unable to connect to device" (even though it did) are due to the new features in iOS 7.  There is a bug in AC 1.4 with these new features. We reported these two errors today. The errors were not on the bug list, but they are now.  :-)
    "unable to conform activation" or "unable to connect to device" work around:
    Quit AC
    Launch iTunes
    Setup all iPads in iTunes as new devices
    Make sure all the devices "Trust" your iTunes
    In AC uncheck all profiles and apps
    Supervise/ingest all the iPads into AC 1.4... you should bypass the errors
    After the iPads are supervised you should be able to add your profiles and apps
    Issue 2
    When setting up a restore backup your iPads still do not bypass the startup questions.
    This error is documented at Apple and they are working on a fix.
    Start up questions work around:
    Create the restore backup on the highest model of iPads you have.  e.g. iPad 4 vs iPad 2
    Restore your iPads as you normally would
    When the iPads restart to the startup questions, powercyle them
    When they restart they will bypass the start up questions
    Hope this helps

  • Problem with installation and activation

    Hi, I have a problem with the installation of Adobe Muse.
    I had a free 30-days trial, when it was over I bought the product ($ 13 per month), 
    I installed the program again and I see the same window with the finished Trials
    and it requires a serial number and does not allow to enter the program.
    I installed the program on your PC wife without any problems, but I can not install it on a laptop.
    I have a laptop with Windows 8 operating system.
    What I've done:
    1. Uninstalled the free program,
    2. check the connection to the Internet,
    3. has installed a new program from the official website adobe.com,
    4. Remove the line for the activation of the hosts file and resave the file,
    5. turned off the brandmower,
    6. rebooted.
    I can't get support for a 3 days, is it the most terrible support I've ever seen? I dunno
    Please help me at [email protected]

    I guess this stuff helps me
    http://helpx.adobe.com/creative-suite/kb/cs5-cleaner-tool-installation-problems.html
    2014-08-07 20:07 GMT+07:00 Дмитрий Броский <[email protected]>:
    thanx
    >
    2014-08-07 18:18 GMT+07:00 Prabhakar.Kumar <[email protected]>:
        problem with installation and activation  created by Prabhakar.Kumar
    >> <https://forums.adobe.com/people/Prabhakar.Kumar> in *Help with using
    >> Adobe Muse CC* - View the full discussion
    >> <https://forums.adobe.com/message/6619532#6619532>
    >>

  • HT5622 I'm currently sharing my apple ID with my wife.  we'd like to create a new ID but are unable to associate her existng email address with a new apple ID.  Is there a way she can maintain her existing email address while creating a new apple ID?

    I'm currently sharing my apple ID with my wife.  We'd like to create a new ID but are unable to associate her existing email address to a new apple ID.  Is there a way she can maintain her existing email address while creating a new apple ID?

    Leave her ID alone and create a new one for yourself with your email address.

  • Problem with the product activation adobe acrobat 9 standard.

    I have a problem with the product activation adobe acrobat 9 standard.
    It is a failed hard disk to the pc and was not able to deactivate the license adobe.
    Now I replaced the hard drive and reinstalled the software but it tells me that all licenses are used.
    Is it possible to unlock the licenses in use?
    Thank you.

    Adobe can unlock licenses, this is a normal thing for them to do. You must contact them directly, there is no trick or other way.

  • Problem Unable to convert the sender service to an ALE logical system

    Hi to All..
    I'm facing a problem in one scenario File to Idoc .. I got this problem
    "Unable to convert the sender service to an ALE logical system" in pipeline Call Adapter.
    I check this blog but the problem persist . /people/michal.krawczyk2/blog/2005/03/29/xi-error--unable-to-convert-the-sender-service-to-an-ale-logical-system
    Also I have another scenario in other Software Component Version SCW  and the Idoc works correctly..
    I wonder if I miss something
    this the trace
      <Trace level="1" type="T">----
    </Trace>
    - <Trace level="1" type="B" name="CL_IDX_IDOC_SERVICE-ENTER_PLSRV">
      <Trace level="1" type="T">Pipeline Service ID: PLSRV_CALL_ADAPTER</Trace>
      <Trace level="1" type="T">Get Information from IS-Header Objekt</Trace>
      <Trace level="1" type="T">Get Information from SD-IDoc-Endpoint</Trace>
      <Trace level="1" type="T">Sender and Receiver after Header-Mapping</Trace>
      <Trace level="1" type="T">Sender service Sys_XXX</Trace>
      <Trace level="1" type="T">Receiver service Sys_EDV_XXX</Trace>
      </Trace>
      </Trace>
      <Trace level="1" type="B" name="CL_XMS_MAIN-WRITE_MESSAGE_LOG_TO_PERSIST" />
      <Trace level="1" type="System_Error">Error exception return from pipeline processing!</Trace>
      <Trace level="1" type="B" name="CL_XMS_MAIN-WRITE_MESSAGE_TO_PERSIST" />
    Edited by: Luis Ortiz on Jan 25, 2010 3:37 PM

    Hi,
    in order to use only one logical system (PI's) in we20 in ECC and not as many as you have sender systems
    Regards,
    Michal Krawczyk

  • I have problem access ICloud with active pasword

    I have problem access ICloud with active pasword
    In the Iphone I don't have problem
    Tanks

    Welcome to the Apple Community.
    Try restarting your browser or clearing its cache.

  • Problem with TFRM table active indicator in pricing routine RV80HGEN

    Hi experts,
    I have created few custom routines in VOFM tcode, and trasported to Q system.
    In DEV in program RV61ANNN and in VOFM tcode, i can see the new includes and new routines.
    But when i check in Q system in VOFM  tcode the new routines are not available, nor in RV61ANNN  program(new includes).
    I have run the report RV80HGEN . But its not working.
    I checked the table TFRM and the active  field is blank for the group number and routine number.
    But in DEV TFRM table has an X value in active field for that routine.
    I dont know how to do it.
    I can retransport the request again, but i dont know what all the objects needs to be created a new request. its risky.
    Plz help me out on this.
    I have checked OSS notes, even it says the same.nothing else.
    Points are rewarded fully.
    Thsnks,
    KK

    Hi,
    The problem is with the active field blank in the test system.  From OSS note 327220:
    (02) Question/problem:
    Even though report RV80HGEN was executed, the VOFM object is not registered in the object carrier. Why?
    (02) Answer:
    During the setup of the object carriers via RV80HGEN the system includes only VOFM objects which have set the 'active indicator' (refer to section 2.3.2). If the active indicator for the corresponding object is not set, the RV80HGEN does not process the VOFM object. Solution: Set the active indicator for the respective object and start the RV80HGEN again.
    So I might suggest deactivating the object in development, transporting, then reactivating the object in development, and transporting again.
    BR,
    Tony.

  • Requirements for installing SAP Web As and NWDS IDE?

    Hi All,
    Please give me details what are the requirments need for installing the SAP Web AS and NWDS IDE in my personal computer .
    Thanks
    Nageswara.

    HI Nageswar,
    if you want to install developer workplace (NWDS + JAVA WAS)
    you need:
    • RAM: 1 GB required, 2 GB recommended
    • CPU: 1 GHz required, 2 GHz recommended
    • Disk Space: 3,3 GB (1,9 GB temporary)
    Detail information you can find in
    service.sap.com/instguides -> SAP Netweaver -> release 04 ->
    installation -> Inst. Guide - SAP NetWeaver Developer Workplace Stack x
    Regards
    Bogdan

  • AP is unable to associate. The Regulatory Domain '-E' configured on interface '802.11a' does not match the Controller Regulatory Domain '-C'

    Hi,
    There are three different types of APs associated with controller and working fine.
    1.       AIR-LAP1252AG-E-K9
    2.       AIR-LAP1522AG-E-K9
    3.       AIR-CAP1552E-C-K9
    WLC is AIR-CT5508-K9. Software version is 7.4.100.0. Field Recovery Image is 7.0.112.21. Firmware version is FPGA 1.7, Env 1.8, USB console 2.2. WCS is 7.0.240.0 for Windows.
    WCS is sending alarms for AIR-LAP1522AG-E-K9:
    Message: AP is unable to associate. The Regulatory Domain '-E' configured on interface '802.11a' does not match the Controller Regulatory Domain '-C'.
    Before Controller was 7.2.4 (not sure).
    Country configured on WLC is AE and shows -CE regulatory domain. Mesh APs are also associated.
    I believe this Critical alarm should not come.
    how much is this alarm important? What should be done to resolve this?

    Typically you still need to make sure that the country codes are indeed configured on the WLC. Thing can change when you upgrade code as standards might of changed and regulations also. If your AP's are functional, then you should be okay and I wouldn't worry too much about it, but if after the upgrade, the WLC complains about country code stuff, then you just need to verify that the AP's country code is defined on the WLC. May times the AP will not join and if it does join, the radios might be disabled or in a down status.
    Sent from Cisco Technical Support iPad App

  • Unable to continue activation after i upgrade version

    unable to continue activation after i upgrade version in my 3gs who knows how to solve it?

    That's almost always because the phone was hacked to illegally unlock it.

Maybe you are looking for

  • Tested extraction of 0fi_gl_4 Have some questions on issues encountered

    Hi Experts, 1. In extracting data from 0fi_gl_4, I tried to see data in rsa3 on ECC. When I entered the selection CoCo: 0006 and Fiscal Year Period: 009.2006; it still showed all data. I studied the data and noted in the data that CoCo 0006 had only

  • HP Color LaserJet HP 3600DN Windows 7 drivers (32 bit and or 64 bit)

    This just seems outrageous....... it seems that no drivers for the HP3600 series printer for Windows 7 (32 bit or 64 bit).   Can't find anything, from the few post I have seen, no response from HP, or others that the printer is not supported ????  a

  • Can PI listen to message on FTP server?

    Dear experts, We have an external system that places messages on our FTP server. Now those messages need to be processed within 5-10 seconds. Defining a job in R3 that does that will not work because the time interval of a few seconds is too difficul

  • Good receipt analysis report

    if we receive goods in 2 step  on diff. date againest any po then we creat 2 GRN or we make  all entry in single GRN.

  • Application Express - setting session state.

    I'm a relative newbie to APEX and am trying to set up and populate an application item into session state so that I can then have the value handy throughout the entire session and over all pages of the application. I've defined the item as FPC_Number