Password protection to an execution file

I want to create an execution file with password protection. I want to protect the running application that if somebody wants to change any numeric control values or play around with the running program a pop up window will come out and will ask for password access. 
Any advise or hint i will greatly appreciate.
kind regards,

Hello Ayo,
here comes the next example...
Best regards,
GerdW
CLAD, using 2009SP1 + LV2011SP1 + LV2014SP1 on WinXP+Win7+cRIO
Kudos are welcome
Attachments:
password protect modified.vi ‏39 KB

Similar Messages

  • How do I remove password protection from a PDF file in Adobe Reader

    How do I remove password protection from a PDF file in Adobe Reader?

    PDF security can only be implemented or removed using Adobe Acrobat.

  • Password Protection to the Excel File that was down loaded

    Hi Friends,
    I had an requirement regarding the excel file.whenever the excel file is down loaded on the desktop it should be password protected.i..e, no one should be able to open the file unless they have the password.

    REPORT ZWMI_TRUCK_DOWNLOAD no standard page heading.
    ======================================================================
    Program Name : ZWMI_TRUCK_DOWNLOAD                                   *
    Description  : This Program is used to get all truck load status     *
                   and download into XLS File and fields are Route #,    *
                   Dispatch time ,Closing time ,Scan Details.            *
    Author       : Seshu                                                 *
    Date         : 02/15/2007                                            *
    MODIFICATION HISTORY                                                 *
    DATE    | AUTHOR   | CHANGE #   | DESCRIPTION OF MODIFICATION        *
    --|||--
    02/15/07| Seshu    | DEVK922058 | Initial                            *
    02/20/07| Seshu    | DEVK922068 | Changed the name as per Naming     *
                                      Convention                         *
    03/14/07| Seshu    | DEVK922126 | Included date as Range             *
    ======================================================================
    Tables
    tables : zsdcarton,
             ztruck,
             ztruckstatus.
    Constants
    constants: c_werks(4) type c value '1000'.
    Internal table for Ztruck
    data : begin of i_ztruck occurs 0,
           werks  like ztruck-werks," Plant
           vdatu like ztruck-vdatu, " Delivery date
           ZZTRKNO like ztruck-ZZTRKNO, " Route #
           ZZSHIPTIME like ztruck-ZZSHIPTIME, " Dispatch time
           ZCLTIME like ztruck-ZCLTIME, " Truck close time
           end of i_ztruck.
    Internal table for ZSDCARTON
    data : begin of i_zsdcarton occurs 0,
           lateflag like zsdcarton-lateflag,
           zzslot like zsdcarton-zzslot,
           status like zsdcarton-status,
           end of i_zsdcarton.
    Internal table for Final output
    data : begin of i_final occurs 0,
           vdatu like ztruck-vdatu, " Delivery Date
           ZZTRKNO like ztruck-ZZTRKNO, " Route #
           ZZSHIPTIME like ztruck-ZZSHIPTIME, " Dispatch time
           ZCLTIME like ztruck-ZCLTIME, " Truck close time
           load_compl_c(5)     type n , " Load Complted Time
           status_s_total(5) type n,  " No Scan/Load
           status_l_total(5) type n,  " Late Scan
           end of i_final.
    Internal Table XLS File Header
    DATA: BEGIN OF i_head OCCURS 0,
          field(30) TYPE c,
          END OF i_head.
    Variables
      status couter
    data: status_total(5)   type n,
      no scan / no load
          status_s(3)       type n,
          status_s_total(5) type n,
      good
          status_g(3)       type n,
          status_g_total(5) type n,
      late
          status_l(3)       type n,
          status_l_total(5) type n,
      manual
          status_m(3)       type n,
          status_m_total(5) type n,
      alternative
          status_a(3)       type n,
          status_a_total(5) type n.
    S E L E C T I O N    -   S C R E E N *************************
    selection-screen : begin of block blk with frame title text-001.
    select-options : p_vdatu for zsdcarton-vdatu obligatory
                    default sy-datum.
    selection-screen : end of block blk .
    S T A R T  -  O F  - S E L E C T I O N  ******************
    start-of-selection.
    Get the data from ZTRUCK and
      perform get_data_tables.
    Down load the data into XLS file
      perform get_download.
    S T A R T  -  O F  - S E L E C T I O N  ******************
    end-of-selection.
    *&      Form  get_data_tables
    FORM get_data_tables.
      data : lv_time like sy-uzeit.
      select werks
             vdatu
             zztrkno
             zzshiptime
             zcltime from ztruck into table i_ztruck
                                 where werks = c_werks
                                 and   vdatu in p_vdatu.
      if sy-subrc ne 0.
        message e000(zwave) with 'No data found for given current date'.
      endif.
      loop at i_ztruck.
        refresh : i_zsdcarton.
        clear :   i_zsdcarton,
                  lv_time.
    Get the Scan Status for Every route
        select lateflag zzslot status from zsdcarton into table i_zsdcarton
                               where werks =  i_ztruck-werks
                               and   vdatu = i_ztruck-vdatu
                               and   zztrkno = i_ztruck-zztrkno.
        if sy-subrc eq 0.
          loop at i_zsdcarton.
            case  i_zsdcarton-lateflag.
    late cartons
              when  'X'.
    late and never loaded
                if i_zsdcarton-zzslot = space.
                  add 1 to status_s.
                else.
                  add 1 to status_l.
                endif.
    all other exceptions
              when  space.
    check if scanned
                case i_zsdcarton-zzslot.
    good scan
                  when 'S'.
                    add 1 to status_g.
    never scanned
                  when space.
                    if i_zsdcarton-status = space.
    no scan
                      add 1 to status_s.
                    else.
    no load -> no scan
                      add 1 to status_s.
                    endif.
    manual scanned
                  when 'M'.
                    if i_zsdcarton-status = 'M'.
                      add 1 to status_g.
                    elseif i_zsdcarton-status = 'E'.
    exceprtion -> manual
                      add 1 to status_g.
                    endif.
                endcase.
            endcase.
    add totals
            add status_g   to  status_g_total.
          Late Scan
            add status_l   to  status_l_total.
            add status_a   to  status_a_total.
          No Scan and Load
            add status_s   to  status_s_total.
            clear : status_g,
                    status_l,
                    status_a,
                    status_s.
          endloop.
        else.
          continue.
        endif.
    Get the Load Complete Time
        select single uzeit from ztruckstatus into lv_time
                                       where   werks = i_ztruck-werks
                                       and     lgnum = '100'
                                       and     vdatu = i_ztruck-vdatu
                                       and     zztrkno = i_ztruck-zztrkno
                                       and     tstat = 'L'.
        if sy-subrc eq 0.
          write: lv_time(5)
                  to i_final-load_compl_c     using edit mask '__:__'.
        endif.
    Delivery Date
        i_final-vdatu = i_ztruck-vdatu.
    Route #
        i_final-zztrkno = i_ztruck-zztrkno.
    Dispach time
        i_final-zzshiptime = i_ztruck-zzshiptime.
    Truck Close Time
        i_final-zcltime = i_ztruck-zcltime.
    No Scan/ Load
        i_final-status_s_total = status_s_total .
    Late Scan
        i_final-status_l_total = status_l_total.
        append i_final.
        clear : status_g_total,
                status_l_total,
                status_a_total,
                status_s_total,
                lv_time,
                i_final.
      endloop.
    ENDFORM.                    " get_data_tables
    *&      Form  get_download
          Download the data
    FORM get_download.
      data : lv_file like rlgrap-filename,
             lv_date(8) type c.
      lv_date = sy-datum.
      concatenate 'C:/Truckload'  lv_date into lv_file.
    Fill the Header Values
    Delivery Date
      i_head-field = 'Delivery Date'.
      append i_head.
    Route #
      i_head-field = 'Route'.
      APPEND i_head.
    Dispatch Time
      i_head-field = 'Dispatch Time'.
      append i_head.
    Closing Time
      i_head-field = 'Closing Time'.
      append i_head.
    Load Completed Time
      i_head-field = 'Load Completed Time'.
      append i_head.
    No Scan/Load
      i_head-field = 'No Scan/Load'.
      append i_head.
    Late Scan
      i_head-field = 'Late Scan'.
      append i_head.
      CALL FUNCTION 'EXCEL_OLE_STANDARD_DAT'
        EXPORTING
          FILE_NAME                       = lv_file
      CREATE_PIVOT                    = 0
          DATA_SHEET_NAME                 = 'TruckLoad'
      PIVOT_SHEET_NAME                = ' '
      PASSWORD                        = ' '
      PASSWORD_OPTION                 = 0
       TABLES
      PIVOT_FIELD_TAB                 =
          DATA_TAB                        = i_final
          FIELDNAMES                      = i_head
       EXCEPTIONS
         FILE_NOT_EXIST                  = 1
         FILENAME_EXPECTED               = 2
         COMMUNICATION_ERROR             = 3
         OLE_OBJECT_METHOD_ERROR         = 4
         OLE_OBJECT_PROPERTY_ERROR       = 5
         INVALID_FILENAME                = 6
         INVALID_PIVOT_FIELDS            = 7
         DOWNLOAD_PROBLEM                = 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.
    ENDFORM.                    " get_download
    In function module you have option like password protect..

  • Iwork 09 password protection for pages & numbers files

    I created a numbers file (iWork 09) on iMac that is password protected.  I sent the file to my iPad 2 and the first time i opened the file via ipad 2, it prompted me for my password, but now every time thereafter when I open the file in my ipad 2, it bypasses the password protectection.  The operating system on my ipad 2 is v. 4.3.5

    Yeah, its strange that it only works the very first time you open the file via ipad.  I'm thinking that maybe some utilities from the desktop app are not functional with the ipad app......

  • Unzip Password protected EasyDMS71SP02P_1-20006126.ZIP file

    Hi,
    I downloaded and am trying to unzip the SAP Easy DMS files which is password protected. Can someone please advise of the password required to unzip this file?
    Thanks and regards,
    Iqbal

    Hi Iqbal,
    ..unzip easydms files..
    Could you elaborate more on this? Is this in reference to the original files that have been checked in as a zip file? If its the case,then you would have to reach out to the owner/individual who would have created/password protected the zip file and attached in DMS.DMS doesn't offer any password protection facility for originals.
    Regards,
    Pradeepkumar Haragoldavar

  • To open a password protected ,Apple works created file in pages

    When I tried to open a password protected .cwk file created using Apple works 6 in the Pages of iwork'08 I get a message that the ile cannot be imported as it is password protected and it doesnot give an open to enter the password. Unfortunately i donot have Appleworks 6 in my machine. However I am able to open all the other files of the same format which are not password protected.
    Can any one help me out?

    Welcome to Apple Discussions
    Try icWord from Panergy Software. It has been known to open password protected files. You could then copy & paste into your Pages document or save as an AppleWorks 6 document again using a different name. You can download a fully-functional demo from the web site.

  • USB Flash Drive (with password protected Disk Image) copies files very slowly. Why?

    I'm backing up some data onto a 32GB flash drive that I've put a password-protected Disk Image onto, and am copying this data into, but it is achingly slow. It's taking hours to copy just 500MB!
    I have another 64MB flash drive that I have set up the same way, but this one copies files very quickly. I can't spot any difference between them in Disk Utility/System profiler.
    For the record, the process I've used for bothe drives is reformatted to Mac OS Extended (Journaled), then created a new Disk Image onto each drive (just a bitsmaller than the maximum size of the drive to enable it to fit) with 128--bit encryption.
    Does anyone have any idea why the 32GB drive would perform any differently? I am using the same USB port on my iMac for each drive, but am getting very different copying speeds. It's driving me nuts! Many thanks.

    The drive seems to be working fine if I copy files onto it outside of the Disk Image file (there's about 200MB of free space left over after I added the DMG). So I can only deduce from that that it is something specifically to do with the DMG itself. Though, as mentioned, I compared the DMG on my (fast) 64GB stick and the DMG on this problematic (slow) 32GB stick in Disk Utility/System Profiler (and I originally set them up in an identical way, as far as I am aware), and they seem to be the same. But one is performing achingly slow. Even dropping a file into the mounted DMG takes a few minutes to even think about it. It's very odd.

  • Password protect Time Machine backup files?

    My Home folder and subfolders are unaccessible for other users of my iMac. And lets say, my household.
    However, as soon as I make a TM backup on an external HD, anybody can look into my folders right away.
    Since encryption will change the functionality of TM (no file by file recovery) I am looking for password protect the backup.
    How come TM doesn't incorporate this?
    *OSX protects my folders, Time Machine lays them out in the open.*

    Tee Loo wrote:
    My Home folder and subfolders are unaccessible for other users of my iMac. And lets say, my household.
    However, as soon as I make a TM backup on an external HD, anybody can look into my folders right away.
    that's not true. TM backups have EXACTLY the same POSIX permissions as the originals and as such have exactly the same protection as the originals as far as access is concerned. no more and no less. that means among other things that given an admin password one may be able to view them on any computer.
    the only way to truly protect your backups is encryption. you seem to know about that and the limitations about filevault with Tm but that's the best you ca do.
    Since encryption will change the functionality of TM (no file by file recovery) I am looking for password protect the backup.
    How come TM doesn't incorporate this?
    *OSX protects my folders, Time Machine lays them out in the open.*

  • Password protect a list of files

    The goal I have run into is applying security - password security - to files located in a file. The file would be  filled with full path locations to files on a server that would need a password applied to them (The file can be cvs, new line delimited, etc.). These files are not necessarily located in the same directories, nor do i want to apply security to each file in a certain directory. The goal would be to run this as a batch process that can be run as needed.
    The specific part of this that has the issue is having acrobat get the contents of the file to iterate through with the batch process. Any assistance on reading from an external file and placing it in an arry like object would be splendid.

    The goal I have run into is applying security - password security - to files located in a file. The file would be  filled with full path locations to files on a server that would need a password applied to them (The file can be cvs, new line delimited, etc.). These files are not necessarily located in the same directories, nor do i want to apply security to each file in a certain directory. The goal would be to run this as a batch process that can be run as needed.
    The specific part of this that has the issue is having acrobat get the contents of the file to iterate through with the batch process. Any assistance on reading from an external file and placing it in an arry like object would be splendid.

  • How do I password protect an Adobe Reader file when it is greyed out?

    I have several documents that need to be password protected and I am unable to protect them already in Adobe.  I only have Adobe Reader at this time.  Is this possible to do without having to have another version of Adobe? 

    To add security, you need Adobe Acrobat.

  • How Can I Remove Password Protection From my PDF File?

    Hello,
    I have a PDF file that is protected by a password. I tried almost all free online tools to unlock the password but they don't work. I know the password but online tools are showing the error: The uploaded file does not seem to be a valid PDF file.
    Please let me know if there is any online tool or any software that can remove the password so I can share the file with others
    Thanks
    Steven

    I know the password but online tools are showing the error: The uploaded file does not seem to be a valid PDF file.
    Perhaps the file is not a .pdf file after all.
    Anyway, .pdf files are generated by Adobe Acrobat, not by Windows. Checking the FAQs at the Adobe site is probably the best way to solve your problem. I would also run this test: Create my own .pdf file, apply a password, then remove the password.

  • How do I take a password protection off a pages file without the password?

    I have forgotten the password I used to protect a file I created in pages and do not have any idea how to reset it. I have my admin password and my computer master password. Does anyone know how to fix this?

    I think you can forget about the document.
    Security is security. Either you can break it and it is not secure, or you can't but you end up locking yourself out.
    Something I warn users of. The usual victim of paranoia is the paranoid themselves.
    Peter

  • Password protect photo file

    can anyone tell me how to password protect a spectific photo file from being view?

    Are you sure that this question is linked to this forum's theme: AppleWorks ?
    Yvan KOENIG (from FRANCE vendredi 28 novembre 2008 19:12:46)

  • Password Protecting Files

    Does anyone know of any good tools to use within a Java app that allow for the program to password protect the file before the user downloads the file? A specific example for our system is a user will click an XLS link that will call a servlet that will create the spreadsheet (using POI) and allow them to Open or Save it. At the time of creation, we need to password protect the file due to security regulations. We would like to find a solution that could apply to different file types, if possible.
    Thanks.

    It would be to allow them to use the file after it has been downloaded. The concern is someone will use a public computer and accidentally leave a downloaded file on the machine. For the PDFs we create, iText has a password option so that works fine. POI, however, does not. We also have a few other types of files so we were looking to see if it is possible to password protect any type of file that the user has downloaded.

  • Password protect files

    Hi,
    I'm still a bit of a Mac newbie so I might just being stupid. There are a few files on my mac that I want to be able to lock with a password. I share the computer with family and the idea of different log in accounts has been banned. I just want to be able to password protect a couple of files so that they can only be opened with a password. Is this possible on mac?
    Thanks in advance!

    Here's the Apple support topic for creating an encrypted disk images:
    http://docs.info.apple.com/article.html?artnum=107333
    Hey Al, I put "encrypted disk image" in my Help and got nada. Then I put the same term in Apple Support and got the same result. I also tried "encrypt" and got 89 results, all but tthe right one. Finally I just Googled it and my first hit was the Apple support topic!
    I could have explained it quicker, as I use them often. Do you encounter the same issues, or do I just need another cup of coffee?
    -mj
    [email protected]

Maybe you are looking for

  • How can I disable icloud from an old mac ?

    I gave away my old Mac book Pro. I reseted the icloud password after giving away my Mac. It turns out that I have received word from the new owner that photos and videos from my icloud are showing in that Mac. Is there any way to disable icloud on th

  • How can I copy and paste a long page here without using email?

    How can I copy and paste a long page without using email?

  • Norwegian keyboard?

    Hi i am a norwegian girl and i am planning to buy a macbook pro. im going on a vacatoin this easter to florida. i have been doing a little reserch and i have figured out that if i buy the mac in florida i will save almost 800 dollars. but i was wound

  • Are 3 to 4 year old iMac's regarded as "vintage"?

    I have an iMac 24" that is between 3 and 4 years old, and very happy with it until one day found that it would show nothing on the screen. The power button went on and off ok, but that was it. I took the iMac into the Apple Service Center here in Phu

  • Part Payments Question

    Hi Experts, Scenario: I enter an invoice in January for £1000 and receive a part payment of £400 in February If I enter an incoing payment for £400 and match the payment against the invoice, the invoice is marked as fully paid and a payment on accoun