File copy in KM not working from a par file.

Hi Experts,
                  We created a par file which will copy a file from a folder and copy this onto a seperate folder under the same parent folder. This applications works well on testing system, but is not working when deployed to the portal server where it supposed to work.
Please give your thoughts and your valuable suggestions on this issue.
Thanks in advace
Sateesh

Hi Raghu,
               What is CM system and where it needs to be added.
I am copying the code please check and give your valuable inputs.
import java.util.Properties;
import com.sap.tc.logging.FileLog;
import com.sap.tc.logging.Severity;
import com.sap.tc.logging.TraceFormatter;
import com.sapportals.wcm.repository.CopyParameter;
import com.sapportals.wcm.repository.ICollection;
import com.sapportals.wcm.repository.ICopyParameter;
import com.sapportals.wcm.repository.IResourceList;
import com.sapportals.wcm.repository.ResourceContext;
import com.sapportals.wcm.repository.ResourceFactory;
import com.sapportals.wcm.service.scheduler.ISchedulerTask;
import com.sapportals.wcm.util.uri.RID;
import com.sapportals.wcm.util.usermanagement.WPUMFactory;
public class archiveContent implements ISchedulerTask {
     private static final com.sap.tc.logging.Location logger =
          com.sap.tc.logging.Location.getLocation("KMScheduler");
  public void run( String id, Properties properties ) {
     // implement the tasks to be scheduled
     logger.setEffectiveSeverity(Severity.ALL);
     FileLog mFile1 = new FileLog("/usr/sap/EPD/JC00/j2ee/cluster/server0/log/KMScheduler/reportArchiver.log",10485760,5,new TraceFormatter("%d %m"));
     logger.addLog(mFile1);
     String Filename=null;
     int flag=0;
     logger.infoT("Entering Archive Application try block");
     try{
     com.sapportals.portal.security.usermanagement.IUser epUser = WPUMFactory.getServiceUserFactory().getServiceUser("cmadmin_service");
     ResourceContext ctx = new ResourceContext(epUser);
//     Get the path of the bi-broadcast (start) folder and create a resource
     //RID birid = RID.getRID("/bi-broadcast");
     RID birid = RID.getRID("/documents/KMScheduler_test");
//     Create resource holding the contents of the bi-broadcast/top level folder
     com.sapportals.wcm.repository.IResource bires= ResourceFactory.getInstance().getResource(birid,ctx);
     if(bires!=null)
//          Create a collection of the bi-broadcast resource and get the child resources i.e. Categories
          ICollection categorycollection=(ICollection)bires;
          IResourceList categorylst= categorycollection.getChildren();                                             
          com.sapportals.wcm.repository.IResource categoryres = null;
          if(categorylst!=null)
               for(int i=0;i<categorylst.size();i++)
                    categoryres = categorylst.get(i);
//                    Check if the Category is Template. if it is do not enter the loop
                    //if(!categoryres.getName().equalsIgnoreCase("Template"))          
//                         Get the path of the Category folder
                         //RID categoryrid = RID.getRID("/bi-broadcast/"+categoryres.getName());
                         //RID categoryrid = RID.getRID("/documents/KMScheduler_test/bi_reports/"+categoryres.getName());
                         //logger.infoT("Folder ""\"/documents/KMScheduler_test/bi_reports/"categoryres.getName()+"\" detected");
                         if(categoryres!=null)
//                              Create a collection of the Category resource and get the child resources i.e. Area      
                              ICollection areacollection=(ICollection)categoryres;
                              IResourceList arealst= areacollection.getChildren();                                                            
                              com.sapportals.wcm.repository.IResource areares = null;     
                              if(arealst!=null)
                                   for(int j=0;j<arealst.size();j++)
                                        areares=arealst.get(j);
                                        Filename=areares.getName();                              
//                                        Get the path of the Area folder
                                        RID arearid = RID.getRID("/documents/KMScheduler_test/"categoryres.getName()"/"+areares.getName());
                                        logger.infoT("Folder ""\"/documents/KMScheduler_test/"categoryres.getName()"/"areares.getName()+"\" detected");
                                        if(areares!=null)
//                                             Create a collection of the Area resource and get the child resources i.e. Region
                                             ICollection regioncollection=(ICollection)areares;
                                             IResourceList regionlst= regioncollection.getChildren();                                        
                                             com.sapportals.wcm.repository.IResource regionres = null;     
                                             if(regionlst!=null)
                                                  for(int k=0;k<regionlst.size();k++)
                                                       regionres=regionlst.get(k);
                                                       Filename=regionres.getName();
//                                                       Get the path of the Region folder
                                                       RID regionrid = RID.getRID("/documents/KMScheduler_test/"categoryres.getName()"/"areares.getName()"/"+regionres.getName());
                                                       logger.infoT("Folder ""\"/documents/KMScheduler_test/"categoryres.getName()"/"areares.getName()"/"regionres.getName()+"\" detected");
                                                       if(regionres!=null)
//                                                       Create a collection of the Region resource and get the child resources i.e. File
                                                            ICollection filecollection=(ICollection)regionres;
                                                            IResourceList filelst= filecollection.getChildren();                                             
                                                            com.sapportals.wcm.repository.IResource fileres = null;     
                                                            if(filelst!=null)
                                                                 for(int l=0;l<filelst.size();l++)
                                                                      fileres=filelst.get(l);
//                                                                      Check if the file is Archive or Special. if it is don not move it to Archive
                                                                      if(!fileres.getName().equalsIgnoreCase("Archive"))
                                                                           if(!fileres.getName().equalsIgnoreCase("Special"))
                                                                                flag=1;
//                                                                                Get the path of the File in the region folder
                                                                                RID filerid = RID.getRID("/documents/KMScheduler_test/"categoryres.getName()"/"areares.getName()"/"regionres.getName()"/Archive/"+fileres.getName());
                                                                                logger.infoT("File ""\"/documents/KMScheduler_test/"categoryres.getName()"/"areares.getName()"/"regionres.getName()"/Archive/"fileres.getName()+"\" detected");                                                                                                              
//                                                                                Move one child at a time to the Archive folder
                                                                                ICopyParameter cp=new CopyParameter(true);
                                                                                fileres.move(filerid,cp);
                                                                                logger.infoT("Archiving file \""fileres.getName()" from folder /documents/KMScheduler_test/"categoryres.getName()"/"areares.getName()"/"regionres.getName()"\"");
                                                                           else if(fileres.getName().equalsIgnoreCase("Special"))
                                                                                RID ar_analysisrid=RID.getRID("/documents/KMScheduler_test/"categoryres.getName()"/"areares.getName()"/"regionres.getName()"/Special");
                                                                                ICollection aranaylsiscollection=(ICollection)fileres;
                                                                                IResourceList aranalysislst= aranaylsiscollection.getChildren();                                             
                                                                                com.sapportals.wcm.repository.IResource aranalysisres = null;
                                                                                if(aranalysislst!=null)
                                                                                     for(int m=0;m<aranalysislst.size();m++)
                                                                                          aranalysisres=aranalysislst.get(m);
                                                                                          if(!aranalysisres.getName().equalsIgnoreCase("Archive"))
                                                                                                    flag=1;
//                                                                                                    Get the path of the File in the region folder
                                                                                                    RID arfilerid = RID.getRID("/documents/KMScheduler_test/"categoryres.getName()"/"areares.getName()"/"regionres.getName()"/Special/Archive/"+aranalysisres.getName());
                                                                                                    logger.infoT("File ""\"/documents/KMScheduler_test/"categoryres.getName()"/"areares.getName()"/"regionres.getName()"/Special/Archive/"aranalysisres.getName()+"\" detected in Special folder");
//                                                                                                    Move one child at a time to the Archive folder
                                                                                                    ICopyParameter cp=new CopyParameter(true);
                                                                                                    aranalysisres.move(arfilerid,cp);
                                                                                                    logger.infoT("Archiving file \""fileres.getName()" from folder /documents/KMScheduler_test/"categoryres.getName()"/"areares.getName()"/"regionres.getName()"/Special/Archive/"aranalysisres.getName()"\"");
Edited by: Jabi123 on Jan 17, 2011 7:13 AM

Similar Messages

  • The file to download the app for Android is not working from my phone--it says that the file isn't there. However it does see the one for the Iphone (even though it can't use it). I'm very computer literate and am pretty sure the problem is on your end.

    The file to download the app for Android is not working from my phone--it says that the file isn't there. However it does see the one for the Iphone (even though it can't use it). I've tried it multiple times and continue to get the same message: "NOT FOUND The requested item could not be found". I also tried through the Market application on the phone but ended-up with the same result.
    I'm very computer literate and am pretty sure the problem is on your end. If this is the case then no one can download the app. I considered that perhaps because it's still in Beta that it was removed due to some other type of software issue. I would really like to use Firefox on my new Droid (2.0); when with this be available?

