Calling a password protected package

SQL 2008 R2
I have a Master SSIS package that calls 5 child packages. Every package, including the Master, are encrypted with EncryptSensitiveWithPassword.  When I run the child packages separately, they all work, and the longest one takes about a minute. 
If I try to run the Master package it just spins on the first child package and stays there forever.  I've never let it run longer than 30 minutes, and I only let it run that long just to see if it ever finished.  I've tried to run it in BIDS as
well as to run the deployed package in Integration Services.  When I open the Master package it asks me for the password.  When I run it, it starts running the first step but it never finishes. Is this because the first package is waiting for a password? 
If so, why don't I see a prompt?  It prompted me for the password when I added the child packages to the Master package, so I figured it must be saving it somewhere.  I'm using the Execute Package Task.
2nd, but related question.  Is EncryptSensitiveWithPassword the best way to save these packages if I need to save the username/password?  It sure makes it a pain every time I open the package or run it, because I have to supply the password. 
Unfortunately I'm not sa on this particular server so I do have to connect with a specific user/pwd.
Thanks in advance.
Andre
André

1st question: the children package passwords need to be provided at run time. How it is done depends on where you deploy your packages to. Typically, (and seemingly best) you would provide the password in a configuration.
This kind of answering your #2 - it is not the best when you deploy to the Agent for example as you may leave the default protection level as it (and avoid the time spent on setting and putting the passwords in), but when you deploy, you specify the "Rely
on Server Storage..." and the package sensitive parts get encrypted by the means of the database engine.
Arthur
MyBlog
Twitter

