Saving data to local folder

Hi, I am new using LiveCycle and this question would seem stupid but I create a form to enter clients data. I need to submit that data to a folder located in the same computer as an XML format. How can I set up the submit button to save the data in that local folder?
Thanks in advance.
Edmundo

You woudl not submit to your own machine. You can add a button to save the data locally. Put a normal button on the form. In the click event add this javascript code:
xfa.host.exportData("", false)
This will bring a dialog up and allow the user to choose the location and filename of the data file. If you do not pass parameters then the default extension of XDP will be used. By passing the false param then you are asking for a file extension of XML. In either case you are saving xml data it is just the extension that will change.

Similar Messages

  • RSRT: Error in Exporting File to Local Folder

    Hi Experts
    We executed a Query in RSRT t-code and when we try to download data to local folder, the file is getting downloaded with error message. Please help out to resolve the issue
    "PAGENO=1&CMD=EXPORT&DATA_PROVIDER=DP&DUMMY=file.csv&FORMAT=CSV&REQUEST_NO=17"
    Regards
    Suresh Kumar

    Hello Kumar,
    Use the transaction RSRT2 (this will force the HTML display mode)
    You will see some extra buttons as Export to CSV and Export to Excel.
    Use these options. It should work. Otherwise, let me know the error message, if occurs.
    Kind Regards,
    Edward John

  • How to create a file in application data local folder which is not hidden in windows store app?

    I want to create a log file in ApplicationData local folder.
         m_StorageFile = await ApplicationData.Current.LocalFolder.CreateFileAsync(m_Name.Replace(" ", "_") + ".log",
                              CreationCollisionOption.OpenIfExists);
    First time when my app is launched, the file gets created and logs are written.
    When I close my app, and re run the app once again, the log file that was created is now hidden and when i try to call
    the code :    m_StorageFile = await ApplicationData.Current.LocalFolder.CreateFileAsync(m_Name.Replace(" ", "_") + ".log",
                              CreationCollisionOption.OpenIfExists);
    m_StorageFile is NULL.
    How can i prevent the file from becoming Hidden or ReadOnly.
    Thanks

    Here is a very simple sample that works fine.  Start with this and see what you are doing different.
    XAML:
    <Page
    x:Class="LocalStorage.MainPage"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    xmlns:local="using:LocalStorage"
    xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
    xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
    mc:Ignorable="d" Loaded="Page_Loaded">
    <Grid Background="{ThemeResource ApplicationPageBackgroundThemeBrush}">
    <TextBox x:Name="outputTxt" HorizontalAlignment="Left" Margin="76,82,0,0" TextWrapping="Wrap" VerticalAlignment="Top" AllowDrop="True" PlaceholderText="No Data read from local file" Width="791"/>
    <Button Content="Store Data" HorizontalAlignment="Left" Margin="73,145,0,0" VerticalAlignment="Top" Click="Button_Click" />
    </Grid>
    </Page>
    C#
    using System;
    using System.Collections.Generic;
    using System.IO;
    using System.Linq;
    using System.Runtime.InteropServices.WindowsRuntime;
    using Windows.Foundation;
    using Windows.Foundation.Collections;
    using Windows.Storage;
    using Windows.UI.Xaml;
    using Windows.UI.Xaml.Controls;
    using Windows.UI.Xaml.Controls.Primitives;
    using Windows.UI.Xaml.Data;
    using Windows.UI.Xaml.Input;
    using Windows.UI.Xaml.Media;
    using Windows.UI.Xaml.Navigation;
    // The Blank Page item template is documented at http://go.microsoft.com/fwlink/?LinkId=234238
    namespace LocalStorage
    /// <summary>
    /// An empty page that can be used on its own or navigated to within a Frame.
    /// </summary>
    public sealed partial class MainPage : Page
    public MainPage()
    this.InitializeComponent();
    private async void Button_Click(object sender, RoutedEventArgs e)
    if (m_StorageFile != null)
    try
    string userContent = outputTxt.Text;
    if (!String.IsNullOrEmpty(userContent))
    await FileIO.WriteTextAsync(m_StorageFile, userContent);
    else
    // should be some info to write
    catch (FileNotFoundException)
    // do something
    private StorageFile m_StorageFile;
    private async void createFileOrGetFile()
    m_StorageFile = await ApplicationData.Current.LocalFolder.CreateFileAsync("sample.log", CreationCollisionOption.OpenIfExists);
    private async void Page_Loaded(object sender, RoutedEventArgs e)
    createFileOrGetFile();
    if (m_StorageFile != null)
    try
    string fileContent = await FileIO.ReadTextAsync(m_StorageFile);
    outputTxt.Text = fileContent;
    catch (FileNotFoundException)
    // do something!
    Jeff Sanders (MSFT)
    @jsandersrocks - Windows Store Developer Solutions
    @WSDevSol
    Getting Started With Windows Azure Mobile Services development?
    Click here
    Getting Started With Windows Phone or Store app development?
    Click here
    My Team Blog: Windows Store & Phone Developer Solutions
    My Blog: Http Client Protocol Issues (and other fun stuff I support)

  • Saving images in local root folder before inserting into website.

    I have a completed website and the client has sent me some images and asked me to insert them into the website, but before I do that I know that they have to be saved in the local root folder - what is the easiest way to do this?

    I have a completed website and the client has sent me some images and asked me to insert them into the website, but before I do that I know that they have to be saved in the local root folder - what is the easiest way to do this?
    If you insert an image on a page in a local site, and if that image is not currently within your local root folder, DW will prompt you to determine if you want to copy that image into your default images folder.  In this case you do.
    Alternatively, you could just copy the images into any folder within your local root using Explorer/Finder.  When you next connect to that site in DW, it will find the images there and you can use them right away.
    Murray

  • Hi, i have just scanned some docs via my Ipad  and Epson printer. Saved them on a local folder! Where can i see and access this folder?

    Hi, i have just scanned some docs via my Ipad  and Epson printer. Saved them on a local folder! Where can i see and access this folder?

    Welcome

  • Save image to local folder

    Hi,
    I am using Labview to out put the images from a external camera. There is a 32bit 2D array output integer. How can I save the image to local folder. I have used following functions. Even though the program runs just fine, there is no image saved not even an unreadable file.
    Please let me know if you have any advice.
    Thanks!
    Tedan 
    Attachments:
    Capture_saveimage.JPG ‏30 KB

    Try wiring the error output of the Write JPEG File VI to an indicator. Maybe something is going wrong there behind the scenes. Also couldn't hurt to probe the Pixmap wire, to confirm it contains some real data.

  • Importing multiple jpeg files from local folder into database LOB column

    I have to programatically save multiple pictures (jpeg) from the folder on my PC into Oracle table LOB column. I have to be able to choose local folder on my PC where are the pictures, and press button on Oracle Forms to save pictures in LOB column in database.
    I'm using Forms 6i and Oracle 10g Rel2 database.
    Is this possible with Oracle Forms or the only way to do that is to use create directory database command and use dbms_lob package which I shouldn't do, because Oracle database directory is not allowed to see my local folder.

    As I said I don't know how to use object data type, I just given a shot as below. I know the following code has errors can you please correct it for me.
    Public
    Sub Main()
    ' Add your code here 
    Dim f1
    As FileStream
    Dim s1
    As StreamReader
    Dim date1
    As
    Object
    Dim rline
    As
    String
    Dim Filelist(1)
    As
    String
    Dim FileName
    As
    String
    Dim i
    As
    Integer
    i = 1
    date1 =
    Filelist(0) =
    "XYZ"
    Filelist(1) =
    "123"
    For
    Each FileName
    In Filelist
    f1 = File.OpenRead(FileName)
    s1 = File.OpenText(FileName)
    rline = s1.ReadLine
    While
    Not rline
    Is
    Nothing
    If Left(rline, 4) =
    "DATE"
    Then
    date1 (i)= Mid(rline, 7, 8)
     i = i + 1
    Exit
    While
    End
    If
    rline = s1.ReadLine
    End
    While
    Next
    Dts.Variables(
    "date").Value = date1(1)
    Dts.Variables(
    "date1").Value = date1(2)
    Dts.TaskResult = ScriptResults.Success
    End
    Sub

  • Saving PDF to last folder

    I have Adobe Reader X 10.0.0, PDF Version 1.4 (Acrobat 5.x). I have been saving PDF's for years, and each time I save, it goes to the last folder I saved to? The other day, I had approximately 15 PDF's that had been scanned to me, and after I had saved 5 of these documents normally, it then started going straight to a temporary folder, and has done ever since, which means I have to go through all the folders to get the one I desire? I have spoken to our I.T. department and they believe its a problem with PDF and not with our system, and I believe otherwise. I can use Recent Places, but when you have done the same thing for years, and the amount I do, change is not always good
    Has anyone encountered the same problem, and can help?

    Hi Kat,
    This is a bit geeky, but the signature appearance that you see on the page is not the signature, but just a graphical representation of the actual signature. The actual signature is a blob of hex encoded data in the PDF file that you don't really see. That aside...
    When you create a digital signature the first thing Acrobat/Reader will ask you to do is select a digital ID to sign with. Acrobat then reads the digital ID and amasses some information to use to create the signature appearance. It then fills in the form field (a signature field is just a special use form field) with the appearance, BUT the signature still hasn't been created. The next thing Acrobat does is asks you to Save the file to disk. This is more geekiness, but it much safer to compute the signature byte range on disk then it is in memory. The simple explanation is it's harder for the bad guys to manipulate the bytes on disk then it is for them to control the bytes in memory and because a digital signature provides document security we err on the safe side and require the file to be written to disk before the signature is created. The other safety item is, we want to sign the signature appearance so that someone can't come along later and modify the appearance without breaking the signature, so it (the appearance) has to be created before the signature proper is created.
    So at this point you've seen the signature appearance and thought that the signature has been created, but it hasn't. When you try to save to the network folder something is preventing Acrobat from saving the file and what ends up happening is the file is rolled back to the pre-signature state and the signature appearance is removed. The file is in essence untouched.
    All of that aside (which is probably more than you really wanted to know) the real question is why can't the file be saved to the network folder. This isn't really a digital signature issue, but rather a network permissions issue.
    Steve

  • Help Fetching files from an FTP server into a DBase or local folder

    Hello Gurus!
    I need help to automate or design/write an app capable of (replace a manual process) reading log files in an ftp server folder, this log files are called CDR (Call Detail Record) and named as follow cdr.txt.20020221010000 meaning that this log file was created on 2002/02/21 at 01:00:00.
    This CDR log files are generated every hour by a Lucent telephone switch using a software/program called EXS ExchangePlus in ASCII format (fixed length delaminated, Char data type). EXS ExchangePlus writes a record in this CDR/log files after the call is completed, i.e. Calling_Number, Called_Number, Date_connect (yyyymmdd), Time_connect (hhmmss), Charged_time (hhmmss, duration of the call), and so on.
    The manual process I am using now is:
    1. Log in the ftp server into the folder where the CDRs log files are, located the latest generated CDRs log files and downloaded them into a local folder/directory. Normally I download the CDR for full day or 24 CDRs log files.
    1a. Optionally sometimes I used a program called VEdit compiled/gather all 24 CDRs into a single file.
    2. Once I have downloaded the CDRs I want to process (normally I process a full day 24 CDRs) I imported then into a Data Base temp table, where then I do the conversion of data types (i.e. Dates and times fields from char type -> to ->Date type) and calculations for billing purposes.
    So if somebody can help with this, I would really appreciated ideas or any kind of information on how to automated this process.
    I�m familiar with Java2 platform (using JDeveloper ) so if somebody has done something like this before using java, this would very helpful. Or Maybe using Visual Basic 6.0 would help too.
    Thanks Gurus, and I look forward to hear from you soon!
    Alf Pathros!

    Thanks for the idea, even though an example would help me more.
    I already found the FTPClient class.
    I also would like to knwo if there is a away Ican append/merged various files CDRs into a single/one to then dump/import it into the database

  • Move email from Inbox to Local Folder using Message Filter moves header only, not contents.

    I created a Message Filter to move email from Inbox to a Local Folder based on Date. The email headers were moved, but not the contents. Since I'm using IMAP, all the emails were deleted from the server.
    I searched for similar problems and I followed one suggestion to "repair" one of the target Local Folders, but that made things worse. Now the header information (Subject, From, Date (now set to the date the transfer was done, not the email received date) is all blank.
    The Local Folder properties indicate the email is contained in
    mailbox:///C:/Users/Ted/AppData/Roaming/Thunderbird/Profiles/c65xcqqf.default/Mail/Local Folders/Archives.sbd/2010
    I can see the messages from other Local Folders here, but the ones "moved" are empty.
    Should this location be changed?
    Is there some way to recover the email contents?
    The info below is from the troubleshooting information tool:
    Application Basics
    Name: Thunderbird
    Version: 31.5.0
    User Agent: Mozilla/5.0 (Windows NT 6.3; WOW64; rv:31.0) Gecko/20100101 Thunderbird/31.5.0
    Profile Folder: Show Folder
    (Local drive)
    Application Build ID: 20150222233048
    Enabled Plugins: about:plugins
    Build Configuration: about:buildconfig
    Memory Use: about:memory
    Mail and News Accounts
    account2:
    INCOMING: account2, , (none) Local Folders, plain, passwordCleartext
    account5:
    INCOMING: account5, , (imap) imap.googlemail.com:993, SSL, passwordCleartext
    OUTGOING: smtp.googlemail.com:465, SSL, passwordCleartext, true
    account6:
    INCOMING: account6, , (imap) imap-mail.outlook.com:993, SSL, passwordCleartext
    OUTGOING: smtp-mail.outlook.com:587, alwaysSTARTTLS, passwordCleartext, true
    account7:
    INCOMING: account7, , (imap) imap.comcast.net:993, SSL, passwordCleartext
    OUTGOING: smtp.comcast.net:465, SSL, passwordCleartext, true
    account8:
    INCOMING: account8, , (imap) imap.comcast.net:993, SSL, passwordCleartext
    OUTGOING: smtp.comcast.net:465, SSL, passwordCleartext, true
    account9:
    INCOMING: account9, , (imap) imap.comcast.net:993, SSL, passwordCleartext
    OUTGOING: smtp.comcast.net:465, SSL, passwordCleartext, true
    Crash Reports
    Extensions
    Lightning, 3.3.3, true, {e2fda1a4-762b-4020-b5ad-a41df1933103}
    Manually sort folders, 1.1, true, [email protected]
    Important Modified Preferences
    Name: Value
    browser.cache.disk.capacity: 358400
    browser.cache.disk.smart_size_cached_value: 358400
    browser.cache.disk.smart_size.first_run: false
    browser.cache.disk.smart_size.use_old_max: false
    extensions.lastAppVersion: 31.5.0
    font.internaluseonly.changed: true
    font.minimum-size.x-western: 10
    font.name.monospace.el: Consolas
    font.name.monospace.tr: Consolas
    font.name.monospace.x-baltic: Consolas
    font.name.monospace.x-central-euro: Consolas
    font.name.monospace.x-cyrillic: Consolas
    font.name.monospace.x-unicode: Consolas
    font.name.monospace.x-western: Consolas
    font.name.sans-serif.el: Calibri
    font.name.sans-serif.tr: Calibri
    font.name.sans-serif.x-baltic: Calibri
    font.name.sans-serif.x-central-euro: Calibri
    font.name.sans-serif.x-cyrillic: Calibri
    font.name.sans-serif.x-unicode: Calibri
    font.name.sans-serif.x-western: Calibri
    font.name.serif.el: Cambria
    font.name.serif.tr: Cambria
    font.name.serif.x-baltic: Cambria
    font.name.serif.x-central-euro: Cambria
    font.name.serif.x-cyrillic: Cambria
    font.name.serif.x-unicode: Cambria
    font.name.serif.x-western: Cambria
    font.size.fixed.el: 14
    font.size.fixed.tr: 14
    font.size.fixed.x-baltic: 14
    font.size.fixed.x-central-euro: 14
    font.size.fixed.x-cyrillic: 14
    font.size.fixed.x-unicode: 14
    font.size.fixed.x-western: 14
    font.size.variable.el: 17
    font.size.variable.tr: 17
    font.size.variable.x-baltic: 17
    font.size.variable.x-central-euro: 17
    font.size.variable.x-cyrillic: 17
    font.size.variable.x-unicode: 17
    gfx.direct3d.last_used_feature_level_idx: 0
    mail.openMessageBehavior.version: 1
    mail.winsearch.enable: true
    mail.winsearch.firstRunDone: true
    mail.winsearch.global_reindex_time: 1387144538
    mailnews.database.global.datastore.id: 11ee7f66-9920-4f7d-9c5e-a83d079bc6e
    mailnews.database.global.views.conversation.columns: {"threadCol":{"visible":true,"ordinal":"1"},"flaggedCol":{"visible":true,"ordinal":"3"},"attachmentCol":{"visible":false…
    mailnews.database.global.views.global.columns: {"threadCol":{"visible":true,"ordinal":"1"},"flaggedCol":{"visible":true,"ordinal":"3"},"attachmentCol":{"visible":false…
    network.cookie.prefsMigrated: true
    places.database.lastMaintenance: 1424815462
    places.history.expiration.transient_current_max_pages: 104858
    plugin.importedState: true
    print.printer_\\TED-PC\EPSON_Stylus_Photo_RX595_Series.print_bgcolor: false
    print.printer_\\TED-PC\EPSON_Stylus_Photo_RX595_Series.print_bgimages: false
    print.printer_\\TED-PC\EPSON_Stylus_Photo_RX595_Series.print_colorspace:
    print.printer_\\TED-PC\EPSON_Stylus_Photo_RX595_Series.print_command:
    print.printer_\\TED-PC\EPSON_Stylus_Photo_RX595_Series.print_downloadfonts: false
    print.printer_\\TED-PC\EPSON_Stylus_Photo_RX595_Series.print_duplex: 1515870810
    print.printer_\\TED-PC\EPSON_Stylus_Photo_RX595_Series.print_edge_bottom: 0
    print.printer_\\TED-PC\EPSON_Stylus_Photo_RX595_Series.print_edge_left: 0
    print.printer_\\TED-PC\EPSON_Stylus_Photo_RX595_Series.print_edge_right: 0
    print.printer_\\TED-PC\EPSON_Stylus_Photo_RX595_Series.print_edge_top: 0
    print.printer_\\TED-PC\EPSON_Stylus_Photo_RX595_Series.print_evenpages: true
    print.printer_\\TED-PC\EPSON_Stylus_Photo_RX595_Series.print_footercenter:
    print.printer_\\TED-PC\EPSON_Stylus_Photo_RX595_Series.print_footerleft: &PT
    print.printer_\\TED-PC\EPSON_Stylus_Photo_RX595_Series.print_footerright: &D
    print.printer_\\TED-PC\EPSON_Stylus_Photo_RX595_Series.print_headercenter:
    print.printer_\\TED-PC\EPSON_Stylus_Photo_RX595_Series.print_headerleft: &T
    print.printer_\\TED-PC\EPSON_Stylus_Photo_RX595_Series.print_headerright: &U
    print.printer_\\TED-PC\EPSON_Stylus_Photo_RX595_Series.print_in_color: true
    print.printer_\\TED-PC\EPSON_Stylus_Photo_RX595_Series.print_margin_bottom: 0.5
    print.printer_\\TED-PC\EPSON_Stylus_Photo_RX595_Series.print_margin_left: 0.5
    print.printer_\\TED-PC\EPSON_Stylus_Photo_RX595_Series.print_margin_right: 0.5
    print.printer_\\TED-PC\EPSON_Stylus_Photo_RX595_Series.print_margin_top: 0.5
    print.printer_\\TED-PC\EPSON_Stylus_Photo_RX595_Series.print_oddpages: true
    print.printer_\\TED-PC\EPSON_Stylus_Photo_RX595_Series.print_orientation: 0
    print.printer_\\TED-PC\EPSON_Stylus_Photo_RX595_Series.print_page_delay: 50
    print.printer_\\TED-PC\EPSON_Stylus_Photo_RX595_Series.print_paper_data: 1
    print.printer_\\TED-PC\EPSON_Stylus_Photo_RX595_Series.print_paper_height: 11.00
    print.printer_\\TED-PC\EPSON_Stylus_Photo_RX595_Series.print_paper_name:
    print.printer_\\TED-PC\EPSON_Stylus_Photo_RX595_Series.print_paper_size_type: 0
    print.printer_\\TED-PC\EPSON_Stylus_Photo_RX595_Series.print_paper_size_unit: 0
    print.printer_\\TED-PC\EPSON_Stylus_Photo_RX595_Series.print_paper_width: 8.50
    print.printer_\\TED-PC\EPSON_Stylus_Photo_RX595_Series.print_plex_name:
    print.printer_\\TED-PC\EPSON_Stylus_Photo_RX595_Series.print_resolution: 1515870810
    print.printer_\\TED-PC\EPSON_Stylus_Photo_RX595_Series.print_resolution_name:
    print.printer_\\TED-PC\EPSON_Stylus_Photo_RX595_Series.print_reversed: false
    print.printer_\\TED-PC\EPSON_Stylus_Photo_RX595_Series.print_scaling: 1.00
    print.printer_\\TED-PC\EPSON_Stylus_Photo_RX595_Series.print_shrink_to_fit: false
    print.printer_\\TED-PC\EPSON_Stylus_Photo_RX595_Series.print_to_file: false
    print.printer_\\TED-PC\EPSON_Stylus_Photo_RX595_Series.print_unwriteable_margin_bottom: 0
    print.printer_\\TED-PC\EPSON_Stylus_Photo_RX595_Series.print_unwriteable_margin_left: 0
    print.printer_\\TED-PC\EPSON_Stylus_Photo_RX595_Series.print_unwriteable_margin_right: 0
    print.printer_\\TED-PC\EPSON_Stylus_Photo_RX595_Series.print_unwriteable_margin_top: 0
    security.disable_button.openCertManager: false
    Graphics
    Adapter Description: Intel(R) HD Graphics 4600
    Vendor ID: 0x8086
    Device ID: 0x0416
    Adapter RAM: Unknown
    Adapter Drivers: igdumdim64 igd10iumd64 igd10iumd64 igdumdim32 igd10iumd32 igd10iumd32
    Driver Version: 10.18.10.3379
    Driver Date: 12-18-2013
    Direct2D Enabled: true
    DirectWrite Enabled: true (6.3.9600.17111)
    ClearType Parameters: ClearType parameters not found
    WebGL Renderer: false
    GPU Accelerated Windows: 2/2 Direct3D 10
    AzureCanvasBackend: direct2d
    AzureSkiaAccelerated: 0
    AzureFallbackCanvasBackend: cairo
    AzureContentBackend: direct2d
    JavaScript
    Incremental GC: 1
    Accessibility
    Activated: 0
    Prevent Accessibility: 0
    Library Versions
    Expected minimum version
    Version in use
    NSPR
    4.10.6
    4.10.6
    NSS
    3.16.2.3 Basic ECC
    3.16.2.3 Basic ECC
    NSS Util
    3.16.2.3
    3.16.2.3
    NSS SSL
    3.16.2.3 Basic ECC
    3.16.2.3 Basic ECC
    NSS S/MIME
    3.16.2.3 Basic ECC
    3.16.2.3 Basic ECC

    Fixed the Trouble Shooting information in previous post.

  • How to install packages from local folder

    Hi all,
    I have downloaded all arch linux packages from the following URLs:
    ftp://mirrors.kernel.org/archlinux/core/os/i686/
    ftp://mirrors.kernel.org/archlinux/extra/os/i686/
    ftp://mirrors.kernel.org/archlinux/community/os/i686/
    and then have saved them to an external hard disk. Then I have attached that external hard disk to my system and packages are available in following folders:
    /mnt/external_hd/Arch_Linux/Core-OS/
    /mnt/external_hd/Arch_Linux/Extra-OS-1/
    /mnt/external_hd/Arch_Linux/Extra-OS-2/
    /mnt/external_hd/Arch_Linux/Community-OS-1/
    /mnt/external_hd/Arch_Linux/Community-OS-2/
    /mnt/external_hd/Arch_Linux/Community-OS-3/
    Now I want to install some or all packages from these folder with the help of pacman command. I am seeing that package corresponding to wvdial command is available in the /mnt/external_hd/Arch_Linux/Extra-OS-1/ folder. But how to use pacman command so that I can install wvdial package from that folder?
    In addition to this if I want to install ALL Extra Packages available in the folders /mnt/external_hd/Arch_Linux/Extra-OS-1/ and /mnt/external_hd/Arch_Linux/Extra-OS-2/ then how to execute the pacman command?
    Please send me step by step instructions so that I shall be able to install some or all downloaded packages.
    I shall remain thankful for this forever.
    Best Regards ...
    Pankaj Kumar

    Hi fukawi2,
    Thanks for reply and searching for my username on google. It is true that I am a freelance s/w developer but I am not installing Arch Linux for any client. I am installing it due to some other reasons. In fact I started working on Red Hat and then on Fedora when I was a student of bachelor degree course in computer applications. Then later I searched open suse and started using it. I am using open suse from its 10.1 version. However the recent version of this distribution has become much resource consuming. So I am in the need of a light weight linux distribution. And I encountered Arch Linux. Then I purchased its installation disk from an online shop and installed it on my system. But only text mode is working at this moment. Since I want to use X window and so I started to follow the syntax of pacman command. But it is connecting to internet. Since my internet connection is slow (average speed of 10kbps) and so I requested the same online shop to download all packages from Arch Linux repository and send them to me. Therefore now I am having all those packages in my local external hard disk drive in the folder mentioned in my first post. Now I want to install packages from these folder. And so in order to get help I have come to this forum.
    I have also followed the steps given on the pages https://wiki.archlinux.org/index.php/Pa … l_commands and https://wiki.archlinux.org/index.php/Pa … repository. But when I am trying to install a particular package using the following command:
    pacman -U wvdial
    then it is asking for a dependency. I know that  the dependent package in my local folder but why it is not being automatically taken by pacman command? Can you please explain it.
    That is why I am asking help only for customization and usages of pacman in order to install packages from local folder. But each member in this forum is only referring to long written manuals and not giving me exact solution which I think will involve four/five steps.
    Best Regards ...
    Pankaj Kumar

  • My outgoing messages are not being saved in my sent folder

    Half of my message that I try to send are not being saved in my sent folder. This is a huge problem causing lost documentation and copies of information and conversations I have had. The error message I get says that thunderbird was unable to save to my sent folder and asks if I would like to try again. If I say yes I get the same message over and over again until I give up and let the message be lost to cyberspace. What can I do to fix this issue and stop loosing valuable information for work?
    I am using an HP laptop running windows 8.

    What protocol is your email account using (POP or IMAP)?
    If POP, you need to make sure your local disk space is enough to save the sent messages. Check where the copies are located by looking at the account settings under '''Copies & Folders'''. When using POP, I believe a copy needs to be saved on both sides: local and server.
    If IMAP, the email server is where such copies are saved. You can also double-check such settings as mentioned above.
    Finally, if your emails are too big, this may be a restriction of your email provider, perhaps get in touch with their support and inquire about this to rule it out as the cause of the problem. Could you share more details about the kind of emails that fail to have a local copy saved or is it for each and every email?

  • Import data from local file: insufficient privilege

    As part of a project I'm working on, I have to load data (only a few thousand records) into a HANA Development instance on HCP. Last week I did this several times with no problem using File > Import from HANA Studio and choosing Data From Local File. Yesterday and today I get this message (most of the time, but not all the time): SAP DBTech JDBC: [258]: insufficient privilege: Not authorized.
    Does anybody know why this might be and what do to about it?
    Are there batch alternatives? I have not found any. The INPUT INTO statement also gives authorization problems.

    Thanks for Your replies.
    Jochen - I can't find schema.ini file and your link doesn't work - I mean that site is under construction
    Mahesh - I tried to changed cells' format in excel, but file is saved without changes (as csv).
    Pandey - I read about DTW but I can't find it anywhere. Is there a site where it could be downloaded from?
    Finally I solved this problem. After saving file as xls I could changed cells' format and save with changes. It helped - data '1-10-103' is imported correctly.
    Regards,
    Hmg

  • Can't public to local folder

    Hey, all...
    I posted this last week on the OS X Server discussions, but haven't gotten a reply. Thought I'd give this section a try, so I apologize for the duplicate postings.
    Two weeks ago, LDAP took a nose dive on us. I backed up the users' data to a spare drive, wiped the system drive clean and re-installed. Due to the fact that this school still uses Mac Manager (cringe cringe), I first went from OS X Server 10.3 to 10.4. Ran all updates, pulled all home dirs back, re-imported all users. All was well in the jungle.
    However, I'm now getting reports that iWeb will not let the kids publish to a folder in their home directories. They can open iWeb just fine, but when they publish to a local folder, iWeb crashes. This happens for both old users and users created after the server rebuild. Here's what I get in the log when iWeb crashes...
    iWeb[475] SFUTemporaryDirectory: Error -5000 from FSFindFolder(kTemporaryFolderType) for the user's home directory volume
    iWeb[475] SFUTemporaryDirectory: Could not find ANY volume temporary folder.
    The odd things are that:
    A - Students have used these same Macs before to create their pages
    B - Not all of the Macs seem to be affected by this issue.
    C - Deleting/readding the LDAP entry in Directory Access does not appear to solve this.
    D - Nor do reboots.
    E - Local accounts are not problematic.
    F - Wiping out iWeb preferences and the iWeb folder in ~/Library/Caches/ does not help, either.
    Any ideas, people?
    TIA,
    TRMG

    Any ideas? Just keeping this thread fresh...
    TIA!

  • Is there a way to "download" photos from a local folder?

    I have some photos in a local folder that I rescued from a dead laptop. When I download photos directly from my memory cards I always create subfolders by shot date, which is hugely useful for keeping them organized. Is there any way to use the Photo Downloader to import photos from a local folder, so that I don't have to create all those folders manually?
    Any ideas would be much appreciated.

    I should add that I have tried creating an .iso file from the folder and mounting it as a drive, but it isn't recognized as an external device by Bridge.

Maybe you are looking for

  • Running bat-files from Java

    Hello, I have been trying to launch a bat-file from my Java code, running under windows, but with no success. Here is my simple code: Runtime.getRuntime().exec(new String[] {          "C:\\temp\\test.bat"       });This does nothing at all and generat

  • Loss of sound - urgent help needed

    Suddenly sound has disappeared from track four (have tried other tracks to no avail). I have tried everything but have obviously missed something. Please see jpg of audiomixer http://tv-moen.dk/audiomixer.jpg and http://tv-moen.dk/timeline.jpg Sigurd

  • How can i get the passcode for my Ipad

    Hi, I have entred a wrong password to my IPad and now its looked and asking for passcode what shall i do to get it please

  • Mitigation still required even for Rejecting Request

    Hello All, Risk owner is trying to reject request (Approval status = Reject) but still it says to mitigate risk. Also tried to change approval status = Reject and re run risk analysis again in Risk violation table and submit the request. Here it show

  • Warzone2100 fails to display battlefield

    So, i installed warzone2100 from the repos but it will not load cutscene(like the introduction) and when i start the tutorial or a game i can see the menus but not the units just a black screen. if i click on a unit then it will highlight the bok aro