COPA extraction: RD155 No source could be found to answer the search query

Hi Everyone,
I'm trying to schedule an init. load for the new fiscal year from an Account-based 1_CO_PA** extractor. I've entered restrictions for Controlling Area (single entry) and Fiscal Period (PERIO) 001.2011 - 001.2025.
When I try to schedule the init. load or even test the extraction in RSA3, I get the error message 'No source could be found to answer the search query'. I've checked my summarization levels and and they have the value '*' for all characteristics.
If someone can provide an explanation for the error message, it would be most helpful.
Thanks,
Ram

Hi Ram,
This error is almost always caused by incomplete or incorrect customizing:
In addition, the summarization level must have status 'ACTIVE' (this applies also to the search function in the maintenance transaction for CO-PA data sources,KEB0).                                                                               
Please also review the SAP note 392635 which is release independent and has further information on the customizing and CO-PA extraction:                                                                               
392635 - Information: Sources with BW extraction for account-based    
           CO-PA                                                        
So please check your customizing and the note 392635 carefully in particular please pay attention to the following:                                                                               
There has to be one (single)  summarization level that contains all characteristics (except for  the controlling area) with '*' in the   
characteristics view in  transaction KEDV and has status 'active'.   
After checking the above you need to replicate the datasource in the connected BW system and reactivate the transfer rules.               
Best Regards,
Des

