File server-Help!

Hello Everyone,
My program not working when sceduled to run in background, but works fine when run in foreground. Think i need to change some funcution modules as the ones i used are, think, referencing for foreground processing. Can anyone point to some function modules which does the job for me.
I am picking up the files from file server.
REPORT  zco11n
        NO STANDARD PAGE HEADING
        LINE-SIZE 255.
INCLUDE zdeclerations.          " Data Declarations part
*---------------Get actual filepath from logical filepath---------------------*
CALL FUNCTION 'FILE_GET_NAME'
  EXPORTING
*   CLIENT                        = SY-MANDT
    logical_filename              = 'ZBARCODE_APPLICATION'    "logical path
IMPORTING
   file_name                     = pa_file                     "actual path
EXCEPTIONS
   file_not_found                = 1
   OTHERS                        = 2
IF sy-subrc <> 0.
  MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
          WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
ENDIF.
*---------------Get all the required files from the directory-------------------*
CALL FUNCTION 'TMP_GUI_DIRECTORY_LIST_FILES'
  EXPORTING
    directory  = pa_file                         "Directory path
    filter     = '*.CSV'
  TABLES
    file_table = lt_file                        "Files in the direcory
    dir_table  = lt_dir
  EXCEPTIONS
    cntl_error = 1
    OTHERS     = 2.
IF sy-subrc <> 0.
  MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
          WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
ENDIF.
*-------Get the directory and file name as single path & move to internal table----*
LOOP AT lt_file INTO lw_file.
  CONCATENATE pa_file  lw_file-pathname INTO lstring.
  MOVE lstring TO lw_filename-pathname.
  MOVE lw_file-pathname TO lw_filename-filename.
  APPEND  lw_filename TO lt_filename.
  CLEAR lw_filename.
  CLEAR lw_file.
ENDLOOP.
START-OF-SELECTION.
  LOOP AT lt_filename  INTO lw_filename.
    file_name = lw_filename-pathname.
*-------Read the contents of the file to an internal table--------------------------*
    CALL FUNCTION 'DX_FILE_READ'
      EXPORTING
        filename          = file_name
        pc                = 'X'
      TABLES
        data_tab          = lt_temp                            "File contents
      EXCEPTIONS
        no_file_on_server = 1
        no_data_on_server = 2
        gui_upload_failed = 3
        no_authority      = 4
        OTHERS            = 5.
    IF sy-subrc <> 0.
      MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
              WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
    ELSE.
*-------------Split and move the contents as required for BDC---------------*
      LOOP AT lt_temp INTO lw_temp.
        SPLIT lw_temp AT ',' INTO lw_afrud-aufnr lw_afrud-lmnga lw_afrud-budat.
        APPEND lw_afrud TO lt_afrud.
      ENDLOOP.
************----------Start Of BDC-----------------------***************
      LOOP AT lt_afrud INTO lw_afrud.
        PERFORM bdc_dynpro      USING 'SAPLCORU_S' '0100'.
        PERFORM bdc_field       USING 'BDC_OKCODE'
                                      '/00'.
        PERFORM bdc_field       USING 'AFRUD-AUFNR'
                                       lw_afrud-aufnr.
        PERFORM bdc_field       USING 'AFRUD-LMNGA'
                                      '1'.
        PERFORM bdc_field       USING 'AFRUD-ISDZ'
                                      '00:00:00'.
        PERFORM bdc_field       USING 'AFRUD-IEDZ'
                                      '00:00:00'.
        PERFORM bdc_field       USING 'AFRUD-PEDZ'
                                      '00:00:00'.
        PERFORM bdc_field       USING 'BDC_CURSOR'
                                      'AFRUD-BUDAT'.
        PERFORM bdc_field       USING 'AFRUD-BUDAT'
                                      lw_afrud-budat.
        PERFORM bdc_dynpro      USING 'SAPLCORU_S' '0100'.
        PERFORM bdc_field       USING 'BDC_OKCODE'
                                      '=BU'.
        CALL TRANSACTION 'CO11N' USING lt_bdcdata MODE 'N'
        UPDATE 'S' MESSAGES INTO lt_bdcmsgcoll.          "#EC CI_CALLTA
      ENDLOOP.
*******-----------End of BDC-------------------------------------*******
      CLEAR lw_afrud.
      REFRESH lt_afrud.
