About Document IDS in multiuser environment

I am developing an online application using oracle 8.0.5 , it is a multiuser environment , what is the best method to code about generating the number of documents from multiple places , how we can lock the number (document number e.g. Purchase Order) generated for one to another , please tell advice me the best & feasible approach to handle the tie of a mnumber from different sites and handeling of cancelation of any generated number from one person and alloting it to other users
thanks

Its bad because global variabels will be used and changed by different users at same time.
This will lead to variuos problem like user1 setting the variabel, user2 seting it , user1 using it with the value user2 set.

Similar Messages

  • Fetch Details of Transport Management Documents with Document IDs.

    Hi,
    I have a requirement in which I have to fetch details like Partner IDs, Transportation mode etc. for various TM documents like Freight Order, Forwarding Agreement etc on the basis of their Document IDs.
    I could find that Documents are stored as Business Objects in SAP TM system which we can explore with transaction /BOBF/CONF_UI.
    Could anyone please help me further with how can I fetch the details for a TM document from Business Objects.
    Thanks,
    Shalabh

    Shalabh ,
    The only way to fetch data from BOBF is to dig in a standard way, i can only suggest some code with methods.You can use them as ref. to fetch required data.
    This is a sample to get your Freight order root , key is your parent Key.
      DATA:
               lt_key               TYPE /bobf/t_frw_key,
              lt_root              TYPE /scmtms/t_tor_root_k,
              lo_srvmgr            TYPE REF TO /bobf/if_tra_service_manager.
    CALL METHOD lo_srvmgr->retrieve
             EXPORTING
               iv_node_key = /scmtms/if_tor_c=>sc_node-root
               it_key      = lt_key
             IMPORTING
               et_data     = lt_root.
    similarly you can use associations to fetch further nodes from BOBF.
    CALL METHOD lo_srvmgr->retrieve_by_association
             EXPORTING
               iv_node_key    = /scmtms/if_tor_c=>sc_node-root
               it_key         = lt_key
               iv_association = /scmtms/if_tor_c=>sc_association-root-stop_first
               iv_fill_data   = abap_true
               iv_edit_mode   = /bobf/if_conf_c=>sc_edit_read_only
             IMPORTING
               et_data        = lt_stop
               et_target_key  = lt_stop_key.
    Hope this Helps.
    Thanks
    Sarab.

  • Need Info About Document Management System

    Hi All,
    I need information about Document Management system.
    How it is linked with KM
    Thanks
    Arun

    Hi Arun,
    DMS is available in R/3 Systems as a individual module and can be linked with KM using DMS Connector for  KM.  Find the links below..
    Check this out...
    <a href="http://help.sap.com/saphelp_nw04/helpdata/en/30/08a037b9e62417e10000009b38f889/frameset.htm">DMS</a>
    <a href="https://www.sdn.sap.com/irj/sdn/thread?threadID=26682">Thread 1</a>
    <a href="https://www.sdn.sap.com/irj/sdn/thread?threadID=235959">Thread 2</a>
    Hope this helps.
    Regards,
    Venkat.

  • Document from file - how better store information about document?

    I have a text file that contains information about documents (content from groups than define the document - one row is one document). Every group content from fields (from 10 to 70 in every group). Document consist of 9 groups. In one documen can difference number of groups (> 1 group). E.g. one document can have 3 group1, 2 group6. In another document 2 group9, 1 group 6 and so on. I need to store document in DB and must edit document (by JFrame). To store document I use object MyDocument to store information about document.
    3 solutions:
    1. Store every group as list from hastables
    public class MyDocument {
       private ArrayList<Hashtable<String, String>> group1;
       private ArrayList<Hashtable<String, String>> group2;
       private ArrayList<Hashtable<String, String>> group3;
       private ArrayList<Hashtable<String, String>> group4;
       private ArrayList<Hashtable<String, String>> group5;
       private ArrayList<Hashtable<String, String>> group6;
       private ArrayList<Hashtable<String, String>> group7;
       private ArrayList<Hashtable<String, String>> group8;
       private ArrayList<Hashtable<String, String>> group9; 2. Store all groups as one list from hashtables
    public class MyDocument2 {
      private ArrayList<Hashtable<String, String>> allGroups;
    } 3. Store groups as lists consist from individual objects (MyDocumentGroup1, MyDocumentGroup2 and so on.)
    public class MyDocument3 {
       private ArrayList<MyDocumentGroup1> group1;
       private ArrayList<MyDocumentGroup2> group2;
       private ArrayList<MyDocumentGroup3> group3;
       private ArrayList<MyDocumentGroup4> group4;
       private ArrayList<MyDocumentGroup5> group5;
       private ArrayList<MyDocumentGroup6> group6;
       private ArrayList<MyDocumentGroup7> group7;
       private ArrayList<MyDocumentGroup8> group8;
       private ArrayList<MyDocumentGroup9> group9;
    public class MyDocumentGroup1 {
       private ArrayList<Hashtable<String, String>> group1;
    public class MyDocumentGroup9 {
       private ArrayList<Hashtable<String, String>> group9;
    }What solutions is better? Or maybe has another solution?

    Maybe better to store one document in ONE HashMap
    public class M2Document {
         private HashMap<String, String> data = null;in the next format:
    -------------key ---------value----------
    GroupID_FN | some value
    where, GroupID is ID of group, FN - field number
    example:
    -------------key ---------value----------
    Group1_1 | some value
    Group1_2 | some value
    Group2_1 | some value
    Group2_2 | some value
    Group3_1 | some value
    Group3_2 | some value

  • JDeveloper installation on WindowsXP Multiuser environment

    Hello,
    I've got a problem installing JDEveloper 10.1.3.3.0 on a WindowsXP multiuser environment.
    I downloaded and extracted the archive into the C:\Programme directory (where it belongs) as admin user and I can start it without problems as long as I'm logged in as admin (despite the fact that a JDK 1.5 is already installed).
    But when I try to start JDeveloper with a normal user account (without admin rights) from there I only get the splash screen progressing a little bit and nothing else happening afterwards.
    So JDeveloper does not start for me within the account I want to use it with!
    How can I manage to start JDeveloper for normal users on that WindowsXP system?
    Does anybody have any hints on this?
    Many thanks in advance!
    Best Regards

    It is recommended to unzip JDeveloper in a directory
    without spaces. Windows installs all programs into
    C:\Program Files, this one has a space in between. So
    make sure you unzip into C:\oracle\jdeveloper or
    something like that. Also make sure as admin grant
    full permits to windows users, read, write and
    execute.It is, I installed it into C:\Programme\JDeveloper.
    Do you mean I'll have to give these rights for normal users to the JDeveloper directory!?
    This is completely contradictory to the idea behind the restricted accounts in Windows!
    Best Regards

  • Question about document/literal web service

    Hello every body.
    I have some question about document/literal web service.
    I’ve been working with Axis before.
    Axis has four valid signatures for your message-style service methods:
    public Element [] method(Element [] bodies);
    public SOAPBodyElement [] method (SOAPBodyElement [] bodies);
    public Document method(Document body);
    public void method(SOAPEnvelope req, SOAPEnvelope resp);
    The same I am trying to do with WebLogic API for webservices.
    But when I am trying to test web service (public Document method (Document body); )
    I have serialized exceptions for org.w3c.dom.Document.
    Do I have to write a custom class for org.w3c.dom.Document serialization?
    If yes can you give me some idea or example?
    The all idea behind this web service is. I have just one web service and mane classes for XML processing. Depends what xml document will be during runtime, web service will be using different class for xml processing. It works fine with Axis, but in case of WebLogic I have some problem.
    One more question… How I have to call this web service from java client?
    I have seen this example http://www.manojc.com/?sample31 ,
    but this web service looks like (Document helloDom()). I need to send Document.
    This example works for Dynamic Proxy, but does not work for static call.
    Any ideas?? Thank in advance.

    Hi,
    I am getting a similar issue. I created a Document-style/literal webservice and deployed on Weblogic 9.2 . Then I generated client stubs using clientgen. I get the following exception stack trace:
    java.rmi.RemoteException: web service invoke failed: javax.xml.soap.SOAPException:
    failed to serialize class java.lang.Objectweblogic.xml.schema.binding.SerializationException: type mapping lookup failure on
    class=class com.sun.org.apache.xerces.internal.dom.DeferredDocumentImpl TypeMapping=TYPEMAPPING SIZE=3
    ENTRY 1:
    class: java.lang.Object
    xsd_type: ['http://xmlns.ozarkexpress.com/business/sell']:stns:echoDocumentResponse
    ser: weblogic.xml.schema.binding.internal.builtin.XSDAnyCodec@1125127
    deser: weblogic.xml.schema.binding.internal.builtin.XSDAnyCodec@18dfef8
    ENTRY 2:
    class: java.lang.Object
    xsd_type: ['http://xmlns.ozarkexpress.com/business/sell']:stns:echoDocument
    ser: weblogic.xml.schema.binding.internal.builtin.XSDAnyCodec@15e83f9
    deser: weblogic.xml.schema.binding.internal.builtin.XSDAnyCodec@2a5330
    ENTRY 3:
    class: java.lang.Object
    xsd_type: ['http://www.w3.org/2001/XMLSchema']:xsd:anyType
    ser: weblogic.xml.schema.binding.internal.builtin.XSDAnyCodec@bb7465
    deser: weblogic.xml.schema.binding.internal.builtin.XSDAnyCodec@d6c16c

  • Returning list of just document ids

    Is there a way to query a container and get a list of just document ids? That is the id
    used when putting the document, e.g.
    putDocument(String id,
    String content,
    XmlUpdateContext context,
    XmlDocumentConfig config)
    I know that I could store it in metadata or in the XML document itself and use xquery, but I figure there must be a way to get a list without doing this.
    Thanks,
    Chris

    Hi Chris,
    I think that you're referring to getting a list with the names of the XML documents stored in a container. The name of each document in a BDB XML container is stored in a metadata node, called "name" found in the "dbxml" namespace. These nodes are automatically mantained by BDB XML, cannot be removed and are automatically indexed.
    So, the following query should provide the list that you want:
    for $i in collection('container_name') return dbxml:metadata('dbxml:name',$i)
    Regards,
    Andrei

  • How do I sign an Abode document with a secure environment?

    How do I sign an Abode document with a secure environment?

    If this is related to Adobe Fill & Sign (since you did submit this feedback through the Feedback form) this is an FAQ on security: https://www.acrobat.com/en_us/security.html
    I am not sure if that really is what you wanted, if that doesn't answer please provide more details.
    Thanks,
    Josh
    PS - You might want to look at Electronic Signature Software, Digital Signatures | Adobe EchoSign to see if that fits your needs
    Also Electronic signatures, e-signatures | Adobe Acrobat XI

  • Opening a Mac/PostScript document in PC/OpenType environment

    I receive documents created on a Mac with PostScript fonts. When I open the document on my PC, InDesign lists the missing fonts becasue they are not installed on my computer.
    These same fonts are currently only available in OpenType format.
    If I purchase the missing fonts (OpenType format), will I be able to open the files produced with Mac/PostScript in my PC/OpenType environment and have InDesign automatically substitute the equivalent OpenType fonts for the original PostSCript fonts?
    More importantly, when I print out the document from my PC (or create a PDF), will it look identical to the original document produced in the Mac/PostScript environment?
    Regards.
    Kevin

    OK. But I notice that the list of missing fonts does not specify either PostScript or OpenType. All it says is that I am missing (for example): Mercury Text G3 SC
    So, as I understand your reply, InDesign will not substitute Mercury Text G3 SC (OpenType) installed on my computer for the Mercury Text G3 SC specified in the document because the original document used PostScript fonts?
    Is there a way to force InDesign to use my installed OpenType Mercury Text G3 SC wherever the same font name is specified in the document?
    Assuming the substitution is possible, will it look identical? I guess what I am trying to figure out is whether or not the OpenType format of Mercury Text G3 SC will be visually indistinguishable from PostScript Mercury Text G3 SC.

  • JSP Global Variable in MultiUser Environment???

    Hi,
    I heard that my Boss, taking about the declaration of the Global variable in Jsp will create a problem in the Multi-User Environment.
    Is it true?? If so ,What is the actual problem? It occupies more memory when compared to the Local variable??
    Isn't it a bad option to declare unless u want it badly??
    I am not able to find a suitable link for this..
    Pls. do respond for this....
    Thanks,
    JavaCrazyLover

    Its bad because global variabels will be used and changed by different users at same time.
    This will lead to variuos problem like user1 setting the variabel, user2 seting it , user1 using it with the value user2 set.

  • Question about Databases on a distributed environment...

    Hi,
    I have quick question. We have production in a distributed environment as follows
    (a) SQL server, EPMA, and Calc Manager
    (b) Workspace, and Shared Services
    (c) Essbase
    (d) Planning
    Now we have multiple databases for each hyperion service i.e.
    (1) HSS (using for hyperion shared service)
    (2) BIPLUS (Using for workspace)
    (3) AAS (Using for Essbase Administrator Services)
    (4) CALCMGR (Using for calculation manager)
    (5) EPMA (Using for EPMA)
    (6) ERPI (Using for ERP Integrator)
    (7) PLANSYS (Using for Planning)
    Now, my question is ....is it necessary that we have that multiple database in a distributed environment or we can have one database for everything? What is main objective for creating databases for each application?
    Please share your best knowledge and give me positive and negative about multiple database and single database for hyperion...
    Thanks to all...
    Safi

    I am going to be lazy and copy an extract from the install doc
    For simplicity and ease of deployment, you can use one database repository for all products (with the exceptions noted below). When you configure multiple products at one time using EPM System Configurator, one database is configured for all selected products.
    Caution!
    To use a different database for each product, perform the “Configure Database” task separately for each product. In some cases you might want to configure separate databases for products. Consider performance, rollback procedures for a single application or product, and disaster recovery plans.
    The following products and product components require unique databases:
    Performance Management Architect interface data source
    Extended Analytics for Financial Management and Extended Analytics for Strategic Finance
    Planning – Each Planning application should have its own repository.
    Performance Scorecard
    FDM – Use an Oracle Database instance exclusively for FDM.
    Data Relationship Management.
    Cheers
    John
    http://john-goodwin.blogspot.com/

  • Confused about Adobe IDs + Creative Cloud + DPS App Builder.

    The "Adobe Digital Publishing Suite Getting Started Guide" recommends having the multiple email/multiple Adobe IDs for Accounts. (Master/Admin/Application/Builder/Designer) Great! I love being extremely organized and worked with my IT department to set these up. Now, initially, we are only going to release a couple SE apps (free w/CC), but hope to do a multi-folio down the road. So, for the SE app, I'm working through the "Step-by-Step Guide to Publishing iPad Apps with DPS, Single Edition" and I get to the page about building the app with DPS App Builder. Here it states (on page 49 for those following along) that if you are a Creative Cloud subscriber, you must use the same Adobe ID that you use to sign in to Creative Cloud. Well, of course I'm a CC subscriber. But with the company that I work at, the CC Adobe ID is associated to my work email address. So this is where I'm confused because back over in that Getting Started Guide it talks about not using an account tied to a person (which is what using my work email does). So what Adobe IDs am I suppose to use and when?

    Ok, so we had a whole bunch of internal emails about this The person you were working with on Twitter was kind enough to reach out to me to make sure we gave you the right information. Turns out that SE *is* now available with Creative Cloud for Teams. This was news to me!
    Back to your original question: you should sign in with your Adobe ID. If your Adobe ID for CC for Teams is your corporate email address then that's the Adobe ID you should use.
    Neil

  • Document IDs and the DocID Service in SharePoint Server 2010

    My understanding is that the DOC ID looks up the absolute URL and then attempts to open the document.
    My question is, how often does the data "refresh". That is, if you change the name of the document, or change the location, in theory the DOC ID service should update the absolute URL from the old name to the new name. But on my SharePoint site
    it is not instantaneous and often takes overnight for the record relationship to update.
    that is:
     http://sitecollection/web/_layouts/DocIdRedir.aspx?ID=2960-489 =
    http://sitecollection/site/SharedDocuments/DocumentV1.0.docx
    so when I change the name of the DocumentV1.0 to DocumentV2.0
     http://sitecollection/web/_layouts/DocIdRedir.aspx?ID=2960-489 =
    http://sitecollection/site/SharedDocuments/DocumentV2.0.docx
     Yet when you click on
    http://sitecollection/web/_layouts/DocIdRedir.aspx?ID=2960-489 not long after changing the name (or location) I get a HTTP 404 error. Yet tomorrow I wont, so therefore the service has updated the static URL match.
    How often does the DOC ID service refresh the data, and where is the setting to change it to more frequently on change of document name or location?
    Thanks for any replies.
    John

    The behavior I found was completely different than yours, so I was hesitating to post, but here goes...
    It is my understanding that there are only 2 timer jobs related to the document id service, the document id assignment job (which assigns document id's to existing documents) and the document id enable/disable job (which saves config settings across sites).
    You can force the execution of those jobs and see if it makes a difference, see
    http://blog.tangotechnologygroup.com/2011/02/16/sharepoint-2010-activating-the-document-id-feature/ . I've always assumed that sharepoint doesn't ever need to refresh the url, because it can just use the doc id to retrieve the document directly from the
    content db and then establish the location of the document (which, after all, is just virtual and doesn't really exist). Based on that assumption, as long as the document has a document id, sharepoint can never lose track of it.
    So, I've tested it out in an O365 environment and I got what I expected: changing names or moving files has no effect, the doc id redirection service always finds the latest location without any latency. Apparently, that is not what you're getting at all,
    but I wanted to share my thoughts...
    Kind regards,
    Margriet Bruggeman
    Lois & Clark IT Services
    web site: http://www.loisandclark.eu
    blog: http://www.sharepointdragons.com

  • Multiuser environment

    HI Gentlemen,
    I have installed an Oracle 8i Personal Enterprise Edition. Up to now I was alone as developer and user; I really do not know if another user could log in to my Forms application through the Web or is 8i Personal a strict single-user environment?
    Thank you in advance, kind regards from
    Miklos HERBOLY

    If you have Oracle Personal in one machine and you have a web application on it or in another server you can create several users in the database and give the posibility to each one to log in in the database without any problem. You are confusing the concept about how Oracle Personal is licensed.
    Another option is that you can create a table with users formed by you and your application log in through those users.
    Joel Pérez

  • About document template

    Hi,
    Can anybody pls elaborate about the document template step in a workflow.
    Cheers,
    Sukumar.

    You use this step type to enable the work item recipient to create a document based on a document template of a PC application (Currently Adobe Designer and MS Office suite). You can transfer values from container elements of the workflow container (Multiline elements are not supported) to the template.
    Please read the online help for more info. You can<a href="http://help.sap.com/saphelp_470/helpdata/en/a2/560b37e54d4330e10000009b38f889/frameset.htm">start here</a>.
    Cheers,
    Ramki Maley.

Maybe you are looking for

  • I bought iphone 3gs from japan now its not working in Nepal what do i do now

    so what should i be doing do apple help me or should i go with unlocking software if yes how to make the iphone now work in nepal thanks

  • Can't access emails in notification.

    Hi, I can't access the emails in notification. I get the following error E:YMTI:299 ADDR_PERS_COMP_COMM_GET 0

  • Multiple Monitor Capability

    Can anybody advise if the MacBook allows multiple monitor capability and if so what adaptors I would need. I wish to connect my MacBook to 2 other screens. Many Thanks

  • I get this error: Exit code 6

    <PRE>Exit Code: 6 Please see specific errors below for troubleshooting. For example,  ERROR: -------------------------------------- Summary -------------------------------------- - 0 fatal error(s), 2 error(s) ----------- Payload: Microsoft Visual C+

  • ASAP Implementation using SOLMAN

    HI All, Can you please guide me if we can implement sap using ASAP methodology in SOLMAN? In other words can solman be a substitue for ASAP tools and download from CD?Or there is no substitute to ASAP software? Also guide me if solman can become a pa