F4 Help for Presentation Server Folder Name .

Hi Experts,
I want show the F4 help on the presentation server.
If the file is selected REquirement is that , on clicking the F4, the dialog box should open.
If we choose the file , then file should be selected , but if we select the folder then folder should be selected.
Normal function modules or methods present in SAP opens the folder containt  in the folder.
Kindly provide anyFM name or class method name o achieve the functiknality .
Thanks in advance.

HI,
Please paste this code,You will get F4 help.
   DATA:  lt_filetable  TYPE filetable,
           lwa_filetable TYPE file_table,
           l_rc          TYPE i.
  REFRESH lt_filetable[].
  CLEAR:lwa_filetable.
* Open file
  CALL METHOD cl_gui_frontend_services=>file_open_dialog
    CHANGING
      file_table              = lt_filetable
      rc                      = l_rc
    EXCEPTIONS
      file_open_dialog_failed = 1
      cntl_error              = 2
      error_no_gui            = 3
      not_supported_by_gui    = 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.
    READ TABLE lt_filetable INTO lwa_filetable INDEX 1.
    IF sy-subrc = 0.
      p_sap1 = lwa_filetable-filename.
    ENDIF.
  ENDIF.

Similar Messages

  • F4 Help for presentation server filepath/name

    Hi,
      Can anyone tell me how can I get a F4 help for selecting a file or directory from the PC...i.e I should get a pop-up “Open File” dialog to select the File on PC.
    Thanks!
    Sunitha.

    Hi Sunitha.,
    You can write the following code in the At selection screeb value request event.
    Using ABAP Objects:
    PARAMETER : p_file LIKE rlgrap-filename.
    AT SELECTION-SCREEN ON VALUE-REQUEST FOR path.
      DATA: directory TYPE string,                            
            filetable TYPE filetable,                         
            line      TYPE LINE OF filetable,                 
            rc        TYPE i.                                 
      CALL METHOD cl_gui_frontend_services=>get_temp_directory
        CHANGING                                              
          temp_dir = directory.                               
      CALL METHOD cl_gui_frontend_services=>file_open_dialog  
        EXPORTING                                             
          window_title      = 'SELECT THE FILE'         
          initial_directory = directory                       
          file_filter       = '*.XLS'                         
          multiselection    = ' '                             
        CHANGING                                              
          file_table        = filetable                                                         
           rc                = rc.                         
       IF rc = 1.                                          
         READ TABLE filetable INDEX 1 INTO line.           
         P_FILE = line-filename.                         
       ENDIF.                                              
    Using Normal ABAP:
    DATA:   P_FILE LIKE RLGRAP-FILENAME,
            DPATH LIKE RLGRAP-FILENAME,
            UPATH LIKE RLGRAP-FILENAME,
            MODE TYPE C,
            FLG_UD TYPE C.
      CALL FUNCTION 'WS_ULDL_PATH'
           IMPORTING
                DOWNLOAD_PATH = DPATH
                UPLOAD_PATH   = UPATH.
      IF FLG_UD <> 'D'.
        DPATH = UPATH.
        MODE = 'O'.
      ELSE.
        MODE = 'S'.
      ENDIF.
      CALL FUNCTION 'WS_FILENAME_GET'
           EXPORTING
                DEF_FILENAME     = '*.XLS'
                DEF_PATH         = DPATH
                MASK             = ',*.XLS,*.*,*.*.'
                MODE             = MODE
           IMPORTING
                FILENAME         = P_FILE
           EXCEPTIONS
                SELECTION_CANCEL = 3.
      IF SY-SUBRC <> 0.
        EXIT.
      ENDIF.
    Just copy paste the code this should work fine.
    Cheers
    VJ

  • FM for F4 help for presentation server path

    hi Experts,
    FM  for F4 help for presentation server path .
    and also for download to the presentation server.
    Regards,
    Amit

    Amit,
    PARAMETER: pfile LIKE rlgrap-filename OBLIGATORY.
    CALL FUNCTION 'F4_FILENAME'
       EXPORTING
         program_name        = syst-cprog
         dynpro_number       = syst-dynnr
    *   FIELD_NAME          = ' '
       IMPORTING
         file_name           = pfile.
    and use gui_download for download to presentation server:
    CALL FUNCTION 'GUI_DOWNLOAD'
            EXPORTING
              filename              = _filename
              filetype              = 'ASC'
              append                = l_append
              trunc_trailing_blanks = space
              write_lf              = l_write_lf
    ** here we know that we are working with GUI (not batch process) so we can ask user,
    ** if he is really sure to overwrite file in case of overwriting
    *          confirm_overwrite     = l_confirm_overwrite
              confirm_overwrite     = space
            TABLES
              data_tab              = lt_header
            EXCEPTIONS
              error_message         = 98
              OTHERS                = 99.
    Amit.

  • FM for presentation server

    Hi Experts,
    I need a FM which return all the file names in a specified directory of presentation server. I also need FM which will provide F4 help on presentation server to search  directories.
    Regards,
    Jeetu

    Function module name      Function module description
    DOWNLOAD      Store Internal Table with Dialog as File on the Presentation Server
    WS_DOWNLOAD      Save Internal Table as File on the Presentation Server
    UPLOAD      Load Data from the Presentation Server into an Internal Table / Dialog
    WS_UPLOAD      Load File from the Presentation Server into Internal Table
    WS_FILENAME_GET      Call file Selector
    WS_EXECUTE      Execute an External Program on the Presentation Server
    WS_MSG      Issue the Presentation Server style message
    WS_EXCEL      
    WS_QUERY      Execute query function on the Presentation Server
    Reward points if useful..............
    Regards
    Minal

  • F4 help for application server path

    hi gurus ,
    i have  used f4 help for application server using this fm
    DATA: c_fnh_mask TYPE dxfields-filemask VALUE '.',
          search_dir TYPE dxfields-longpath VALUE '/sapglobal/users',
          file_path LIKE dxfields-longpath.
    CALL FUNCTION 'F4_DXFILENAME_TOPRECURSION'
    EXPORTING
    i_location_flag = 'A'
    i_server = ' '
    i_path = search_dir
    filemask = c_fnh_mask
    fileoperation = 'R'
    IMPORTING
    o_path = file_path
    EXCEPTIONS
    rfc_error = 1
    OTHERS = 2.
    IF sy-subrc EQ 0.
    p_file = file_path.
    ENDIF.
    but i am getting a short dump for that can anybody please help
    Edited by: Ambarish annapureddy on Jun 19, 2008 1:31 PM

    this for presentation server
    CALL METHOD cl_gui_frontend_services=>file_open_dialog
          EXPORTING
            window_title            = w_title
          CHANGING
            file_table              = i_filetable
            rc                      = w_return
          EXCEPTIONS
            file_open_dialog_failed = 1
            cntl_error              = 2
            error_no_gui            = 3
            OTHERS                  = 5.
    this is for application server.
    CALL FUNCTION '/SAPDMC/LSM_F4_SERVER_FILE'
             IMPORTING
                  serverfile       = p0100_path
             EXCEPTIONS
                  canceled_by_user = 1
                  OTHERS           = 2.
    Edited by: S.r.v.r.Kumar on Jun 19, 2008 5:05 PM
    Edited by: S.r.v.r.Kumar on Jun 19, 2008 5:08 PM

  • Mountain Lion Server - Folder names intermittently change between Upper and Lowercase names on some user's iMacs

    Hi,
    Sorry if I'm posting in the wrong group, but I couldn't find a Mountain Lion server specific group.
    I have a new Mac Mini Server running 10.5.8 that serves Mac only users. The Mac Mini has a 4tb Promise Pegasus RAID attached via thunderbolt. Today, some of the users on the network reported that a folder on the RAID was quickly alternating displaying it's sub-folders as all capital letters then upper and lowercase - I witnessed this and it happened 2-3 times a second. I have run a propogate permissions fix on the folder, then the whole volume from within Server App and also copied the contents of this folder to my Mac, then I deleted the original from the server and created a brand new folder with the correct name and copied the contents back.
    The problem still persists. Server App does not report any issues and other folders don't exhibit this behaviour. I've looked to see if there are any weird characters in folder names that would do this. The volume is shared via AFP only (SMB and WEBdav are off).
    Any ideas as to what could be going on?
    Thanks in advance!

    Hi.
    I solved this problem. I fixed permissions on the Mac's that the users were using to access the server and this has fixed the problem. The server folder giving the problems had many nested folders totalling over 5000 items inside and this seemed to corrupt the permissions on the user's macs.
    Hope this helps anyone with similar issues.

  • 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

  • Problem. Help please. Server Host Name "already used"

    Hello.
    This isn't very critical. But I'm getting a little tired.
    For some reason, from time to time, it appears the following message:
    "The server host name '[my nameXX]' is already being used. It has been substituted by [my_nameXX+1]".
    So it keeps incrementing by 1 that index next to the name of the computer...
    It seems like the name of the computer stays somehow in the net, in the router or in itself, and when I restart my MacBook, it finds that the name is already used.
    Any idea??
    Thanks in advance

    Hola ElPiter, y una cálida bienvenida a los foros!
    The last time I saw this I think it was the Router or Server doing it.
    Does everything have the latest Firmware updates? Routers in particulasr can't be trusted for any Auto update/notification of Firmware.

  • Help for: ORA-01103: database name PRIMARY in control file is not STANDBY

    Hello all, this will be my first post to the support forum. I'm an associate dba with just 6 months on the job, so if I've forgotten something or not given some infromation that is needed please let me know.
    I've also combed the forums/internet, and some of the answers haven't helped. The Oracle Document ORA-1103 While Mounting the Database Using PFILE [ID 237073.1] says my init.ora file is corrupted, but creating a new init.ora file from the spfile does not help. Neither does just starting from the spfile. I have older copies of the init.ora file and the spfiles that the database was running on previously, so I believe they are good.
    This standby NIRNASD1 has existed previously, I had to refresh the primary NIKNASD2, and then re-instantiate NIRNASD1 after the refresh is complete.
    My env is set correctly, and my ORACLE_SID has been exported to NIRNASD1
    NIKNASD2 = Primary Database
    NIRNASD1 = Secondary/Standby Database
    Goal: Creation of Logical Standby NIRNASD1 after creating Physical Standby from NIKNASD2
    My database versions are 10.2.0.4.0, and the databases are on a Unix server. Both databases are located on separate servers.
    Steps that I have taken:
    I used RMAN to backup our primary database to the staging area:
    $ rman target /
    run {
    backup database
    format '/datatransa/dg_stage/%U'
    include current controlfile for standby;
    sql "alter system archive log current";
    backup archivelog all format '/datatransa/dg_stage/%U';
    I used RMAN to Create Secondary Database utilizing RMAN DUPLICATE command.
    RMAN> run {
    2> allocate auxiliary channel auxdisk device type disk;     
    3> duplicate target database for standby NOFILENAMECHECK;
    4> }
    On Secondary database I started Managed Recovery mode
    SQL> shutdown immediate;
    ORA-01109: database not open
    Database dismounted.
    ORACLE instance shut down.
    (I used pfile here, thinking that I needed to mount the database to the pfile so that the database would see the change in the dataguard parameters in the init.ora file, the change from logical to physical- I commeneted out the logical and uncommented the physical line)
    # Dataguard Parameters
    For logical standby, change db_name to name of standby database.
    db_name=NIKNASD2 ### for physical, db_name is same as primary
    #db_name=NIRNASD1 ### for logical, db_name is same as unique_name
    SQL> STARTUP MOUNT PFILE = /oraa/app/oracle/product/1020/admin/NIRNASD1/pfile/initNIRNASD1.ora;
    ORACLE instance started.
    Total System Global Area 1577058304 bytes
    Fixed Size 2084368 bytes
    Variable Size 385876464 bytes
    Database Buffers 1174405120 bytes
    Redo Buffers 14692352 bytes
    Database mounted.
    SQL> ALTER DATABASE recover managed standby database using current logfile disconnect;
    I then verified the Data Guard Configuration by using “alter system archive log current;” on the primary database and watching the sequence number change in the secondary database.
    I made sure that:
    •     The primary database was in MAXIMUM PERFORMANCE MODE
    •     Stopped managed recover on the standby database: alter database recover managed standby database cancel;
    •     Built a logical standby data dictionary on the primary database
    •     The db_name in init.ora was changed (this is in our document at my job)
    •     I changed my database name (from physical to logical) in my init.ora pfile (reverse of what I did above)
    # Dataguard Parameters
    For logical standby, change db_name to name of standby database.
    #db_name=NIKNASD2 ### for physical, db_name is same as primary
    db_name=NIRNASD1 ### for logical, db_name is same as unique_name
    I then went to shutdown my standby database and re-start it in a mount exclusive state, which is where I get the ORA-01103 Error (Again I used the pfile, thinking that I needed to tell the database it is now a logical standby):
    SQL> shutdown immediate;
    ORA-01109: database not open
    Database dismounted.
    ORACLE instance shut down.
    SQL> STARTUP EXCLUSIVE MOUNT PFILE = /oraa/app/oracle/product/1020/admin/NIRNASD1/pfile/initNIRNASD1.ora;
    ORACLE instance started.
    Total System Global Area 1577058304 bytes
    Fixed Size 2084368 bytes
    Variable Size 385876464 bytes
    Database Buffers 1174405120 bytes
    Redo Buffers 14692352 bytes
    ORA-01103: database name 'NIKNASD2' in control file is not 'NIRNASD1'
    From what I understand of the process, the name in the control file is correct, I want it to be NIRNASD1. But the database for some reason thinks it should be NIKNASD2. The following are the parts of my init.ora file that include the dataguard parameters:
    # Database Identification
    db_domain=""
    #db_name=NIRNASD1
    #db_unique_name=NIRNASD1
    # File Configuration
    control_files=("/oradba2/oradata/NIRNASD1/control01.ctl", "/oradba3/oradata/NIRNASD1/control02.ctl", "/oradba4/oradata/NIRNASD1/control03.ctl")
    # Instance Identification
    instance_name=NIRNASD1
    # Dataguard Parameters
    #db_name=NIKNASD2 ### for physical, db_name is same as prmary
    db_name=NIRNASD1 ### for logical, db_name is same as unique_name
    db_unique_name=NIRNASD1
    dg_broker_start=TRUE
    db_file_name_convert='NIKNASD2','NIRNASD1'
    log_file_name_convert='NIKNASD2','NIRNASD1'
    log_archive_config='dg_config=(NIRNASD1,NIKNASD2)'
    log_archive_dest_1='LOCATION="/oraarcha/NIRNASD1/" valid_for=(ONLINE_LOGFILES,all_roles) db_unique_name=NIRNASD1'
    #log_archive_dest_2='LOCATION="/oraarcha/NIKNASD2/" valid_for=(standby_logfiles,standby_roles) db_unique_name=NIRNASD1'
    log_archive_dest_2='LOCATION="/oraarcha/NIKNASD2/" valid_for=(standby_logfile,standby_role) db_unique_name=NIRNASD1'
    STANDBY_ARCHIVE_DEST='LOCATION=/oraarcha/NIKNASD2/'
    # Parameters are not needed since this server will NOT become primary
    #log_archive_dest_2='service=NIKNASD2
    # valid_for=(online_logfiles,primary_role)
    # db_unique_name=NIKNASD2'
    fal_server='NIKNASD2'
    fal_client='NIRNASD1'
    I would appreciate any help, or pointing me in the right direction. I'm just missing something. I am reviewing the documents for building a physical and logical standby from oracle. Just not sure where to go from here.
    Thank you
    Edited by: 977917 on Dec 19, 2012 5:49 PM

    First of all, thank you both for answering my post. I've pulled up Mr. Hesse's page and will make it a go-to staple.
    We're in the process of upgrading our databases, but we have 130+ databases and only six Oracle dba's, and I'm one of them. It's a large corporation, and things move at a "slow and tested" pace.
    The pfile parameters listed above are from my secondary/standby database. And I do want to create a logical standby.
    I forgot to mention that we do use DataGuard Broker, but I did not think that would be the cause of why the database was starting up incorrectly, so I did not mention it. My apologies there.
    As far as the db_name, here's my question on that. It's my understanding the the db_name should be the name of the primary database when you are working with a physical standby, but as soon as you convert it to logical, you should change the db_name to the secondary/standby database? Am I correct on that?
    Leading from that, during the process of creating the physical standby and converting the physical standby to the logical standby, should I change the db_name in the secondary/standby database in the spfile and never use the pfile at all? For instance, when I create the physical standby I have to change the db_name in the standby to the PRIMARY database, so that makes me think I should change db_name in the spfile? (If you see above, I changed db_name in the pfile and did a startup pfile)
    This morning I was able to reach out to a fellow DBA (they are were asleep when I posted this last night), and they tried a few things. We had a redirect in the standby directory /oraa/app/oracle/product/1020/dbs folder that looked like this: spfileNIRNASD1.ora -> /oraa/app/oracle/product/1020/admin/NIRNASD1/pfile/spfileNIRNASD1.ora
    She removed the redirect and the startup mount exclusive then worked without the error.
    Thank you again for your help Mr.Quluzade and Mr. Hesse, I appreciate you all taking the time to teach someone new to the craft. I will definitely read up on the link that you sent me.
    Chris Cranford

  • F4 help for Application Server

    Hi all,
    i have a requirement like selection screen for F4 help where i need to pick the file from Application Server.
    When i click on the field on selection screen it should display like same as the AL11
    How can this posssible by calling any Function Module or Method ,Will anybody help me in displaying all the Directories with Paths.
    Regards,
    Madhavi

    Hi Madhavi,
    check this code and for the field p_file no need to pass any thing. before that i have given some wrong code.
    DATA: lv_hostname TYPE msxxlist-name.
    DATA: lv_server TYPE bank_dte_jc_servername.
    PARAMETERS: p_file TYPE rlgrap-filename.
    AT SELECTION-SCREEN ON VALUE-REQUEST FOR p_file.
      CALL FUNCTION 'BANK_API_SYS_GET_CURR_SERVER'
        IMPORTING
          e_server = lv_server.
      lv_hostname = lv_server.
      CALL FUNCTION 'F4_DXFILENAME_4_DYNP'
        EXPORTING
          dynpfield_filename = 'P_FILE'
          dyname             = sy-cprog
          dynumb             = '1000'
          filetype           = 'P'
          location           = 'A'
          server             = lv_hostname.
    just run this code separately in a SE38 prog. when ever u press F4 key on the field p_file, u can able to see like AL11 transaction.

  • HELP for JSP execute folder.

    I have prepared Linux server with Tomcat and Apache servers, connect it to using mod_jk.
    Apache and Tomcat are work fine following LINK.
    http://localhost/examples/jsp/
    But , when I access JSP from my folder which I made it same folder "examples" is not working.
    http://localhost/mytest/test.jsp
    (This is my folder which i want to call all my JSP file.)
    It display following error message:
    Apache Tomcat/4.0.4 - HTTP Status 404 - /mytest/test.jsp
    type Status report
    message /mytest/test.jsp
    description The requested resource (/mytest/test.jsp) is not available.
    What can i do, HELP ME ???

    You put folder mytest in CATALINA_HOME/webapps?
    try whit http://localhost:8080/mytest/test.jsp

  • Help for robohelp server

    Hi,
    I'm sure it's user error, but ... I'm evaluating Adobe
    Technical Communications Sutie (which I've never used before)
    because we'd like to publish help files out to a web site with an
    existing app running in a .Net environment. I've searched
    everywhere, but can't find the documentation that tells me:
    1. do or don't I need RoboHelp Server ( I think so, but I'd
    like to see why in writing)
    2. the actual process to publish out to the web
    Can anybody help direct me to where this documentation might
    be?
    Thanks,
    zjillian

    Hey, zjillian and welcome to the forums!
    In the case you outline, I don't believe you would need the
    RoboHelp Server *necessarily*. It's optional and depends on whether
    you would like to use the features provided by the server. You can
    read this article that explains more about the server.
    http://www.adobe.com/devnet/robohelp/articles/rhserver.html
    If you don't need these features, then publishing as plain
    "WebHelp" to support a .NET app would be fine. Either method can
    use the .NET API (also optional) which is included for free with
    RoboHelp along this path on your computer.
    C:\Program Files\Adobe\RoboHelp 7.0\CSH API\RoboHelp.NET
    The actual process to publish depends on your particular
    destination and method. For example, sending them via FTP to a web
    server directly, or placing them on a LAN Share drive where the web
    administrator can pick them up and place on the web server.
    Check out these two online help topics for more details. To
    access them, paste these two topics in the online help search box.
    WebHelp Publish dialog box
    New Destination dialog box
    Thanx
    john

  • Simulation Help for Presentation

    I have been working on a wireless vital sign monitor that takes heart signal, oxygen concentration and temperature signals using sensors and elecrodes. The signals are then filtered and amplified in the range of 0-5 V.
    The microcontroller is the next section that is responsible to package the signal, transmit them wireless, receive them wireless and send them serailly using RS232 cable to PC in the format (delimiter1)signal1(delimiter2)sigbal2(delimiter3)signal3.
    The labview then finally separates the data, analyses them and displays the results digitally and in waveforms.
    That was the initial plan. The microcontroller chip has blown up and I have less than a week to present this project.
    I know how to demonstrate my hardware parts separately.
    I am however having a hard time to figure out how to demonstrate my VI part.
    This is what it does.
    In a continous WHILE loop
    - Read 27 bits at a time from the serial port.
    - Separate the data (delimiter1)signal1(delimiter2)sigbal2(delimiter3)signal3 using Match Pattern into 3 separate signals
    - Convert each signal from binary (out of ADC) to voltage(0-5V mapping) to their respective entity(egs. temperature)
    - Display the results
    - LEDs to switch on if limits go out of range
    Any advice on how I can demonstrate my VI as working one. I have tested each part by itself and they work well.
    Attachments:
    FinalProgReadOnly.vi ‏140 KB

    Hey Randall
    Thanks for your reply once again. I tried to create a simulated constant using the method advised by you but I can only make a constant of 1 column.
    This is what I want to achieve. I have a .txt file with data in it. The data is in the form:
    data1 data2 data3
    0.0520833 95 85
    0.598958 95 85
    1.41591 95 86 and so on.
    I want to be able to read one line at a time from this data, separate the 3 datas using the vi I have attached and get 3 distinct digital separate readings and after the last row, start again at the beginning of file.
    I tried to achieve this by creating a simulated constant as I though that would be a good approach but that did not work for me. Can you advice.
    Thanks again for your help. I really appreciate it.
    NB: I happen to have a presentation about my project tomorrow evening and I was wondering if I can mention you in my AKNOWLEDGEMENT section of the presentation.
    Attachments:
    ReadFromFile.vi ‏26 KB

  • Help for mail server

    som body told me about post fix email server
    My main perpose is that when i send any email one email address through send mail or other mail service it should be go three other email addresses with out cc OR Bcc !!!!!!
    Regards .

    Here you go:-
    i dont know what i did, but between these extra commands i got the ports to forward : 
    object network obj-10.10.50.60-1
    host 10.10.50.60
    nat (inside,outside) static interface service tcp 80 80
    object network INSIDE
    nat (inside,outside) dynamic interface
    object network MULTI-SERVER
    nat (inside,outside) static interface service tcp 80 80
    access-list Outside_access_in extended permit tcp any object MULTI-SERVER eq 80
    access-group Outside_access_in in interface Outside
    object network obj-10.10.50.60-2
    host 10.10.50.60
    nat (inside,outside) static interface service tcp 110 110
    object network INSIDE
    nat (inside,outside) dynamic interface
    object network MULTI-SERVER
    nat (inside,outside) static interface service tcp 110 110
    access-list Outside_access_in extended permit tcp any object MULTI-SERVER eq 110
    access-group Outside_access_in in interface Outside
    object network obj-10.10.50.60-3
    host 10.10.50.60
    nat (inside,outside) static interface service tcp 995 995
    object network INSIDE
    nat (inside,outside) dynamic interface
    object network MULTI-SERVER
    nat (inside,outside) static interface service tcp 995 995
    access-list Outside_access_in extended permit tcp any object MULTI-SERVER eq 995
    access-group Outside_access_in in interface Outside
    im sure the commands/coding/scripting can be cleaned up, but this worked for me.
    thanks Vibhor Amrodia for your time and help!
    (note for others as reference)
    the ports in red i changed accordingly ... eg 80,110,25, etc
    the neon green 1 changed for every rule i added... eg: 1,2,3,4,5, etc
    for others that need help with similar situation  here is a great reference website that helped me alot with setting port forwarding , internet sharing , and NAT / PAT  on the ASA 5512-x , im sure it works with the updated asa 5505 as well running 8.3+
    https://rowell.dionicio.net/configuring-nat-for-a-public-server-using-same-outside-interface/

  • Need Help for client - server - client question [Sockets]

    Hi
    I have read the http://java.sun.com/docs/books/tutorial/networking/sockets/index.html tutorial and made this Knock Knock Application.
    But now, I want that one client can view all the other clients which are connected to the server, and interract with a selected cleint over the server (client - server - client).
    But I have no idea how to build such a registration concept?
    A concrete hint (or link) how to realise this would be very helpful. I searched all the internet for examples, but I dont found a simple example.
    Thanks in advance
    greeds

    wSam,
    It appears that Sun considers RMI to be simpler, although less efficient than the alternative:
    http://java.sun.com/developer/technicalArticles/ALT/sockets/
    This article also talks about object serialization, which I am a fan of. Suppose that you want to send a data structure containing lots of information (like all connected users). You can actually pass an object (rather than text) across the network using ObjectOutputStream and receive it on the other end with ObjectInputStream. You might create your own Command class for passing objects between the client and server instead of using RMI. The Command class might hold flags that indicate which method should take place on the remote machine (i.e. send chess move command).

Maybe you are looking for