BIP - XML Issue

I''m new using BIP.\
I'm connecting thru JDBC.
I created a data model using an SQL statement but when I press XML key in the upper right nothig happens.
Could anybody helps with this issue.
Thanks a lot in advance.
Gaby

I't's solved. Thanks

Similar Messages

  • BIP report issues

    We are currently upgrading from Siebel 7.5 to 8.1 and are working on converting some of our Actuate Reports into BI Publisher.
    I am trying to create an Integration Object to use with a BI Publisher Report that will display Activities of Type = Call & Status = Done for selected sites under Site Management -> Activities. FYI... this "Call" Activity Type is not a vanilla LOV. It has a type of TODO_TYPE with a parent of General in case you need to create it for any testing that you might do.
    I have used the wizard to create the integration object with the Main BC as Clinical Protocol Site and a container BC of Action (No Owner Lock) and a container under that of Action (No Owner Lock)_Employee. I then inactivated all fields and just re-activated the ones I wanted to display in my report. I then used the synchronize button to activate any other required fields. I then Deployed to Runtime and compiled.
    Issue #1: When I generated the Sample XML, the fields were displayed in some containers and not others. I would expect the containers and fields to be displayed in the Sample XML even if they do not contain any data. Also, there looks like there is one extra Action (No Owner Lock) container surrounding the other Action (No Owner Lock) containers. I noticed that if I removed the Value from the XML Container Element for this Integration Component, the extra one was removed from the sample XML.
    In my local database, I created a new report, associated it to the Integration Object, attached the BI Publisher Report (RTF File), generated the XLIFF and associated it to the View (Clinical Protocol Site List View) where the report is run from...
    Issue #2: When I run the report, (make sure you query for select sites before running) it only shows new call Activities that I have created. It doesn't show previously created call activities. Could it only be showing the activities created by me? It should be displaying all call activities no matter who created them. Also, it shows 2 of some of the call activities in the report. Again, I noticed that if I removed the Value from the XML Container Element for the Action (No Owner Lock) Integration Component, the duplicates were removed from the report. The report also ran quicker.
    Issue #3: For the call Activities that are displayed, it does not display the Contact Last Name & First Name values which are fields in the Action (No Owner Lock)_Employee Integration Component.
    Issue #4: Currently we are using logic in the BI Publisher report to only show "Call" Activities. Is there a way on the Integration Object side to only populate the XML file with these types of activities instead of having the XML file created with all site activities (which could be a lot)?
    I have attached a SIF of the "BIP PRA Site Phone Log Report" Integration Object, the Sample XML created by Siebel, my BI Published RTF Report, and sample XML I created from the Siebel generated XML to test my report. I have also included a SIF of the LS Clinical Projects which includes the BC's contained in the Integration Objects.
    Additional Request: I see that all the vanilla report templates have in their footer "Generated by <?Login?>" We would like to do the same. How do you get the Logged in user value into the XML so that it can be displayed in the report?
    I would appreciate any assistance you could provide.

    I am running into the same issue. Has anyone successfully done this? Also, is this even intended functionality?

  • ORA-20001: The printing engine..Is this related to a BIP licensing issue?

    Hello all,
    The error "ORA-20001: The printing engine could not be reached because either the URL..." happens in 2 cases:
    <pre>
    1. When our BIP is down or being bumped
    2. As an APEX administrator, in workspace environment settings, the print server is set to OFF.
    </pre>
    I'm thinking that this is a licensing issue but I need some clarification on what is causing the error, because all we are trying to do is bring up a PDF report that a user can open or save. BIP is not involved at this point. Is it because the report was developed using BIP that APEX needs BIP up? How does APEX even know the report was developed using BIP? Were are using APEX 3.2.1.00.12 and BIP 10.1.3.4.1
    The error happens when a user clicks on a PDF icon that calls an "After Submit Process". The following is the code and the report that was created in BIP is loaded into APEX with a "Named Columns (RTF)" layout type.
    Alex.
    declare
      l_xml                         clob;
      l_template                    clob;
      l_request_blob                blob;
      l_response                    blob;
    begin
       ...call up a stored proc to populate l_xml with report data
      -- Fetch template
      select page_template
      into   l_template
      from   apex_030200.wwv_flow_report_layouts
      where  flow_id = :app_id
      and    report_layout_name = 'pdf_report';
      -- Convert CLOB to BLOB
      l_request_blob := wwv_flow_utilities.clob_to_blob(l_xml);
      -- Call unsupported and undocumented APEX function
      l_response :=
        apex_030200.wwv_flow_print_util.convert(
          p_report_data   => l_request_blob,
          p_template      => l_template,
          p_template_type => 'rtf',
          p_output        => 'pdf'
      -- Set correct mime type and download response                                           
      owa_util.mime_header('application/pdf', false);
      htp.p('Content-length: ' || dbms_lob.getlength(l_response));
      htp.p('Content-Disposition: attachment; filename="Claim_details.pdf"');
      owa_util.http_header_close;
      apex_application.g_page_text_generated := true;
      apex_application.g_unrecoverable_error := true;
      wpg_docload.download_file(l_response);

    See, http://www.oracle.com/technetwork/developer-tools/apex/configure-printing-093060.html
    http://download.oracle.com/docs/cd/E17556_01/doc/install.40/e15513/otn_install.htm#CBHBJDDE
    (excerpt copied here, for you convenience)
    7. Enabling Network Services in Oracle Database 11g
    By default, the ability to interact with network services is disabled in Oracle Database 11g release 1 (11.1). Therefore, if running Oracle Application Express with Oracle Database 11g release 1 (11.1), use the new DBMS_NETWORK_ACL_ADMIN package to grant connect privileges to any host for the FLOWS_030100 database user. Failing to grant these privileges results in issues with PDF/report printing, specifically, you will get the following error message:
    ORA-20001: The printing engine could not be reached because either the URL specified is incorrect or a proxy URL needs to be specified.
    Follow the steps mentioned in the Oracle Application Express Installation Guide, Enabling Network Services in Oracle Database 11g. Also refer to the troubleshooting section in case you receive an ORA-44416: Invalid ACL error after running the previous script.

  • SSRS-XML issue

    I have a field in the database table that contains an XML string. It is not formatted. In report we need to display it as formatted like XML
    xml, with highlight option, tree view with expand/collapse  option on each node. We are able to achieve the formatting with below script
    Public Function FormatXml(file_content As String)As String 
    Dim doc As New System.Xml.XmlDocument() 
    doc.LoadXml(file_content) 
    Dim sb As New System.Text.StringBuilder() 
      Dim settings As New System.Xml.XmlWriterSettings() 
      settings.Indent = True 
      settings.IndentChars = "    "     ' This includes 4 non-breaking spaces: ALT+0160 
      settings.NewLineChars = System.Environment.NewLine 
      settings.NewLineHandling = System.Xml.NewLineHandling.Replace 
      settings.OmitXmlDeclaration = True 
      Using writer As System.Xml.XmlWriter = System.Xml.XmlWriter.Create(sb, settings) 
        doc.Save(writer) 
      End Using 
      Return sb.ToString() 
    End Function
    But this is not working with all IE version.Mainly we are trying to get  tree view with expand/collapse  option on each node in the report .  Please help me in resolving this issue

    I've tried creating a new parm:Object but the issues still
    comes down to how Microsoft generates the URL parms using the ":"
    to define a variable.

  • Idoc flatfile to IDOC xml issue with new PI7.11 module SAP_XI_IDOC/IDOCFlat

    Hi,
    I am trying to develop a scenario as mentioned in the blog using the new module available in PI7.1,but I am getting this error
    "Error: com.sap.conn.idoc.IDocMetaDataUnavailableException: (3) IDOC_ERROR_METADATA_UNAVAILABLE: The meta data for the IDoc type "ORDERS05" is unavailable."
    I have made every configuration correct and IDOC meta data available in both SAP R3 and PI,but it is still complaning about the meta data does not exist.
    Blog:  http://www.sdn.sap.com/irj/scn/weblogs?blog=/pub/wlg/13743%3Fpage%3Dlast%26x-order%3Ddate
    did anybody face issue with the new module available "SAP_XI_IDOC/IDOCFlatToXmlConvertor",please help me or give me mre information why I am getting this meta data error.
    Thank you,
    Sri

    Hi Sri,
    To Convert IDOC Flat file into IDOC xml from the given blog, the IDOC flat file should be present in standard format like:
    E2EDK01005                    0000047110815000000000001.........
    E2EDKA1003                    0000047110815000000000002.........
    E2EDKA1003                    0000047110815000000000003..........
    E2EDKA1003                    0000047110815000000000004........
    The Flat file have relationship as IDOC Number "000004711081500000" and segment sequence "0000001".
    If your flat file is not in this formate so i don't think that module is able to convert into IDOC xml. and if your file is already in this format then it may be issue with destinations which are created in NWA.
    Thanks
    Harish

  • Castor XML  issue

    Hi,
    i m using castor-1.0.3 for generating source code from xml schema.
    i ve a complex schema n even have binding file too for class name conflicts.
    The issue i m facing is when i run "
    java org.exolab.castor.builder.SourceGenerator....." it gets hung after generating certain class files. it ll never proceed. i need to explicitly terminate after waiting for a long time..
    I m stuck here as to what might be going wrong here..
    Kindly suggest.
    Regards,
    Lance

    FYI:
    I tried Castor. In my opinion, there's a much better solution BC4J. BC4J lets you read and write your objects to XML, using readXML and writeXML. It seems more mature than Castor.
    If you are just reading and writing your object or collection of objects and hierarchy to file, then you only use readXML and writeXML.
    With BC4J, you model you objects in BC4J, then BC4J allows you to create a DTD for these objects. So if you have inbound or outbound XML that you need to transform from/to, you can then use this DTD and the DTD/XML Schema of the other format to write a xslt transformation.
    Another benefit, you can pass object hierarchies across a web service using writeXML on the client side and then readXML to repopulate the object hierarchy on the server side of the web service.
    Richard Catlin

  • Deposit Advice XML Issue

    Hello Gurus, I am having an issue with XML Deposit Advice and XML Check Writer. In our deductions, we have City Withheld and Head Tax Withheld. For some employees, the City Withheld is showing as '0' on the Deposit Advice Slip but '6.92' on the SOE. Though the Deposit Slip shows '0' for withheld under deductions, the Net Pay matches with that on the SOE. Can anyone tell me why this is happening? Any help is highly appreciated.
    Thanks, Naveen.

    This is an internal error with Hr/Payroll.
    Thanks, Naveen Gagadam.

  • Menus.xml issue when trying to launch Dreamweaver CS4

    I have used Dreamweaver CS4 for many years on my Mac. I had a drive failure and have had to reload all of my applications from scratch as there seemed to be an issue with the Time Machine back up. Everything is working well apart from Dreamweaver CS4 which brings up an error message telling me to delete my menus.xml file and rename menus.bak to menus.xml which just doesn't work.
    I have checked and this has been asked before but none of the previous answers that I could find will work for me. Any new ideas?
    Apple MacBook Pro (mid 2010 model) running bang up to date version of OSX Mavericks.

    dg28 wrote:
    Thanks Preran
    One issue appears to be that Dreamweaver has loaded the help and configurations files into a folder in applications rather than in application support. I do not have a Dreamweaver CS4 folder anywhere in applications support under my identity or than of the loacl admin.
    You need to turn on your hidden folders to see it.
    http://guides.macrumors.com/Viewing_hidden_files_on_a_Mac

  • E4X Xml issue

    hi,
    I am facing an intermittent issue with E4X.
    I am trying to do following:
    1. Get XML from web service in string format.
    2. Replce \ using regular expression. Below is the code.
    webResult = webResult.replace(/&amp;/g, '');
    webResult = webResult.replace(/&/g, '');
    xmlResult = new XML(webResult.replace(/\\/g, ''));
    3. The issue is XML tags/attributes are mispaced as below.
    Input Xml (i.e. webResult) contains following line :
    <SourceHeaderKey Source="CI" SourceCode="20" Key="708011233708011233258956002000" />
    Replced with below string in E4X :
    <SourceHeaderKey Source="CI" SourceCode="20" Key=""708011233708rceCode="20" Key="708011233708011233258970002000"/>
    4. Key="708011233708011233258956002000" is correct, but in E4X it is Key=""708011233708rceCode="20" Key="708011233708011233258970002000"
    Any known issues with E4X. I tried searching on web but could  not find any.
    Any help is greatly appreciated. PLease help.
    Thanks,
    Aditya
    Adi

    Hi Aditya,
    You're asking this question in the wrong forum, this forum is for reporting issues with the forums themselves, not individual product support.
    I think your best bet to get some help with this is over in the JavaScript forum on the asp.net site:
    http://forums.asp.net/130.aspx/1?HTML+CSS+and+JavaScript
    One note though, I did see that Firefox has completely dropped support for E4X:
    https://developer.mozilla.org/en-US/docs/E4X/Processing_XML_with_E4X?redirectlocale=en-US&redirectslug=Core_JavaScript_1.5_Guide%2FProcessing_XML_with_E4X
    Good luck.
    Don't retire TechNet! -
    (Don't give up yet - 12,420+ strong and growing)

  • CWCLI and XML issue on RME 4.3

    Hi All,
         On a Windows 2008 Server with SP1 running LMS 3.2, I have a script that creates IOS configuration files with the appropriate XML command file for use with the cwcli config import function.  The XML file contains the following tags and values:
    <payload>
    <command>
       cwcli config import -u admin -p [Base64PWD] -device [DisplayName]
      <arg>
       -f
      </arg>
      <arg-val>
       D:\Program Files\CSCOpx\tftpboot\[DisplayName].cfg.[ID]
      </arg-val>
    </command>
    </payload>
    When I execute the sample script to invoke the Servelet, as provided in the RME users guide, I get the information that the job is running:
    <!-- Executing: cwcli config import -u admin -p [Base64PWD] -device [DisplayName] -f D:\PROGRA~2\CSCOpx\temp\argValFile.txt -->
    <cwcli> INFO - Devices to be attempted in the job:
    [DisplayName]
    <cwcli> INFO - The job 5548 is created
    Waiting for the job results ...
    <cwcli> - Job Status: Job Succeeded
    Successful Devices:
    [DisplayName]
    <cwcli> INFO - CM0107 Import the config file to PRIMARY Running Config on device successful CM0091 Check if the device prompt is available.
    CM0089 Config archival successful for [DisplayName]
    <cwcli> INFO - The transport mode used is TFTP
    SUMMARY
    ========
            Successful: import
    <!-- Processing complete -->
    After this is where it gets weird!  On the switch - having previously issued the command "term mon" - I see the following output displayed:
    Apr 28 16:56:38: %SYS-5-CONFIG_I: Configured from console by cw_2000_hq on vty2 (10.185.64.101)
    Apr 28 16:56:46: %SYS-5-CONFIG_I: Configured from tftp://[CWServer]/20110428165646943-[DeviceIP].cfg by console
    and checking the device I see that no changes have taken place.  Inspection of the file that was sent via TFTP to the device indicates why - it contains garbage:
       D:\Program Files\CSCOpx\tftpboot\[DisplayName].cfg.[ID]
    end
    The file I am specifying between the XML <arg-val> tags contains these commands:
    interface FastEthernet0/21
      switchport access vlan 2400
      switchport mode access
      no cdp enable
      spanning-tree portfast
      ip verify source
      shutdown
    end
    Can anyone tell me what I am doing wrong, please..?
    Thanks,
    SRGi

    The documentation is wrong.  Your payload should include the commands you want to deploy.  So, use:
       cwcli config import -u admin -p [Base64PWD] -device [DisplayName]
       -f
      interface FastEthernet0/21
      switchport access vlan 2400
      switchport mode access
      no cdp enable
      spanning-tree portfast
      ip verify source
      shutdown
    end

  • BIP scheduling issue

    Hi experts,
    BIP(11.1.1.5) reports fetches data when manually run. But when scheduled through BIP Scheduler, they send out blank reports. We are very sure that this is not a data load issue because by the time these scheduled jobs run, data would have got loaded into the tables.
    What could possiblly be the reason for this issue.
    Thanks in advance.

    I't's solved. Thanks

  • Premiere CC to ProTools OMF/XML issues

    XML and OMF audio timecode does not relink properly in external applications with my current Premiere CC / Mavericks configuration. Reverting to CS6 solves the issue described below...cannot say with certainty if previous CC versions solve the issue.
    Exporting OMF's to our sound engineer do not relink properly in ProTools - I've tried every available method for OMF export (encapsulated, referenced, etc).
    Exporting XMLs have a related issue - if an XML export is brought into another application (e.g. FCP 7) The audio region is correct but audio is not synced properly...it is pulling from incorrect timecode. This is externally recorded audio, recorded separately from source video. Video tracks are correctly synced.
    I can get accurate XML's out of Audition. Reverting to CS6 via XML and exporting OMF from there is my current workaround.
    Mac OSX 10.9.2
    Premiere CC 7.2.2

    Hi Andy,
    Sorry this isn't working for you.
    Can you export a much simpler version of your sequence?
    Can you try exporting only with mono tracks?
    Are there any nested sequences in the sequences?
    For file export, did you choose "encapsulate?"
    Are all the clips the same sample rate?
    Does the sample rate of the clips match sequence settings?
    Audition should work. If you have changed any of the above, please try another export from Audition.
    Thanks,
    Kevin

  • Loading audio into Adobe Edge via XML issue

    I am having an issue linking the location of an audio file via XML in Adobe Edge. I am able to get the info and post it as text, however I can not get it to load into the audio player. This is my first try at code ever, nothing too complex if possible.
    Here is the code that works along with the part I can not get to work.
    var fromName;
    var outputField = $(this.lookupSelector("xmlOutput"));
    $.ajax({   
        type: "GET",
        url: "edgesound.xml",
        dataType: "xml",
        success: function(xml) {
            fromName = $(xml).find('audio1').text();       
            outputField.html(fromName);    
        var newSound = new Audio();    
         newSound.src = "sound.mp3";
         newSound.volume = 0.5;
         sym.$("soundBtn").toggle(
    function(){
         newSound.play();
         sym.$(this).html('stop'); },
    function(){
         newSound.pause();
         sym.$(this).html('restart'); });
    // XML Try below   
         var newSound_xml = new Audio();    
         newSound_xml.src = "fromName";
         newSound_xml.volume = 0.5;
         sym.$("soundBtn_xml").toggle(
    function(){
         newSound_xml.play();
         sym.$(this).html('stop'); },
    function(){
         newSound_xml.pause();
         sym.$(this).html('restart'); });
    And here is the simple XML doc being called
        <?xml version="1.0" encoding="utf-8"?> <ax>  <audio1>sound.mp3</audio1>  </ax>
    I've also tried taking the .mp3 out of the xml and trying the following in the code with no success.
    newSound_xml.src = "fromName" + ".mp3";
    Thank you and here is a link to demo what I have so far.
    http://www.projectcog.com/audio/xml_audio.html

    Hi Exports,
    I am able to load directly from XML file to oracle tables. I am also successfully reverse engineer the XSD file into oracle relational structure but after that I don't know how to assign XML data file to the schema and load to oracle table
    Can you explain me the steps how to assign XML file to the schema (created from XSD ) and load to oracle table. which KM to use to load from XSD to oracle.
    Thanks,
    Mano

  • GReturn get.get('XML') issue (Roel)

    Roel,
    I have an issue with the "function call LOV onchange" (I have the same issue with autocomplete function od Denes)
    The first alert in the source below return the value of my item and it is send to the function but the second alert return '0', no result found
    if(pValue){
    get.add('TEMPORARY_APPLICATION_ITEM',pValue)
    alert(pValue);
    }else{
    get.add('TEMPORARY_APPLICATION_ITEM','null')
    gReturn = get.get('XML');
    alert(gReturn.getElementsByTagName("item").length);
    When i execute the same function in SQL commands i have
    Content-type: text/xml; charset=UTF-8
    Cache-Control: no-cache
    Pragma: no-cache
    this xml genericly sets multiple items5EcarZb23
    Statement processed.
    U can see that a record is found for the id sent to the function.
    Could u help me? thx

    Hi Celio,
    Sorry for the late response.
    ODP is the On Demand Process
    From the JavaScript you make a call to a ODP procedure you need to create in the Shared Components.
    I like to use alert(myvariable); etc in my Javascript to see that values are getting to the ODP call.
    Then because the ODP is all PL/SQL I like to place a few insert statements to a table that I created called bcdebug.
    These inserts shows it actually got to the ODP and it is not a JavaScript problem.
    Then I would insert again to show the value for v('TEMPORARY_APPLICATION_ITEM') in the ODP also.
    I created a procedure called pdebug so I could debug my PL/SQL code.
    create or replace PROCEDURE "PDEBUG"
    (pinput IN VARCHAR2,
    pcommit IN BOOLEAN DEFAULT TRUE)
    is
    lString VARCHAR2(4000);
    lstart NUMBER;
    lLength NUMBER;
    lcnt NUMBER:=0;
    BEGIN
    --htp.p('PDEBUG['||length(pinput)||']');
    lLength:=length(pinput);
    lstart:=1;
    LOOP
    lcnt:=lcnt + 1;
    lString:=substr(pinput,lstart,4000);
    -- htp.p('PDEBUG-Length['||lLength||']');
    -- htp.p('PDEBUG-Start['||lstart||']');
    insert into bcdebug
    (input, create_dttm)
    values
    (lString,sysdate);
    lLength:=lLength - 4000;
    lstart:=lstart + 4000;
    EXIT WHEN lLength <= 0 OR lcnt >10;
    END LOOP;
    if(pCOMMIT)then
    COMMIT;
    end if;
    END;
    pdebug('In Get select List');
    pdebug(v('TEMPORARY_APPLICATION_ITEM ');
    Hope it helps for future coding too.

  • Last night's update causing XML issues with MAC and MS Word

    I am running Snow Leopard on a MAC. Last night Firefox installed an update, and the software I use for work no longer works with Firefox. I use a custom built web app that uses XML code to take web created info and compile into a Word document. Until this latest update, the issue had been when creating the Word doc, extra XML code was being written for images causing them to show as blank in the Word document. Now, the document is being created but not with a .doc extension. I had been in contact with Microsoft about the first problem with no resolution. They were able to duplicate the problem. The first problem only happens on a MAC and is not specific to operating system. This new problem is only happening with Firefox, not Safari, and started today after the last update.

    HI,
    If you post a crash report, perhaps we can help.
    If Safari has just crashed, press the Report button on the CrashReporter dialog box to view the crash information.
    Now copy/paste the entire contents of the Crash Reporter window into your reply here. If the crash report dialog does not appear or the crash is hard to reproduce, crash logs can be retrieved from the ~/Library/Logs/CrashReporter> folder.
    You may have Safari third party plugins that were compatible with your previous version of Safari but not Safari 5.0.1. It's the responsibility of third party developers to update their software, not Apple.
    Follow the instructions here. Safari: Add-ons may cause Safari to unexpectedly quit or have performance issues
    If indeed you had third party add-ons installed and Safari still crashes, then post a crash report.
    Carolyn

Maybe you are looking for

  • I have replaced my old hard drive with a new SSD drive. Can I restore a complete Time Machine backup

    I have replaced my old hard drive on a MacBook Pro midyear 2010 with a new SSD drive. I have a complete system backup of my old drive in an external hard drive using Time Machine. Questions that I would like to get answered. 1) Can I connect my exter

  • InvocationTargetException at Tomcat Startup

    I am seeing the following error appear in my catalina log after starting Tomcat on Red Hat Linux 8.0 using jdk 1.4.1... I am able to run servlets and JSP pages from the browser as well as within my application but would like to know more about this e

  • Can't get Bose computer speakers to work with my Mac pro lion

    I have just bought the Bose Companion 11 computer speakers for my Mac Book Pro. They are set up correctly (in the headphone jack) and they play my itunes music beautifully. However, when they are plugged in I get no sound from internet videos, etc. I

  • Can't Change Standard Font Size in Preferences

    I just got a new 24-inch iMac, which is great, but the screen is so big that web pages at the standard size are impossible to read at a comfortable distance. I went into Preferences and clicked on the "Appearance" tab, and set the standard and fixed-

  • Timeout Alert

    I am running a timer on the client via javascript setTimeout. I need to use the confirm() function to get information from the user. The problem with this is that the confirm loop is stopping the event loop and my time. I was able to do an alert box