************************File Manipulations*********************
      lv_file_name = lw_filename-filename.                     "Assign the filename to a local variable
      CONCATENATE '\CAUVERYSAPBARCODESUCCESS'
                      lv_file_name INTO lstring_success.       "Place holder for BDC Success Files
      CONCATENATE '\CAUVERYSAPBARCODEERROR'
                      lv_file_name INTO lstring_error.         "Place holder for BDC Error Files
      file_name_source = file_name.                            "Source file path
      file_name_success_dest = lstring_success.                "Success file path
      file_name_error_dest = lstring_error.                    "Error file path
*For the files with no data in them, move them to desired(error) folder.
      if lt_bdcmsgcoll[] is initial.
        CALL METHOD cl_gui_frontend_services=>file_copy
          EXPORTING
            SOURCE               = file_name_source
            destination          = file_name_error_dest.
        endif.
      LOOP AT lt_bdcmsgcoll INTO lw_bdcmsgcoll.
        IF lw_bdcmsgcoll-msgtyp EQ 'S' AND
            lw_bdcmsgcoll-msgnr EQ '110'.
*----------Move the succes files to designated folder---------------*.
          CALL METHOD cl_gui_frontend_services=>file_copy
            EXPORTING
              SOURCE               = file_name_source
              DESTINATION          = file_name_success_dest
              overwrite            = 'X'
            EXCEPTIONS
              cntl_error           = 1
              error_no_gui         = 2
              wrong_parameter      = 3
              disk_full            = 4
              access_denied        = 5
              file_not_found       = 6
              destination_exists   = 7
              unknown_error        = 8
              path_not_found       = 9
              disk_write_protect   = 10
              drive_not_ready      = 11
              not_supported_by_gui = 12
              OTHERS               = 13.
          IF sy-subrc <> 0.
            MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
                       WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
          ENDIF.
        ELSE.
*--------Move the error files to designated folder-----------------*.
          IF  lw_bdcmsgcoll-msgtyp EQ 'E' OR
              lt_bdcmsgcoll[] IS INITIAL.
            CALL METHOD cl_gui_frontend_services=>file_copy
              EXPORTING
                SOURCE               = file_name_source
                DESTINATION          = file_name_error_dest
                overwrite            = 'X'
              EXCEPTIONS
                cntl_error           = 1
                error_no_gui         = 2
                wrong_parameter      = 3
                disk_full            = 4
                access_denied        = 5
                file_not_found       = 6
                destination_exists   = 7
                unknown_error        = 8
                path_not_found       = 9
                disk_write_protect   = 10
                drive_not_ready      = 11
                not_supported_by_gui = 12
                OTHERS               = 13.
            IF sy-subrc <> 0.
              MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
                         WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
            ENDIF.
          ENDIF.
        ENDIF.
      ENDLOOP.
*----------------Delete file from the directory---------------------------*
      CALL METHOD cl_gui_frontend_services=>file_delete
        EXPORTING
          filename             = file_name_source
        CHANGING
          rc                   = lv_rc
        EXCEPTIONS
          file_delete_failed   = 1
          cntl_error           = 2
          error_no_gui         = 3
          file_not_found       = 4
          access_denied        = 5
          unknown_error        = 6
          not_supported_by_gui = 7
          wrong_parameter      = 8
          OTHERS               = 9.
      IF sy-subrc <> 0.
        MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
                   WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
      ENDIF.
    ENDIF.
    REFRESH lt_bdcmsgcoll.
    REFRESH lt_bdcdata.
  ENDLOOP.
*&      Form  bdc_dynpro
*       text
*      -->PROGRAM    text
*      -->DYNPRO     text
FORM bdc_dynpro USING program  dynpro.                      "#EC *
  CLEAR lw_bdcdata.
  lw_bdcdata-program  = program.
  lw_bdcdata-dynpro   = dynpro.
  lw_bdcdata-dynbegin = 'X'.
  APPEND lw_bdcdata TO lt_bdcdata.
ENDFORM.                    "BDC_DYNPRO
*&      Form  bdc_field
*       text
*      -->FNAM       text
*      -->FVAL       text
FORM bdc_field USING fnam fval.                             "#EC *
  IF fval <> space.
    CLEAR lw_bdcdata.
    lw_bdcdata-fnam = fnam.
    lw_bdcdata-fval = fval.
    APPEND lw_bdcdata TO lt_bdcdata.
  ENDIF.
ENDFORM.                    "bdc_field
*&  Include           ZDECLERATIONS
*-----------------------------Types decleration--------------------------*
TYPES: BEGIN OF tw_afrud,
        aufnr        TYPE  aufnr,
        lmnga(13)    TYPE  c,
        budat        TYPE buchdatum,
        END OF tw_afrud,
        tt_afrud     TYPE STANDARD TABLE OF tw_afrud.
