Cannot view News folder in the Production

Hello,
We are using 3 portals. One is Development, Quality and Production. In the Quality and Production on the home page we view New News with jpgs on the home page but with the same settings we cannot view in the Development Home page. Can anyone tell his solution.
cheers
kris

Hi Murali,
Something else that may be happening here...
The /etc repository is a file system repository.  Is it possible that you've got the read-only flag set at the OS level?
You can find the /etc repository (in NW04) at:
<DRIVE>:\usr\sap\<SID>\SYS\global\config\cm\etc
Regards,
Graham.

Similar Messages

  • Cannot Update - Error 1324: The path New Folder or the volume is invalid. Please enter it again.

    I have been trying to update Adobe reader but every time i trie to this message shows up: Error 1324: The path New Folder or the volume is invalid. Please enter it again. I am running on Windows XP SP3 and using the latest firefox browser. I am not sure if this question has already been answered in this forum so if it has a link to the thread would be appreciated.

    For investigating more on this issue we would need the install log. For creating install log follow the below steps:
    1. Go to start menu and run command
    2. Type Regedit and press enter key
    3. Go to the following path and create keys:
    HKEY_LOCAL_MACHINE\Software\Policies\Microsoft\Windows\Installer
    Reg_SZ: Logging
    Value: voicewarmupx
    then  Install Reader X update. Once you get the error message get the snapshot of error message and then Type %temp% and hit enter. Get the file name as  MSI----
    Provide the snapshot of error message as well as MSI log.

  • Cannot view new files on networked mac

    Hi all, I posted this last year but I think it was in the wrong section.....here goes again..
    I have 2 macs linked via an ethernet cable (g4/400 g4/1.2dual).
    The 400 is on 10.3.9 and the 1.25 is on 10.4.11
    When I do the "Connect to Server" thing from g4/400, I can see g4/1.2's desktop folder with all the files that are on that desktop.
    If g4/1.2 adds a file to that desktop I can't see it from g4/400 unless I disconnect and re-connect.
    It's the same for any folder not just the Desktop folder.
    Is there any way to "refresh" the view?
    It's really inconvenient, but I'm sure it used to work ok. It does however work fine the other way round viewing new files on the 400 from the 1.25.
    Any ideas??
    Thanks
    G

    HI Granger,
    Open System Preferences/Sharing and make sure you have both Personal File Sharing and Windows Sharing turned on the G4/400.
    Carolyn

  • Cannot create new folder?

    I have just moved to a new hosting and have connected to it
    and I can edit files. When I try to add a folder to the remove I'll
    get
    "An FTP error occured - cannot create new folder .
    Access denied. The file may not exist or there could be a
    permission problem".
    Any idea?

    Hi,
    Did you make any changes before the issue appears?
    Before going further, you may try the
    system restore to go back to a previous status and check the result.
    Tracy Cai
    TechNet Community Support

  • When I create a new folder on the desktop of my macbook pro, it is automatically populated with all of the files on the desktop, which I don't want.

    when I create a new folder on the desktop of my macbook pro, it is automatically populated with all of the files on the desktop, which I don't want.

    I got the problem solved. It was pretty simple but new to me. I had evidently inadvertently switched the setting in the "View" tab on the dropdown menu so that all of my desktop folders were populated by all folders/documents residing on the desktop.
    The solution was to open one of the folders, then go to the "View" tab and change the setting to "List." Presto, now all the folders include only the contents I had intentionally loaded into them.

  • Make a New Folder from the search field

    Tried searching all over, can't find the answer to this simple question.
    How can I use Automator to make a new folder with the same name as what I am searching for in Find Finder items?
    Basically I am working with large image sequences that are all being rendered in one folder, but then need to be sorted based on their Prefixes before an underscore. I'd love to not have to copy what I'm searching for into the New Folder field, too.

    I would particularly like to organize downloads by renaming them, and then they automatically get filed away in the correct folder.
    You might achieve something similar by using AppleScript. The example script below, while not meant to be a definitive solution, might provide a guide for you to work with.
    The script specifies paths to various existing folders, in this case Music Downloads and Movie Downloads. Once files passed to the script meet the required criteria ("if characters 1 through 5 of theName...") then the files get moved to their appropriate destination folders.
    To run this script as written you would first need to create a Music Downloads and a Movie Downloads folder, making sure to specify the exact paths to these folders, and replacing "username" in their paths with your actual short name. You would also want to rename your files so that they meet the required criteria: music files might be renamed music_1, music_2, and so on, while movie files could be named movie_1, movie_2, etc.
    The script below can be copied and then pasted into your AppleScript Script Editor to be saved as an application droplet. Once saved, you can drag and drop single or multiple renamed music or movie files, separately or in combination, onto the the saved droplet's icon. If all goes as expected, the music files will be moved to the Music Downloads folder while movie files get moved to the Movie Downloads folder.
    The script was written so that a warning dialog is issued if files passed to it don't meet the renaming criteria. Also, if any duplicate files exist in any of the destination folders, a dialog will appear offering the option to a) replace the item, b) don't replace but continue moving non-duplcates, or c) quit altogether.
    My preference would be for the AppleScript-only droplet approach. But if you'd like to use Automator and have the script available through a right-click contextual menu, you can create this single-action Automator workflow: *Run AppleScript* (from the Automator library). Simply remove the script from its "on open" command handler and insert the remaining code between the Run AppleScript action's default "on run" command handler. Then, from Automator's File menu choose "Save As Plug-in" > Plug-in for: Finder, with a name such as "Put Away" and you should be set.
    +The script:+
    *on open*
    *tell application "Finder"*
    *set theseItems to selection*
    *repeat with i from 1 to the count of theseItems*
    try
    *set thisItem to item i of theseItems as alias*
    *set theName to name of thisItem*
    *if characters 1 through 5 of theName is {"m", "u", "s", "i", "c"} then*
    *move thisItem to "Macintosh HD:Users:username:desktop:music downloads" -- Specify exact path; replace 'username' with your short name.*
    *else if characters 1 through 5 of theName is {"m", "o", "v", "i", "e"} then*
    *move thisItem to "Macintosh HD:Users:username:desktop:movie downloads" -- Specify exact path; replace 'username' with your short name.*
    else
    *display dialog "Only items which meet the criteria can be moved." & return & return & "The item " & (ASCII character 34) & theName & (ASCII character 34) & " cannot be moved" with icon caution buttons {"OK"} default button "OK"*
    *end if*
    *on error*
    *tell me to activate*
    *display dialog "An item named " & (ASCII character 34) & theName & (ASCII character 34) & " already exists in its destination folder. Would you like to replace it with the one you are moving?" & return & return & "Replacing the existing item will overwrite its current contents." with icon caution buttons {"Quit", "Don't Replace And Continue", "Replace Item"} cancel button "Quit" default button "Don't Replace And Continue"*
    *if button returned of result is "Replace Item" then*
    *tell application "Finder"*
    *if characters 1 through 5 of theName is {"m", "u", "s", "i", "c"} then*
    *move thisItem to "Macintosh HD:Users:username:desktop:music downloads" replacing yes -- Specify path and replace 'username' as above.*
    *else if characters 1 through 5 of theName is {"m", "o", "v", "i", "e"} then*
    *move thisItem to "Macintosh HD:Users:username:desktop:movie downloads" replacing yes -- Specify path and replace 'username' as above.*
    *end if*
    *end tell*
    *end if*
    *end try*
    *end repeat*
    *end tell*
    *end open*
    The above script worked for me in testing. Good luck.

  • When I create a New Folder (on the desktop or in Finder), the system uses the Generic Document Icon instead of the Generic Folder Icon. How can I change this back?

    When I create a New Folder (on the desktop or in Finder), the system uses the Generic Document Icon instead of the Generic Folder Icon. How can I change this back?
    All of a sudden I noticed that most of the folders on my computer were no longer using the folder icon, but the generic document icon. I had to manually change back the icon being used by opening Get Info for each folder and copying and pasting the generic folder icon from some folders that remained unchanged. Now whenever I create a New Folder (right click -> "New Folder"), the icon that shows up is the generic document icon (white page with top right corner turned down). And I have to manually change it so it shows up as a folder in Finder or on my desktop. I don't know why or how this switch happened. All of the folders now on my computer look ok, but I need to change the default so when I create a New Folder it uses the correct icon.
    I have also Forced Relaunch of my Finder and rebooted the system. I downloaded Candybar but am not sure what will fix anything, so I haven't proceeded.
    Anyone know how I can do this? Thanks.

    Anyone?

  • Extract process up & running but I cannot see new transactions in the trail

    extract process up & running on source but I cannot see new transactions in the extract trail file and as result it is not replicated to target
    Program Status Group Lag Time Since Chkpt
    MANAGER RUNNING
    EXTRACT RUNNING E_ENVA 00:00:00 00:00:10
    GGSCI (HOST) 186> send extract e_Enva status
    Sending STATUS request to EXTRACT E_ENVA ...
    EXTRACT E_ENVA (PID 11824)
    Current status: In recovery[1]: At EOF
    Current read position:
    Sequence #: 33
    RBA: 34904432
    Timestamp: 2011-09-21 11:14:47.000000
    Current write position:
    Sequence #: 6
    RBA: 1008
    Timestamp: 2011-09-21 11:26:42.426000
    Extract Trail: C:\GG\dirdat\enva\ce
    GGSCI (ILW177711) 193> stats extract e_enva
    Sending STATS request to EXTRACT E_ENVA ...
    No active extraction maps.
    Where to look next and what is the root cause for this,
    thank you

    all configurations was ok and working fine (meaning data was extracted on source and replayed on target) before extract/replicat processes restart
    I did not touch any of the configuration files, after restart processes shows as up & running without any actual errors or rejects on the logs
    please find extract configuration file:
    EXTRACT e_enva
    SETENV ( ORACLE_SID=orcl )
    USERID USER_SCHEMA_A, PASSWORD AACAAAAAAAAAAAHAOFVCXAUANCVHIHCE, ENCRYPTKEY DEFAULT
    DISCARDFILE C:\GG\dirrpt\e_enva.dsc, APPEND, MEGABYTES 10
    REPORTCOUNT EVERY 10000 RECORDS, RATE
    NOTRACETABLE
    EXTTRAIL C:\GG\dirdat\enva\ce
    SQLEXEC "CALL USER_SCHEMA_A.pkg.event_message('START', null, 'ALL','e_enva')";
    SQLEXEC "CALL USER_SCHEMA_A.pkg.event_message('STOP', null, 'ALL','e_enva')" ONEXIT;
    TABLE USER_SCHEMA_A.T_TABLE, KEYCOLS (ID_OBJECT);
    TABLE USER_SCHEMA_A.T_TABLE_REF, KEYCOLS (ID_XREF, PKEY_SRC, SYSTEM, IND);
    logging and supplemental logging enabled, commits performed and again nothing was changed in configuration except that processes was restarted
    thank you

  • How can we open a new folder in the email account (ex: need to save certain emails into a new fodder called "work". can anyone help

    How can we open a new folder in the email account (ex: need to save certain emails into a new fodder called "work".
    Anyone can help?

    Right click on any folder in mail and select Create new mailbox.

  • In Mavericks, every time I try to create a new folder on the drive I  get a prompt for my password. I checked Get Info on the main drive and under Sharing

    I got a new 27" iMac with 10.8.5 and migrated a 10.6.8 system and files.  It was working fine. After about 2 weeks I was looking at the Sharing & Permissions and saw an account "wheel".  I mistakenly (I NOW know it was a mistake) changed the permission to no access and subsiquenty could not boot the computer. I had an older iMac so I built a boot disk with the Mavericks installer on it. Booted the computer and restored from a Time Machine backup previous to the change of permissions of the "wheel" account. I went ahead and did a clean install of Mavericks
    The computer is now running with Mavericks installed and I am rebuilding.  When I go to create a new folder on the system drive I get prompted for a pasword.
    When I checked the permissions and sharing on the main drive it tells me "you can only read".
    I am logged in with an admin account. I have run Disk Utiltiy and Tech Tool Pro's  permission verify and repair. Given what happend last time I changed permissions I am reluctant to make any changes.
    Anyone have an idea as to what I should do.
    Thanks in advance.

    Here is the dialoge box. My account does not appear. Can I just add my account or is there some other problem?

  • Creating a New Folder on the Dock

    I recently purchased CS3 for my computer and am looking to consolidate them into one folder for my dock. Under the applications window all the separate adobe programs have their own folder so I can only bring them down to the dock individually. I want to put all 8 programs that are currently on my dock into one folder that is located on my dock. I would also like to attach an image to that new folder instead of the plain folder look. The most important thing though is to just figure out how to add a folder to my dock. If I create a new folder on the desktop and try to drag it onto the dock it doesn't work. Any help??

    create a folder on the desktop (or any other place on the HD), put aliases to your 8 programs into that folder and drag the folder to the right side of the dock (to the right of the divider).

  • Mac OSX, 10.7.5, LR 5.6  After creating a new folder in the Destination section and importing images, the new folder name appears as 2010, no matter what name I give it.  Why is it doing this?

    Mac OSX, 10.7.5, LR 5.6  After creating a new folder in the Destination section and importing images, the new folder name appears as 2010, no matter what name I give it.  Why is it doing this?

    I am experiencing Mavericks failing to copy subdirectories from usb sticks, I am backing up game saves from a console. Both sticks I use are fine, same permissions of course since the console wrote the files. Sometimes it copies, sometimes it doesn't. It seems to be related to the mounting process.
    Thank God Apple hasn't (yet) broken bash.

  • Unable to properly create new folder at the root level of exchange account

    Using the latest version of Mail in OS 10.6 with an exchange server. Creating a subfolder within existing folders works perfectly. However, if I try to create a new folder at the very first level of hierarchy (directly under the inbox, not within an existing folder) it will not be created in the same location as my other folders. What will happen is, the folder will be created at the very bottom of all of my mail folders in an area that is labeled with the name of my exchange mailbox. This will be an area that only has folders that I created from within Mail on the Exchange server. All other exchange folder will be seen in the "Mailboxes" area directly underneath the exchange inbox.
    FYI if I go into my exchange mailbox in a web browser and create a new folder directly underneath the inbox and then sync Mail for OS X, the folder will appear in the appropriate area. The issue only occurs when creating a new folder under the Inbox from within Mail.
    Any solution here? My office is thinking of switching more computers from windows to mac, but we all run on Exchange and a glaring bug like this would make me think twice about rolling over to Mac for our office.

    Start at http://www.microsoft.com/mac/search.mspx?qu=exchange+server

  • How do I create a new folder in the standard e mail app

    HHow do you create a new folder in the e mail app,

    Mhuddy wrote:
    HHow do you create a new folder in the e mail app,
    You don't.  If you have an imap email account, you create the folder when you log into your email account on a browser.
    Can't do it for a pop account.

  • How to rename a new folder in the project library in FCPX

    How do I rename a new folder in the project library in FCPX?
    Thanks

    Hi
    Why not ask in FinalCut Pro X forum.
    My guess is as in iMovie'11 - point at it and ctrl-click on it - may be there is a re-name function in this menu.
    Why they didn't name it iMovie Pro X is beyond me.
    Yours Bengt W

Maybe you are looking for