Writing to an xml document, not working.

Hey all,
I'm trying to do something pretty simple, just setting up a phone forwarding script (I believe it is the one that came with CCX) that reads XML documents to forward and unforward the phones.  But I cant for the life of me get the script to actually write to a status file on ccx.  Please take a look at my script and help me out.

Figured it out.  You have to write to a different directory.

Similar Messages

  • XML Document Not working / Capture device problems HELP!

    Whenever i open the xml file from justin.tv it always says "Log File Cannot Be Created," then ist says "Profile Vlidation"
    And whenever i select my captutre card it always says " Problem With Video Capture Device"
    Somone please help me!
    (i have attached the xml file that keeps on crashing for me)

    You are getting "Log File Cannot Be Created" error because when you download XML file from someone else computer then FMLE  by default folder takes path for Log file as his "My Videos" folder. So while checking the profil, FMLE gets to know that this profile is not perfect and hence gives "Profile Validation Error" and then silently corercts those errors. After clicking OK on "Profile Validation error" window, you can go to Encoding log tab and check the changes that were made in FMLE on above the settings of your XML profile file.
    You are getting "Problem With Video Capture Device" because either the drivers of your device are not corerctly isntalled on your machine or your device is busy with some other application or your device is not connected properly. Please check the drivers and connectivity of your device and make sure that your device gives RAW/Uncompressed Video format only

  • CS2 AS: Scripted "Import XML" is not working (like manual import does)

    I have problem where importing a XML (merge import + delete unmatched) by script simply doesnt work, where the manual import works 100% fine!!??
    (I'm exporting the XML, refill it with new text data (localisation process actually), and bring the xml back to commit the change in the Indesign document).
    With the script, the XML get imported as a child in the XML
    I have xml structure like:
    root
    node
    and get something like
    root
    node
    root
    node
    My code looks like this (sorry for the formatting):
    tell application "Adobe InDesign CS2"
    tell XML import preferences
    set create link to XML to false
    set ignore unmatched incoming to true
    set ignore whitespace to false
    set import style to merge import
    set import text into tables to false
    set import to selected to false
    set repeat text elements to false
    set remove unmatched existing to true
    end tell
    try
    import XML (document 1) from pFilePath
    on error pmsg
    display dialog pmsg
    end try
    end tell
    Is there something obvious that i'm misssing??
    ps: I have checked the XML structure correspondance already.. but i dont think that's the cause of problem as the manual import is working.
    Thanks for any help!
    Eric

    Hi Eric,
    If you can see the behavior in the user interface, you can see it in scripting. I think it makes perfect sense to have the XML import preferences set at the document level, because some documents need one set of preferences; other documents need another. I think (hope) that the user documentation covers the differences between application and document preferences (if not, I do, in my book).
    If you see a preferences object on both the application and the document, assume you want to use the document preferences. Unless you're trying to set preferences for new documents.
    Thanks,
    Ole

  • Writing contents of XML-documents with SAX

    I have the following problem: I use the SAX-API for parsing an XML- document and to write the contents of several tags into field variables.
    For that, I use the method 'characters(char cbuf[], int start, int len' and read the interesting string part
    'new String(cbuf,start,len) where cbuf is the character buffer, start the offset in the file and len the length of the string within the tag.
    I registered the following problem if I load my application from a jar-file (with a 13kb long xml-file):
    The offset runs till 8192 bytes and then resets to 1 and runs up again. If it reaches the offset 8192 bytes (8Kbyte) within a string as content of a tag, the string is split into two: the first till this offset and the second after it.
    I have already tried to solve this problem by setting some features of the SAX-parser but I had no success.
    The problem does not occur if I start my application from the Oracle-JDeveloper.
    Is there anyone who has an idea? I am glad about any information or hint which might a help for me.
    Thank you.

    From the javadocs for org.xml.sax.ContentHandler.characters(char[] ch,
    int start,
    int length)
    The Parser will call this method to report each chunk of character data. SAX parsers may return all contiguous character data in a single chunk, or they may split it into several chunks; however, all of the characters in any single event must come from the same external entity so that the Locator provides useful information.
    To get around this.
    - Initialize a StringBuffer field in startElement().
    characters = new StringBuffer();- Each time characters() is called, append the section of the char[] to the StringBuffer.
    characters.append(buf, offset, len);- Work with the entire resulting value in endElement().
    -Scott
    http://www.swiftradius.com

  • Why ribbon XML does not work in Excel 2007?

    I installed 4 VSTO Excel add-ins on an Excel 2007 PC today. The two that use a visual designer ribbon worked fine. But the 2 that use a Ribbon (XML) did not. The add-in starts ok. But the ribbon does not show. Why would that be?
    I wrote two more add-ins to demonstrate the problem. One puts an OK button on the ribbon using the visual designer. That add-in installs on the excel  2007 PC and works as it should. But the 2nd, an add-in that uses Ribbon (XML) to put a button on the
    ribbon, does not work.  The add-in does not display on the ribbon.
    Here is the code of the Ribbon (XML) add-in project.  How to get a ribbon (XML) ribbon to display in excel 2007?
    thanks,
    using System;
    using System.Collections.Generic;
    using System.Linq;
    using System.Text;
    using System.Xml.Linq;
    using Excel = Microsoft.Office.Interop.Excel;
    using Office = Microsoft.Office.Core;
    using Microsoft.Office.Tools.Excel;
    namespace ExcelAddIn4
    public partial class ThisAddIn
    private void ThisAddIn_Startup(object sender, System.EventArgs e)
    private void ThisAddIn_Shutdown(object sender, System.EventArgs e)
    protected override Office.IRibbonExtensibility CreateRibbonExtensibilityObject()
    return new Ribbon1();
    #region VSTO generated code
    /// <summary>
    /// Required method for Designer support - do not modify
    /// the contents of this method with the code editor.
    /// </summary>
    private void InternalStartup()
    this.Startup += new System.EventHandler(ThisAddIn_Startup);
    this.Shutdown += new System.EventHandler(ThisAddIn_Shutdown);
    #endregion
    <?xml version="1.0" encoding="UTF-8"?>
    <customUI xmlns="http://schemas.microsoft.com/office/2009/07/customui" onLoad="Ribbon_Load">
    <ribbon>
    <tabs>
    <tab idMso="TabAddIns">
    <group id="ContentGroup" label="Content">
    <button id="Button1" label="ok" screentip="Text"
    onAction="Button_OnAction" supertip="Inserts text at the cursor location"/>
    </group>
    </tab>
    </tabs>
    </ribbon>
    </customUI>
    using System;
    using System.Collections.Generic;
    using System.IO;
    using System.Linq;
    using System.Reflection;
    using System.Runtime.InteropServices;
    using System.Text;
    using System.Windows.Forms;
    using Office = Microsoft.Office.Core;
    // TODO: Follow these steps to enable the Ribbon (XML) item:
    // 1: Copy the following code block into the ThisAddin, ThisWorkbook, or ThisDocument class.
    // protected override Microsoft.Office.Core.IRibbonExtensibility CreateRibbonExtensibilityObject()
    // return new Ribbon1();
    // 2. Create callback methods in the "Ribbon Callbacks" region of this class to handle user
    // actions, such as clicking a button. Note: if you have exported this Ribbon from the Ribbon designer,
    // move your code from the event handlers to the callback methods and modify the code to work with the
    // Ribbon extensibility (RibbonX) programming model.
    // 3. Assign attributes to the control tags in the Ribbon XML file to identify the appropriate callback methods in your code.
    // For more information, see the Ribbon XML documentation in the Visual Studio Tools for Office Help.
    namespace ExcelAddIn4
    [ComVisible(true)]
    public class Ribbon1 : Office.IRibbonExtensibility
    private Office.IRibbonUI ribbon;
    public Ribbon1()
    public void Button_OnAction(Office.IRibbonControl control)
    MessageBox.Show("Button_OnAction");
    #region IRibbonExtensibility Members
    public string GetCustomUI(string ribbonID)
    return GetResourceText("ExcelAddIn4.Ribbon1.xml");
    #endregion
    #region Ribbon Callbacks
    //Create callback methods here. For more information about adding callback methods, visit http://go.microsoft.com/fwlink/?LinkID=271226
    public void Ribbon_Load(Office.IRibbonUI ribbonUI)
    this.ribbon = ribbonUI;
    #endregion
    #region Helpers
    private static string GetResourceText(string resourceName)
    Assembly asm = Assembly.GetExecutingAssembly();
    string[] resourceNames = asm.GetManifestResourceNames();
    for (int i = 0; i < resourceNames.Length; ++i)
    if (string.Compare(resourceName, resourceNames[i], StringComparison.OrdinalIgnoreCase) == 0)
    using (StreamReader resourceReader = new StreamReader(asm.GetManifestResourceStream(resourceNames[i])))
    if (resourceReader != null)
    return resourceReader.ReadToEnd();
    return null;
    #endregion

    Hello Steve,
    Most probably you have got an error in the ribbon XML markup. See
    How to: Show Add-in User Interface Errors for more information.
    I have noticed the following xml namespace:
    <customUI xmlns="http://schemas.microsoft.com/office/2009/07/customui" onLoad="Ribbon_Load">
    Use the following one instead:
    <customUI xmlns="http://schemas.microsoft.com/office/2006/01/customui"
    Also make sure that specified idMso values exist in Office 2007.
    You can read more about the Fluent UI (aka Ribbon UI) in the following series of articles in MSDN:
    1.
    Customizing the 2007 Office Fluent Ribbon for Developers (Part 1 of 3)
    2.
    Customizing the 2007 Office Fluent Ribbon for Developers (Part 2 of 3)
    3.
    Customizing the 2007 Office Fluent Ribbon for Developers (Part 3 of 3)

  • Writing to socket with setinterval not working in windows

    Hello Everyone,
    I'm trying to stream a big file to my server, and was using 'setInterval' just fine to slowly upload it from OS X, but when I moved my AIR application to a Windows Vista computer, it no longer worked. I started doing some investigation and found out that 'socket.writeBytes' function was not working inside of 'setInterval'. I then moved the code inside of 'setInterval' to outside of it and everythink worked, but obviously it was no longer streaming. Thinking there was something wrong with 'setInterval', I tried it  without the 'socket.writeBytes' function in it, and it started working fine.
    Not sure what is happening, but it seems like a bug in the air.Socket code.
    Here is my code:
        var socket = new air.Socket();
        socket.addEventListener(air.Event.CONNECT, function(e) {
            var stream = setInterval(function() {
                   socket.writeBytes(filePart, 0, filePart.length);
                    if (isDone) {
                        clearInterval(stream);
            }, 1000);
        socket.connect("myServer", 80);
    P.S. I also tried using 'air.Timer' and it was the same behavior as 'setInterval'.
    Thanks for any help.

    Hi,
    You should use the flush method:
    http://help.adobe.com/en_US/FlashPlatform/reference/actionscript/3/flash/net/Socket.html#f lush%28%29
    "Flushes any accumulated data in the socket's output buffer.
    On some operating systems, flush() is called automatically between execution frames, but on other operating systems, such as Windows, the data is never sent unless you call flush() explicitly. To ensure your application behaves reliably across all operating systems, it is a good practice to call the flush() method after writing each message (or related group of data) to the socket."
    I hope this helps!
    -Erica

  • Hyper links in pdf documents not working on iphone.

    Hello,
    When I view a pdf document with links, the links are not working.
    Are links not supposed to work on the iphone from pdf documents or I am missing something?
    Thank you in advance ... I have an iphone 4 running v4.1.
    Carlos

    Also having this problem: can't use links embedded in the PDF.
    Is there a solution to this?
    Thanks.
    Paul (iPhone 4 v4.2 / iPhone 3GS v4.1

  • Xml code not working with new version

    Hi,
    my following code is not working with the xalan 2.7.0 version. Any one can help to convert this to work on new version.
    import java.io.*;
    import java.util.*;
    import org.xml.sax.*;
    import org.apache.xalan.xslt.*;
    public class XML2Edifact
    public static void main(String args[])
    throws SAXException, IOException
    if(args.length < 3)
    throw new IllegalArgumentException(
    "Usage is XML2Edifact in.xml xsl.xsl out.edi");
    InputStream sin = new FileInputStream(args[0]),
    sxsl = new FileInputStream(args[1]);
    OutputStream sout = new FileOutputStream(args[2]);
    EdifactFormatter formatter = new EdifactFormatter(sout);
    XSLTProcessor processor =
    XSLTProcessorFactory.getProcessor();
    XSLTInputSource in = new XSLTInputSource(sin),
    xsl = new XSLTInputSource(sxsl);
    XSLTResultTarget out = new XSLTResultTarget(formatter);
    processor.process(in,xsl,out);
    }

    Solved, had to repair the Z10 with the PC!  Would have thought that upgrading software would have saved the environment so that this step was not needed (played with this for several weeks on-and-off).

  • Hyperlinks within .pdf documents not working IMac Safari

    I am working with a website that displays several .pdf documents. The documents contain hyperlinks to urls. Everything works fine in other browsers, but in Safari, these hyperlinks do not work. The cursor does not change when it enters the hyperlink space, and nothing happens if the link is clicked. I am using an IMac running OS 10.6. 8 and Safari 5.1.10. I have tried both the native (Preview) option and a plug-in. Neither makes any difference. Can anyone suggest a fix other than abandoning Safari?

    I am a new user to OnLINE Adobe. My hyperlinks from Word
    documents do not transfer to the PDF files. Please help!!!

  • Links to open another document not working on PC

    I created a pdf index for a bunch of documents (pdfs and Word docs) with links to open each of the files listed in their program. Works great on my Mac and on another Mac in the house. Client cannot get the links to work on his PC with WIndows NT. I dug out an old PC which also has NT and am having the same problem. Upgraded to Reader X but the links still don't work. Any ideas about how to get the links to work on a PC? Would it work on a newer operating system?

    George,
    Well I do not know. I just opened the files with whatever came with the iphone.
    Do you know if there is an "upgrade", to call it that or a specific viewer? or some where that you know
    that I can read about it?
    Converting our website to touch devices seems that there is that 1% that does not work.
    Thank you
    Carlos

  • XML Document not Valid

    Hi Techies,
    I m making a xml document and that is validated on xml schema. But it is giving error that document is not valid because it is not deg\fining DOCTYPE element. Is it necessary to define it

    It is not nesessary, but you have probably made your parser validating. In Java validating parsers use DTD to validate, and while schema validation is possibly those parsers are non-validating.

  • Serializing XML Documents(not Java Serialization)

    Hi,
    Iam looking for a class that can serialize the XML documents.
    Heres the problem in detail:
    - I need to create an XML String from scratch taking data from a database.
    - I created the XML Document adding the childs and attributes.
    - I need an XML string from the document. Iam not exactly sure how to do this. But Apache Xerces package provides an XMLSerializer class where we can convert the document into a string.
    Is there any functionality provided. If so where can i find it.
    Thanks,
    -Rao

    Not sure if this is a bug or not (filing one just in case it is) but the following program demonstrates that with 2.0.2.9 the internal subset is serialized correctly if the document was parsed with validationMode set to true. If set to false only the entities show up in the internal subset.
    package xmlbugs;
    import java.io.*;
    import org.w3c.dom.*;
    import oracle.xml.parser.v2.*;
    public class TestSerializeLocalSubset {
    private static final String xml =
    "<?xml version='1.0' encoding='UTF-8'?>"+
    "<!DOCTYPE bar ["+
    "<!ENTITY bar 'baz'>"+
    "<!ELEMENT foo EMPTY >"+
    "<!ELEMENT bar (foo) >"+
    "]>"+
    "<bar><foo/></bar>";
    public static void main(String[] a_ ) throws Exception {
    System.out.println("Test with parser in validation mode = false");
    DOMParser d = new DOMParser();
    d.setPreserveWhitespace(false);
    d.setValidationMode(false);
    d.parse( new StringReader(xml));
    Document x = d.getDocument();
    XMLDocument xx = (XMLDocument) x;
    xx.print(System.out);
    System.out.println("Test with parser in validation mode = true");
    DOMParser d2 = new DOMParser();
    d2.setPreserveWhitespace(false);
    d2.setValidationMode(true);
    d2.parse( new StringReader(xml));
    x = d2.getDocument();
    xx = (XMLDocument) x;
    xx.print(System.out);
    }

  • XML Rendering not working in Safari

    Hi all,
    Just updated my official unlock iPhone 3G S to 3.1 yesterday. Used Safari on it last night and waptrick.com wouldn't render (1st time I went there). It just showed its source, which is in XML (I think). A friend's unofficial unlock 3G 3.0 Safari showed the page fine. I've never noticed this before and I'm not sure how to proceed. Nothing on the web/Google has listed this. Is it settings? HELP! Cheers.
    Sryn

    Hi Shay,
    Thank you for the quick answer.
    No it does not work on the ipad or iphone.
    It works on chrome for the ipad!
    PPR does not work for the second click on the same button.
    In you example it will accept the first click but ignore the rest of the clicks on the same button.
    We are about to create a ADF app for the ipad and this is a major showstopper.
    Hope we can find some sort of workaround, that does not involve dropping PPR.
    Regards Johnny

  • Web show document not working..

    Hey guys. I just recently installed the stand alone AS forms and reports server 10.1.2.0.2.. the reporting functionality is not working...
    basically the application uses the reports engine to create a PDF file which is then read by the web.show_document built in. It works on the developer AS, but doesnt work for the forms and reports AS...
    the link I am reading the file from looks like this..
    http://<IP ADDRESS>:7777/forms/reports_output/116_rec_jan.PDF
    where the "IP ADDRESS" is the IP of the sever, and "/reports_output" is a virtual directory. Do I have the wrong port or something? The file "116_rec_jan.PDF" does exist on the server so I can't see the problem...
    Could it be that I dont have adobe reader on my server? Does the AS use the server's adobe reader to read the file or the client side adobe reader? Anyone know whats going on? Thanks for your thoughts.
    Mo

    When I was testing this, I restarted the entire server. The output URL seemed to change so im guessing the OPMN picked up the changes in the forms.conf file. How do you manually restart the OPMN? Here is the line I inserted into the forms.conf file:
    AliasMatch ^/forms/reports_output/ "D:\Reports_Output"
    Below is the coding I used to create the URL for web.show_document.. I bolded what was important... a lot of the coding in here has to do with the Oracle VPD, and loading parameters into the report..
    PROCEDURE RUN_REPORT_FILE IS
    LIST_ID PARAMLIST;
    V_REP_OBJ REPORT_OBJECT;
    V_REP_ID VARCHAR2(100);
    V_FILE_NAME VARCHAR2(200);
    V_REPORT_LOC VARCHAR2(100);
    V_BTD_LOC VARCHAR2(100);
    V_PRN_SEQ NUMBER;
    V_PARAMS NUMBER;
    V_DATE DATE;
    V_NUMBER NUMBER;
    V_CHAR VARCHAR2(4000);
    V_VIRT_PATH VARCHAR2(100);
    V_SERVER VARCHAR2(100);
    V_SERVER_PORT VARCHAR2(50);
    V_RPT_TAG VARCHAR2(300);
    BEGIN
    IF :CONTROL.FILE_NAME IS NULL THEN
    IF SHOW_ALERT('MISS_FILE') = ALERT_BUTTON1 THEN
    RAISE FORM_TRIGGER_FAILURE;
    END IF;
    END IF;
    SET_VPD_CONTEXT.RECORD_PERMISSION_SET(
    :GLOBAL.P_CY,
    :GLOBAL.P_VW,
    :GLOBAL.P_ROL,
    :GLOBAL.P_PRT,
    :GLOBAL.P_STR,
    :GLOBAL.P_AR,
    :GLOBAL.P_DS,
    :GLOBAL.P_DV,
    :GLOBAL.P_RG,
    :GLOBAL.P_AD,
    :GLOBAL.P_BY,
    :GLOBAL.P_LOG);
    SELECT VALUE
         INTO V_VIRT_PATH
         FROM SYSTEM_DEFAULTS
         WHERE ATTRIBUTE = 'VIRTUAL REPORTS PATH';
    SELECT VALUE
         INTO V_SERVER
         FROM SYSTEM_DEFAULTS
         WHERE ATTRIBUTE = 'SERVER LOCATION';     
    SELECT VALUE
         INTO V_SERVER_PORT
         FROM SYSTEM_DEFAULTS
         WHERE ATTRIBUTE = 'SERVER PORT';     
    SELECT VALUE
         INTO V_BTD_LOC
         FROM SYSTEM_DEFAULTS
         WHERE ATTRIBUTE = 'REPORT OUTPUT LOCATION';               
    IF :GLOBAL.DESTROY_REPORT_LIST = 'Y' THEN
    DESTROY_PARAMETER_LIST ('REPORT_PARAMS');
    END IF;
    SELECT VALUE
    INTO V_REPORT_LOC
    FROM SYSTEM_DEFAULTS
    WHERE ATTRIBUTE = 'REPORT HOME';
    IF :CONTROL.SAVE_FLAG = 'Y' THEN
    SELECT SAVED_REPORT_SEQ.NEXTVAL
    INTO V_RPT_TAG
    FROM DUAL;
    V_FILE_NAME := V_BTD_LOC||V_RPT_TAG||'_'||:CONTROL.FILE_NAME||'.PDF';
    INSERT INTO COMPANY_SAVED_REPORTS(
    SELECT V_RPT_TAG,
    NODE_KEY,
    FILE_NAME,
    :CONTROL.FILE_NAME,
    :GLOBAL.CY_COMPANY_KEY,
    :GLOBAL.STR_STORE_KEY,
    SYSDATE,
    TO_CHAR(SYSDATE, 'HH24:MM:SS'),
    :GLOBAL.ACCESS_USER,
    :GLOBAL.ACCESS_USER,
    SYSDATE,
    :GLOBAL.ACCESS_USER,
    SYSDATE
    FROM SYSTEM_MENUS
    WHERE NODE_KEY = :PARAMETER.SM_NODE_KEY);
    ELSE
    V_FILE_NAME := V_BTD_LOC||:CONTROL.FILE_NAME||'.PDF';
    END IF;
    LIST_ID := CREATE_PARAMETER_LIST ('REPORT_PARAMS');
    V_REPORT_LOC := V_REPORT_LOC||:PARAMETER.REPORT_FILE||'.RDF';
    IF :GLOBAL.BUILD_PARAMETER = 'Y' THEN
    GO_BLOCK('REPORT_PARAMS');
    FIRST_RECORD;
    SELECT COUNT(*)
    INTO V_PARAMS
    FROM REPORT_PARAMS
    WHERE FILE_NAME = :PARAMETER.REPORT_FILE;
    IF V_PARAMS > 0 THEN
    LOOP
    IF :REPORT_PARAMS.PARAM_TYPE = 'KEY' THEN
    :REPORT_PARAMS.PARAM_VALUE := :REPORT_PARAMS.PARAM_VALUE_DISPLAY;
    END IF;
         ADD_PARAMETER(LIST_ID, :REPORT_PARAMS.PARAM_NAME, TEXT_PARAMETER, :REPORT_PARAMS.PARAM_VALUE);
    EXIT WHEN :SYSTEM.LAST_RECORD = 'TRUE';
    NEXT_RECORD;
    END LOOP;
    END IF;
    END IF;
    ADD_PARAMETER(LIST_ID, 'VPD_P_CY', TEXT_PARAMETER, :GLOBAL.P_CY);
    ADD_PARAMETER(LIST_ID, 'VPD_P_VW', TEXT_PARAMETER, :GLOBAL.P_VW);
    ADD_PARAMETER(LIST_ID, 'VPD_P_ROL', TEXT_PARAMETER, :GLOBAL.P_ROL);
    ADD_PARAMETER(LIST_ID, 'VPD_P_PRT', TEXT_PARAMETER, :GLOBAL.P_PRT);
    ADD_PARAMETER(LIST_ID, 'VPD_P_STR', TEXT_PARAMETER, :GLOBAL.P_STR);
    ADD_PARAMETER(LIST_ID, 'VPD_P_DS', TEXT_PARAMETER, :GLOBAL.P_DS);
    ADD_PARAMETER(LIST_ID, 'VPD_P_DV', TEXT_PARAMETER, :GLOBAL.P_DV);
    ADD_PARAMETER(LIST_ID, 'VPD_P_RG', TEXT_PARAMETER, :GLOBAL.P_RG);
    ADD_PARAMETER(LIST_ID, 'VPD_P_AD', TEXT_PARAMETER, :GLOBAL.P_AD);
    ADD_PARAMETER(LIST_ID, 'VPD_P_BY', TEXT_PARAMETER, :GLOBAL.P_BY);
    ADD_PARAMETER(LIST_ID, 'VPD_P_LOG', TEXT_PARAMETER, :GLOBAL.P_LOG);
    V_REP_OBJ := FIND_REPORT_OBJECT('GENERIC');
    SET_REPORT_OBJECT_PROPERTY(V_REP_OBJ, REPORT_FILENAME, V_REPORT_LOC);
    SET_REPORT_OBJECT_PROPERTY(V_REP_OBJ, REPORT_DESNAME, V_FILE_NAME);
    :GLOBAL.DESTROY_REPORT_LIST := 'Y';
    V_REP_ID := RUN_REPORT_OBJECT(V_REP_OBJ, LIST_ID);
    DESTROY_PARAMETER_LIST (LIST_ID);
    IF :CONTROL.SAVE_FLAG = 'N' THEN
    WEB.SHOW_DOCUMENT('http://'||V_SERVER||':'||V_SERVER_PORT||'/forms'||V_VIRT_PATH||'/'||:CONTROL.FILE_NAME||'.PDF', '_blank');
    ELSE
    WEB.SHOW_DOCUMENT('http://'||V_SERVER||':'||V_SERVER_PORT||'/forms'||V_VIRT_PATH||'/'||V_RPT_TAG||'_'||:CONTROL.FILE_NAME||'.PDF', '_blank');
    END IF;
    :GLOBAL.P_CY := NULL;
    :GLOBAL.P_VW := NULL;
    :GLOBAL.P_ROL := NULL;
    :GLOBAL.P_PRT := NULL;
    :GLOBAL.P_STR := NULL;
    :GLOBAL.P_AR := NULL;
    :GLOBAL.P_DS := NULL;
    :GLOBAL.P_DV := NULL;
    :GLOBAL.P_RG := NULL;
    :GLOBAL.P_AD := NULL;
    :GLOBAL.P_BY := NULL;
    :GLOBAL.P_LOG := NULL;
    COMMIT;
    END;

  • Share Document Not Working?

    Is Sharing not working? No one receives the Email invites and their entered Email address, after the invites were sent, are not listed anywhere as being currently shared. (using the desktop version which is online and shows green)

    Hi,
    I can understand that there are usability issue in Sharing feature. Currently, email notification is just for information. Once you share script with some one, he needs to login into Story, and then save script.
    After login, the user can see notification of the shared script on the top bar in Projects view. The user then can can save the script and then can start working on the script.
    Please find step by step procedures:
    1. Owner (Say User1) shares the script with another user (say User2)
    2. User2 received an email notification
    3. User2 launch Story
    4. User2 provides login and password
    5. After login, user2 switches to "Projects view:
    incase user2 opens "Home" Page then click on "Project" tab on the top left bar in the application
    6. In the Projects view there is a mail icon, which will show all scripts (I also placed snapshot in this thread)
    7. Now click on this icon, user2 can see notification of all shared scripts
    8. Now user2 clicks on the script and save this script
    9. Now user2 can start working on this script
    Please let us know if you face any problem in this workflow. We would like to solve this problem and also try to find a way to make this feature user friendly.
    Regards,
    Neeraj Gupta

Maybe you are looking for

  • How to track my stolen ipod only using the serial number

    I had my iPod stolen from me sometime within the last week. I changed my iCloud password tonight & I was just wondering if there is any way I can track it using the serial number because I did not set up "find my iPhone" before it was stolen. It was

  • BT Mail is Poor/Unfit for purpose and other issues

    Having been migrated to BT Mail I was dismayed at the considerable increase in spam received in my account.  Taken a while but I now realise why.............BT Mail has not been adding to my blocked sender list.  It says it does, but it does not add

  • Recording from aux track

    I am using an Aux track to monitor external audio. Any chance it is possible to create some sort of environment setting to allow me to record a track directly from there?

  • Asset Activation with different values in dep. areas via CJ88

    Hi, I would like to activate an asset via CJ88 from an AuC. The challenge is that I would like to activate different values in different depreciaton areas. I have seen that the AuC uses transaction types 338/339 for the transfer posting. In this tran

  • Failed to start HTTP daemon

    I'm trying SSL thru the iMS 5.2 I've down a frish installation for the iMS 5.2 I'm facing this problem, when i start the messaging server i got this ERROR: development # ./start-msg /app/ims-thru-ssl: POP3 daemon process already running: 4043 /app/im