    Firefox will not appear in the Market for most phones with incompatible hardware. You can check if your phone is supported here:
    https://wiki.mozilla.org/Mobile/Platforms/Android
    Even on some supported devices, a bug in the Market software prevents Firefox from showing up. This may be related to the fairly recent Android Market app update. If you go to Settings/Applications/Market and choose "Uninstall" you can uninstall the update, and then search for and install Firefox from the marketplace.
    Or, if you have a supported phone, you can download the app directly by typing this address into your phone's browser: http://bit.ly/fxbeta3
    (Note: To download the app directly for an AT&T phone, you will have to search for instructions on "sideloading" the APK file, since AT&T disables the option to install from non-Market sources.)

  • File- Print not working from SQL Developer 1.2.1 Build MAIN-32.13

    File->Print not working from SQL Developer 1.2.1 Build MAIN-32.13.
    I downloaded sqldeveloper-1.2.1.3213.ZIP and extract to a local directory. From the extracted directory I ran ..\sqldeveloper\sqldeveloper.exe from Windows XP sp2. The program itself seems to run just fine but File-Print doesn't do anything. In Help-About, Java Platform is reported as 1.5.0_06 and Oracle IDE is 1.2.1.3213. I'm not sure where to look for what is causing the problem.
    Thanks

    I hadn't tried CTRL-P before but I did today. On the first attempt, I saw a small jump in the memory usage for sqldeveloper.exe as reported in Windows Task Manager. Otherwise, there was no change. A second CTRL-P in the same session produced a further bump but subsequent attempts in the same session produced no further change in CPU or Memory Usage.
    Using Task Manager to monitor this further, I tried File->Print again and saw that sqldeveloper would periodically climb to 1 or 2 percent CPU and consume a little more memory. After a minute or so, though, all activity stops again.
    I do not get a print dialog box from SQLDeveloper using either CTRL-P or File->Print