TYPES: BEGIN OF tw_temp,
        rec(7000)    TYPE c,
        END OF tw_temp,
        tt_temp     TYPE STANDARD TABLE OF tw_temp.
TYPES: BEGIN OF tw_errorlog,
        aufnr        TYPE aufnr,
        message      TYPE string,
       END OF tw_errorlog,
       tt_errorlog   TYPE STANDARD TABLE OF tw_errorlog.
TYPES: BEGIN OF tw_file,
       pathname      TYPE sdok_filnm,
        END OF tw_file,
        tt_file      TYPE STANDARD TABLE OF tw_file.
TYPES: BEGIN OF tw_dir,
       pathname1     TYPE sdok_filnm,
        END OF tw_dir,
        tt_dir       TYPE STANDARD TABLE OF tw_dir.
TYPES: BEGIN OF tw_filename,
       filename      TYPE rlgrap-filename,
       pathname      TYPE localfile,
      END OF tw_filename,
      tt_filename    TYPE STANDARD TABLE OF tw_filename.
*-------------Variable decleration---------------------------------------*
DATA: pa_file                TYPE rlgrap-filename.
DATA: lstring                TYPE string,
      lstring_success        TYPE string,
      lstring_error          TYPE string,
      file_name              TYPE dxfile-filename,
      lv_rc                  TYPE i,
      file_name_source       TYPE string,
      file_name_error_dest   TYPE string,
      file_name_success_dest TYPE string,
      lv_file_name           TYPE rlgrap-filename.
*---------------Internal tables & Work area's ------------------------------*
DATA : lw_afrud      TYPE  tw_afrud,
       lt_afrud      TYPE  tt_afrud,
       lw_temp       TYPE  tw_temp,
       lt_temp       TYPE  tt_temp,
       lw_file       TYPE  tw_file,
       lt_file       TYPE  tt_file,
       lw_dir        TYPE  tw_dir,       "#EC *
       lt_dir        TYPE  tt_dir,
       lw_filename   TYPE tw_filename,
       lt_filename   TYPE tt_filename,
       lw_bdcdata    TYPE bdcdata,
       lt_bdcdata    TYPE STANDARD TABLE OF bdcdata,
       lw_bdcmsgcoll TYPE bdcmsgcoll,
       lt_bdcmsgcoll TYPE STANDARD TABLE OF bdcmsgcoll.
Regards

The methods of the class
cl_gui_frontend_services
cannot be used in background since they refer to the presentation server. You have to upload the files to the application server to run the program in the background. You can use transaction CG3Z or the function module
ARCHIVFILE_CLIENT_TO_SERVER
to upload the files.
Manoj