Similar Messages

  • Generating password protected pdf document  usuing as_pdf_mini package

    Actually i want to implement password protected pdf file which is generated using as_pdf_mini.
    so i want help on that.....

    - Read the specs on PDF 1.3
    - take as_pdf3
    - the next is some code I used to check several steps of the encryption
    declare
      t_encryption_padding raw(32) := hextoraw( '28BF4E5E4E758A4164004E56FFFA01082E2E00B6D0683E802F0CA9FE6453697A' );
      p_owner_password varchar2(32) := '';
      p_user_password varchar2(32) := 'abc';
      t_tmp raw(32);
      t_tmp_u raw(32);
      t_o raw(320);
      t_u raw(320);
    begin
      t_tmp_u := utl_raw.substr( utl_raw.concat( utl_raw.cast_to_raw( p_user_password ), t_encryption_padding), 1, 32 );
      if p_owner_password is null
      then
        t_tmp := t_tmp_u;
      else
        t_tmp := utl_raw.substr( utl_raw.concat( utl_raw.cast_to_raw( p_owner_password ), t_encryption_padding), 1, 32 );
      end if;
      t_tmp := dbms_crypto.hash( t_tmp, dbms_crypto.hash_md5 );
      t_o := dbms_crypto.encrypt( t_tmp_u, dbms_crypto.encrypt_rc4, utl_raw.substr( t_tmp, 1, 5 ) );
    --dbms_output.put_line( t_o );
      t_tmp := dbms_crypto.hash( utl_raw.concat( t_tmp_u
                                               , t_o
                                               , utl_raw.cast_from_binary_integer( -4, utl_raw.little_endian )  -- waarde van /P
                                               , hextoraw( 'fb3642e78f13a14ef522287f16d63195' ) -- waarde van /ID
                               , dbms_crypto.hash_md5
      t_u := dbms_crypto.encrypt( t_encryption_padding, dbms_crypto.encrypt_rc4,  utl_raw.substr( t_tmp, 1, 5 ) );
    --dbms_output.put_line( t_u );
      t_tmp := utl_raw.concat( utl_raw.substr( t_tmp, 1, 5 )
                             , utl_raw.substr( utl_raw.cast_from_binary_integer( 8, utl_raw.little_endian ), 1, 3 ) -- object nr
                             , utl_raw.substr( utl_raw.cast_from_binary_integer( 0, utl_raw.little_endian ), 1, 2 ) -- generation nr
      t_tmp := dbms_crypto.hash( t_tmp, dbms_crypto.hash_md5 );
      dbms_output.put_line( dbms_crypto.encrypt( 'FEFF', dbms_crypto.encrypt_rc4,  utl_raw.substr( t_tmp, 1, 10 ) ) );
      dbms_output.put_line( dbms_crypto.encrypt( utl_raw.cast_to_raw( 'AS-PDF 0.3.0 by Anton Scheffer' ), dbms_crypto.encrypt_rc4,  utl_raw.substr( t_tmp, 1, 10 ) ) );
    end;Anton

  • Password Protect OSD Task Sequence

    I have been working at implementing an HTA file to password protect my SCCM 2012 R2 task sequences as discussed
    here and various places throughout the web. I a looking for some clarification why the "Use Toolkit Package" is needed in the task sequence before the .WSF script (below) can run? I assume it is because it is calling the ZTIutility.vbs script
    which is part of MDT, but I don't understand what is actually happening. Could someone explain?
     <job id="setEnv">
    <script language="VBScript"
    src="..\ZTIUtility.vbs"/>
    <script language="VBScript">
    Dim oTSProgressUI set oTSProgressUI
    = CreateObject("Microsoft.SMS.TSProgressUI") oTSProgressUI.CloseProgressDialog()
    On error resume next Dim fso,
    WShell, oFile Set
    WShell = CreateObject("WScript.Shell")
    Set fso = CreateObject("scripting.filesystemobject") scriptroot
    = oEnvironment.Item("SCRIPTROOT")
    MsgBox "Please click OK to shutdown the computer.",0,
    "Task Sequence Aborted" WShell.Run
    "wpeutil shutdown",0,
    True </script> </job>
    Also, it there any other way to gracefully shut down the task sequence with out integrating MDT into SCCM to get the "Use Toolkit Package" option?
    --Tony

    Hi Peter!
    The code was copied from :
    http://www.windows-noob.com/forums/index.php?/topic/2336-password-protect-a-task-sequence/
    If you want a better look at the code, click the link and scroll down to the shutdown.wsf section.
    --Tony

  • Password Protect Task Sequence

    I went all out on this one, and may have over done it.
    I have created a program that will prompt the user for their AD username/password, and verifies that they are in the "MDT Users" group.  I have created a package and program for this but I'm having problems adding it to my task sequence.
    I can't add it to the task sequence if the program is set to allow user interaction, but without it, I can't enter my password!
    Does running something from the command line get me around this issue?

    I have been working at implementing an HTA file to password protect my SCCM 2012 R2 task sequences as discussed
    here and various places throughout the web. I a looking for some clarification why the "Use Toolkit Package" is needed in the task sequence before the .WSF script (below) can run? I assume it is because it is calling the ZTIutility.vbs script which
    is part of MDT, but I don't understand what is actually happening. Could someone explain?
     <job id="setEnv">
    <script language="VBScript"
    src="..\ZTIUtility.vbs"/>
    <script language="VBScript">
    Dim oTSProgressUI set oTSProgressUI
    = CreateObject("Microsoft.SMS.TSProgressUI") oTSProgressUI.CloseProgressDialog()
    On error resume next Dim fso,
    WShell, oFile Set
    WShell = CreateObject("WScript.Shell")
    Set fso = CreateObject("scripting.filesystemobject") scriptroot
    = oEnvironment.Item("SCRIPTROOT")
    MsgBox "Please click OK to shutdown the computer.",0,
    "Task Sequence Aborted" WShell.Run
    "wpeutil shutdown",0,
    True </script> </job>
    Also, it there any other way to gracefully shut down the task sequence with out integrating MDT into SCCM to get the "Use Toolkit Package" option?
    --Tony

  • Need javascript/VB code to open password protected PDF file by passing password in code itself.

    Hi,
    I have used PDFcreator to create the PDF file with password security
    'To create PDF file with password security
    With PDFCreator1
    .cOption("UseAutosave") = 1
    .cOption("UseAutosaveDirectory") = 1
    ' ==============
    .cOption("AutosaveDirectory") = strBackupPath '& "\" & Format(Trim(Sheets("Form16_Database").Range("A" &
    I).Value), "0#####") & "\" 'ActiveWorkbook.Path
    Debug.Print Trim(Sheets("Form16_Database").Range("A" & I).Value) & "Form16-" & Format(Trim(Sheets
    ("Form16_Database").Range("A" & I).Value), "0#####") & "-" & Format(Now(), "YYYYMMDDHHMMSS") & ".PDF"
    .cOption("AutosaveFilename") = Format(Trim(Sheets("Form16_Database").Range("B" & I).Value), "0#####") & ".PDF"
    FileName = Format(Trim(Sheets("Form16_Database").Range("B" & I).Value), "0#####") & ".PDF"
    .cOption("AutosaveFormat") = 0
    .cOptions.PDFUseSecurity = 1
    .cOption("PDFOwnerPass") = 1
    .cOption("PDFOwnerPasswordString") = "mypass"
    .cOption("PDFUserPass") = 1
    .cOption("PDFUserPasswordString") = "mypass"
    .cClearCache
    End With
    'Printing to PDF Creator
    ActiveSheet.PrintOut Copies:=1, ActivePrinter:="PDFCreator"
    'Making the system wait for the PDF creator to create the file
    Do Until PDFCreator1.cCountOfPrintjobs = 1
    DoEvents
    Sleep 1000
    Loop
    PDFCreator1.cPrinterStop = False
    Sleep 1000
    ''and To fix digital signature used below code from Acrobat SDK 8.1..
    ''VB code for fixing Digital Signature --calling jaascript file from SDK.
    Sub GetDigitalSignature(PDFFilepath As String, PDFFileName As String, PFXfile As String, Password As String, Top As Double,
    Left As Integer)
    Dim gapp As Acrobat.AcroApp
    Dim gpddoc As Acrobat.AcroPDDoc
    Dim jso As Object
    Dim FullPath As String
    Dim avDoc As CAcroAVDoc
    Dim boK As Boolean
    Dim ppklite As Object
    Set avDoc = CreateObject("AcroExch.AVDoc")
    Set gapp = CreateObject("acroexch.app")
    Set gpddoc = CreateObject("acroexch.pddoc")
    boK = avDoc.Open(PDFFilepath, PDFFileName)
    gpddoc.Open (PDFFilepath)
    Set jso = gpddoc.GetJSObject()
    jso.SetUserPassword (Password)
    jso.SetUserDigitalIDPath (PFXfile)
    jso.SetSignTop (Top)
    jso.SetSignLeft (Left)
    jso.app.execMenuItem ("ADBESDK:AddSignature")
    avDoc.Close (True)
    gapp.Exit
    End Sub
    Now i am able to create PDF with Digital signature. But We want to assign password protection too..and problem is once we fix Digital signature we can't change security.
    My problem is to pass password at the time of opening PDF for embedding signature. Password window should not prompt to the user while running VBA application.
    Can you please help me to pass password on fly when file prompt password while opening PDF file. As file need to be opened at the time of fixing signature using sdk javascript code.

    Correct, you need to encrypt then sign.
    Unfortunately, there is no way to pass a password for opening.

  • How can I set up password-protected Guest account

    Hi everyone
    I need to set up password-protected guest account. The aim is to get:
    a) an account with password. So only authorized person can use it.
    b) all changes in this account should be overwritten at log-off, just like Guest account behaves.
    So I need either to find a way to set password for Guest, either create a 'normal' account and somehow automate it self-cleaning at logoff.
    I tried to run terminal and use
    sudo su
    passwd Guest
    [entering password 123]
    Afterwards I can't login as Guest at all. System doesn't ask for a password, nor logs me in.
    Thx for any help

    This question was asked 2 years ago and still hasn't been answered.
    If there is not a way to add a password to guest account, what is the script that get's executed when the Guest account log's off? I can execute that on an account that I create called 'localGuest' or something like that.
    I have an enterprising member of my family who has figured out that my computer is exempt from the network curfew and they are using Guest to bypass that. I have since disabled guest; however, I do like using the fresh guest environment to test software development.

  • Looking for App/Setting for Messages/Mail password protection

    Well its a bit simply really, I am just looking for something that will allow me to password protect mainly my messages, although it would be nice if i could password protect other apps or things on my phone, but its mainly for messages
    Is there some kind of app that will allow me to do this?
    I dont think there is anything in settings but a general password, which it only asks for when you unlock the phone

    I've has smartphones since before they were called that, and I've never had one that could password protect only the email app. There's nothing to understand or not understand; the iPhone cannot password protect just email. You can lock the phone with a passcode. That's it.

  • OLE2 Excel File Save as password protected

    Hi All,
    I would like to save an Excel File as Password protected.
    This File is created by OLE2.
    How can I do this?
    This is the Coding, how I save the File-->
    CALL METHOD OF ls_wbook 'SaveAs' EXPORTING #1  = p_file.
    Thanks for the Answers...
    Bye
    Besi

    Hello Besi,
    The following code should work. Try it out.
    CALL METHOD OF document 'Protect' EXPORTING
                             #1 = 2
                             #2 = -1
                             #3 = 'password'.
    CALL METHOD OF documents 'Save'.
    Here 'document' is the 'ActiveDocument' object.
    How to get the 'document'  object:
        CREATE OBJECT worddoc 'Word.Document'.
        GET PROPERTY OF worddoc 'Application' = wordapp.
    GET PROPERTY OF wordapp 'ActiveDocument' = document.
    Regards,
    Jitendar

  • Trying to password protect a directory in my portal web server

    I have a third party web file manage called ckfinder that i am testing for a client and it works fine. However, when i try to password protect the directory using .htaccess file, it doesn't work. It starts out by kicking me to the SSO logine page, which is fine. But when i put a valid user name and password, it displays a page cannot be displayed error with the url being:
    https://infra.portal2.bynum.com:4443/sso/auth
    I checked the ssoServer.log and this is what it reads:
    Wed Jun 18 16:52:24 CDT 2008 [DEBUG] AJPRequestHandler-ApplicationServerThread-10 FilePolicyManager.getAuthLevel: papp success Url=http://por
    tal2.bynum.com/bellin/ckfinder/_samples/php/osso_login_success
    Wed Jun 18 16:52:24 CDT 2008 [DEBUG] AJPRequestHandler-ApplicationServerThread-10 FilePolicyManager.getAuthLevel: pappHostPort=portal2.bynum.
    com
    Wed Jun 18 16:52:24 CDT 2008 [DEBUG] AJPRequestHandler-ApplicationServerThread-10 No auth level found. Returning DefaultAuthLevel
    Wed Jun 18 16:52:24 CDT 2008 [INFO] AJPRequestHandler-ApplicationServerThread-10 FilePolicyManager.getAuthLevel returns 40
    Wed Jun 18 16:52:24 CDT 2008 [DEBUG] AJPRequestHandler-ApplicationServerThread-10 Requested Auth Level: 40
    Wed Jun 18 16:52:24 CDT 2008 [INFO] AJPRequestHandler-ApplicationServerThread-10 Entered SSOLoginServlet: :processSSOPartnerRequest method ..
    Wed Jun 18 16:52:24 CDT 2008 [DEBUG] AJPRequestHandler-ApplicationServerThread-10 AuthUtil: SSO Cookie received: null
    Wed Jun 18 16:52:24 CDT 2008 [DEBUG] AJPRequestHandler-ApplicationServerThread-10 Current Auth Level: -1
    Wed Jun 18 16:52:24 CDT 2008 [DEBUG] AJPRequestHandler-ApplicationServerThread-10 Header Accept: */*
    Any ideas??

    ok, i found out the problem. My web server was inproperly configured with by SSO Server. I reconfigured the server with the defaults and ran again and all worked fine..

  • How do I password protect a webpage in adobe muse?

    I want to create a webpage in which I can password protect it so only people with a username and password can get in. How can I do this. By the way, I am new to adobe muse and I am only 12 (I just have in interest in computers). Thanks!

    Chech this out
    What is Password Protection
    There are many websites that cause a box to pop up asking you for a username and password. If you don't know the password, you can't enter the site. This provides some security to your Web pages and gives you the chance to choose who you want to allow to see and read your Web pages. There are many ways to password protect your Web pages, from PHP, to JavaScript, to HTAccess (on the Web server).
    When Should You Password Protect Pages?
    With HTAccess, you can password protect any page or directory on your Web server. You can even protect the entire website if you want to. HTAccess is the most secure method of password protection, as it relies on the Web server, so the valid usernames and passwords are never shared with the Web browser or stored in the HTML like they can be with other scripts. People use password protection:
    Hiding new versions of your website from the public until they are ready to launch.
    Protecting private sections of your website so that only people you know and trust can read them.
    Providing paid content to your customers and only allowing access via a password.
    Creating a private forum for select readers.
    It's Easy to Password Protect Your Web Pages
    You need to do two things:
    Create a password file to store the usernames and passwords that will have access to the directory.
    Create an htaccess file in the directory to be password protected.
    Create the Password File
    Open a new text file called.htpasswdNote the period at the beginning of the filename.
    Use a password encryption program to create your passwords. Paste the lines into your .htpasswd file and save the file. You will have one line for every username that requires access.
    Upload the .htpasswd file to a directory on your Web server that is not live on the Web. In other words, you should not be able to go to http://YOUR_URL/.htpasswd - it should be in a home directory or other location that is secure.
    Create the htaccess File
    Open a text file called.htaccessNote the period at the beginning of the filename.
    Add the following to the file: AuthUserFile /path/to/htpasswd/file/.htpasswd AuthGroupFile /dev/null AuthName "Name of Area" AuthType Basic require valid-user
    Change/path/to/htpasswd/file/.htpasswdto the full path to the .htpasswd file you uploaded in above.
    Change"Name of Area"to the name of the site section being protected. This is used primarily when you have multiple areas with different protection levels.
    Save the file and upload it to the directory you want protected.
    Test that the password works by accessing the URL. If your password doesn't work, go back to the encryption programs and encrypt it again. Remember that the username and password will be case-sensitive. If you are not prompted for a password, contact your system administrator to make sure that HTAccess is turned on for your site.
    http://webdesign.about.com/od/security/a/password_protec.htm
    http://webdesign.about.com/od/htpasswordgenerators/HTPassword_Generators.htm

  • SAP version 4.7  Email pdf file that is password protected.

    Hi Gurus,
    We have a requirement:
      Email pdf file that is password protected.
      Once the user receives the email,  clicks on the attached pdf file,
         it should ask the password.  Note that Password value should come from SAP.
    What we have done is get the spool number and by using function module CONVERT_ABAPSPOOLJOB_2_PDF, it converts the spool document to pdf.
    On this function module, there are no parameters to make pdf as password protected and
      also include the password.  This is the problem.
    Question:
       (a) Is there a way to make pdf password protected that will be emailed?
            What function modules, etc to be used?  (sample coding if available)
       (b) Somebody mentioned the that Adobe LiveCycle Policy Server should be installed together with SAP.
            If this is installed, how then would be the abap coding be in order to make the pdf password
                protected?
            How is the new policy server gonna be linked to SAP and how do the abap coding gonna be?
               (sample abap coding if available)
    Thanks.
    Raymund

    hi,
    First save the file somewhere... LINK:[SITE|http://www.sapfans.com/forums/viewtopic.php?f=13&t=326228]
    In the site i send above you need to change it do receive parameters ou use always the same name...compile and then use the function 'WS_EXECUTE' - watch it in LINK: [SITE|http://www.sap-img.com/abap/ws-execute-to-call-external-program.htm]
    and then..you just have to download it again into an ITAB and send it by mail... LINK:[SITE|How to pass pdf data to ABAP itab;
    Hope it helps..

  • Operations on Text File - Encrypt, Decrypt, Password Protected

    Dear Experts,
    My requirement is to upload a text file  and do some operations on it and then encrypt the content in it ans save it on application server with password protected. Later i want to decrypt it.
    Please help me for the following:
    How to encyypt and decrypt the text file using standard encryption alogrithms like DES, MD5, RSA? Are there any standand function modules for both encryption and decryption which accepts a user defined public key?
    How to download a password protected text file?
    Thanks in advance.

    CALL FUNCTION 'Z_CRYPT_FILE'
            EXPORTING
              SOURCE_PATH         = WS_PATH
              SOURCE_FILE         = WS_OLDFILE
              DESTINATION_PATH    = WS_NEW_PATH
              DESTINATION_FILE    = WS_NEWFILE
              SWITCH              = 'E'
              KEY                 = ZUSER_PW
              KEEP_SOURCE_FILE    = ' '
            EXCEPTIONS
              INVALID_SWITCH      = 1
              SOURCE_FILE_NOTFOUND = 2
              DIDNT_WORK          = 3.
    FUNCTION MODULE Z_CRYPT_FILE 
    DATA: CINPUT(300) TYPE C.
    DATA: BEGIN OF LIST OCCURS 0,
            DATA(238) TYPE C,
            DELIMITER(04) TYPE C,
            FILE(12) TYPE C,
          END OF LIST.
    DATA: SOURCE TYPE ZCHAR200.
    DATA: DESTINATION TYPE ZCHAR200.
    DATA: ZINDX TYPE I.
    DATA: msg(100).
    IF SWITCH = 'E'.
       IF FILETYPE = 'T'.
          OPEN DATASET SOURCE IN TEXT MODE FOR INPUT ENCODING DEFAULT
             message msg.
       ELSE.
          OPEN DATASET SOURCE IN BINARY MODE FOR INPUT message msg.
       ENDIF.
       IF SY-SUBRC <> 0.
          RAISE SOURCE_FILE_NOTFOUND.
       ENDIF.
       CLOSE DATASET SOURCE.
       CLEAR CINPUT.
       CONCATENATE '/usr/local/bin/gpg -sev -r'
        KEY
        '-o'
        DESTINATION
        SOURCE
       INTO CINPUT SEPARATED BY SPACE.
       CONCATENATE CINPUT '2>&1' INTO CINPUT SEPARATED BY ' '.
       CALL 'SYSTEM' ID 'COMMAND' FIELD CINPUT ID 'TAB' FIELD
                                  LIST-SYS.
       IF FILETYPE = 'T'.  
          OPEN DATASET DESTINATION IN TEXT MODE FOR INPUT ENCODING DEFAULT
             message msg.
       ELSE.
          OPEN DATASET DESTINATION IN BINARY MODE FOR INPUT message msg.
       ENDIF.
       IF SY-SUBRC = 0.
          CLOSE DATASET DESTINATION.
          IF keep_source_file <> 'X'.
             CLEAR CINPUT.
             CONCATENATE 'rm' SOURCE INTO CINPUT
             SEPARATED BY SPACE.
             CALL 'SYSTEM' ID 'COMMAND' FIELD CINPUT ID 'TAB' FIELD
                            LIST-SYS.
          ENDIF.
       ELSE.
        write: 'Encryption error  on command: ',
           cinput.
        skip 1.
         loop at list.
            write: / LIST.
           endloop.
          RAISE DIDNT_WORK.
       ENDIF.
       IF FILETYPE = 'T'.  
          OPEN DATASET SOURCE IN TEXT MODE FOR INPUT ENCODING DEFAULT.
       ELSE.
          OPEN DATASET SOURCE IN BINARY MODE FOR INPUT.
       ENDIF.
       IF SY-SUBRC <> 0.
          RAISE SOURCE_FILE_NOTFOUND.
       ENDIF.
       CLOSE DATASET SOURCE.
       CLEAR CINPUT.
       CONCATENATE '/usr/local/bin/gpg -o'
        DESTINATION
        SOURCE
       INTO CINPUT SEPARATED BY SPACE.
       CONCATENATE CINPUT '2>&1' INTO CINPUT SEPARATED BY ' '.
       CALL 'SYSTEM' ID 'COMMAND' FIELD CINPUT ID 'TAB' FIELD
                                  LIST-SYS.
      REFRESH LIST.
      CLEAR LIST.
       IF FILETYPE = 'T'. 
          OPEN DATASET DESTINATION IN TEXT MODE FOR INPUT ENCODING DEFAULT.
       ELSE.
          OPEN DATASET DESTINATION IN BINARY MODE FOR INPUT.
       ENDIF.
       IF SY-SUBRC = 0.
          CLOSE DATASET DESTINATION.
       ELSE.
    *list output if error
          loop at list.
            write: / LIST.
           endloop.
          RAISE DIDNT_WORK.
       ENDIF.
    ENDIF.

  • Progmatically save to password protected network folder

    I am looking to save a file to a password protected network folder.  I tried using the standard Write Text.vi to see if a dialog would pop up, but it did not.  There is not an ftp server running on the networked computer, so I dont think that will work.
    The IT department directions to the folder say:  Go to Start> Run and enter url \\computername\folder\subfolder\...  and a dialog will appear to enter username and password.
    Any ideas??
    Thanks
    Kenny

    muks wrote:
    Well this is what we do. Run--->(doubleslash(\\) computername slash(/) d$)
    Eg: \\pc48\d$ .When you get a popup(U should) type the username and password of the that computer having admin rights.
    That simply reiterates what the IT department originally told the poster to do, except that you're using the administrative share. 
    Kenny K wrote:
    I should have noted that there
    should be no user interaction, ie they should not be entering the
    username and password, the program should login and save the file
    automatically.  sorry.
    To do this you will need to delve into the Windows API. You can also use .NET to perform impersonation. Most of the examples that are on the internet are based on .NET 1.1 and it's probably easier to simply create yourself a custom class that you can call using a single method rather than trying to put all the .NET code into LabVIEW. An example of using impersonation (though there are lots of them) can be found here. 

  • Sending HR-File as email by the ABAP program as password protected ZIP file

    Hi All,
    My requiremet is to directly email the SAP-HR files to the users as the password protected ZIP file on UNIX.
    Can anyone help me out how to implement this in my ABAP program.
    Regards,
    Saumik

    hi,
    To populate data in different column you may use the below code.
    DATA : filename TYPE string VALUE  "Path
    DATA :BEGIN OF wa_string,
                   data TYPE string,
              END OF wa_string.
    DATA : it_data LIKE STANDARD TABLE OF wa_string,
               data  TYPE string.
    DATA: v_tab TYPE char1.
    v_tab = cl_abap_char_utilities=>horizontal_tab.
    CONCATENATE 'happy' 'new year'  INTO wa_string-data SEPARATED BY v_tab.
    APPEND wa_string TO it_data .
    CALL FUNCTION 'GUI_DOWNLOAD'
      EXPORTING
        filename              = filename
      TABLES
        data_tab              = it_data.
    IF sy-subrc <> 0.
    ENDIF.

  • How to open password protected files in Numbers for iPad?

    In my company, there are formats created in Excel 2010 which have password-protetected cells. Neither Numbers, nor Doccuemts to Go can't open them.
    The workaround is having someone open the file in my office and re-save it in an older version, but it messes up with the formatting and it's simply not a practical solution.
    Documents to Go still doesn't support Office 2010 password protected files. Numbers niether, so does anyone know of any app that can solve my problem?

    Go to the App Store on your iPad and download Adobe Acrobat DC (formerly called Reader).
    Open it and click on Help. Then click on Handbook. Read the section on "Open PDFs in Acrobat DC"

Maybe you are looking for

  • VPN connection no longer working - Lion 10.8.5

    I have been successfully connecting through VPN to my work server for over one year on my laptop.  A week or so ago I could no longer connect.  Error is "The VPN server did not respond.  Verify the server address and try reconnecting."  I have had th

  • ICal removes events after 6 months

    iCal automatically deletes events except for recurring events after six months. I want to keep all events as a record but cannot find anyway to do that. Is that be possible? I'm using iCal version 2.0.5. PowerBook G4   Mac OS X (10.4.9)   PowerBook G

  • SP2-0575: Use of Oracle SQL feature not in SQL92 Entry Level.

    Hi, When I tried to login I am able to login but getting the following message:SP2-0575: Use of Oracle SQL feature not in SQL92 Entry Level. After loging, when I tried to "SELECT SYSDATE FROM DUAL;" I am getting the following error. ORA-00942: table

  • Interactive ALV list Report Using OOPS

    Hi Experts!! I would like create secondary list using ABAP OPPS (Events). Anybody can give me idea how to do that . On clicking of perticurar row + column. Secondary list should be displayed. Please do not suggest ALV Grid. I know how to do it with A

  • Stopping a blocked Thread

    I need to stop a Thread, or interrupt a blocked I/O. I'm making a call to a library that I do not own and cannot change. The library makes a HTTP connection to a service and waits for a response. As far as I know, the library uses BufferedReader to r