  • File sharing is not working from pc to imac os x 10.9.2

    file sharing is not working from pc to imac os x 10.9.2

    Hello there Karen,
    It sounds like you are having to power cycle your modem to get internet back every single day. We can start by troubleshooting your Airport Express to help isolate the issue. I would first perform a Soft Reset, then test the issue again. If needed as a last resort I would then perform a Hard Reset:
    Soft reset
    Connect the device to power and wait for it to complete its start up process. To learn more about the start up process, please see All about Wi-Fi base station Status Lights (LED).
    Press and hold the reset button with a pen, pencil, or straightened paperclip for 1 full second, then release it. The light (LED) will begin flashing amber, indicating that the device is in soft reset mode.
    From the AirPort menu bar item, choose the network created by the device (the network name does not change).
    Open AirPort Utility from Applications > Utilities.
    Select the base station, then click Edit (The Edit window will indicate that the base station is in Soft Reset mode).
    Move through the tabs to make changes to your passwords or other settings as needed, and click Update and Continue as required
    Quit AirPort Utility.
    Hard reset
    Press and hold the reset button with a pen, pencil, or straightened paperclip until you see the status light (LED) start to flash amber rapidly, which should occur after about five seconds.
    Release the button and the device will reset.
    Wait about a minute for the base station to finish restarting, then open AirPort Utility from Applications > Utilities.
    Select the base station from Other Wi-Fi Devices, then click Edit.
    Select the Other Options button.
    Select "Restore previous settings" and click Next until you get to the final window.
    AirPort Utility will indicate that Setup is complete. Click Done.
    Quit AirPort Utility.
    Resetting an AirPort base station FAQ
    http://support.apple.com/kb/ht3728
    Thank you for using Apple Support Communities.
    Cheers,
    Sterling

