Directory or Folder creation in server

Hi,
     Is it possible to create a folder or directory in the server through code..Is there any function module or class there..
If there means plz give the sample code..
Another part..After creating the folder is it possible to give full access to the folder..

hi check this code ,
For browsing (checking the folder exists or not) you can use the following code:
code
CALL FUNCTION 'EPS_GET_DIRECTORY_PATH'
EXPORTING
EPS_SUBDIR = 'log'
DIR_NAME = 'DIR_TMP'
IMPORTING
DIR_NAME =
EXCEPTIONS
INVALID_EPS_SUBDIR = 1
SAPGPARAM_FAILED = 2
BUILD_DIRECTORY_FAILED = 3
OTHERS = 4
if sy-subrc 0.
"the directory not present.
endif.
[/code]
For creating directory, you have to know the exact path of your server, and then you can use the following code:
code
path = '
172.52.72.651\qfilesvr400\S109XXXX\usr\sap\TST\SYS\test'.
CALL METHOD CL_GUI_FRONTEND_SERVICES=>DIRECTORY_CREATE
EXPORTING
DIRECTORY = path
CHANGING
RC = rc
EXCEPTIONS
DIRECTORY_CREATE_FAILED = 1
CNTL_ERROR = 2
ERROR_NO_GUI = 3
PATH_NOT_FOUND = 4
DIRECTORY_ACCESS_DENIED = 5
DIRECTORY_ALREADY_EXISTS = 6
UNKNOWN_ERROR = 7
others = 8
IF SY-SUBRC 0.
MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
ENDIF.
<REMOVED BY MODERATOR>
venkat.
Edited by: Alvaro Tejada Galindo on Mar 4, 2008 12:27 PM