Similar Messages

  • Considering Switching to Mac - Data on File Server - HELP!

    Hi-
    I'm a Windows-on-the-desktop user with a whole bunch of iOS devices and I am thinking of switching to Mac as of Lion / Lion Server.  I tried the Mac a few years ago and got frustrated pretty quickly because of the inability of multiple users to share data on a server. Can anyone please tell me if now is the time to try again!?
    My needs:
    iPhoto - Have a Photos share on a server (windows/mac/linux) which contains all of our family photos (raid6) as the source of 3 desktop Mac iPhoto Libraries.  Automatic updating? Faces recgonition turned off? (server grinding at 400GB of photos), syncing libraries among desktop clients?   Can Aperture do this? (last time I tried Aperture, it wanted to rebuild the library every week.... and that took days of grinding my server)
    iTunes - Have a Music share on the server as the source of 3 different iTunes libraries.  Automatic updating?  I'm in Canada so iTunes Match will never come here.
    iMovie - native editing of AVCHD yet ? (no desire to convert my whole library to massive uncompressed video files)
    Video - Play AVIs / WMVs / MKVs full screen via a Mac Mini from a Video share on the server to a HD Television.  Can Quicktime do this?  FrontRow?  Last time I tried I recall a lot of stutter.
    Many thanks-
    A Mac-Wanna-Be

    So I've got a solution to iPhoto:    Use Picasa.   Not ideal, as I would really like to live the iLife, but it'll do for now.  I've found a bunch of iPhoto library syncing utilities, but none of them deal with shared raw data on a network drive - they all expect you to carry all of your photos on your desktop / notebook Macs.

  • Can anyone help me?Creating the shadow copies in the file server cluster ,there are some errors occured, OS version is WSS 2012

    I construct a failover cluster(file server,AP module) for sharing files by WSS 2012,and I want to use the shadow copies to backup my data,but when making  a shadow copies on the volume which  is added to the cluster(not the CSV,just add
    it to the cluster and use it to share files,it plays the role of file server),there are some errors occured, these errors result in the shadow copies failed,error likes the following pictures:
    1: the disk F is added to the cluster,first I make the shadow copies by click the right key of mouse on the disk F,and chouse the configeration shadow copies,and click the settings, then click the schedule , and I wait just a few seconds, the error is appeared,like
    this picture 1, the wait operation timed out,and then ,
    I click the schedule button once again,a different error occured,like the following picture," the object already exists",if i don't set the schedule at first ,use the default shedule,and click the enable button also the same  error must 
    accure
    but the only diffrence is that, a shadow copy time point is created, also ,you can make the shadow copies by click " create now", that is creating the shadow copies manually. Although it can succesfully make the shadow copies, but when I select
    a time point to revert, error  occured, "A volume that contains operating system files or resides on a cluster shared disk cannot be reverted" 
    In a word,all the errors above make the shadow copies by schedulling failed,except making the shadow copies manually,but what makes me confused is that I have ever maked the shadow copies succesfully by schedul a policy,I don't know what makes it succesful,
    it's small probability, most of time ,it's failed.No matter what kind of situation, revert must be failed.
    I'm sorry for my pool english , it's the first time for me getting help in forum by english ,I don't know if I descripe my question clearly, also ,other method like the link
    http://technet.microsoft.com/en-us/library/cc784118(v=ws.10).aspx I have tried,but the same errors occured.Can anyone tell me How can I make the shadow copies in File Server
    cluster(AP module)?And I make a mistake in operating? Looking forward for your reply.Thanks!

    Hi,
    Please check the following 2 places:
    HKEY_LOCAL_MACHINE\Cluster\Tasks
    C:\Windows\System32\Tasks
    First please compare permission settings of the folder C:\Windows\System32\Tasks with a working computer. Correct permission settings if anything wrong. Specifically, confirm you current account do have permission on this folder.
    As it said "object already exists", find the schedules you created before, backup and delete all these schedules in both registry key and folder.
    Then test to create a new schedule to see if issue still exists.
    Meanwhile what kind of storage device you are using? The issue could occur on specific storage device, so test to enable shadow copy on a local disk to see if that will work.
    TechNet Subscriber Support in forum |If you have any feedback on our support, please contact [email protected]
    Thank you for you reply.On the local volume,all of these errors will not occur, but the volume in the file server cluser.There is no value in HKEY_LOCAL_MACHINE\Cluster\Tasks. On local volume, everything goes well about the shadow copy, so I do not
    think something is wrong about the permission settings of the folder C:\Windows\System32\Tasks.Storage device  is a SAN,we use RAID6 and provide the LUNs to the NAS engine, and the make the volume on these LUNs, Is Angthing wrong? Hope for you
    reply~~

  • Allow help desk to manage open files on file server

    I am looking to delegate the ability to manage open files to our help desk users.  They are getting an increasing number of calls from users asking about files and who has them open, or to force close them..etc.
    The help desk users are not admins on our file server, therefore do not have access to RDP to the file server.  I was hoping they could do it from computer management RSAT tools on their local machine.  I just don't know how to allow them to do
    it.
    Thanks
    sb

    Hello,
    Since they are not able to RDP the FS then they should need to access files using shared folders.
    For that, you will need to share the root folder where your files are. Please give Full Control permission on it. Here, to manage their permissions, you can grant them what you want using NTFS permissions.
    Note that NTFS and Share permissions are combined and the user will be have the minimum of privileges when he access the folder as a share. For that, I recommended using FC permission on the shared folder to avoid additional management tasks.
    This
    posting is provided "AS IS" with no warranties or guarantees , and confers no rights.   
    Microsoft
    Student Partner 2010 / 2011
    Microsoft
    Certified Professional
    Microsoft
    Certified Systems Administrator: Security
    Microsoft
    Certified Systems Engineer: Security
    Microsoft
    Certified Technology Specialist: Windows Server 2008 Active Directory, Configuration
    Microsoft
    Certified Technology Specialist: Windows Server 2008 Network Infrastructure, Configuration
    Microsoft
    Certified Technology Specialist: Windows Server 2008 Applications Infrastructure, Configuration
    Microsoft
    Certified Technology Specialist: Windows 7, Configuring
    Microsoft
    Certified Technology Specialist: Designing and Providing Volume Licensing Solutions to Large Organizations
    Microsoft
    Certified IT Professional: Enterprise Administrator
    Microsoft Certified IT Professional: Server Administrator
    Microsoft Certified Trainer

  • Integrating External File Server In SAP EP - Help Needed.

    Hello All,
    We have a EP 7.0 Running on HP-UX, can some one please tell me how I can integrate an External File Server or a Web DAV Folder into the SAP EP.
    Any suggestion would be a great help.
    Best Wishes,
    John.
    Message was edited by:
            John Bray

    Hi John,
    This would be helpful for you for Webdav or external filesystems  
    <a href="http://help.sap.com/saphelp_ep60sp2/helpdata/en/ed/b334ea02a2704388d1d2fc3e4298ad/frameset.htm">Integrating Documents from a Windows System into KM</a>
    Pls reward points if  helpful
    Regards
    Vineeth

  • No more connections available to this remote computer...Urgent Help for File server...

    Hi Guys,
    I need urgent help regards to our school File server which is having "No more connection to this remote computer error"
    on SMB Shares where I usually authenticate with a domain username it used to work fine since till 3 weeks ago.
    Now I can browse the SMB shares with only IP... Netbios gets straight away this error message from non-domain joined pc's where the computer needs to connect to the SCCM distribution point on this file server.
    Strangely, Domain joined pc's does not have this problem at all they can use Netbios or IP no problem at all. But someone from a standalone laptop or desktop who needs to access shares through netbios gets this message.
    Can someone help me please?
    I did check DNS yet there is no problem on DNS I checked PTR record for the server to make sure it is not turned in to multihome accidently but nothing at all.
    I also did a NETMON where I captured the data from server and the client I get these errors:
    205 4:54:35 PM 16/12/2013
    7.3299179 10.2.1.96
    10.2.0.13 TCP
    TCP:Flags=......S., SrcPort=49312, DstPort=Microsoft-DS(445), PayloadLen=0, Seq=1771710719, Ack=0, Win=8192 ( Negotiating scale factor 0x2 ) = 8192
    {TCP:22, IPv4:21}
    206 4:54:35 PM 16/12/2013
    7.3299668 10.2.0.13
    10.2.1.96 TCP
    TCP:Flags=...A..S., SrcPort=Microsoft-DS(445), DstPort=49312, PayloadLen=0, Seq=2167618331, Ack=1771710720, Win=8192 ( Negotiated scale factor 0x8 ) = 2097152
    {TCP:22, IPv4:21}
    207 4:54:35 PM 16/12/2013
    7.3301468 10.2.1.96
    10.2.0.13 TCP
    TCP:Flags=...A...., SrcPort=49312, DstPort=Microsoft-DS(445), PayloadLen=0, Seq=1771710720, Ack=2167618332, Win=16425 (scale factor 0x2) = 65700
    {TCP:22, IPv4:21}
    208 4:54:35 PM 16/12/2013
    7.3301468 10.2.1.96
    10.2.0.13 SMB
    SMB:C; Negotiate, Dialect = PC NETWORK PROGRAM 1.0, LANMAN1.0, Windows for Workgroups 3.1a, LM1.2X002, LANMAN2.1, NT LM 0.12, SMB 2.002, SMB 2.???
    {SMBOverTCP:23, TCP:22, IPv4:21}
    209 4:54:35 PM 16/12/2013
    7.3307974 10.2.0.13
    10.2.1.96 SMB2
    SMB2:R   NEGOTIATE (0x0), GUID={8447F237-5219-D48A-40C0-29092450C68E}
    {SMBOverTCP:23, TCP:22, IPv4:21}
    210 4:54:35 PM 16/12/2013
    7.3314064 10.2.1.96
    10.2.0.13 SMB2
    SMB2:C   SESSION SETUP (0x1) {SMBOverTCP:23, TCP:22, IPv4:21}
    211 4:54:35 PM 16/12/2013
    7.3318815 10.2.0.13
    10.2.1.96 SMB2
    SMB2:R  - NT Status: System - Error, Code = (22) STATUS_MORE_PROCESSING_REQUIRED  SESSION SETUP (0x1), SessionFlags=0x0
    {SMBOverTCP:23, TCP:22, IPv4:21}
    212 4:54:35 PM 16/12/2013
    7.3324012 10.2.1.96
    10.2.0.13 SMB2
    SMB2:C   SESSION SETUP (0x1) {SMBOverTCP:23, TCP:22, IPv4:21}
    215 4:54:35 PM 16/12/2013
    7.3339977 10.2.0.13
    10.2.1.96 SMB2
    SMB2:R  - NT Status: System - Error, Code = (109) STATUS_LOGON_FAILURE  SESSION SETUP (0x1)  
    {SMBOverTCP:23, TCP:22, IPv4:21}
    216 4:54:35 PM 16/12/2013
    7.3341805 10.2.1.96
    10.2.0.13 TCP
    TCP:Flags=...A.R.., SrcPort=49312, DstPort=Microsoft-DS(445), PayloadLen=0, Seq=1771711788, Ack=2167619070, Win=0 (scale factor 0x2) = 0
    {TCP:22, IPv4:21}
    217 4:54:35 PM 16/12/2013
    7.3357089 10.2.1.96
    10.2.0.13 TCP
    TCP:Flags=......S., SrcPort=49313, DstPort=Microsoft-DS(445), PayloadLen=0, Seq=2943201172, Ack=0, Win=8192 ( Negotiating scale factor 0x2 ) = 8192
    {TCP:27, IPv4:21}
    218 4:54:35 PM 16/12/2013
    7.3357422 10.2.0.13
    10.2.1.96 TCP
    TCP:Flags=...A..S., SrcPort=Microsoft-DS(445), DstPort=49313, PayloadLen=0, Seq=3718656547, Ack=2943201173, Win=8192 ( Negotiated scale factor 0x8 ) = 2097152
    {TCP:27, IPv4:21}
    219 4:54:35 PM 16/12/2013
    7.3359768 10.2.1.96
    10.2.0.13 TCP
    TCP:Flags=...A...., SrcPort=49313, DstPort=Microsoft-DS(445), PayloadLen=0, Seq=2943201173, Ack=3718656548, Win=16425 (scale factor 0x2) = 65700
    {TCP:27, IPv4:21}
    220 4:54:35 PM 16/12/2013
    7.3359768 10.2.1.96
    10.2.0.13 SMB2
    SMB2:C   NEGOTIATE (0x0), GUID={8213462D-2600-D1B1-11E3-65FC4BCDE707}
    {SMBOverTCP:28, TCP:27, IPv4:21}
    221 4:54:35 PM 16/12/2013
    7.3364173 10.2.0.13
    10.2.1.96 SMB2
    SMB2:R   NEGOTIATE (0x0), GUID={8447F237-5219-D48A-40C0-29092450C68E}
    {SMBOverTCP:28, TCP:27, IPv4:21}
    222 4:54:35 PM 16/12/2013
    7.3369702 10.2.1.96
    10.2.0.13 SMB2
    SMB2:C   SESSION SETUP (0x1) {SMBOverTCP:28, TCP:27, IPv4:21}
    223 4:54:35 PM 16/12/2013
    7.3373474 10.2.0.13
    10.2.1.96 SMB2
    SMB2:R  - NT Status: System - Error, Code = (22) STATUS_MORE_PROCESSING_REQUIRED  SESSION SETUP (0x1), SessionFlags=0x0
    {SMBOverTCP:28, TCP:27, IPv4:21}
    224 4:54:35 PM 16/12/2013
    7.3377060 10.2.1.96
    10.2.0.13 SMB2
    SMB2:C   SESSION SETUP (0x1) {SMBOverTCP:28, TCP:27, IPv4:21}
    227 4:54:35 PM 16/12/2013
    7.3390552 10.2.0.13
    10.2.1.96 SMB2
    SMB2:R  - NT Status: System - Error, Code = (109) STATUS_LOGON_FAILURE  SESSION SETUP (0x1)  
    {SMBOverTCP:28, TCP:27, IPv4:21}
    Regards,
    Gokhan

    Solution has been found, 
    After doing bit of a backtrack, site DC's were out of sync with PDC with time.
    Also Time service was shutdown on PDC which has been enabled and pointed to the Australian pool ntp IP address.
    Everything is back on track now.
    Regards,
    Gokhan Cil

  • Setting up a TC as a file server. PLEASE HELP

    I am desparately trying to set up my TC as a file server through a 2wire, ATT Uverse Gateway. Can anyone walk me through it? I need it to remotely access my medical records while at numerous Dr's that I see for my Cancer treatments. Any help would be gratefully accepted.

    You will not find this an easy setup to achieve.. the TC is not accessible remotely with BTMM unless it is the main router in the network.. and this is not possible when the Uverse is installed as the main router.
    The other method is to open AFP to outside access.. read the Tesserax methods here.
    AirPort Disk - Remote Access (3 Methods)
    The last method can be adjusted for using any brand router.. you do not need to port translate.. simply open port 548 to TC bridged behind the Uverse. It must be static IP so set that on the Uverse. And you will likely need to use ddns which is also built into the uverse.
    Good luck with the treatment.. I had a bone marrow transplant for Lymphoma 20years ago.. still alive.

  • Hi recently my MacBook pro has stopped connecting to our office Synology server automatically.  I now have to Go Connect to Server etc in order to browse the file server. Clearing key chain and then readding everything hasnt made any difference. HELP

    Hi recently my MacBook pro has stopped connecting to our office Synology server automatically.  I now have to Go > Connect to Server > etc in order to browse the file server. Clearing key chain and then readding everything hasnt made any difference. HELP

    Not sure what other tests they could run for me. I've pretty much run all the tests I can using Drive Genius and Tech Tool Pro 5. Is there anything they use that I don't know about??

  • Need some help with a file server!

    Hi,
    I'm wanting to get a mac mini or the mac mini server (whichever is needed) and connect all of my random external drives i have lying about to it. Basically, i'm wanting to set up a mini file server that i can access from anywhere in the world. I have enough space with the external drives to store my music library, other general storage and maintain a backup of my OS drive and portable external that i carry around with me, but i don't know how i'd set it up so that i could access my hard drives and use them normally from anywhere.
    Also, with Mail Server, i'd like it if i could store all of my emails on the server computer and be able to access them on my Macbook. I don't know what i need though. For my needs, do i even need the server program or can i just use Lion (or even Snow Leopard if i choose) by itself? And if i did need the server, would i need it on just the server computer or both the server and my Macbook?
    Sorry if i haven't explained this very well, if you didn't fully understand just ask me and i'll try to rephrase it.
    Thanks in advance
    mr meister

    Be careful what you wish for.
    Either Mac OS X, or Mac OS X Server can act as a simple file server for your LAN.
    Granting access to external/remote users is largely a facet of setting access controls in your router to allow external clients to access your machine, but you have to consider the security implications of doing so - how do you make sure that you, and only you, access your data and not your local script kiddie down the street - or evem some hacker in China?
    HOWEVER, as simple as that may be, performance is going to be your issue.
    Local disks in your machine are typically connected on a bus that runs as several gigabits per second.
    Even the server on your LAN is connected to your client over, typically, a gigabit connection.
    However, your internet connection is likely to be measured in megabits per second... or two orders of magnitude lower than a local connection. You're really not going to want to use this for normal usage - e.g. accessing files - it's probably only practical for copying files to/from your machine.
    As for mail, there are a myriad of issues in running your own mail server, especially if you don't have your own domain and static IP addresses. I'd seriously defer that question until you're more settled in your server plans.

  • Help me Decide on OpenBSD or Solaris as my web and file server please

    Hi
    5 questions
    i have been using OpenBSD as my Web and file server for a while now
    and FreeBSD as my Desktop
    i decided on OpenBSD as my Server because of its Security
    1) But now i hear Solaris is the most Secure OS pn the Planet? is this true
    And which is real Unix?
    i seem to always have trouble with things such as PHP on OpenBSD
    Most of my pages run as *.html but i also have a forum which uses PHP 4
    But all my PHP pages come up blank..
    i am always encountering errors using PHP
    2) If i Switch to Solaris will it b even harder to use or
    is it precompiled with PHP 4 and higher when i install Apache
    3) Also what about cgi and the ability to use *.htaccess files should i use them
    4) Also i i still would like to generate SSH keys ssh-keygen
    is that possible?Forcing the user to login using only a key and
    not a password on SSH
    5) Does Solaris have any Linux compatibility as well?as FreeBSD has
    Concider me a newbie even though i use to post on this forum once before
    i am always experimenting trying new things out
    Message was edited by:
    heatherval

    Either will work just fine. Since you're asking in the Sun forums, you should receive more Solaris replies of course! :-)
    The weak point in your setup (as far as security goes) would be the use of PHP either way...

  • Help setting up a File Server

    Hello,
    I have a few questions about setting up a file server with Mac OS X 10.5 Server.
    I have set up a sub domain name for the server to use... I just don't know how to get the dynamic IP address to contact the domain name so can ftp to the server... Mac Server is very new to me and I have know Idea on how to set it up...
    FYI we plan to run the file server on a G5 Mac Pro, With a dynamic IP.
    -Ron

    You will not find this an easy setup to achieve.. the TC is not accessible remotely with BTMM unless it is the main router in the network.. and this is not possible when the Uverse is installed as the main router.
    The other method is to open AFP to outside access.. read the Tesserax methods here.
    AirPort Disk - Remote Access (3 Methods)
    The last method can be adjusted for using any brand router.. you do not need to port translate.. simply open port 548 to TC bridged behind the Uverse. It must be static IP so set that on the Uverse. And you will likely need to use ddns which is also built into the uverse.
    Good luck with the treatment.. I had a bone marrow transplant for Lymphoma 20years ago.. still alive.

  • File Server Migration - For ORG A Forest to ORG B Forest ( Need to create and Map Security Group automatically on new Migrated Folders - Please Help

    I have two forest With Trust works Fine .
    I have file server in ORG – A ( Forest ) with 2003 R2 Standard
    I have a File server in ORG  - B ( Forest ) With Windows server 2012 ( New Server for Migration )
    I have 1000 + folders with each different permission sets on ORG-A. We are using Security groups for providing permission on the share Folders on ORG A
    I need to Migrate  all the folders from ORG – A to ORG – B.
    I am looking for an automated method of creating Security Groups on AD during the Migration, Once the Migration is Done, I can add the required users to the security groups manually.
    Example.
    Folder 1 on ORG – A has Security Group Called SEC-FOLDER1-ORGA
    I need an automated method of Copying the files to ORG – B and Creating a new security Groups on ORG –B Forest with the same permission on parent and child Folders. I shall Add the users manually to the Group.
    Output Looks Like
    Folder 1 on ORG – B has Permission called SEC-FOLDER1-ORGB ( New Security Group )
    Also I need a summarized report of security Group Mapping, Example – Which security Group on ORGA is mapped with Security Group Of ORGB

    Hi,
    I think you can try ADMT to migrate your user group to target domain/forest first. Once user groups are migrated, you can use Robocopy to copy files with permission - that permission will continue be recognized in new domain as you migrated already. 
    Migrate Universal Groups
    http://technet.microsoft.com/en-us/library/cc974367(v=ws.10).aspx
    If you have any feedback on our support, please send to [email protected]

  • File server blank icons need help!

    Hi,
    Whe have a File server, but when we search for our file on our desktop or server the icons only show blank and we cant open them. If we don't search and go to the path we can open them without a problem. Does someone know how to fix the blank icon?

    Playlists are not stored in the iPhone backup file (there's only one backup file kept, in any case, unless you manually copy and archive the file).
    Playlists, like other iTunes content (music/videos/apps) are synced to the iPhone from iTunes. If the playlist is not on your iPhone, and not in iTunes, it is most likely gone.

  • Configure EP6SP9 KM in a file server instead of KM Database

    Hi All,
    We are at EP6SP9 in Windows 2003.
    As a part of my user requirment, I need to set up all my KM folders in a file repository and not in KM Database. The users would view this folders as KM Folders and need to utilise all the facilities offered by KM like Versioning, subscription and notification.
    I need to also integrate the central ADS Server as the user management engine (Windows Authentication) so that all the users automatically logon to the portal when they log-on to the system.TREX also has to index through this documents in the file server.
    Need some advice on the same.
    1) I have seen a document entitled "Integration of Windows File Services into SAP KM Platform using SSO and WebDAV Repository Manager". Is this the one that I have to use for setting the system up or any other suggestions. Has anyone tried connecting KM to an file server Database.
    2) Can I utilise all the KM Functionalities with the documents and folders residing in a file server.
    Would love to interact with anyone who has worked on the same.
    Regards,
    Rajan.K

    There's already lots of information on the subject right here on SDN. Here are a few pointers to get you started:
    CM repository documentation in SAP Help:
    http://help.sap.com/saphelp_nw04/helpdata/en/62/468698a8e611d5993600508b6b8b11/content.htm
    Weblog with step-by-step instructions on creating an FSDB repository:
    Creating a CM Repository Manager - FSDB
    I basically just followed the weblog and it worked. In fact, some steps in the weblog are not necessary if you intend to use the default "documents" repository. In that case, just switch to FSDB persistence mode, add your network paths and it should work after restarting the engine.
    Note that the contents of your repository will be deleted once you switch unless you backup your files to the FSDB root prior to that.
    Hope this helps.

  • How to mirror file server?

    I run a small office network with Mac OS X Server 10.4.x doing various services including AFP. My wife and I also work from home and we would like to be able to access remotely various files which are held on the server.
    We can do this over the internet, but the connections are not too quick. Ideally I would like to be able to run a mirrored copy of the file server on a little server at home, so that we can access the files locally and then have the servers keep each other up to date across the internet.
    Is this possible?
    TIA
    James

    Can anybody help me with this?
    TIA

Maybe you are looking for