Similar Messages

  • Message no. RD155 -- No source could be found to answer the search query

    Hi All,
    while checking my new COPA datasource in RSA3, I get the Error message No source could be found to answer the search query Message no RD155.
    I have maintained the summarization levels which is in a status of "Active Without Data". Also note, the tables for CE1XXXX, CE2XXXX & CE3XXXX do not contain data. However, CE4XXXX table does contain data.
    Kindly help.... its very very important and i need to finish this datasource ASAP

    Hi
    I am unable to implement both the notes as I am already on a higher version of PI_BASIS.
    I have replicated my datasource into the BW system..
    While doing the INIT load without DATA TRANSFER, i do not get any error message, however, while doing a Delta it does not bring in any records but does not fail as well
    However, if i delete the initialization selections and load the data using the setting INITIALIZATION WITH DATA TRANSFER or Full UPDATE, the data load fails with the ERROR MESSAGE "Errors occurred in data selection."
    Please help... This issue is very very important and i need to deliver it ASAP
    Edited by: Sneha Santhanakrishnan on Jun 24, 2010 9:29 AM

  • Error 1706 No valid source could be found for adobe reader x

    Error 1706 No valid source could be found for productAdobe reader X (10.1.4) Install cannot continue.
    On programs that need adobe reader, the page will not come up.
    I tried to restoring my system to a point before when adobe was working, and tried to reinstall adobe reader.
    the download stops at 80% and reports: cannot find file  AdbeRdr1010_en_us(1).msi

    Remove your current installed Reader using http://labs.adobe.com/downloads/acrobatcleaner.html
    then download and run the full installer from http://get.adobe.com/reader/enterprise/

  • HP Scanjet G4050. Get "Error 1706.No valid source could be found for product ScannerCopy...."

    I just bought a new Scanjet G4050 and when I try to install the software I get an error message and the software will not install. Error message is:"Error 1706.No valid source could be found for product ScannerCopy. The Windows Installer cannot continue." During the install, I was prompted to enter a CD or other location to load ScannerCopy.
    I had an older version of this same Scanjet G4050 working on my PC about a year ago. My PC is running Vista 64.
    Any ideas how I can get the software to successfully load? Any ideas of where I can get this "ScannerCopy" that the software is asking for? 

    Remove your current installed Reader using http://labs.adobe.com/downloads/acrobatcleaner.html
    then download and run the full installer from http://get.adobe.com/reader/enterprise/

  • Error: The report source could not be retrieved from the state object.

    I have been trying to create a report in a JSF page. The relevant parts are below:
    Inside the JSP page, this is the code:
                  <jsp:useBean id="MyBean" class="com.nm.facade.rto.POJOViewerBean" scope="session" />
                    <jsp:setProperty name="MyBean" property="reportLocation" value="Report1.rpt" />
                   <v:reportPageViewer reportSource="#{MyBean.reportSource}"
                                           displayToolbarPrintButton="true"
                                           printMode="ActiveX"
                                           zoomPercentage="100"
                                           displayToolbarExportButton="true"
                                           displayToolbarRefreshButton="true"
                                           viewerName="My Viewer"
                   ></v:reportPageViewer>
    In the backing bean, this is the relevant code:
        public Object getReportSource() throws ReportSDKException
            if (propertiesChanged || reportSource == null)
                propertiesChanged = false;
                if (reportLocation == null)
                    throw new RuntimeException("The reportLocation property must be set before a report source is retrieved");
                ReportClientDocument rcd = new ReportClientDocument();
                rcd.setReportAppServer(ReportClientDocument.inprocConnectionString);
                rcd.open(reportLocation, 0);
                DatabaseController dbc = rcd.getDatabaseController();
                //Create the POJO collection and populate it with data
                ReportData[] data =
                  new ReportData("B.B.", "King", 6, new Date(25, 9, 16)),
                    new ReportData("Muddy", "Waters", 7, new Date(15, 4, 4)),
                    new ReportData("John Lee", "Hooker", 8, new Date(16, 8, 16)),
                    new ReportData("Otis", "Rush", 9, new Date(34, 4, 29)),
                    new ReportData("Buddy", "Guy", 10, new Date(36, 7, 30))
                //Create the result set from the collection of POJOs
                POJOResultSetFactory factory = new POJOResultSetFactory(ReportData.class);
                factory.setVerbose(true);
                POJOResultSet results = factory.createResultSet(data);
                ResultSetMetaData metaData = results.getMetaData();
                //Set the resultset as the report datasource
                      //Get the table name from the 'Set Datasource Location' dialog in the Crystal Reports designer
                String reportTable = "getReportDataDataSource";
                dbc.setDataSource(results, reportTable, reportTable);       
                IReportSource reportSource = rcd.getReportSource();
                if (reportSource == null)
                    throw new RuntimeException("Unable to get a report source.");
            return reportSource;
    In the CRConfig.xml, this is what is there:
    <?xml version="1.0" encoding="utf-8"?>
    <CrystalReportEngine-configuration>
        <reportlocation>../reports</reportlocation>
        <timeout>0</timeout>
        <ExternalFunctionLibraryClassNames>
             <classname></classname>
        </ExternalFunctionLibraryClassNames>
    </CrystalReportEngine-configuration>
    The report template 'Report1.rpt' is packaged under WEB-INF/reports in the war file.
    When I try to generate the report by accessing the JSF page, I am getting an error: "The report source could not be retrieved from the state object. "
    I am not sure what is wrong. Can someone help me in resolving this issue?
    Edited by: renshai on Jul 9, 2009 3:21 AM

    My formatting gets lost and the message looks unintelligible. After some experimentation, I found that if the message exceeds some length, the formatting is removed. Since I couldn't find any way to delete this post, I made another post with the same subject. Please ignore this post and help me to find a solution for the problem posted in the other thread with the same subject. Thanks in advance.

  • No valid source of supply could be found - while running the cost estimate

    Hi all,
    We are running the material cost estimate for a subcontracting material. The costing is giving an error saying "No valid source of supply could be found".
    We have checked
    1. Purchase info record
    2. Source list
    3. Valid dates are maintained for the condition records for the info record.
    Still we are getting the error.
    Can somebody help on this ?
    Thanks in advance
    Regards
    Karpagam Srinivasan

    Dear Karpagam,
    Please check these points,
    Are you sure you have created a Purchase Info Record in ME11 for a Sub-contratcing process?
    Sometimes you would have crated a standard Purchase Info Record.
    Maintain procurement type as F and special procurement value 30 in the MRP2 view of the material
    master for that material.
    As you have mentioned PIR,Source list already exists,please check this and come back.
    Regards
    Mangalraj.S

  • COPA extraction issues - Incorrect field name for selection

    Dear gurus,
    I've issues with my COPA extraction, hope you guys could give me some clue here, point will be rewarded if I could fine the solution.
    Requirement:-
    To add additional field.
    Step:-
    As usual 1) Delete
                   2) Create back with select the new field. (KEB0)
                   3) Do not have issues when check RSA3 from DEV, but when transport to QAS I hit this issues.
    Issues:
    At RSA3 , when do check hit the error, "Errors occurred during the extraction"
    When check from RSA3 log here I get..
    ** Did try to find any solution in SCN forum, with no luck. Hope get some help here.
    thank you
    rgds
    Edi.

    Yes I did get this feedback ..
    Hi Edi,
    As per the standard SAP, once you have assigned characteristics and values fields to your operating concern (KEA0), you can't de-assign them. When characteristics or values fields are in assigned status, you can't delete them.
    But I hope there won't be much problem of having that characteristic also. If you look at performance wise, then instead of deleting, make "not used" under profitability segment characteristics, remove from the characteristic groups etc. While doing so, please check any derivation rules written based on these, or any assessment cycles defined with these also..
    Regards...
    Jose
    forward to my FICO ..

  • I am trying to install adobe livecycle designer es4 trial version on my computer and i keep getting the message Error 13.11 Source file not found: c:\  verify that the file exist. I have tried to install on both windows 7 and windows 8 and i still get the

    error 13.11 Source file not found verify that the file exsist

    Try a more recent version of my advice. The "for older video cards version" may work when the default version doesn't.
    For general advice see Troubleshooting issues with iTunes for Windows updates.
    The steps in the second box are a guide to removing everything related to iTunes and then rebuilding it which is often a good starting point unless the symptoms indicate a more specific approach. Review the other boxes and the list of support documents further down the page in case one of them applies.
    The further information area has direct links to the current and recent builds in case you have problems downloading, need to revert to an older version or want to try the iTunes for Windows (64-bit - for older video cards) release as a workaround for installation or performance issues, or compatibility with QuickTime or third party software.
    Your library should be unaffected by these steps but there are also links to backup and recovery advice should it be needed.
    tt2

  • URL Data Control: Connection to the URL source could not be created

    Using JDev Studio 10.1.3.2
    Trying to use a new URL data control pointing to a csv file.
    I have successfully create a new URL data control using the New Gallery->Web Services->URL Services Data Control. I have successfully tested the connection and I am able to see the Data control in the DC Palette. The attributes shown are correct.
    However, when I create a test client displaying the new CSV Data Control attributes in a table and try to run it, I get the following error:
    "Apr 21, 2008 3:40:46 PM oracle.adfinternal.model.adapter.url.csv.CSVDataControl invokeOperation
    WARNING: Exception invoking method from CSV data control. Cause: javax.naming.NameNotFoundException; remaining name 'URLConnection1'
    Apr 21, 2008 3:40:46 PM oracle.adfinternal.model.adapter.url.csv.CSVDataControl invokeOperation
    WARNING: Exception invoking method from CSV data control. Cause: javax.naming.NameNotFoundException; remaining name 'URLConnection1'
    Exception in thread "main" oracle.adf.model.adapter.AdapterException: DCA-50006: The URL data control call failed. A connection to the URL source could not be created.
    The data controls configuration file is shown below:
    <?xml version="1.0" encoding="UTF-8" ?>
    <DataControlConfigs xmlns="http://xmlns.oracle.com/adfm/configuration"
    version="10.1.3.40.66" Package="com.xp.model"
    id="DataControls">
    <AdapterDataControl id="URLDataControl1"
    FactoryClass="oracle.adf.model.adapter.DataControlFactoryImpl"
    ImplDef="oracle.adfinternal.model.adapter.url.csv.CSVDCDef"
    SupportsTransactions="false" SupportsSortCollection="true"
    SupportsResetState="false" SupportsRangesize="false"
    SupportsFindMode="false" SupportsUpdates="false"
    Definition="URLDataControl1" BeanClass="URLDataControl1"
    xmlns="http://xmlns.oracle.com/adfm/datacontrol">
    <Source>
    <Definition xmlns="http://xmlns.oracle.com/adfm/adapter/url/csv"
    ConnectionName="URLConnection1"
    Source="http://phusca-w20909:8080/client_war/WRK_COMPUTERS.csv" Delimiter=","
    QuoteChar="{none}" IsFirstRowNames="true" Encoding="UTF-8"/>
    </Source>
    </AdapterDataControl>
    </DataControlConfigs>

    Using JDev Studio 10.1.3.2
    Trying to use a new URL data control pointing to a csv file.
    I have successfully create a new URL data control using the New Gallery->Web Services->URL Services Data Control. I have successfully tested the connection and I am able to see the Data control in the DC Palette. The attributes shown are correct.
    However, when I create a test client displaying the new CSV Data Control attributes in a table and try to run it, I get the following error:
    "Apr 21, 2008 3:40:46 PM oracle.adfinternal.model.adapter.url.csv.CSVDataControl invokeOperation
    WARNING: Exception invoking method from CSV data control. Cause: javax.naming.NameNotFoundException; remaining name 'URLConnection1'
    Apr 21, 2008 3:40:46 PM oracle.adfinternal.model.adapter.url.csv.CSVDataControl invokeOperation
    WARNING: Exception invoking method from CSV data control. Cause: javax.naming.NameNotFoundException; remaining name 'URLConnection1'
    Exception in thread "main" oracle.adf.model.adapter.AdapterException: DCA-50006: The URL data control call failed. A connection to the URL source could not be created.
    The data controls configuration file is shown below:
    <?xml version="1.0" encoding="UTF-8" ?>
    <DataControlConfigs xmlns="http://xmlns.oracle.com/adfm/configuration"
    version="10.1.3.40.66" Package="com.xp.model"
    id="DataControls">
    <AdapterDataControl id="URLDataControl1"
    FactoryClass="oracle.adf.model.adapter.DataControlFactoryImpl"
    ImplDef="oracle.adfinternal.model.adapter.url.csv.CSVDCDef"
    SupportsTransactions="false" SupportsSortCollection="true"
    SupportsResetState="false" SupportsRangesize="false"
    SupportsFindMode="false" SupportsUpdates="false"
    Definition="URLDataControl1" BeanClass="URLDataControl1"
    xmlns="http://xmlns.oracle.com/adfm/datacontrol">
    <Source>
    <Definition xmlns="http://xmlns.oracle.com/adfm/adapter/url/csv"
    ConnectionName="URLConnection1"
    Source="http://phusca-w20909:8080/client_war/WRK_COMPUTERS.csv" Delimiter=","
    QuoteChar="{none}" IsFirstRowNames="true" Encoding="UTF-8"/>
    </Source>
    </AdapterDataControl>
    </DataControlConfigs>

  • Generate Source List - " No mesage record could be found ....

    Hello,
    I am generating source lists for OA's.  In the process I am getting the following message when I save them:
    "No message record could be found for output of message. Save anyway?"
    I've not seen this before.  Is anyone familiar with it and what it means and/or does if I do or don't save them.
    Regards,
    Judi

    Hi,
    this is the standard message that the system issues when it is trying to output (print) a document such as a PO or contract.
    What MAY be happening is that you may be updating a contract or VSA somehow and the message is simply saying that it cannot reprint the document.
    Save the document anyway, it just means you wont get an automatic printout.
    Steve B

  • FB_4.5:"Source could not be found for flash.sensors.geolocation.." . airglobal.swc

    Hi!.
    I´ve FB 4.5 for PHP and I´ve add SDK 4.5.1 as said the next link :
    http://kb2.adobe.com/cps/906/cpsid_90671.html
    On my mobile project I use Geolocation:
    When I try to run the mobile project , don’t work.
    I´ve note that from FB in Package Explore, select my and I can to see the airglobal.swc  library , under: My proyect -> Flex 4.5.1 -> airglobal.swc. This library it look that are linked and  I can to see your packets such as: (default package); adobe utils ;  avmplus and  flash , but when I click on one of them, i.e : airglobal.swc->flash->sensors
    and I try to open geolocator.abc , appear a popup ( Code Navigator error) that said:
    "Source could not be found for flash.sensors.geolocation in D:\Archivos de programa\Adobe\Adobe Flash Builder 4.5\sdks\4.5.1\frameworks\libs\air\airglobal.swc"
    If I go to this path in my HD, it exist and I  can see the airglobal.swc and Geolocation.abc files, but it look that FB don’t see L . It could be the problem?.
    How I can to resolve?. Any idea?.
    Thank you!

    Hi, I have a simmilar problem but is for another swc:
    Source could not be found for mx.core:IUIComponent in C:\.....sdks\4.0.0\frameworks\libs\flash-integration.swc.
    Is that not open source too ? Are all classes not accessible like this not open source ?
    Also, I've read about mx_internal varialbes, and some people suggest going through the source code to find them, but when that's not possible what should one do to identify them, debug maybe ?

  • While running the cost : No valid source of supply could be found

    Hi Friends,
    When we have doing the  ck11n i got the this error meassge.
    No valid source of supply could be found , could u please give me clarification where i can fix this issue.
    Regards
    Mastan Reddy N

    Dear,
    F means Externally Procured Item, so system will not allow you to create Cost Estimate.
    Please change it to E and then create Cost Estimate, it will work.
    Br,Vivek

  • No valid source of supply could be found

    Dear SAP Gurus,
    In the costing run, we foundout the error for the material XXXX as "No valid source of supply could be found". Please suggest
    Checked up in the purchasing data everything is defined

    Dear,
    Message no CK380 or CK776 No valid source of supply could be found.
    The error does not occur, if The source list contains 2 valid entries for 2 vendors
    either the source list or the quota arrangement has been maintained.
    one of the two entries is removed in the source list or in the quota arrangement.
    Or check Purchase Info-record need to create with Subcontract Category.
    Regards,
    R.Brahmankar

  • 'The song "xyz" could not be used because the original file could not be found.

    I am quite new to iTunes so please excuse me if the questions seem daft 
    I have recently changed my default iTunes Media folder location from my local C:\ drive to my home network storage device
    (my PC is permanently mapped to this NAS storgae drive)
    Now When I go to play a song in itunes I get the message 'The song "xyz" could not be used because the original file could not be found. Would you like to locate it"
    Looking in the new iTunes Media folder, I can see the following folders and they are mostly empty:
    Automatically Add to iTunes
    Downloads
    Mobile Applications
    Music
    Note that I have music that I bought from iTunes and music from other sources \ given to me by friends
    Questions:
    (1) How do I get all my music back into this new iTunes Media folder?
    (2) Exactly which files contain my music? (I ask because we have 2 or 3 libraries that I wish to consolidate into 1 master Library for us all)
    If I know exactly which files are required I can delete any other files cluttering up my storage and PC

    Changing the media folder path tells iTunes where to put new media that is ripper or purchased. It may offer to consolidate to the new location when you make the edit, if not iTunes will expect existing content to remain on the original path.
    The "missing file" error happens if the file is no longer where iTunes expects to find it. Possible causes are that you or some third party tool has moved, renamed or deleted the file, one of its parent folders, or the drive it lives on has had a change of drive letter. It is also possible that iTunes has changed from expecting the files to be in the pre-iTunes 9 layout to post-iTunes 9 layout, or vice-versa, and so is looking in slightly the wrong place.
    Select a track with an exclamation mark, use Ctrl-I to Get Info, then click No when asked to try to locate the track. (Due to a bug in iTunes 12 you currently have to say No twice!) Look on the summary tab for the location that iTunes thinks the file should be. Now take a look around your hard drive(s). Hopefully you can locate the track in question. If a section of your library has simply been moved, a folder renamed, or a drive letter has changed, it should be possible to reverse the actions. If the difference between the two paths is an additional Music folder in one path then this is a layout issue. I can explain further if that is the case.
    In some cases iTunes may be able to repair itself if you go through the same steps with Get Info but this time click Locate and browse to the lost track. It may then offer to attempt to automatically fix other broken links.
    If another application like Windows Media Player has moved/renamed the files then the chances are that subtle differences in naming strategies will make it hard to restore the media to the precise path that iTunes is expecting. In such cases, as long as the missing files can be found somewhere, you should be able to use my FindTracks script to reconnect them to iTunes. See this post for an explanation of how it works.
    For more background on the typical layout of the iTunes library see Make a split library portable.
    1) It depends on exactly what you have done to break things.
    2) Your media files are where you put them, or where iTunes copies them to when they are added to the library. If multiple libraries use the same set of media folders there can be problems if edits in one library cause content to be moved as the other libraries will no longer see those tracks on the original path, and won't know to look in a new one.
    tt2

  • The description for Event ID 0 from source VSTTExecution cannot be found. Either the component that raises this event is not installed on your local computer or the installation is corrupted. You can install or repair the component on the local computer.

    Hi,
    Can any one help me on the below issue ?
    while executing automated test case in test center it is showing as test case is in progress, then i navigated to virtual machine (where the test agent is online), there Internet
    explore has opened automatically and my test case execution started, but with in a seconds IE has closed . However, in test center, test case status is showing as in
    progress, after  2 or 3 min  some of  test cases getting passed and some are failed.
    Here my question is in lab center-->virtual machine, IE has opened automatically and navigated the 2 or 3  links and with in seconds IE has getting closed. Why IE is getting closed without completing execution?
    Error Message :
    The description for Event ID 0 from source VSTTExecution cannot be found. Either the component that raises this event is not installed on your local computer or the
    installation is corrupted. You can install or repair the component on the local computer.
    If the event originated on another computer, the display information had to be saved with the event.
    The following information was included with the event: 
    (mtm.exe, PID 5240, Thread 4) FileAggregatorSessionInfo: Error occurred while deleting temporary directoryException: System.IO.DirectoryNotFoundException: Could not find a part of the path 
       at System.IO.__Error.WinIOError(Int32 errorCode, String maybeFullPath)
       at System.IO.Directory.Delete(String fullPath, String userPath, Boolean recursive, Boolean checkHost)
       at Microsoft.VisualStudio.TestTools.Execution.Aggregation.FileAggregator.FileAggregatorSessionInfo.DeleteTemporaryDirectory(String temporaryDirectory)
    the message resource is present but the message is not found in the string/message table
    Thanks
    Suresh
    Suresh

    Hi,
    Can any one help me on the below issue ?
    while executing automated test case in test center it is showing as test case is in progress, then i navigated to virtual machine (where the test agent is online), there Internet
    explore has opened automatically and my test case execution started, but with in a seconds IE has closed . However, in test center, test case status is showing as in
    progress, after  2 or 3 min  some of  test cases getting passed and some are failed.
    Here my question is in lab center-->virtual machine, IE has opened automatically and navigated the 2 or 3  links and with in seconds IE has getting closed. Why IE is getting closed without completing execution?
    Error Message :
    The description for Event ID 0
    from source VSTTExecution cannot be found. Either the component that raises this event is not installed on your local computer or the installation is corrupted. You can install or repair the component on the local computer.
    If the event originated on another computer, the display information had to be saved with the event.
    The following information was included with the event: 
    (mtm.exe, PID 5240, Thread 4) FileAggregatorSessionInfo: Error occurred while deleting temporary directoryException: System.IO.DirectoryNotFoundException:
    Could not find a part of the path 
       at System.IO.__Error.WinIOError(Int32 errorCode, String maybeFullPath)
       at System.IO.Directory.Delete(String fullPath, String userPath, Boolean recursive, Boolean checkHost)
       at Microsoft.VisualStudio.TestTools.Execution.Aggregation.FileAggregator.FileAggregatorSessionInfo.DeleteTemporaryDirectory(String
    temporaryDirectory)
    the message resource is present but the message is not found in the string/message table
    We are using VS 2013 (premium) and IE 10.0,  scripts have been created on the same versions. It is working fine  on
    developers command prompt but the same tests are getting failed in lab center test agent machine
    test agent log:
    QTAgentService.exe, AgentService: calling AgentObject.RunEndFileCopyComplete
    QTAgentService.exe, AgentProcessManager.WaitForDataCollectionAgentProcessToStart: waiting for agents to start.
    QTAgentService.exe, AgentProcessManager.WaitForDataCollectionAgentProcessToStart: Agents started.
    QTAgentService.exe, AgentProcessManager.PerformActionIgnoringExceptions: Successfully called 'Cleanup' on the test agent
    QTAgentService.exe, AgentProcessManager.PerformActionIgnoringExceptions: Calling 'StopDataCollection(int)' on the data collection agent
    QTAgentService.exe, AgentProcessManager.IsDataCollectionAgentNeeded: IsExecutedOutOfProc? True
    QTAgentService.exe, AgentPro
    QTAgentService.exe, AgentProcessManager.WaitForDataCollectionAgentProcessToStart: Agents started.
    QTAgentService.exe, AgentService: Connection to controller is up.
    Thanks
    Suresh

Maybe you are looking for

  • Mail Adapter :: eMail Reporting

    Hi I am creating one scenario using following weblog : /people/community.user/blog/2006/09/08/email-report-as-attachment-excelword But in my mail I am getting the Headings but not the values which I am providing through my XML file. I even deleted al

  • Its says I am offline and won't let me change it to "available"

    when I open iChat, the window says my account is offline and I try to change it to available but it wont let me. It wont change from offline to availble. Please help

  • Subtree replication in Directory Server 5

    Hi, I previously posted this question in the netscape.server.directory newsgroup because I didn't know this one existed! (The link on the iplanet web page points to the netscape newsgroup) The administrator's guide for iplanet Directory Server 5 stat

  • How do I stop Search Icons from appearing within webpages?

    Search Icons are constantly appearing on pictures on websites that I visit, I think it's Yahoo Search that is causing this.

  • Starting an applet automatically

    Hello, how can i start automatically an applet by calling a htm-site? and how can i hand over an PHP variabel to this applet? best regards, Alexandra