Multiple users of a database

I happily use an AppleWorks database at work. Other users on the network have access to the same database. I'm sure the answer is going to be "no" but is there any way of allowing multiple users to access the same database at the same time? I can see that it would not be possible for two users to access the same record on the database, but if only they could access other records on it, life would be so much easier!
Any help gratefully received,
Michael
iMac G5, iMac G4, iBook   Mac OS X (10.4.7)  

Hello
As far as I know, Appleworks is not build to allow several users to enter a document at the same time.
If you want this feature, look at FileMaker.
Yvan KOENIG (from FRANCE vendredi 4 août 2006 23:12:58)

Similar Messages

  • How to work with multiple users accessing one database

    I am a newbie in oracle.
    I want to give access to my oracle database for more users.
    I created oracle connection with c# project. The application allow to user to insert data to a database table. Now I want to give access to the different users with a login. Is there any way to give access other users to the same database using their username and passwords?
    I'm confused. Please help.
    thank you.

    In the database, set up your data schema with data tables, views, and stored procedures to support your application.
    That schema owner should only be a trusted data administration person.  Let's call that schema APP_DATA.
    Then you set up another schema called APP_DATA_USERS with no privileges and no data.
    Then you create an Oracle ROLE object called APP_DATA_ROLE.
    You grant the app_data_role to the app_data_user account.
    You then grant object permissions in the APP_DATA_ROLE that you want the app_data_user to have for the app_data data objects, like Create SESSION, SELECT on TABLE X. or SELECT, INSERT, UPDATE on TABLE Y.
    Now the APP_DATA_USERS only has specific permissions needed on specific app_data data objects that you control by the app_data_role.
    Then your application only opens connections to Oracle via the single APP_DATA_USERS account
    which is constrained by the APP_DATA_ROLE permissions on what can be done in the data schema APP_DATA.
    in your web or app config you create the connection information for the single app_data_user account.
    Putting the database aside, you now create the application layer with login controls so many users can use the application.
    But when they need data, the application only makes a connection to the single APP_DATA_USERS account
    Oracle ODP.NET auto handles the multiple session connections by the multiple application users to the single APP_DATA_USERS account.
    In summary the multiuser access is controlled by the application
    all making connections (sessions) with a single, limited privilege app_data_user account on the database side.

  • How can I Manage Multiple Users?

    My wife and I both want to organize and edit our digital photos with PSE10.  Up until now, I have managed all of our photos by myself, and I have synchronized all data on both of our computers (and backed up all of our data to an external harddrive).  Now that my wife also wants to organize and edit our photos on her computer, I am finding it difficult to synchronize the PSE Catalogs and photos on our two computers.  So, I am looking for a better procedure. 
    Should I (and can I) keep my PSE Catalog & Photos on: 
    (1) an External Harddrive (which would be connected to only one computer at a time, while that computer user is organizing and editing photos), or 
    (2) on a Home Network location where both users could access the photos for organizing and editing (with a "lockout" for photos which are being edited by the other computer user)? 
    Are there other good or better procedures for managing multiple users of PSE? 
    My computer is running Win7 Home Premium 64-bit. 
    My wife's computer is running Windows Vista Home Premium 32-bit.

    Thank all of you for your replies. 
    Re SOFTWARE CHOICES:
    I decided that my wife and I will each use different software on our different computers.
    I decided NOT to upgrade my wife's software from "Windows Live Photo Gallery" (WLPG) to "Adobe Photoshop Elements 10" (PSE).  After a detailed discussion of my wife's wishes, I discovered that she only wants to (1) move our pictures into folders, (2) cull the pix, and (3) create "Album" folders (with only our most memorable pix) to be printed as 8.5" x 11" pages for the Albums.  She wants me to crop, edit, add captions, and print the Album pages.  See the image at the bottom for our current Photo Mgmt Plan.
    I will continue to use "Lightroom" (Lr).
    Re SYCHRONIZATION: 
    I decided that we both can use the same picture files.  I use "GoodSync" to sychronize files between my computer and my wife's computer (and between my computer and my backup HDD). 
    My wife's "WLPG" does NOT appear to use a database.  My changes (including "Keyword" edits or adds) show up in her "WLPG" program, when picture files have been changed by myself in "Lr" and sychronized with her computer.
    After my wife adds folders and/or changes the folder contents, I sync her computer with mine.  I open her folders (which are now also on my computer) in "Lr", and "Import" any of her new and duplicate pictures into "Lr".  Surpisingly and thankfully, the pictures that have been moved to a new folder by my wife do NOT show up in "Lr" in the previous folder (i.e. I do NOT have to find and delete any "Missing" images which were in the previous folder location).
    Re MULTIPLE USERS OF A DATABASE:
    I do not need to use this now, but I read that "Lr" is designed to work with the "Lr" database (and pictures) on an external HDD.
    Thank all of you again for your very helpful replies.

  • Add multiple users to a certain database in the SQL server in one go

    I wonder if there is any method to add multiple users to a certain database in the SQL server in one go and without using transact code.
    I can add a single user to a certain database “Q” for example by right click on the user “U1” for example then properties then in user mapping tab select
    the database “Q”, so there should be a method to add multiple users ( U1,U2,U3…) to this database?
    Best Regards,
    Ahmad

    Many thanks Visakh16,
    I can do this using the below script, but what I am searching for is do to this without any scripting.
    USE TestDatabase; --Make sure you have the right database
    DECLARE @sql VARCHAR(MAX) = '';
    SELECT @sql = @sql + 'CREATE USER ' + name + ' FOR LOGIN ' + name + ';
    ' +
    'GRANT CREATE TABLE, CREATE PROCEDURE, CREATE VIEW, VIEW DEFINITION TO ' + name + ';
    FROM sys.server_principals p
    WHERE p.type in ('S','U') -- SQL Logins and Windows Login. Do not change!
    and p.name in ('U1','U2','U3'); -- List of names to add. alter to suit
    PRINT @sql; -- Show the statements being executed in the messages pane
    EXEC(@sql); -- Run the statements that have been built
    Thanks,
    Ahmad

  • Database access by Multiple users

    Hi All,
    I have a ztable and the user has to access the ztable to find the max of  ID to insert the next record. This ID increment was done in coding level. It was working fine when a user hit the DB. If multiple user access the same, it throws the error as duplicate records. How to solve this? Can any one give the soln for this?
    Thanks in Advance,
    Pon

    hi Murugesh,
    whenever you are updating the data into table through the report.
    you need to lock the table before inserting into the table and unloak after inserting the records into the Table.
    locking.
    FORM lock_spotter.
      LOOP AT gt_spotter INTO gs_spotter.
        CALL FUNCTION 'ENQUEUE_EZSPOTTERS'
             EXPORTING
                  mode_zspotters = 'E'
                  aktnr          = gs_spotter-aktnr
                  artnr          = gs_spotter-artnr
                  mebme          = gs_spotter-mebme
                  unique_key     = gs_spotter-unique_key
                  x_aktnr        = ' '
                  x_artnr        = ' '
                  x_mebme        = ' '
                  x_unique_key   = ' '
                  _scope         = '2'
                  _wait          = ' '
                  _collect       = 'X'
             EXCEPTIONS
                  foreign_lock   = 1
                  system_failure = 2
                  OTHERS         = 3.
        IF sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
        ENDIF.
      ENDLOOP.
      CALL FUNCTION 'FLUSH_ENQUEUE'
           EXCEPTIONS
                foreign_lock   = 1
                system_failure = 2
                OTHERS         = 3.
      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.
    unlocking
    LOOP AT gt_spotter INTO gs_spotter.
        CALL FUNCTION 'DEQUEUE_EZSPOTTERS'
             EXPORTING
                  mode_zspotters = 'E'
                  aktnr          = gs_spotter-aktnr
                  artnr          = gs_spotter-artnr
                  mebme          = gs_spotter-mebme
                  unique_key     = gs_spotter-unique_key
                  x_aktnr        = ' '
                  x_artnr        = ' '
                  x_mebme        = ' '
                  x_unique_key   = ' '
                  _scope         = '2'
                  _wait          = ' '
                  _collect       = ' '
             EXCEPTIONS
                  foreign_lock   = 1
                  system_failure = 2
                  OTHERS         = 3.
        IF sy-subrc <> 0.
          MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
                  WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
        ENDIF.
      ENDLOOP
    hope this will help you.
    Regards,
    Madhavi

  • There are multiple users with the same display name

    Hi,
    We have a user and when she get an item assigned to her she sees the following alert:
    "There are multiple users with the same display name USERNAME and at least one of them does not have read permissions to some of the files"
    Now I looked in the database and when I run the following query with the username:
     SELECT     
         [ProviderDisplayName]  
        ,[DisplayName]  
        ,[HasDisplayName]  
        ,[Domain]  
        ,[AccountName]  
        ,[UniqueUserId]  
        ,[LastSync]  
      FROM [Tfs_Configuration].[dbo].[tbl_Identity] where displayname like '%USERNAME%'  
    Then I get 2 same usernames back, How can I get rid of one of them ? When I access TFS trough the portal I only find 1 occurence of this user.
    We use VS2013 and TFS2013 update 4
    Best regards

    Hi DSW,  
    Thanks for your post.
    In your query result, please check if these two users have the same Account Name. if they are two different Account Name in result, it indicate there’s two users have the same display name in your AD, please check that two users’ information in
    your AD. We suggest change one user’s display name in AD.  
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Multiple users accessing the same data in a global temp table

    I have a global temp table (GTT) defined with 'on commit preserve rows'. This table is accessed via a web page using ASP.NET. The application was designed so that every one that accessed the web page could only see their data in the GTT.
    We have just realized that the GTT doesn't appear to be empty as new web users use the application. I believe it has something to do with how ASP is connecting to the database. I only see one entry in the V$SESSION view even when multiple users are using the web page. I believe this single V$SESSION entry is causing only one GTT to be available at a time. Each user is inserting into / selecting out of the same GTT and their results are wrong.
    I'm the back end Oracle developer at this place and I'm having difficulty translating this issue to the front end ASP team. When this web page is accessed, I need it to start a new session, not reuse an existing session. I want to keep the same connection, but just start a new session... Now I'm losing it.. Like I said, I'm the back end guy and all this web/connection/pooling front end stuff is magic to me.
    The GTT isn't going to work unless we get new sessions. How do we do this?
    Thanks!

    DGS wrote:
    I have a global temp table (GTT) defined with 'on commit preserve rows'. This table is accessed via a web page using ASP.NET. The application was designed so that every one that accessed the web page could only see their data in the GTT.
    We have just realized that the GTT doesn't appear to be empty as new web users use the application. I believe it has something to do with how ASP is connecting to the database. I only see one entry in the V$SESSION view even when multiple users are using the web page. I believe this single V$SESSION entry is causing only one GTT to be available at a time. Each user is inserting into / selecting out of the same GTT and their results are wrong.
    I'm the back end Oracle developer at this place and I'm having difficulty translating this issue to the front end ASP team. When this web page is accessed, I need it to start a new session, not reuse an existing session. I want to keep the same connection, but just start a new session... Now I'm losing it.. Like I said, I'm the back end guy and all this web/connection/pooling front end stuff is magic to me.
    The GTT isn't going to work unless we get new sessions. How do we do this?
    Thanks!You may want to try changing your GTT to 'ON COMMIT DELETE ROWS' and have the .Net app use a transaction object.
    We had a similar problem and I found help in the following thread:
    Re: Global temp table problem w/ODP?
    All the best.

  • How can multiple users edit and access same ACCESS file

    Hello,
    We have 2 access files and multiple users needs to edit and access those files.
    How can I enable mulitple access but only one user can edit rest of users are in read-only mode for one file and multiple access and edit on the another file.

    Hi,
    You should split your database in a front and backend. Then create two seperate front ends which you can distribute. If you need readonly you can opt for two options, setting the attributes of the file to read only or create a front end with read only forms.
    The last one takes a little more work but is safer than setting the attributes to read only because people can change that back themselfs.
    Maurice

  • Is there an app or way for multiple users to access contact info?

    We are a small business that maintains a contact list of leads and clients in a MS word file. We can access those word files via our iphones, but only view them. Is there an app or way to have one person in the office maintain a database of leads and clients that a few users can access via iphone and simply touch the phone number to call them or touch the address for directions/map?
    We know we could each input the info in each of our phones independently, but that is dumb - given someone in the office maintains such info as part of their job and updates it weekly/monthly whatever. Do you see what I mean? I cannot believe there is nothing out there for this.
    Basically we are looking for a continuously updatable, multiple user, remotely accessible, interactive contact database with name, address, and phone number. I think that is what I would call it.

    I can access phone numbers directly from our client list in word.
    And that solves your quest looking for "a continuously updatable, multiple user, remotely accessible, interactive contact database with name, address, and phone number"?
    Wow... I never know Microsoft Word could do so much!

  • Multiple users on multiple macs sharing iPhoto Library

    How can different family members (using personal logins) all access the same iPhoto library, regardless of which of our two iMacs they happen to be logged into?
    I thought the solution would be as simple as:
    Plug an external hard drive into the Airport Time Capsule.
    Copy our iPhoto library onto the external hard drive.
    Log in as each user, open iPhoto and point to the iPhoto library on the external hard drive.
    I've searched the support forums and can't find a successful example of this. Does it work? If not, is there another elegant solution?
    I'd also be interested in how to back up the 'networked' iPhoto library. I plan to use iPhoto's "publish to Flickr" capability for this as it also solves how to share photos with our family's many iOS devices.
    Ps. I'm new to the Mac environment so am still learning my way with OSX (be gentle please).
    Equipment
    x2 iMacs (<12 months old) running the latest OSX and iPhoto software versions
    2TB Airport Time Capsule (brand new) with a 1TB USB external hard drive plugged-in (not sure of the formatting).

    How can different family members (using personal logins) all access the same iPhoto library, regardless of which of our two iMacs they happen to be logged into?
    I thought the solution would be as simple as:
    Plug an external hard drive into the Airport Time Capsule.
    Copy our iPhoto library onto the external hard drive.
    Log in as each user, open iPhoto and point to the iPhoto library on the external hard drive.
    This cannot work, unfortunately, for several reasons:
    iPhoto is strictly a single user database. Only one user at a time can open it.
    An iPhoto library needs to be on a locally mounted volume. It cannot be on a network share.
    The file system of the drive needs to be MacOS Extended (Journaled).
    Apple's only recommendation to share an iPhoto library is this:    iPhoto: Sharing libraries among multiple users
    If you want to share photos and not the library, see this:   iCloud: iCloud Photo Sharing FAQ
    Trying to put the iPhoto or Aperture library on a network volume, will result in library corruption or data loss:
    Use locally mounted Mac OS X Extended volumes for your Aperture library

  • How to share itunes library with multiple users, and keep organised

    Hi,
    I'm using iTunes (v12) on Windows 7 and am trying to set myself up so that multiple users on this PC are sharing the same library. I've followed the guidance mentioned on a couple of other threads, and put the library in the Users\Public\Music location, and on each user account have pointed iTunes to this location. This has worked OK, as both users can see all the music.
    However, problems arise when User A deletes a couple of files (duplicates for example) - User B logs in, and the song is still listed in the library, but with an alert stating the original file cannot be located. They then have to go through the library and also delete these entries. Equally, if User B adds some music files (as opposed to iTunes downloads), they are not visible to User A until they "Add file to library..."
    Are there any further steps that I can take to keep both users views of the library identical, without manual intervention by the second user whenever the first makes a change?
    Cheers,
    Matt

    The way you've set it up each user has a distinct library, but is accessing a common set of media files and folders.  To accomplish what you want, you need to have a complete iTunes library (database + media) in a common location - typically this would be C:\Users\Public\Music\iTunes.  See turingtest2's notes on Make a split library portable for the steps that may be needed to bring your library into a suitable structure.  Based on your description, you'll need to select one user's library (C:\Users\username\Music\iTunes\iTunes Library.itl) to act as the shared "master" and move this to the Public folders.
    Then, for each user, hold down SHIFT while starting iTunes - when you get this prompt:
    click on Choose Library..., navigate to C:\Users\Public\Music\iTunes, select the iTunes Library.itl file you'll find there, and click Open (you'll only need to do this once for each user account).
    Note, though, that iTunes is inherently a single-user application - any attempts to run iTunes at the same time will cause errors (and, in the worst case, possible corruption).  For this reason, its a good idea to disable fast user switching in Windows so that only one user can be logged in, and running iTunes, at the same time.

  • Any improvements in sharing an iPhoto Library between multiple users?

    It is possible and Apple Approved to share an iPhoto Library between multiple users, but the Library must be stored on a drive or disk image that ignores permissions:
    http://tech.kateva.org/2008/10/apple-supports-multi-user-iphoto.html
    This doesn't work for me. Has Apple changed anything with iLife '09 to make it easier to share a Library? For example, have they changed from the prior Package format?
    Message was edited by: jfaughnan

    Alternatives to a trip to the Terminal:
    If you want the other user to be able to see the pics, but not add to, change or alter your library, then enable Sharing in your iPhoto (Preferences -> Sharing), leave iPhoto running and use Fast User Switching to open the other account. In that account, enable 'Look For Shared Libraries'. Your Library will appear in the other source pane.
    Any user can drag a pic from the Shared Library to their own in the iPhoto Window.
    Remember iPhoto must be running in both accounts for this to work.
    If you want the other user to have the same access to the library as you: to be able to add, edit, organise, keyword etc. The problem here is that OS X works very hard to keep your data safe and secure from the other users. You're trying to beat what's built in to the system. So, to beat the system
    Quit iPhoto in both accounts
    Move the iPhoto Library Folder to an external HD set to ignore permissions. You could also use a Disk Image or even partition your Hard Disk.
    In each account in turn: Hold down the option (or alt) key and launch iPhoto. From the resulting dialogue, select 'Choose Library' and navigate to the new library location. From that point on, this will be the default library location. Both accounts will have full access to the library, in fact, both accounts will 'own' it.
    However, there is a catch with this system and it is a significant one. iPhoto is not a multi-user app., it does not have the code to negotiate two users simultaneously writing to the database, and trying will cause db corruption. So only one user at a time, and back up, back up back up.
    Lastly: This method seems a little clunky at first, but works very well. Most importantly, it uses the System to do the job for you.
    Create a new Account on your Mac, call it Media. Create an iPhoto Library there. (BTW: This will work for iTunes too.)
    Enable Sharing on the Library:(Preferences -> Sharing), leave iPhoto running and use Fast User Switching to open the other accounts. In those accounts, enable 'Look For Shared Libraries'. The Library will appear in the other source pane.
    This means that both users will be able to see the pics. If you want to use a pic then simply drag it from the shared Library to your own in the iPhoto Window. This means that each user can have their own edits.
    If you want to add photos to the Library: Log into the Media account for that purpose.
    To make it all seamless: Set your Mac to log into the Media Account automatically. Set iPhoto to launch on log-in. Then switch to your own account using Fast User Switching.
    Net result: a Library that's permanently available to all users but also protected. Each user can have their own versions of the pics if they want.
    No partitioning, no permissions issues. Uses no extra disk space. What's not to like?
    Regards
    TD

  • Sharing one iphoto library between multiple user accounts

    I hav an extensive photo library and would like to share this across multiple users on the one computer. Am I able to do this without having to move the library to an external hard drive?

    What you mean by 'share'.
    If you want the other user to be able to see the pics, but not add to, change or alter your library, then enable Sharing in your iPhoto (Preferences -> Sharing), leave iPhoto running and use Fast User Switching to open the other account. In that account, enable 'Look For Shared Libraries'. Your Library will appear in the other source pane.
    Any user can drag a pic from the Shared Library to their own in the iPhoto Window.
    Remember iPhoto must be running in both accounts for this to work.
    If you want the other user to have the same access to the library as you: to be able to add, edit, organise, keyword etc. The problem here is that OS X works very hard to keep your data safe and secure from the other users. You're trying to beat what's built in to the system. So, to beat the system
    Quit iPhoto in both accounts
    Move the iPhoto Library Folder to an external HD set to ignore permissions. You could also use a Disk Image or even partition your Hard Disk.
    In each account in turn: Hold down the option (or alt) key and launch iPhoto. From the resulting dialogue, select 'Choose Library' and navigate to the new library location. From that point on, this will be the default library location. Both accounts will have full access to the library, in fact, both accounts will 'own' it.
    However, there is a catch with this system and it is a significant one. iPhoto is not a multi-user app., it does not have the code to negotiate two users simultaneously writing to the database, and trying will cause db corruption. So only one user at a time, and back up, back up back up.
    Lastly: This method seems a little clunky at first, but works very well. Most importantly, it uses the System to do the job for you.
    Create a new Account on your Mac, call it Media. Create an iPhoto Library there. (BTW: This will work for iTunes too.)
    Enable Sharing on the Library:(Preferences -> Sharing), leave iPhoto running and use Fast User Switching to open the other accounts. In those accounts, enable 'Look For Shared Libraries'. The Library will appear in the other source pane.
    This means that both users will be able to see the pics. If you want to use a pic then simply drag it from the shared Library to your own in the iPhoto Window. This means that each user can have their own edits.
    If you want to add photos to the Library: Log into the Media account for that purpose.
    To make it all seamless: Set your Mac to log into the Media Account automatically. Set iPhoto to launch on log-in. Then switch to your own account using Fast User Switching.
    Net result: a Library that's permanently available to all users but also protected. Each user can have their own versions of the pics if they want.
    No partitioning, no permissions issues. Uses no extra disk space. What's not to like?
    Regards
    TD

  • Multiple Users

    I have multiple user accounts on one computer (in fact, they're all me but separated for work, home and various civic interests).
    With PowerMail, I can make every user account use the same, single mail database (on an external drive). Mail doesn't appear to have that facility - or does anyone know better?

    macwiz1220 wrote:
    Read this article about how to share one Mail account between multiple users.
    I would not use this method - it will not work properly. different users will not have write access to emails created by other users. this will create all kind of issues like not being able to move or trash emails. This can possibly be circumvented by using inherited ACLs but I'm not sure how well they would work either as they have certain limitations too. I would simply forget it. Mail is not designed to do this. If you really want to share mail use an IMAP email account.

  • Importing Photos and Music from Multiple users on the same Mac

    I am the same person with multiple users on one iMac. I need to have the same pics and music files on all of the user names on the one computer.
    I have the family pack MobileMe plan.
    Where are the files located for the photos and music in iTunes?
    I would like to import them from one user to another user on the same computer.
    Thank you

    Welcome to the Apple Discussions.
    If you Import the files from one User to another then you will use double the disk space on your HD as you will have multiple copies of everything. Why not simply share the files between accounts?
    For iPhoto 09 (version 8.0.2) and later:
    What you mean by 'share'.
    If you want the other user to be able to see the pics, but not add to, change or alter your library, then enable Sharing in your iPhoto (Preferences -> Sharing), leave iPhoto running and use Fast User Switching to open the other account. In that account, enable 'Look For Shared Libraries'. Your Library will appear in the other source pane.
    Any user can drag a pic from the Shared Library to their own in the iPhoto Window.
    Remember iPhoto must be running in both accounts for this to work.
    If you want the other user to have the same access to the library as you: to be able to add, edit, organise, keyword etc.
    Quit iPhoto in both accounts. Move the Library to the Users / Shared Folder
    (You can also use an external HD set to ignore permissions, a Disk Image or even partition your Hard Disk.)
    In each account in turn: Double click on the Library to open it. (You may be asked to repair the Library Permissions.) From that point on, this will be the default library location. Both accounts will have full access to the library, in fact, both accounts will 'own' it.
    However, there is a catch with this system and it is a significant one. iPhoto is not a multi-user app., it does not have the code to negotiate two users simultaneously writing to the database, and trying will cause db corruption. So only one user at a time, and back up, back up back up.
    Regards
    TD

Maybe you are looking for

  • EXCEL output logo issues in  XML Publisher

    Hi, We are using XML Publisher API to generate PDF,EXCEL outputs using Template. While adding image to the template its showing in the pdf output. But not showing in the Excel output. Then i added url:{/Image} in the alt text of the image in template

  • Problem with item/component quantity in BOM

    Dear All, Our requrement for few BOM components are 6,250FT and 1.540,123 FT respectively.(i.e.  six point two five zero foot and One thousand five hundred and fourty foot and point one two three inches). This unit is perfect in transaction CS02/CS03

  • How to Insert data in 3 table without use of join 1table mapped rule define

    1.Table SOL_K A B C D – Columns Name C D A B –Coulmns Values Defined (Rule --- Defined) 2.SECOND table SIC_K SIC_ K A B C D Kamal Micky NULL MANOJ 3 Table SIC_Mapping Same Columns A B C D based On Table SOL_K defined rule I want to insert values(from

  • User Library Doesn't Exist

    I have installed a new drive in my laptop. I moved over all the files I wanted and did a clean install of the OS and apps. I just realized I also needed my stickies database. I know that in Lion now that the user's library folder is hidden, I used th

  • Switching Time Zones.  Problem in syncing calendars

    I am currently having problems with syncing my calendars from my Touch to Outlook calendars. The problem is that when I put in a scheduled event and sync it to my computer, the time is always pushed forward by 2 hours when I look on my Outlook Calend