Similar Messages

  • Folder Creation On Server

    Dear All,
    I had created a web-application which allows a user to create a named folder with his/her choice on the server which works locally but when i deployed the war of it on the Godaddy it throws a exception as
    Caught Exception: java.security.AccessControlException: access denied (java.io.FilePermission /var/chroot/home/content/b/r/i/bringlifeto/html/MyDemoDirApp/demodir/testdir write)
    Here is the link, to give you a clear idea what exactly I am talking about,
    [Test Link|www.bringlife2.com/MyDemoDirApp/jsp/index.jsp]
    For your reference here is the code
    index.jsp
    <html> 
         <head><title>Custom Directory Creation On Server</title></head> 
         <body> 
            <center> 
                 <h1>Customized Directory Creation On Server</h1> 
                 <form method="post" action="/MyDemoDirApp/UserDirDemo"> 
                     <table> 
                         <tr> 
                             <td>Enter Name For Your Directory</td> 
                             <td> </td> 
                             <td><input type="text" name="dirName" /></td> 
                         </tr> 
                         <tr> 
                             <td><input type="submit" value="Create Directory"/></td> 
                             <td> </td> 
                             <td><input type="reset" value="Reset"/></td> 
                         </tr> 
                     </table> 
                 </form> 
             </center> 
         </body> 
    </html> 
    UserDirDemo.java
        import java.io.*; 
        import javax.servlet.http.*; 
        import javax.servlet.*; 
        public class UserDirDemo 
            extends HttpServlet 
            public void doPost(HttpServletRequest request, HttpServletResponse response) 
                throws ServletException,IOException 
               response.setContentType("text/html"); 
               PrintWriter out=response.getWriter(); 
               String param=request.getParameter("dirName"); 
               //System.out.println("Param Value="+param); 
               out.println("<html><head><title>Directory Creation On Server</title></head>"); 
               out.println("<body><center>"); 
               out.println("<h1>Directory Creation On Server</h1>"); 
               ServletContext servletContext=getServletContext(); 
               out.println("<br><h3>servletContext: "+servletContext+"</h3>"); 
               String realPath=servletContext.getRealPath("/"); 
               out.println("<br><h3>realPath: "+realPath+"</h3>"); 
               try 
                   //File f=new File(realPath+"/images/testdir"); 
                   File f=new File(realPath+"/"+param+"/testdir"); 
                   f.mkdirs(); 
                   out.println("<br><h3>Absolute Path="+f.getPath()+"</h3>"); 
               catch(Exception e) 
                   out.println("<br><br><strong><i>Caught Exception:\n\t"+e+"</i></strong>"); 
                   out.close(); 
               out.close(); 
       }  As I know, the only way to create folder is java.io package. Is there some thing wrong with my code. How can I sort out this issue.
    Any help is appreciated
    Thanks,
    Arpit
    Edited by: goldie_gold on Oct 4, 2009 12:30 AM

    Hey Balus,
    Thanks for replying. I have read on net that the Java Security Manager can set various permission in Policy file inside the tomcat/conf directory. Is the exception bcoz of the the SM of GoDaddy might not have granted permission for writing or say creating folder or uploading file at runtime to a particular folder inside my webapplication.
    I apologize, I might not have used correct technical terms above as I am a newbie and hope you will understand what i am trying to say.
    Awaiting your reply.
    Arpit

  • Dynamic folder creation on server

    hi all,
    i'm working with 9i and using webutil for file tranfer from client to server now i want this uploaded file to be stored in a folder created dynamically on the server..any help

    create the procedure in your form. below is my sample codes:
    PROCEDURE chkstatus_mkdir_4ws( wk_ip_adr in varchar2,
    usr_name in varchar2,
    pss_wrd in varchar2,
    accnt_ok out boolean) IS
    ftp_dir_file UTL_FILE.FILE_TYPE;
    ftp_log_file UTL_FILE.FILE_TYPE;
    ftp_dir_file_name varchar2(40);
    ftp_log_file_name varchar2(40);
    ftp_command varchar2(60);
    veh varchar2(6) := LOWER(NAME_IN('GLOBAL.VEHICLE_LINE'));
    phs varchar2(25) := LOWER(NAME_IN('GLOBAL.DESIGN_PHASE'));
    tid varchar2(20) := LOWER(NAME_IN('GLOBAL.TNUMBER'));
    Oracle_dir varchar2(6);
    v_ErrorCode number(8); ---PROBLEM HERE
    v_ErrorText varchar2(200);
    v_str1 varchar2(500);
    Begin
    --- build the ftp directive file
    Oracle_dir := '/tmp';
    ftp_dir_file_name := usr_name || '_ftpcm_dir';
    ftp_log_file_name := usr_name || '_ftpcm_log';
    ftp_dir_file := UTL_FILE.FOPEN(Oracle_dir, ftp_dir_file_name, 'W');
    UTL_FILE.PUTF(ftp_dir_file, 'open %s\n', wk_ip_adr);
    UTL_FILE.PUTF(ftp_dir_file, 'user %s %s\n',usr_name,pss_wrd);
    UTL_FILE.PUTF( ftp_dir_file, 'cd hlink.projects\n');
    UTL_FILE.PUTF( ftp_dir_file, 'mkdir e3d\n');
    UTL_FILE.PUTF( ftp_dir_file, 'cd e3d\n' );
    UTL_FILE.PUTF( ftp_dir_file, 'mkdir %s\n', veh );
    UTL_FILE.PUTF( ftp_dir_file, 'cd %s\n', veh );
    UTL_FILE.PUTF( ftp_dir_file, 'mkdir %s\n', phs );
    UTL_FILE.PUTF( ftp_dir_file, 'cd %s\n', phs );
    UTL_FILE.PUTF( ftp_dir_file, 'quit\n' );
    UTL_FILE.FCLOSE(ftp_dir_file);
    --- invoke the ftp command to run the directive file----
    ftp_command := 'ftp -n -v < '
    || Oracle_dir || '/' || ftp_dir_file_name
    || ' > '
    || Oracle_dir || '/' || ftp_log_file_name;
    host(ftp_command);
    --- Read results from ftp log file to determine if supplied account worked ok
    ftp_log_file := UTL_FILE.FOPEN(Oracle_dir,ftp_log_file_name, 'R');
    accnt_ok := FALSE;
    LOOP
    BEGIN
    UTL_FILE.GET_LINE(ftp_log_file,v_str1);
    EXCEPTION
    WHEN NO_DATA_FOUND THEN
    message('The workstation selected is not reachable from DTDB application.');
    message(' ');
    EXIT;
    END;
    IF INSTR(v_str1,'230') > 0 THEN
    accnt_ok := TRUE;
    EXIT;
    ELSIF INSTR(v_str1, '530') > 0 THEN
    message('The incorrect User Name or Password was supplied.');
    message(' ');
    EXIT;
    End IF;
    END LOOP;
    UTL_FILE.FCLOSE(ftp_log_file);
    --- Exception handeling
    Exception
    When UTL_FILE.INVALID_OPERATION THEN
    UTL_FILE.FCLOSE(ftp_dir_file);
    Message('INVALID OPERATION... ftp 2 workstation');
    WHEN UTL_FILE.WRITE_ERROR THEN
    UTL_FILE.FCLOSE(ftp_dir_file);
    Message('WRITE ERROR.... ftp 2 workstation');
    WHEN UTL_FILE.INVALID_PATH THEN
    UTL_FILE.FCLOSE(ftp_dir_file);
    Message('WRONG PATH... ftp 2 workstation');
    WHEN UTL_FILE.INVALID_MODE THEN
    UTL_FILE.FCLOSE(ftp_dir_file);
    Message('WRONG MODE... ftp 2 workstation');
    WHEN UTL_FILE.INVALID_FILEHANDLE THEN
    UTL_FILE.FCLOSE(ftp_dir_file);
    Message('Invalid file handle "ftp_dir_file" ftp 2 workstation ');
    WHEN OTHERS THEN
    UTL_FILE.FCLOSE(ftp_dir_file);
    v_ErrorCode := SQLCODE;
    v_ErrorText := substr(SQLERRM, 1, 200);
    message('Just known Internal Error: '||v_ErrorCode||'=>'||v_ErrorText);
    End;

  • Folder creation in server

    Hi Everybody,
    I have requirement to create folders/ sub folders dynamically in a given path (server) and copying a pdf in the created path. Client is using ORACLE 10G AS with Windows.
    Thanks in Advance
    Satyam

    What kind of application (Java, Forms, PL/SQL etc.) you have that you need to have this created/copied from?

  • Home Folder Creation w/Active Directory

    If this has been asked a million times, just point me to the url for the answer...
    I have done the leg work and have the "magic triangle" working - I can login and auth to AD and get my preferences from OD. I want our user's home folders to reside on our Windows server. I have shared out \\server\students on the Windows server and in AD I am pointing their home folder to our Windows server, but I can't get the permissions right. When I point a new user's home folder in AD to our Windows server, it creates the folder \\server\students\jtest.
    When the user logs in, none of the subfolders are created. Can someone give me some pointers on how permissions need to be set so the subfolders are created on first login?
    This is all pretty new and I'm happy that I got the triangle to work - if I can get this all important piece, I'll be set.
    Thx in advance!

    Hi
    A lot of this depends on how many OUs you have; how deep they go; and how many directories you have nested in each OU or the particular OU the directory for home folder creation is within. The accepted 'recommendation' is not more than 3 deep - generally. Having said that I have made it work with OUs 7-10 deep. Gets trickier after that.
    In my experience the non-creation of expected directories is generally down to permissions not being assigned properly - as you've guessed. Essentially users must be given read/write access all the way down the nested directories. I have seen permissions assigned correctly to a parent folder, with a set of different permissions applied to the next folder down and the next one along again with the correct permissions applied. Folder creation fails when permissions are set in this way.
    What is interesting is the log-in does not fail though you are greeted with the usual "the home folder exists on an SMB or AFP Server etc" dialog box when getting to the desktop. You sometimes get this at the log-in window as well. Although you can also see the message for other reasons - usually down to poor DNS configuration.
    You should be able to log in as the local admin and look at the system.log in Console. You should see an error starting with 'NSurl etc etc. . . ' listed. If you do that's an indication it's a permissions problem.
    Beyond this and without being there it's difficult to tell?
    Hope this helps, Tony

  • Dreamweaver 6. I can't reference root folder on test server - any ideas please?

    Dreamweaver 6. I've set up a copy of a site onto a test server. All fine other than a problem with links to the root folder.
    The web URL for test server is set up as http://localhost:8080/bhtownsite/ but when I set up a link to the site root e.g. /photos/pictures.php, instead of going to http://localhost:8080/bhtownsite/ the system ignores the 'bhtownsite' folder and goes to http://localhost/photos/pictures.php which of course doesn't exist!!
    I've no hair left to pull - any suggestion would be greatly appreciated.
    Thanks

    @Murray,
    I don't have a Root Directory field in my Testing Server definition (CS6 12.2). 
    Server name:  Testing Server
    Connect using: Local/Network
    Server folder:  C:\wamp\www\MySiteName\
    Web URL:  http://localhost/MySiteName/
    Is that something new in CC?
    Nancy O.

  • How to create the folder in presentation server through pop-up(

    Hi Experts,
    Can u give me the solution , how to create the folder in presentation server through pop-up(means dynamically, after executing the program , pop-up has to come to create the folderand path)
    regards
    ram.

    Use the methods -> DIRECTORY_BROWSE & DIRECTORY_CREATE of the class CL_GUI_FRONTEND_SERVICES
    DATA: path TYPE string,
          rc TYPE i,
    dir_name TYPE string value 'HI'.
      CALL METHOD CL_GUI_FRONTEND_SERVICES=>DIRECTORY_BROWSE
        CHANGING
          SELECTED_FOLDER      = path
      IF SY-SUBRC <> 0.
    *   MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    *              WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
    concatenate path '\' dir_name into path.
      CALL METHOD CL_GUI_FRONTEND_SERVICES=>DIRECTORY_CREATE
        EXPORTING
          DIRECTORY                = path
        CHANGING
          RC                       = rc
      IF SY-SUBRC <> 0.
    *   MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    *              WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
    Edited by: Kartik Tarla on Sep 23, 2009 5:54 PM

  • Creating a folder in application server in background.

    Hi experts,
    Is it possible to Creating a folder in application server in background.?
    My requirement is like this , every time a PO is created it has to be saved locally.
    When atlast i manged to do this, i get stuck again by this CR ,
    The PO has to be saved in a folder with the same name as PO number,
    I do not know if it is possible.
    So as always I am looking for inputs/suggestions or knowledge if you had come across scenario like this one.
    Thanks and Regards,
    K

    Hi,
    You could create a system command in SM69 to create a directory and then use the function module SXPG_CALL_SYSTEM to invoke the command and pass in the directory name as a parameter at run time.
    Darren

  • Automating Folder Creation

    Here's what I want to do. I'm trying to automate client folder creation. I have a directory called clients. Every time I create a new folder in the clients folder, I'd like for it to automatically ask me what I'd like to name the folder, then I would like it to create 6 directories inside the created folder titled "legal" "spec files" "correspondence" "modules""graphic design" and "archived materials".
    How would I go about that with automator?

    A couple of options. The first uses automator and a shell script, but you would run the workflow which asks for a folder name instead of you creating it first, as you requested. The second uses Folder Actions so that when you create a new folder in your clients folder it will ask for a name and create the folders.
    Automator Method:
    1) From Files and Folders, drag over a "New Folder" action.
    2) Enter a default name for the folder in the Name: field (or leave blank)
    3) Select your Clients folder in the Where: field
    4) Click the "Options" button and tell it to "show this action when the workflow runs"
    5) From the Utilities, drag over a "Do shell script" action
    6) Select the /bin/bash shell
    7) in the Pass input field select "As arguments"
    8) Enter this code mkdir -p $1/legal/ $1/spec files/ $1/correspondence/ $1/modules/ $1/graphic design/ $1/archived materials/
    Save this workflow and run it when you want to create the new folder. If you have quick keys, launch bar, Quicksilver, or the like, you could set up a shortcut...or, you can use cmd-space to call up spotlight and search for you workflow name and launch it from spotlight.
    For the Applescript option:
    I had some glitches with it in that it seemed to re-run the script after I changed the name. I couldn't figure out if the name change drove the script to run again. Also, after creating the new folder, you have to wait a few seconds for it to trigger. Kind of annoying, I thought.
    First, copy this script to a new Script Editor script (Applescript folder).
    property dialog_timeout : 30 -- set the amount of time before dialogs auto-answer.
    on adding folder items to this_folder after receiving added_items
    try
    tell application "Finder"
    set theFolder to item 1 of added_items
    set response to display dialog "Please enter a folder name:" default answer "New Client"
    if button returned of response is not "Cancel" then
    set the name of folder theFolder to (text returned of response)
    make new folder at folder theFolder with properties {name:"legal"}
    make new folder at folder theFolder with properties {name:"spec files"}
    make new folder at folder theFolder with properties {name:"correspondence"}
    make new folder at folder theFolder with properties {name:"modules"}
    make new folder at folder theFolder with properties {name:"graphic design"}
    make new folder at folder theFolder with properties {name:"archived materials"}
    end if
    end tell
    on error theErr
    display dialog theErr
    end try
    end adding folder items to
    Save it as a script in your user/Library/Scripts/Folder Action Scripts/ folder. Run the Folder Actions Setup script in the Applescript folder and attach this script to your "Clients" folder:
    1) Click on the Enable Actions checkbox
    2) Click the "+" button in the left pane and find your clients folder
    3) Click the "+" button in the right pane and find your script you just saved.

  • Robocopy not copying the folder creation date

    We migrate the data between 2  Windowsfile servers using robocopy and it works finew ith issues. Only issue is it doesnt copy the folder creatiopn date from source to destination server, it does copy the file creation date without any issues. Command
    we use is as below.
    robocopy.exe %1 %2 /COPYALL /MIR /ZB /R:10 /W:2 /TEE /DCOPY /LOG+:robocopy_%3.log
    This command is called using a batch file where we specify the source and destination using the below syntax.
    call Robocopy_Module.bat "C:\Backup" "C:\Restore"
    Kindly advise if this is normal behaviour , if not what is the correct command used to copy the Folder creation dates.

    I was using like this
    Go to CMD prompt,
    RUN as Administrator
    Type  
    robocopy "source path" "destination Path" / MIR
    It will copy including time stamps.
    or create seprate folder in a destination place and copy everything into that folder.
    It will work.

  • F4 for folder search on server

    Hi gurus,
    I've created a report which has a selection value fora  folder on the server. The idea is to select a folder on the server just like FM TMP_GUI_BROWSE_FOR_FOLDER does for local folders on the PC. Is there a function module/class I can use for this.
    kind regards,
    Wim

    Hi,
    Try this way.
    "use the below function module it can use both for application and presentation...
        CALL FUNCTION 'F4_DXFILENAME_TOPRECURSION'
          EXPORTING
            i_location_flag = 'A'   "a for application path and P for presntation palth
            i_server        = ' '
            i_path          = w_path
            filemask        = ' '
            fileoperation   = 'R'
          IMPORTING
            o_path          = w_path.
    "or use the below function module..
      CALL FUNCTION '/SAPDMC/LSM_F4_SERVER_FILE'
        EXPORTING
          directory  = w_path       "if any directory you want to show defalt
          filemask   = ' '
        IMPORTING
          serverfile = w_path.        "the return file stores here
    Thanks
    Venkat.O

  • Transfered Local files disappear when put in a different folder on remote server

    Hello everybody,
    I know this question is kinda asked a lot, but I cant seem to find the right answer that relates to my problem.
    I am trying to "put" my local files on my remote server. I managed to get two files in the right folder on my remote server.
    But now every single time I put one of the other local files on the remote server, it comes in the main folder (that works fine). I then have to drag it to the right sub-folder in
    order for my website to work. When I drag these files into this sub-folder, they disappear on the remote server.
    I keep putting the local files in the remote server and this works, but putting them in the sub-folder of the remote server doesnt work.
    Does anybody know what the problem could be?
    I try uploading from the hosting website, but my website doesnt work, I checked all the files, the links everything works. Therefore I am now trying it through dreamweaver.
    Also I check the remote server online and the two files that did work, showed up there, so its all connected fine.. :s
    Im using Dreamweaver CS5.5
    Any help would be great, I need to get this website uploaded tomorrow for my uni assignment, also if somebody knows a good WORKING freehosting website, please let me know
    Thanks,
    Maartje

    Yeah the folder on the remote server is htdocs , I am putting all the files in the htdocs folders, otherwise it says my website doesnt work.
    Your remote site is not properly defined.  Put "htdocs" into the Root Directory: field of the Remote server's definition.  Now your files will always upload to the correct location.
    Does the order of the files need to be the same too?
    No.  They are ordered in DW in the way that you have specified by clicking on the associated column headers.

  • To create folder in Application server

    hi,
    How to create folder in application server from presentation server??
    how is the program it??
    reply me soon...
    thx,
    s.suresh.

    hi Suresh
    Hope u r having nice day
    here i am sending a sample report which can upload the file to Application Server which inturn automatically create folder .
    REPORT  ZSHR_UPLOAD_TO_APPLICATION              .
    DATA : BEGIN OF IT_MAT OCCURS 0,
              MBRSH LIKE MARA-MBRSH,
              MTART LIKE MARA-MTART,
              MAKTX LIKE MAKT-MAKTX,
              MEINS LIKE MARA-MEINS,
           END OF IT_MAT.
    DATA : W_DIR(40).
    MOVE 'D:\usr\sap\DEV\DVEBMGS00\work\SHR' TO W_DIR.
    "SHR" IS A FOLDER NAME TO BE CREATED
    START-OF-SELECTION.
    CALL FUNCTION 'GUI_UPLOAD'
      EXPORTING
        FILENAME                     = 'C:\MAT.TXT'
       FILETYPE                      = 'ASC'
       HAS_FIELD_SEPARATOR           = 'X'
      TABLES
        DATA_TAB                      = IT_MAT
    EXCEPTIONS
       FILE_OPEN_ERROR               = 1
       FILE_READ_ERROR               = 2
       NO_BATCH                      = 3
       GUI_REFUSE_FILETRANSFER       = 4
       INVALID_TYPE                  = 5
       NO_AUTHORITY                  = 6
       UNKNOWN_ERROR                 = 7
       BAD_DATA_FORMAT               = 8
       HEADER_NOT_ALLOWED            = 9
       SEPARATOR_NOT_ALLOWED         = 10
       HEADER_TOO_LONG               = 11
       UNKNOWN_DP_ERROR              = 12
       ACCESS_DENIED                 = 13
       DP_OUT_OF_MEMORY              = 14
       DISK_FULL                     = 15
       DP_TIMEOUT                    = 16
       OTHERS                        = 17.
    OPEN DATASET W_DIR FOR OUTPUT IN TEXT MODE ENCODING UTF-8.
      IF SY-SUBRC EQ 0.
        LOOP AT IT_MAT.
           TRANSFER IT_MAT TO W_DIR.
        ENDLOOP.
      ENDIF.
    CLOSE DATASET W_DIR.
    IF USEFUL AWARD POINTS.
    REGARDS
    HEMASEKHARA REDDY S

  • Mac desktop. 10.6.8. Text edit. Not locked. Read and write. Still, documents are locking when they are moved from desktop to another folder on the server. Techies can't figure it out here. What am I not doing?

    Mac desktop. 10.6.8. Text edit. Not locked. Read and write, not read only. Documents are locking when they are moved from desktop to another folder or saved directly into that folder on the server. Not happening with anyone else but me and the boss's computer so has to be in the properties for my text edit software. Techies can't figure it out after trying for two weeks. Boss can do a cut and paste and put into a new document, but that's starting to become a problem.

    Mac desktop. 10.6.8. Text edit. Not locked. Read and write, not read only. Documents are locking when they are moved from desktop to another folder or saved directly into that folder on the server. Not happening with anyone else but me and the boss's computer so has to be in the properties for my text edit software. Techies can't figure it out after trying for two weeks. Boss can do a cut and paste and put into a new document, but that's starting to become a problem.

  • How do I keep my new finder window preference set to open a certain folder on the server?

    Since switching to Lion, my new finder window preference keeps resetting itself to default. When I open a new finder window I want it to be a certain folder on our server. This setting was persistent in Snow Leopard. Now I have to keep setting it back, sometimes more than once a day. Please help, its very time consuming to have to click through to get to the folder I use most often every time I open a finder window.
    Mac Pro (early 2009)
    Processor 2.66 GHz Quad-core Intel Xeon
    Memory 8 GB 1066 Mhz DDR3ECC
    Graphics ATI Radeon HD 4870 512 MB
    Mac OS X Lion 10.7.1 (11B26)

    Enabling thirds-party cookies is the default and if there aren't any other changes made then Firefox will show "Remember History"
    Choosing the "Use custom settings for history" setting doesn't make any changes.<br />
    If Firefox shows the "Use custom settings for history" setting then that is an indication that at least one of the history and cookie settings are not the default to make you aware that changes were If all History settings are default then you see "Firefox will: (Never) Remember History" and the custom settings are hidden.<br />

Maybe you are looking for

  • How to manage resource

    I've figured out how to add a resource in the calendering system. I have assigned an user to manage the resource. He gets an email in Outlook about the resource. But for the life of me we can't figure out how he is suppose to approve the use of the r

  • Firefox v15.0.1 Back button disappears

    I'm having trouble whenever I left-click a link in a webpage, the link opens in the same tab, but then the back button is grayed out and unavailable. I tried backing up my bookmarks and then created an entirely new profile, restored my bookmarks. Sti

  • Safari will not download a site I want. WhY?

    Safai will not download a site I want. Why not?

  • QuickTime Fails to Launch

    Hi. I've upgraded my system to 10.3.9 so I can install QT 7.1.5. The installations completed successfully, but when I launch QT, it hangs. The Dock shows that it's running (ie: there's the little arrow beneath the QT icon), but the Finder menus at th

  • GOA as contract and schedul agrem

    Hi esperts I am in SRM 5.0 and R/3 4.7, I need to distribute GOA as contract and schedul agreement, so I have created in SRM 2 types of GOA ZMK and ZLP and created in backend the same document types ZLP for schedul agreement and ZMK to contract, IIf