Html5 sqlite Database?

Is there anyway to to upload a client side framework and upload it as html content so that you can connect to a database that does not have to link out to the web? -- for example a restaurant database etc. 
thx
sg

Hi Deep,
Yes you can use SAP IU5 to create the required mobile application.
You can refer to the link below to view demo applications such as Approve purchase orders or Shopping Cart:
SAPUI5 SDK - Demo Kit
Regards,
Ashvin

Similar Messages

  • Image not storing in SQLite Database

    Hi All
    I am creation an application in WPF C# in which i have created an Ink Canavs 
    now i want to insert the InkCanvas  Data or stockes in SQLite Database for that i hv created an folder in my application
    and on"btnSaveCanvasImg" button Clicked i am saving the image of InkCanvas in a folder and on "btnSaveImgInDatabase" button clicked The saved image stored in the database 
    But when i clicked on"btnSaveCanvasImg" button image saved in folder , but when clicked on "btnSaveImgInDatabase" button the image doesn't store in the database.
    following is my code
    XML:-
    <Window x:Class="InkCanvasInDatabase.MainWindow"
            xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
            xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
            Title="MainWindow" Height="800" Width="600">
        <Grid>
            <InkCanvas Name="MainInkCanvas" HorizontalAlignment="Left" Height="500" VerticalAlignment="Top" Width="595">
                <InkCanvas.Background>
                    <ImageBrush ImageSource="C:\Testimonial_Project\Assets\Images\notePaper.png"/>
                </InkCanvas.Background>
            </InkCanvas>
            <Button x:Name="btnSaveCanvasImg" Content="Save Canvas Image" HorizontalAlignment="Left" Margin="33,599,0,0" VerticalAlignment="Top" Width="200" Height="51"
    FontSize="20" Click="btnSaveCanvasImg_Click"/>
            <Button x:Name="btnSaveImgInDatabase" Content="Save Image In Database" HorizontalAlignment="Left" Margin="281,599,0,0" VerticalAlignment="Top" Width="238" Height="51"
    FontSize="20" Click="btnSaveImgInDatabase_Click"/>
        </Grid>
    </Window>
    C# Code:-
    using System;
    using System.Collections.Generic;
    using System.Linq;
    using System.Text;
    using System.Threading.Tasks;
    using System.Windows;
    using System.Windows.Controls;
    using System.Windows.Data;
    using System.Windows.Documents;
    using System.Windows.Input;
    using System.Windows.Media;
    using System.Windows.Media.Imaging;
    using System.Windows.Navigation;
    using System.Windows.Shapes;
    using System.Windows.Ink;
    using System.Windows.Ink.AnalysisCore;
    using Microsoft.Win32;
    using System.IO;
    using System.Data.SQLite;
    namespace InkCanvasInDatabase
        /// <summary>
        /// Interaction logic for MainWindow.xaml
        /// </summary>
        public partial class MainWindow : Window
            string imagename;
            public MainWindow()
                InitializeComponent();
            public void loadInkAnalyzer()
                InkAnalyzer theInkAnalyzer = new InkAnalyzer();
                theInkAnalyzer.AddStrokes(MainInkCanvas.Strokes);
                AnalysisStatus status = theInkAnalyzer.Analyze();
                if (status.Successful)
                    saveInkCanvasBitmap();
                else
                    MessageBox.Show("Recognition Failed");
            public void saveInkCanvasBitmap()
                RenderTargetBitmap rtb = new RenderTargetBitmap((int)MainInkCanvas.Width, (int)MainInkCanvas.Height, 0,0, PixelFormats.Default);
                rtb.Render(MainInkCanvas);
                BmpBitmapEncoder encoder = new BmpBitmapEncoder();
                encoder.Frames.Add(BitmapFrame.Create(rtb));
               // FileStream fs = File.Open(@"C:\inkCanvas_Images\test.jpg", FileMode.Create);
                FileStream fs = File.Open(@"C:\Users\xeniun1\Desktop\24.02.2015 Xenium_Project\23.02.2015 InkCanvas\InkCanvasInDatabase\InkCanvasInDatabase\InkCanvas_Images\.jpg", FileMode.Create);
                encoder.Save(fs);
                fs.Close();
            public void insertImgInDatabase()
                byte[] signature;
                using (MemoryStream ms = new MemoryStream())
                    MainInkCanvas.Strokes.Save(ms);
                    signature = ms.ToArray();
                string stConn = @"Data Source=inkCanvas_DB.db;Version=3";
                SQLiteConnection sqliteConn = new SQLiteConnection(stConn);
                sqliteConn.Open();
                string sql = "INSERT INTO User_Details (User_Text) VALUES (@Sig)";
                SQLiteCommand comm = new SQLiteCommand(sql, sqliteConn);
                comm.Parameters.AddWithValue("@Sig", signature);
                comm.ExecuteNonQuery();
           private void btnSaveCanvasImg_Click(object sender, RoutedEventArgs e)
                loadInkAnalyzer();
                //MainInkCanvas.Strokes.Clear();
                MessageBox.Show("Ink Canvas Save as Image");
            private void btnSaveImgInDatabase_Click(object sender, RoutedEventArgs e)
                insertImgInDatabase();
                MainInkCanvas.Strokes.Clear();
                MessageBox.Show("Ink Canvas Image saved in Database");
    Plz provide solution for this 
    Regards

    Please close your previous threads by marking helpful posts as answer before you start a new one.
    The type of the image columns should be BLOB. And make sure that you are looking at the inkCanvas_DB.db in the output folder of your .exe ([your_project_foder]/bin/Debug or [your_project_foder]/bin/Debug) because it is this database that the data gets written
    to unless you specify an absolute path in the connection string:
    string stConn = @"Data Source=C:\Your_Project_Folder\inkCanvas_DB.db;Version=3";
    Please upload a reproducable sample of your issue to OneDrive and post the link to it here for further help.
    And please remember to close your threads by marking helpful posts as answer.

  • How to determine the connection string to a SQLite database, in C# code

    Hello. I'm trying to figure out how to specify the connection string to a SQLite database, I would like to access using the following code:
    string connectionString = null;
    SqlConnection connection;
    SqlCommand command;
    SqlDataAdapter adapter = new SqlDataAdapter();
    DataSet ds1 = new DataSet();
    string sql = "SELECT DataName, Data, Id, UserId, DateLastUpdated FROM MainTable";
    connectionString = "Data Source=C:\\SQLITEDATABASES\\SQLITEDB1.sqlite;Version=3;";
    connection = new SqlConnection(connectionString);
    try
    connection.Open();
    command = new SqlCommand(sql, connection);
    catch
    The value I assigned to the variable connectionString, in the code above, I obtained somewhere from the Internet. It does not work. I'm using Visual Studio 2013, against the file sqlite-netFx451-setup-bundle-x86-2013-1.0.96.0.exe, which
    I installed, and got from
    here.
    My application's App.config file looks as follows:
    <?xml version="1.0" encoding="utf-8"?>
    <configuration>
    <configSections>
    </configSections>
    <connectionStrings>
    <add name="DC_Password_Saver.Properties.Settings.DC_Password_SaverConnectionString" connectionString="data source=&quot;C:\Users\patmo_000\Documents\Visual Studio 2013\Projects\DC Password Saver\DC Password Saver\DC Password Saver.db&quot;" providerName="System.Data.SQLite.EF6"/>
    </connectionStrings>
    <startup>
    <supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5.1"/>
    </startup>
    </configuration>
    I tried to use the value assigned to connectionString in the XML settings above, replacing single backslash characters with double backslash characters, because the Visual Studio editor flagged them as unrecognizable, and wound up with the
    following.
    SqlDataAdapter adapter = new SqlDataAdapter();
    DataSet ds1 = new DataSet();
    string sql = "SELECT DataName, Data, Id, UserId, DateLastUpdated FROM MainTable";
    connectionString = "data source=&quot;C:\\Users\\patmo_000\\Documents\\Visual Studio 2013\\Projects\\DC Password Saver\\DC Password Saver\\DC Password Saver.db&quot;";
    connection = new SqlConnection(connectionString);
    The above code however does not work either. So again, does anyone know how I can specify in C# code, a connection string to access my SQLite database? Thanks in advance for your reply.

    What does SQLite connection strings has to do with WPF?
    You will find some valid connection strings here:
    https://www.connectionstrings.com/sqlite/
    But you cannot use the SqlConnection class to connect to a SQLite database. You will need to download and add a reference to the System.Data.SQLite library and then use the SQLiteConnection class:
    connection = new System.Data.SQLite.SQLiteConnection(connectionString);
    try
    connection.Open();
    command = new System.Data.SQLite.SQLiteCommand(sql, connection);
    catch
    Please refer to the following article for more information and an example of how to connect and read and write data from an SQLite database using C#:
    http://blog.tigrangasparian.com/2012/02/09/getting-started-with-sqlite-in-c-part-one/.
    There is contains a link where you can download the required assemblies.
    Hope that helps.
    Please remember to mark helpful posts as answer to close your threads and then start a new thread in an approproate forum if you have a new question.

  • [SOLVED] PowerDNS (pdns) - SQLite database '...' does not exist yet

    PowerDNS 3.2-5 is having some issues connecting to my backend database (sqlite3).
    beta powerdns # tail /var/log/errors.log
    May 7 20:12:41 localhost pdns[19098]: Caught an exception instantiating a backend: Unable to launch gsqlite3 connection: SQLite database '/etc/powerdns/database.sqlite' does not exist yet
    But when i do:
    beta powerdns # sqlite3 /etc/powerdns/database.sqlite
    SQLite version 3.7.16.2 2013-04-12 11:52:43
    Enter ".help" for instructions
    Enter SQL statements terminated with a ";"
    sqlite> select * from domains;
    1|<myhostname>|||NATIVE||
    sqlite>
    sqlite3 It fetches the records and domains to my liking but not PowerDNS.
    Same thing goes for a blank db without any domains or records, i can query it but not PowerDNS.
    Followed this guide in order to setup the proper tables and columns: http://doc.powerdns.com/html/gsqlite.html#idp9379264
    (without the DNSSEC part, i'll give that a go later on)
    It obviously loads the sqlite3 module, and tries to connect to the backend, which doesn't work, so the ArchLinux package is fine i'm guessing.
    More info:
    * Link to package: https://www.archlinux.org/packages/comm … 6_64/pdns/
    * chmod == 777
    * chown == nobody:nobody (and tried root:root as default)
    * running as root (not pdns)
    Last edited by Torxed (2013-05-08 10:52:05)

    Solved it.
    The guides are vague in this regard but once you've just read the config twice you'll understand the logic.
    First of all, no absolute paths for sqlite3, it should be:
    launch=gsqlite3
    gsqlite3-database=database.sqlite
    Secondly, find your chroot, and point it to your database location or put your database here (whichever):
    chroot=/var/empty
    The folder structure should be:
    /var/empty/database.sqlite
    And this py pointing to ./database.sqlite when starting sqlite3 in pdns, it should be able to lock on to the database.
    Peachy!

  • SQLITE database has no tables on device?

    Hello -
    When I try to run my app on my iPhone, the sqlite database is found, etc., HOWEVER, when I query it, it says the table doesn't exist. In fact none of the tables do.
    Do I have to do something special to get the database and its tables over to the phone itself?
    Thanks

    Is the database that's part of the application bundle populated, or is it only the database that was created in the simulators Documents folder that is populated?

  • Is it possible to to use SQlite database as an External Content type?

    Hi guys,
        I need some help in accessing data from an external database(SQlite) and use it in sharepoint 2010.  I have a list in sharepoint 2010 but some of the fields must come from SQlite database.  Whenever the list is updated, the corresponding
    fields from SQlite database should also be updated. 
       I've been looking on some examples on using external content types but I've only encountered examples using SQL server. I'm new to sharepoint 2010 and I have little idea to get this done.  Can someone kindly assist me on this? 
    Thank you very much.
    Regards,
    Peter

    Hi Peter,
    SharePoint is designed to use Business Connectivity Services when talking to external data sources.
    The Microsoft Business Connectivity Services (BCS) can connect to external data from the following types of databases:
    Microsoft SQL Server
    Oracle
    OLE DB
    ODBC
    So you may connect to SQLite through ODBC. Take a look at this example how to connect to MySQL through ODBC
    Connecting MySQL using BCS. You may create an External Content Type for SQLite the same way.
    Dmitry
    Lightning Tools Check
    out our SharePoint tools and web parts |
    Lightning Tools Blog | Мой Блог

  • Please tell me the query,If i want to fetch before 5 days data into sqlite database in ios ?

    Please tell me the query,If i want to fetch before 5 days data from sqlite database in ios ?

    kumar190 wrote:
    Please Can you send me the link of Sq-lite(Making own Schema). Which will be help full for me...
    Here is the general concept for a database schema: http://en.wikipedia.org/wiki/Database_schema
    This is how you would create a table in SQLite: https://sqlite.org/lang_createtable.html

  • Including sqlite database in a windows air installer

    I am trying to create a cross platform air installer that uses a sqlite database.
    This is the code I use to copy the database from the installer to the users application directory:
    var dataFile:File = File.applicationDirectory.resolvePath("data/myDataStorage.db");
    var dataUserFile:File = File.documentsDirectory.resolvePath("myDataStorage.db");
    When using the database I access it here:
    var file:File = File.documentsDirectory.resolvePath("myDataStorage.db");
    This works great on a mac.  On a PC it does not work.  Can anyone recommend a resource or give me a tip or two?
    Thanks

    I have been looking into this problem.  It turns out that it is not just a Windows problem it also happens on a Mac.  Here is what is happening:
    I am trying to copy a sqlite .db from the read only application directory to the users documents directory.
    First I setup these vars:
        var dbFile:File =  File.applicationDirectory.resolvePath("db/myDataStorage.db");
         var dbWorkedFile:File =  File.documentsDirectory.resolvePath("myDataStorage.db");
    If I do this it works:
    dbFile.copyTo(dbWorkedFile, true);  //If I set the overwrite param to 'true' then it works.
    If I use this code:
    dbFile.copyTo(dbWorkedFile);
    or
    dbFile.copyTo(dbWorkedFile, false);
    I get the following error:
    Error #3012: Cannot delete file or directory.
        at flash.filesystem::File/copyTo()
    The funny thing is that I the destination documents directory will get a 4k blank file when the error occurs.  In addition if I try the same copy code on an image I get the same error but the whole image does get copied.
    In the end I want my code to do something like the following so that it copies the database over only if it does not exist.  If I run this code now I get a 4k .db file and a 3012 error.  Any ideas?
    public function copyDB():void
                    var dbFile:File = File.applicationDirectory.resolvePath("db/myDataStorage.db");
                    var dbWorkedFile:File = File.documentsDirectory.resolvePath("myDataStorage.db");
                    if(!dbWorkedFile.exists){
                        trace("db Does Not Exist");
                        dbFile.copyTo(dbWorkedFile);
                    } else { 
                        trace("db Exists so do nothing"); 
                    dbConn = new SQLConnection(); 
                    dbConn.openAsync(dbWorkedFile); 

  • I want to know how tabs are determined in the places.sqlite database ??

    I want to know how tabs can be known in the places.sqlite database..Am doing a project on today's browsing habits.Is there any way of finding this in the database.I opened the database through add-on..I really need help!!

    Tabs aren't stored in the places.sqlite. Only bookmarks and history items are stored in that file.
    * SQLite Manager: https://addons.mozilla.org/firefox/addon/sqlite-manager/
    Tabs and windows are stored in the sessionstore.js file.
    *http://kb.mozillazine.org/sessionstore.js
    * http://forums.mozillazine.org/viewtopic.php?f=38&t=622036&start=60&p=12098147#p12098147

  • How to copy sqlite database from applicationDirectory to documentsDirectory

    I am having problems using the ‘File’ function in Adobe Flex to copy a sqlite database from the read only applicationDirectory to the users documentsDirectory.  When I use the code below the only thing that appears in the user documentsDirectory is a 1k to 4k file.  The actual file size of the database is around 350k.
    Am I not giving the file enough time to copy over?
    I am developing on a Mac but I think I remember duplicating the error on a PC as well.  This bug has been keeping me from launching my app for far too long.  Any ideas would be appreciated.
    Here is the code I am using:
    public function copyDB():void
              var dbFile:File = File.applicationDirectory.resolvePath("db/myDataStorage.db");
              var dbWorkedFile:File = File.documentsDirectory.resolvePath("myDataStorage.db");
              if(!dbWorkedFile.exists){
                        trace("db Does Not Exist");
                        dbFile.copyTo(dbWorkedFile);
              } else {
                        trace("db Exists");
                        //The database has already been installed.  Launch app.
              dbConn = new SQLConnection();
              dbConn.openAsync(dbWorkedFile);
    I got the above code from this Adobe Cookbook recipe:
    http://cookbooks.adobe.com/post_Include_existing_SQLite_database_in_an_AIR_applica-10483.h tml
    Thanks

    I got it working. 
    I tried the copyToAsync method and it did not work.  While testing the copyToAsync I found a path that brought me to the
    'preinitialize' phase of the application startup sequence. 
    I fixed it by calling my copyDB() function from the 'preinitialize' call in the windowedApplication tag like:
    preinitialize="copyDB()".
    I had been calling it from the applicationComplete phase of startup.  Now it seems so obvious.
    Thanks again for sending me down the path that finally fixed it.

  • How to connect to and communicate with an SQLite database in AIR/Flex

    Hey guys,
    I recently decided I would try programming a vocabulary-training program in AIR, so I could use it on Linux as well. I got stuck pretty soon. I am trying to connect to a local SQLite database and I obviously fail epically. Posting the source code of the application here:
    <?xml version="1.0" encoding="utf-8"?>
    <mx:WindowedApplication xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute">
       <mx:Script>
          <![CDATA[  
               import flash.filesystem.File;
              import flash.data.*;
             import mx.controls.Alert; 
                      private var dbFile:File;
                   private var conn:SQLConnection;
                   // -- AUTO INIT FUNCTIONS --------------------------------------------------- /
                   private function init():void {
                        // Create a File Reference to the Included DB
                        dbFile = File.applicationDirectory.resolvePath( "../slovniky.db" );
                        // Create SQL Connection
                        conn = new SQLConnection();
                        // Event Listener that will tell us when the DB is opened
                        conn.addEventListener(SQLEvent.OPEN, openSuccess);
                        // Event Listener that will tell us if an error occurs
                        conn.addEventListener(SQLErrorEvent.ERROR, openFailure);
                   // -- EVENT HANDLERS -------------------------------------------------------- /
             private function starter() :void {
                  slovickoEn.enabled = true;
                  nazor.enabled = true;
                  odeslat.enabled = true;
                  zrusit.enabled = true;
                  start.enabled = false;
                  // Otevírám spojení s databází v asynchroním módu
                   conn.openAsync( dbFile );
             private function openSuccess( event:SQLEvent ):void {
                        // Pokud se spojení povede!
                        Alert.show("Spojení se zdařilo!");
               private function openFailure( event:SQLEvent ):void {
                        // Pokud spojení selže!
                        Alert.show("Spojení se nezdařilo!")
             private function kontrola() : void {
                  if (nazor.text != "") {
                       if (nazor.text == "Pes") {
                       Alert.show("Správně!");    
                       else {
                       Alert.show("Špatně!! " + "Napsané slovíčko bylo " + nazor.text);     
          ]]>   
       </mx:Script>
       <mx:VBox width="400" height="200"
                   horizontalCenter="0" verticalCenter="0" backgroundColor="#FFFFFF"
                   paddingBottom="20" paddingLeft="20" paddingRight="20" paddingTop="20"
       >
          <mx:HBox width="100%" verticalAlign="middle" horizontalAlign="center">
             <mx:Label text="Anglicky:"/>
             <mx:TextInput id="slovickoEn" editable="false" text="Dog" enabled="false"/>
          </mx:HBox>
          <mx:HBox width="100%" verticalAlign="middle" horizontalAlign="center">
             <mx:Label text="Česky:"/>
             <mx:TextInput id="nazor"  enter="kontrola()" enabled="false"/>
          </mx:HBox>
          <mx:HBox width="100%" horizontalAlign="center">
             <mx:Spacer width="50" height="10"/>
             <mx:Button id="odeslat" label="Odeslat" color="#0D8401" click="kontrola()" enabled="false"/>
             <mx:Button id="zrusit" label="Zrušit" color="#0D8401" enabled="false"/>
          </mx:HBox>
          <mx:HBox width="100%" horizontalAlign="center">
             <mx:Spacer width="50" height="10"/>
             <mx:Button id="start" label="Start" color="#0D8401" click="starter()" enabled="true"/>
          </mx:HBox>
       </mx:VBox>
    </mx:WindowedApplication>
    The Run of the program tells me this:
    TypeError: Error #1009: Cannot access a property or method of a null object reference.
         at pes/starter()[C:\air\projects\pes\src\pes.mxml:45]
         at pes/__start_click()[C:\air\projects\pes\src\pes.mxml:93]
    I would appreciate any help or a how-to. I am an absolute beginner with some experience from HTML, CSS, PHP and rarely JS. What am I doing wrong? File attached for easier manipulation as well.
    Erthy

    Hi,
    Here is the complete example for the same with the code.Let me know if you have any issue with this.
    http://shardulbartwal.wordpress.com/2008/04/14/adobe-air-and-sqlite-connectivity/
    with Regards,
    Shardul Singh Bartwal

  • Creating sqlite database from code

    Hi,
    I am writing integration test with sqlite database.Before running a test,I want to create a database using a script ie .sql file.Is it possible to do so using Flex API for databases? If so,how?

    @kinganand - Currently I don't know of an equivalent to DbUnit for AIR, so you'd have to roll something of your own accord.  Maybe search Google Code or GitHub for projects that may have attempted to tackle this problem?
    -Brian

  • SQLite Database and TLF Text in Flash CS5

    I encountered the following problem when working with the built-in sqlite database and using TLF TextFields in Flash CS5
    When I tried to use TLF TextFields alone, I don't face any probelem,
    but when I start using a database connectivity code, the TLF TextFields placed on the stage are not shown, but instead, the SWF file is showing the built-in preloader with five dots looping.
    I tried changing the default Linkage in ActionScript 3 Settings to Merge Mode, but in this case nothing is shown, not the textfields, neither the preloader.
    I think the problem is related to loading the TLF Text Engine, but I couldn't figure out what to do.
    The following is my code placed in first frame:
    ==========================================
    import flash.data.SQLConnection;
    import flash.events.SQLErrorEvent;
    import flash.events.SQLEvent;
    import flash.filesystem.File;
    var conn:SQLConnection = new SQLConnection();
    conn.addEventListener(SQLEvent.OPEN, openHandler);
    conn.addEventListener(SQLErrorEvent.ERROR, errorHandler);
    // The database file is in the application directory
    var folder:File = File.applicationDirectory;
    var dbFile:File = folder.resolvePath("DBSample.db");
    conn.openAsync(dbFile);
    function openHandler(event:SQLEvent):void
        trace("the database was created successfully");
    function errorHandler(event:SQLErrorEvent):void
        trace("Error message:", event.error.message);
        trace("Details:", event.error.details);
    stop();
    ==========================================
    and I am using one TLF TextField on the stage for later use.
    Publish Settings>> Player: AIR 2.6
    and not to forget, when I test the file using Contol Panel >> Test in Air Debug Launcher (Desktop), the file is working correctly.
    but when I open the generated SWF file, the problem appears.
    I hope that I find some help
    Thanks.

    http://www.flashandmath.com/flashcs5/rsltip/

  • Insert SQLite database into a phone app

    Would like to use a sqlite database in my android/ios phone app how would I be able to implement this into my project?

    Thank you for your response.  Anouther question is now that i have the database in the app and running, how would i call the database to get specific information. Example: I have a database which consists of students name on the columns and on the rows i have homerooms, the apps purpose is to find the students id number by matching the rows and columns to get the student id number.
    Also there are multiple dataabases, for the different schools. that would need to accesed locally on the phone.
    How would i acomplish this using dreamweaver.  Please see example below
    Screen one would ask for School name which you would pick
    Screen two would ask for the homeroom
    Screen three would ask for students name
    Screen Four would tell you there ID number
    Thank you for your great answers and quick responses

  • HT204433 Can an HTML widget access SQLite databases?

    I want to store some data in SQLite databases rather than localStorage for a mini-quiz at the end of the textbook I am creating. Is this possible?

    localStorage or remote off your servers...that's it.

Maybe you are looking for

  • 10.7 update and now my iphones/ipod is not being recognized.

    10.7 update and now my iphones/ipod is not being recognized in windows 7 service pack 1. I have 2 iphones and an ipod 3G. I have to go into services and stop the apple mobile device and start it up again to get my devices recognized. Anyone else havi

  • Purchase Order form printing error.

    Hi all experts, I am not sure which category I should put this question to. Please guide me if I have raised the question in the wrong category, so that I can raise it at the right category. Sorry! I am having some problems in printing Purchase Order

  • About include text in sapscript form printing

    hi experts:     I am learning about form printing,the control command-include,for example:INCLUDE ZTEST OBJECT TEXT ID ST. the question is:how to ceate the text?    thanks

  • My notebook starts to beep when it is powered on

    My notebook starts to beep when it is powered on and does not starts  windows untill i press the mute button.After i press the mute button then the beep sound offs and starts the windows to load. Please help me

  • Get Parent Item of AdvancedDataGrid selectedItem

    I have an AdvancedDataGrid (ADG) where the top level items are instances of my custom valueObject Class "State". The second level items are instances of another custom valueObject Class - "City". When I select an "City" item in the ADG, I want to fin