  • External Task not working from job

    Hi,
    I am trying to call a batch file which copied fdr files from one folder to another and runs sarmanalyzer to generate csv files in the edq landing area.
    The batch file is working fine when called from command prompt or double clicked in the edq server, but does not work as expected when called from project or job.
    I generated a log file which confirms that the log file is being executed by the job to the last line, but the file copying and sarmanalyzer commands simply do not work.
    Any pointers are greatly appreciated.
    Thanks,
    Sid

    Hi Nick,
    Thanks for help!
    My bat file runs without any errors from external tasks in EDQ.
    The account has full control on all the shared folders i am using.
    My script:
        set ss_temp_dir=D:\Datanomic\dnDirector\config\landingarea\EDQ_Notification
    echo s1 > log.txt
        set srm_analyzer_path=\\<appsrvr4>\d$\sba81\siebsrvr\BIN
    echo s2 >>log.txt
    COPY /Y \\<appsrvr1>\d$\sba81\siebsrvr\BIN\*.fdr \\qssdvucmgtw301\siebfile\FDR
    COPY /Y \\<appsrvr2>\d$\sba81\siebsrvr\BIN\*.fdr \\qssdvucmgtw301\siebfile\FDR
    COPY /Y \\<appsrvr3>\d$\sba81\siebsrvr\BIN\*.fdr \\qssdvucmgtw301\siebfile\FDR
    :: The above copy is not working from EDQ - no files copied - running the commands from cmd or double clicking the bat works fine for all commands.
    echo s3 >>log.txt
    ::  log s1-s2-s3 created in commandarea.
    setLocal DisableDelayedExpansion
    pushd  \\<sharedloc>\siebfile\FDR\
    setLocal EnableDelayedExpansion
    echo s4 >>log.txt
    for /f "tokens=* delims= " %%G in ('dir/b/od T*.fdr') do (set newest=%%G)
    echo s5 >>log.txt
    copy %newest% %ss_temp_dir%
    echo s6 >>log.txt
    :: log s4-s5-s6 created in   \\<sharedloc>\siebfile\FDR\
      pushd %ss_temp_dir%
    echo s7 >>log.txt
      for %%F in (%ss_temp_dir%\*.fdr) do (
         ::set outfile=%ss_temp_dir%\%%~nF.csv &&
      %srm_analyzer_path%\sarmanalyzer.exe -o %ss_temp_dir%\Snapshot_Working_CSV.csv -x -f %%F
    :: The above saqrm_analyzer is not working from EDQ - no files copied - running the commands from cmd or double clicking the bat works fine for all commands.
    echo s8 >>log.txt
    MOVE /Y %ss_temp_dir%\*.fdr %ss_temp_dir%\BU\
    echo s9 >>log.txt
    :: The above move is not working from EDQ - no files copied - running the commands from cmd or double clicking the bat works fine for all commands.
    ::Log s7-s8-s9 created in %ss_temp_dir%
    Thanks,
    Sid

  • HP Pavilion dv6-6181TX. System Recovery is not working From HP Recovery Manager.

    HP Pavilion dv6-6181TX
    Product No. A3U49PA
    Genuine Windows 7 Home Premium 64
    (but i upgraded it to windows 7 ultimate)
    System Recovery is not working From HP Recovery Manager. so i cant restore my laptop to its original factory condition. (Genuine Windows 7 Home Premium).
    so when i restart my computer and press Esc and then choose F11 i get this message :
    "Windows failed to start. A recent hardware or software change might be the
    cause. To fix the problem:
    1. Insert your Windows installation disc and restart your computer.
    2. Choose your language settings, and then click "Next."
    3. Click "Repair your computer."
    If you do not have this disc, contact your system administrator or computer
    manufacturer for assistance.
    File: \Boot\BCD
    Status: 0xc0000225
    Info: An error occured while attempting to read the boot configuration data."
    i saw this from the forum
    http://h30434.www3.hp.com/t5/Notebook-Recovery/Hp-recovery-manager-problems/m-p/2395473/highlight/tr...
    Had the C partition been split/shrunk to form a new partition previously?
    Does disk management show the HDD as basic or dynamic? (Start>Right-click Computer>Manage>disk management on the left).
    If it has been switched to dynamic (Windows does this automatically when more than 4 partitions are present on the disk), then the F11 recovery partition won't function until it is restored to basic, but I would like to confirm that is the scenario before providing those steps.
    The Disk management shows that my HDD as Dynamic, what should i do then if this is the case and the possible solution to my problem?
    please help me & Thank you for your time,
    This question was solved.
    View Solution.

    If you have more than 4 partitions you will need to delete the extra partition/partitions, then convert the hdd back to Basic.
    Older versions of Partiton Wizard Free work: 
    http://www.sevenforums.com/tutorials/26829-convert-dynamic-disk-basic-disk.html
    ******Clicking the Thumbs-Up button is a way to say -Thanks!.******
    **Click Accept as Solution on a Reply that solves your issue to help others**

  • IPad 2 has slowed down copy paste is not working it hangs when filling in user name , please do something to solve all these problems ,Apple please wake up

    IiPad 2 has slowed down with ios8 copy paste is not working it hangs when you try to fill up forms ,Apple engineers you need to do something fast

    Apple engineers do not participate here. Have you updated to iOS 8.1 which was just release yesterday? Have you done any other troubleshooting? If you haven't start here.
    Go to Settings>Safari>Clear History and Website Data
    Now close all apps. In order to close apps, you have to drag the app up from the multitasking display. Double tap the home button and you will see apps lined up going left to right across the screen. Swipe to get to the app that you want to close and then swipe "up" on the app preview thumbnail to close it.
    Next, reset the iPad by holding down on the sleep and home buttons at the same time for about 10-15 seconds until the Apple Logo appears - ignore the red slider if it appears on the screen - let go of the buttons. Let the iPad start up.
    If those three things made no difference, try this. Reset all settings. You will not lose any data, but most of the device settings will have to be entered in the settings app again. Settings>General>Reset>Reset all Settings.
    If all of that fails, restore the iOS software. Backup your iPad before you restore, then restore the backup when you are done. If that still doesn't help, restore your iPad as new and start all over again. Most purchased content can be downloaded again at no charge as long as you use the same Apple ID and as long as the content is still available in the store.
    Restore iPad to Factory Settings
    http://support.apple.com/kb/ht1414
    Download Past Purchases
    http://support.apple.com/kb/ht2519

  • SQL*Plus COPY command does not work

    SQL*Plus COPY command does not work in SQL Developer. I am using SQL Developer 1.5.1 on Windows XP.
    copy from <source_db_connection> to <target_db_connection> create <target_tab_name> using select * from <source_tab_name>
    Does it work on different versions of SQL Developer ?
    Anyone had any success in trying COPY command in SQL Developer?
    Thanks in advance.

    While it hasn't been updated for v1.5, this page lists the supported SQL*Plus commands. COPY is explicitly listed as not supported.
    theFurryOne

  • I reinstalled microsoft word and now have a copy that will not work that is the default

    I reinstalled microsoft word and now have a copy that will not work that is the default

    I have MS word 2008 for MAC version 12.1
    When I left click the MS word applications that is the default seems to be corrupted as indicated by the message below but when I right click i can select the second MS word application that works.  The message from the left click is
    Process:         Microsoft Word [10367]
    Path:            /Users/geralddowling/Library/Mail Downloads/Microsoft Word.app/Contents/MacOS/Microsoft Word
    Identifier:      com.microsoft.Word
    Version:         ??? (???)
    Build Info:      Unknown-80409~0
    Code Type:       X86 (Native)
    Parent Process:  launchd [128]
    Date/Time:       2011-07-25 17:25:09.413 -0400
    OS Version:      Mac OS X 10.6.7 (10J869)
    Report Version:  6
    Interval Since Last Report:          166920 sec
    Crashes Since Last Report:           5
    Per-App Crashes Since Last Report:   5
    Anonymous UUID:                      1C5621D4-1D85-488D-A24C-CB298759DBC6
    Exception Type:  EXC_BREAKPOINT (SIGTRAP)
    Exception Codes: 0x0000000000000002, 0x0000000000000000
    Crashed Thread:  0
    Dyld Error Message:
      Library not loaded: @executable_path/../Frameworks/MicrosoftComponentPlugin.framework/Versions/12/M icrosoftComponentPlugin
      Referenced from: /Users/geralddowling/Library/Mail Downloads/Microsoft Word.app/Contents/MacOS/Microsoft Word
      Reason: image not found
    Binary Images:
    0x8fe00000 - 0x8fe4162b  dyld 132.1 (???) <A4F6ADCC-6448-37B4-ED6C-ABB2CD06F448> /usr/lib/dyld
    Model: iMac10,1, BootROM IM101.00CC.B00, 2 processors, Intel Core 2 Duo, 3.06 GHz, 8 GB, SMC 1.53f13
    Graphics: ATI Radeon HD 4670, ATI Radeon HD 4670, PCIe, 256 MB
    Memory Module: global_name
    AirPort: spairport_wireless_card_type_airport_extreme (0x168C, 0x8F), Atheros 9280: 2.1.14.5
    Bluetooth: Version 2.4.0f1, 2 service, 19 devices, 1 incoming serial ports
    Network Service: AirPort, AirPort, en1
    Serial ATA Device: ST31000528ASQ, 931.51 GB
    Serial ATA Device: HL-DT-ST DVDRW  GA11N
    USB Device: Keyboard Hub, 0x05ac  (Apple Inc.), 0x1006, 0x24300000
    USB Device: Cruzer Mini, 0x0781  (SanDisk Corporation), 0x5150, 0x24310000
    USB Device: Apple Keyboard, 0x05ac  (Apple Inc.), 0x0220, 0x24320000
    USB Device: Built-in iSight, 0x05ac  (Apple Inc.), 0x8502, 0x24400000
    USB Device: Internal Memory Card Reader, 0x05ac  (Apple Inc.), 0x8403, 0x26500000
    USB Device: IR Receiver, 0x05ac  (Apple Inc.), 0x8242, 0x04500000
    USB Device: Back-UPS ES 750 FW:841.I3 .D USB FW:I3, 0x051d  (American Power Conversion), 0x0002, 0x06400000
    USB Device: BRCM2046 Hub, 0x0a5c  (Broadcom Corp.), 0x4500, 0x06100000
    USB Device: Bluetooth USB Host Controller, 0x05ac  (Apple Inc.), 0x8215, 0x06110000

  • Some attachment buttons not working from external networks

    Hi guys,
    We have an eSourcing system that we access internally from server.internal.com . We also make this eSourcing system available to external vendors through www.external.com .
    The external access is done using a Citrix AGEE system (reverse proxy, etc.). As part of this, the AGEE has the ability to change the hostname in the URL so the real server is hidden from external vendors. For example, when eSourcing generates a webpage, the AGEE searches through and replaces all http://server.internal.com references to http://www.external.com , and vice-versa for incoming calls.
    This works for about 95% of the content, but there are a fer places where the links are not re-written correctly. One example is the File Attachment buttons when replying to a question. However, other file attachment buttons work correctly.
    1. Does anyone else have a similar situation, using a Citrix or other product for external vendors?
    2. Does anyone have a similar problem where certain links/buttons are not working from external networks?
    3. Does anyone have any suggestions as to how to fix this problem?
    4. Are there any settings that are specific to external access that may need to be set?
    Thanks guys for any help/insight.
    Michael.

    SAP has re-written some of their code to help rectify the problem. We have also been working with Citrix to provide additional fixes. If anyone else has these problems, apply the latest patch of eSourcing and contact Citrix support to get the AGEE changes needed to make it work.
    Michael

  • Copy fuction does not work

    When I try to make a copy of something the arrow just keeps spinning and never allows me to copy.

    Hi , Welcome to the HP Forums! I understand that the copy function does not work with your HP Envy 5530. I am happy to look into this copying issue for you!  So I have a better understanding of your question. Is this happening when printing from the computer? Or, when you place a sheet of paper on the glass and select copy?  If you are trying to print from the computer, what Operating System do you have? Windows or Mac? What version? If you do not know the Operating System you are using, please visit this website. Whatsmyos. In the meantime, please make sure the printer's power cable is plugged directly into the wall outlet, and not a surge protector. Issues when Connected to an Uninterruptible Power Supply/Power Strip/Surge Protector. This applies to Inkjet printers as well. Also, you will want to make sure the printer's firmware is up-to-date. Getting Printer Updates for HP Photosmart 5520 e-All-in-One, HP ENVY 5530 e-All-in-One, and HP Deskjet Ink Advantage 4510 and 5520 e-All-in-One Printer Series. Thank you for posting, and hope to hear from you soon!  “Please click the Thumbs up icon below to thank me for responding.”

  • Dashboard link is not working from BI Publisher

    Dashboard link is not working from BI Publisher. Please let me know How to fix this problem.

    Please somebody guide me.
    Dashboard link is working fine from the Apps Server Machine. But the link is not working from other machines. Do I need to setup machine.domain:<port_number> any where.
    Thanks,
    Vara

  • My mail is not working from my ipod i looked it up it says it trouble shooting but its not giving me anything to fix it can someone help me?

    My mail is not working from my iPod touch. I looked it up and it says it trouble shooting? But they are not giving me anything to fix it. I restored my iPod touch to see if that worked and it didnt. Can anyone help me?

    Can you access the account from another device?
    Without you telling use the email provider and type of account we can't really help you.

  • In 5s, personal hot spot does not work from time to time. Not detected

    In 5s, personal hot spot does not work from time to time. Iphone does not get detected on Wi-fi or bluetooth. Restarting or rebooting does not help.  

    Settings, general, reset and reset network settings. Clear out your network settings and set personal hotspot again.
    also avoid special characters making a password. hashtags or open brackets for example doesn't work too good.

  • Copy/paste function not working in Firefox 22. Always good in previous versions

    Copy/paste function not working in Firefox 22. Always good in previous versions editions

    Well I've uninstalled FF22, thanks for the suggestion.
    Chrome works perfectly with ZA and C&P.

Maybe you are looking for

  • What's wrong with this SQL?

    what's wrong with this SQL? Posted: Jan 16, 2007 9:35 AM Reply Hi, everyone: when I insert into table, i use the fellowing SQL: INSERT INTO xhealthcall_script_data (XHC_CALL_ENDED, XHC_SWITCH_PORT, XHC_SCRIPT_ID, XHC_FAX_SPECIFIED) VALUES (SELECT TO_

  • Inconsistent view object result set

    (1)In JSP front-end, I have the following code: <% ComUtil c = new ComUtil(); String sAppConfig = c.getAppConfigStr(); %> <jbo:ApplicationModule id="am" configname="<%=sAppConfig%>" releasemode="Stateless" /> // A datatag is put here to print out a c

  • Accessing a Flash site via safari

    This question sounds like a Flash/ActionScript question, but it's really a Safari question, so please bare with me. Hello, I am creating a website for an artist and she complains that nothing works. Mainly the embedded links (URLs). I tested the site

  • Serial number location other than disk drive door.

    Serial number location other than disk drive door.

  • From Leopard back to Tiger

    Odd question to ask I know but have experienced some problems since upgrading to Leopard, one being that my Superdrive no longer burns DVD's!! This appears to be an ongoing thing judging by some threads I've seen and I can't really afford to be going