Oracle OAF Find the Document Path Using JDR Tables or JDR_UTILS API

Hi,
I found duplicate records in JDR_PATHS table for a Particular OAF Page. I need to find the complete path of these documents,so that i can delete the one which i don't want
using the jdr_utils.deletedocument.
Appreciate it if anyone can advise on how to identify the paths for the a page so that I can delete the document I do not want.  Any other ideas to delete the extra document would be welcome.
Thanks
Sai

Sai,
Duplicate records in JDR_PATHS does not mean they are duplicate records, page names may be same.
But the hierarchy of the page is different, don't be in a hurry to delete the document.
try to find the information from this :
Learn Oracle Applications With Me: MDS in Oracle Applications, OAF
Regards
Sridhar

Similar Messages

  • How to find the server path using servlet API.

    Hi All,
    I have an requirement like uploading certain files in my server path.
    rightnow i am getting the path now using as
    <%=application.getRealPath("/")%> and its giving me the "D:\bea\user_projects\domains\Testdomain\TestmanagedServer\stage\nextgen\nextgen.war".
    but i want to get the D:\bea\weblogic81 or atleast D:\Bea
    Is there anyway to get this through API or its the only way through string parse.
    Thanks in advance.

    Hello,
    I have:
    DG URL Internal;https://OCS.ad.xxxxxx.xxxx.xxx/GroupExpansion/Int/service.asmx;--;
    DG URL External;;--;
    Quality Metrics URI;;--;
    URL Internal From Server;https://OCS.ad.xxxxxx.xxxx.xxx/Abs/Int/Handler;--;
    URL External From Server;;--;
    Voice mail URI;sip:[email protected];opaque=app:voicemail;--;
    MRAS Server;;Not Configured;
    GAL Status;https://OCS.ad.xxxxxx.xxxx.xxx/Abs/Int/Handler;--;
    Controlled Phones;TRUE;--;
    PC to PC AV Encryption;AV Encryption Enforced;--;
    Focus Factory;sip:[email protected];gruu;opaque=app:conf:focusfactory;--;
    Telephony Mode;Telephony Mode Disabled;--;
    Line;;--;
    Line Configured From;Auto Line Configuration;--;
    Location Profile;;--;
    Local Log Folder;C:\Users\me\tracing;;
    MAPI Information;MAPI Status OK;MAPI Status OK;
    Inside User Status;TRUE;;
    Auto Update Download Started;--;--;
    Auto Update Download Completed;--;--;
    Last Auto Update Request;--;--;
    Pairing State;Communicator cannot connect to your desk phone because the USB cable is not plugged in. Make sure that you connect the cable.;Enabled;
    I see my email on the sip line but no server... what do I miss?
    Is it by the URL?
    Thanks,
    Dom

  • Where to find the document category in oracle purchasing for existing attachments?

    Where to find the document category in oracle purchasing for existing attachments and also how to create a new category?

    Hi Sanjay,
    We are looking to add the below 3 marked document categories to Purchasing.
    But here the application is for order management, how can we use them for purchasing?

  • Finding the exact path of a file using a Java program

    Can anyone tell me how to find the exact path of a file which is saved in a directory other than the one in which the main file is saved? I know there is a class called File which has many methods like isAbsolutePath() and isPath() but they return the path in which the main class is located

    actually i m trying to write a program which will
    take a name of a file or a directory from the console
    and it should give the entire path of that file or
    directory and this file need not be stored in the
    path of the main class.....It can be stored in any
    drives of my PC....Ok, then the console input needs to be an absolute path or a path relative to some given directory (usually the one from which the application is started). Java cannot magically guess absolute paths if you just provide a file name. E.g. if I'd use your program and would provide as input "build.xml", how should the program know which file by that name I mean (there are lots of build.xml files in different locations on my machine)?

  • I want to know the path to find the document.

    hi everyone;
         i am reading the guide. There is a document referred in the Guide.
    Can you tell me how to find the document.
    Thank you
    Charles

    Hi,
    The type are:
    A     Inquiry
    B     Quotation
    C     Order
    D     Item proposal
    E     Scheduling agreement
    F     Scheduling agreement with external service agent
    G     Contract
    H     Returns
    I     Order w/o charge
    J     Delivery
    K     Credit memo request
    L     Debit memo request
    M     Invoice
    N     Invoice cancellation
    O     Credit memo
    P     Debit memo
    Q     WMS transfer order
    R     Goods movement
    S     Credit memo cancellation
    T     Returns delivery for order
    U     Pro forma invoice
    V     Purchase order
    W     Independent reqts plan
    X     Handling unit
    0     Master contract
    1     Sales activities (CAS)
    2     External transaction
    3     Invoice list
    4     Credit memo list
    5     Intercompany invoice
    6     Intercompany credit memo
    7     Delivery/shipping notification
    8     Shipment
    a     Shipment costs
    b     CRM Opportunity
    c     Unverified delivery
    d     Trading Contract
    e     Allocation table
    g     Rough Goods Receipt (only IS-Retail)
    h     Cancel goods issue
    i     Goods receipt
    j     JIT call
    p     Goods Movement (Documentation)
    r     TD Transport (only IS-Oil)
    s     Load confirmation, reposting (only IS-Oil)
    t     Gain    /  loss    (only IS-Oil)
    u     Reentry into storage (only IS-Oil)
    v     2-step Goods receipt (only IS-Oil)
    w     Reservation (only IS-Oil)
    x     Load confirmation, goods receipt (only IS-Oil)
    $     (AFS)
    Regards,
    Renjith Michael.

  • Find the installation Path of the current running VM on Windows

    Hello,
    I have a java class started by webstart.
    In this class I would like to find the absolute path of the current running vm? This is important to me because I need to start an exe file (using ProcessBuilder) and hand it the path of the java VM,
    For example I could try something like this:
    private static File findJDK() throws Exception {
    String s = System.getProperty("java.home");
    File myJRE = new File(s);
    if (new File(myJRE, "bin/javac.exe").isFile()) {
    return myJRE;
    File parent = myJRE.getParentFile();
    if (new File(parent, "bin/javac.exe").isFile()) {
    return parent;
    for (String pathel : System.getenv("PATH").split(File.pathSeparator)) {
    File bindir = new File(pathel);
    if (new File(bindir, "javac.exe").isFile()) {
    return bindir.getParentFile();
    return myJRE;
    But I would like the above code to be more fool proof!
    For example the "java.home" could be wrongly set.
    Since java is allready running I would have hopped that I could query the Runtime. But there seems to be no method providing the running java VM path?
    I also tried looking at the jnlp services API but no luck.
    I would be also interested find the lastest java VM on the client Windows machine....
    Many greetings
    john

    http://docs.oracle.com/javase/7/docs/api/java/lang/System.html#getProperties()
    bye
    TPD

  • How to find the absolute path of file  which store in KM foler ?

    Hello everyone:
         We want to develop an ABAP program which can write files into KM folder directly.
         So I need to find the absolute path of file which store in KM folder first, then we can consider the develop solution.
         Is this issue possbile that an ABAP  program write files into KM folder  directly ?
         Is there anybody had done this job ?
    Best Regards,
    Jianguo Chen

    Hi,
    http://forum.java.sun.com/thread.jsp?forum=34&thread=36
    612The methods in the above topic seem to be available when use a DOM parser..

  • Finding the context path or docBase in a backing bean - Howto

    How should I go about finding the context path or docBase in a backing bean?
    Is there anyway to get this from glassfish or jsf? GlassFish proudly displayed it on the Application Server > Applications > Web Applications > page. It puts it there with an EL for example:
    ${com.sun.aas.instanceRoot}/applications/j2ee-modules/jsf-witaCan and/or should I try to use it in a backing bean? i.e. can I rely on it to stay defined?
    Or should I make a property which I can set for my backing work?

    Is this what you want?
    FacesContext.getCurrentInstance().getExternalContext().getContext()

  • An error has occurred: Could not find the document.

    I get the "An error has occurred: Could not find the document." error when trying to open a URL using OpenDocument.  The URL is as follows:
    http://:<myserver>8080/BOE/OpenDocument/opendoc/openDocument.jsp?iDocID=AZjCUhaL3c9Is.YxtGMc7K4&sIDType=CUID
    I am certain the value of iDocID is correct, and I am also certain that I can get an OpenDocument to work on the server.  In fact, I tried the same URL using a different iDocID for a Webi report in a different folder, and it works.  For some reason, it appears as though the report in this folder won't open though.
    Any thoughts on this would be greatly appreciated.  I've been working on this for a couple of days an am completely stumped.  Also, I'm relatively new to Business Objects.  Is there a log file that I can view that might give me more details regarding the error?
    Thanks in advance for your help!

    May be that the user who is accessing the report does not have sufficient rights to view it.
    Check whether you are able to view the document as an administrator.
    Regards,
    Niraj

  • JS CS4 splitting the document path

    I'm trying to split the document file path so I may navigate up one or two folders and then into a specific subfolder.
    When I try to split the "myDoc.filePath" it errors. If I split "myDoc.name" it works correctly.
    var myDoc = app.activeDocument;
    var myDocPath = myDoc.filePath;
    var mySplit = myDoc.name.indexOf ("_");
    var myFileName = myDoc.name.slice (0,mySplit);
    var myPdfFolder = myFileName + "pdf";
    var mySavePath = myDocPath
    var mySplit2 = myDoc.filePath.indexOf (myFileName);
    var myFinalPath = myDoc.filePath.slice (0,mySplit2) + myFileName + "/" + myPdfFolder;
    alert(myFinalPath);
    Can someone shed light on how to split the document path?
    Thanks,
    John
    Document path: ~desktop/N123456/working/N123456_01
    Note: the last folder name does not always exist. Often the "working" folder is the last folder. Working folder and N123456pdf reside on the same level.
    Goal is to change the save to document path: ~desktop/N123456/N123456pdf

    Here's some code I wrote recently to find a folder named "Snippets" starting from the location of a document. It first looks in the same folder and then its parent and on up until it reaches the top of the file hierarchy:
    //DESCRIPTION: Search for Snippets folder from Document location
    (function() {
        if (app.documents.length > 0) {
            var myFolder = locateRelatedFolder(app.documents[0].filePath, "Snippets");
            if (myFolder == null) {
                alert("Unable to locate Snippets folder");
                return;
            } else {
                alert("Snippets folder is: " + myFolder);
        function locateRelatedFolder(folder, name) {
            while (folder != null) {
                var relatedFolder = Folder(folder + "/" + name);
                if (relatedFolder.exists) return relatedFolder;
                folder = folder.parent;
        } // end locateRelatedFolder
    I've enclosed the code in an anonymous function. Don't let that put you off. You could just delete the first line after the description and the last line.
    Dave

  • "The Server cannot find the document corresponding to the document id"

    Periodically when we schedule a Discoverer Report (Apps EUL) we get the following error:
    "The Server cannot find the document corresponding to the document id sent for open"
    Months back Oracle told us to do the following as a workaround:
    Log into Oracle Desktop, schedule something, then go back to OracleBI Discoverer Plus.
    The error goes away.
    This is an insane workaround. Has anyone seen this error and found a patch or a realistic workaround.
    Thanks,
    Bob

    Bob.
    I haven't seen this problem, but sure makes me wonder what Oracle is up to, when they essentially tell you to "give the scheduler a good slap via Disco Desktop" every now and then.
    Maybe is you created an SR in Metalink you could slap them back on this one!
    Russ

  • An error occurred: Save document failed / An error occurred while saving the document: PATH (HDB 00055)

    Hello Colleagues, I am creating an analysis in build 576, everything goes well, the algorithm calculates the needed values, but when I try to save the analysis, I receive the following error message: "An error occurred: Save document failed / An error occurred while saving the document: <PATH> (HDB 00055)".
    Does anyone know what could cause this error message?
    Thanks a lot for any hint.
    Sergey

    Hi Henry,
    I am using PA 1.0.11 and received this error; any update on this fix for SAP PA. Does this happen for a particular data source.
    I am currently using Excel as source and whenever I try to use this data; I get this even if I move the data to a new file or rename a file. I tried to check the same issue with a different file and it works fine. This file worked fine a day back.
    Please let me know if this is unusual for this version.
    Regards,
    Arvind E

  • Where i can find the document for ABAP-SD techno functional guys

    where i can find the document for ABAP-SD techno functional guys

    Dear Jagrut,
    Well there is no separate section for technofunctional people like ABAP SD. I think it wil not be an easy proposition also to have a separate section. Regarding the documents, I have posted lot of queries on technofunctional aspect of SD and I have got good responses from the SD forum. So you can try it here.
    A small search on SDN SD forum most of the times will help you to answer your query. 
    I will suggest you to visit  http://sap-img.com/sap-sd.htm. It will give you the overview of SAP SD module.
    Moreover there is a separate section of FAQs with answers which will help you in great deal.
    Hope this helps you.
    Do award points if you found them useful.
    Regards,
    Rakesh

  • How can I find the all path available for a MPLS VPN in SP network

    How can I find the all path available for a MPLS VPN in SP network between PE to PE and CE to CE?

    Hi There
    If we need to find all the available paths for a remote CE from a local PE it will depend upon whether its a RR or non-RR design. If the MP-iBGP deisgn is non-RR  the below vrf specific command
    sh ip bgp vpnv4 vrf "vrf_name"  will show us the MP-iBGP RT for that particular VPN. It will show us the next hop. Checking the route for same in the Global RT will show us the path(s) available for same ( load-balancing considered) .Then we can do a trace using the Local PE MP-iBGP loopback as source to remote PE's MP-iBGP loopback to get the physical Hops involved.
    However if the design is RR-based there might be complications involved when the RR is in the forwarding path ie we have NHS being set to RR-MP-iBGP loopback and the  trace using the Local PE MP-iBGP loopback as source to remote PE's MP-iBGP loopback will get us the physical Hops involved.
    If we have redundant RRs being used with NHS being set then the output of sh ip bgp vpnv4 vrf "vrf_name" will show us two different available paths for the remote CE destination but just one being used.
    RR-based design with no NHS being used will always to cater to single path for the remote CE detsination.
    So in any case the actual path used for the remote CE connectivity would be a single unless we are using load-balancing.
    Hope this helps you a bit on your requirement
    Thanks & Regards
    Vaibhava Varma

  • "An error has occurred: Could not find the document." on opening the BO report

    Hi ,
    On publishing the BO report in Portal, we get the blank screen with warning message as below screenshot and  facing the ""An error has occurred: Could not find the document."" error message when accessing the BO report using open document URL directly in browser instead of portal.
    Link: http://<host>:8080/OpenDocument/opendoc/openDocument.jsp?sIDType=CUID&iDocID=ASClVc_yw55L
    We already have many BO reports successfully running in the production environment.
    But for this new report we are getting this error. The difference found in this report is from Infoviewapp the login page appears as below in to which the developer logs in.
    But for the reports coming with error the login page authentication value is changed to "Enterprise". So the system related fields disappear after that and looks like below
    Please let us know the root-cause of this error message. Is this something to do with user authorization in BO system at report level or some config changes related to SAP/Enterprise authentication.
    Multiple posts in SDN related to this error message points to check for user authorizations in BO system. Please provide details on this if this is the case.
    Regards,
    Bhaskar

    Hi ,
    The dropdown is now made visible to the users in the opendocument property as per the suggestion in the below links. The user can choose the authentication type and login into reports after that.
    http://scn.sap.com/thread/3525264
    http://scn.sap.com/thread/1417858
    My question now is after changing the visibility of the authentication true, the SSO doesn't work as before. Is there any way to make the SSO available with this setup ?
    Regards,
    Bhaskar

Maybe you are looking for

  • How do I change my account settings for youtube.

    I want to upload from photos app but it still is signed in with my old account. IOS 6 took away the old youtube app and I have the new app and I'm signed in to my new account on the app, but when I want to upload from photos, it still uses the old ac

  • New internal order type--need help

    Dear all: i have a case need help. now i want to create a new internal order type ,and assign a new number range and a default settlement rule to it . the settlement rule is that the actual costs of this  internal order type need to be sent to a cost

  • What is process ton install already paid Apps on new Ipad2?

    Hi, I bought some applications on my first Ipad2. After I changed it to a nw one (the first one had the famous backlight leaking problem), I had a problem with an app. The creator of the Apps said that I should delete my app and install it again. The

  • Server Side XML Class

    Hi, Everything I read in from my XML is of nodeType Element. I am trying to extract  the data. However because the type coming back is of type 1 (Element) I am unable to use nodeValue. What am I doing wrong? I wish to extract the directory and server

  • Problème configuration BOOTcamp sous mavericks

    Bonjour, Je n'arrive pas à configurer boot camp j'ai le message suivant qui apparait juste apres l'étape de séléction du disque d'installation. "Impossible de télécharger le logiciel à cause d'un problème de réseau." Merci de m'aider . Cordialement.