Formatting XML Output

How can I format the XML output I get from extract()?
- get rid of new lines
- get rid of indents
- get rid of namespaces
Thanks.

You write some PL/SQL or Java code yourself to do so. We'll provide the capability to turn off the indent & newline stuff in a future release. I'm at a loss to understand why you would want to turn off namespace declarations though--they change the semantics of the data.

Similar Messages

  • Add attributes of dataTemplate, custom format, xml output

    I need to format dataTemplate tag, in xml-output.
    E.g.
    <myDataTemplate_tag_name SchemaVersion="1.0" xmlns="http://www.oracle.com/">
    Now, I have in xml
    <dataTemplate name="myDataTemplate_tag_name" defaultPackage="ccc_pack" version="1.0" description='SchemaVersion=\"1.0\" xmlns=\"http://www.oracle.com/\"'>
    but not work.
    Any suggestion? How can I add attributes?
    Thanks.
    kale.
    Edited by: kaleonardo on Oct 22, 2009 3:02 AM
    Edited by: kaleonardo on Oct 22, 2009 7:12 AM

    I discovered, I can make a xsl-xml template for manipulating tag name and attribute.
    Now, my problem is to keep all informations which are in main tag.
    Eg.
    my xml:
    <?xml version="1.0" encoding="UTF-8" ?>
    <InsNewArrival>
    <InsCodeVersions>
    <CountryVer>2007</CountryVer>
    <EuCountryVer>2007</EuCountryVer>
    <CnVer>2008</CnVer>
    <ModeOfTransportVer>2005</ModeOfTransportVer>
    <DeliveryTermsVer>2005</DeliveryTermsVer>
    <NatureOfTransactionAVer>2005</NatureOfTransactionAVer>
    <NatureOfTransactionBVer>2005</NatureOfTransactionBVer>
    <CountyVer>1</CountyVer>
    <LocalityVer>06/2006</LocalityVer>
    <UnitVer>1</UnitVer>
    </InsCodeVersions>
    </InsNewArrival>
    after xsl
    <?xml version="1.0" encoding="UTF-8" ?>
    <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
    <xsl:template match="InsNewArrival/*">
    <InsNewArrival>
    <xsl:attribute name="SchemaVersion">1.0</xsl:attribute>
    </InsNewArrival>
    </xsl:template>
    </xsl:stylesheet>
    I have
    <?xml version="1.0" encoding="UTF-8" ?>
    <InsNewArrival SchemaVersion="1.0" />
    not
    <?xml version="1.0" encoding="UTF-8" ?>
    <InsNewArrival SchemaVersion="1.0" xmlns="http://www.intrastat.ro/xml/InsSchema">
    <InsCodeVersions>
    <CountryVer>2007</CountryVer>
    <EuCountryVer>2007</EuCountryVer>
    <CnVer>2008</CnVer>
    <ModeOfTransportVer>2005</ModeOfTransportVer>
    <DeliveryTermsVer>2005</DeliveryTermsVer>
    <NatureOfTransactionAVer>2005</NatureOfTransactionAVer>
    <NatureOfTransactionBVer>2005</NatureOfTransactionBVer>
    <CountyVer>1</CountyVer>
    <LocalityVer>06/2006</LocalityVer>
    <UnitVer>1</UnitVer>
    </InsCodeVersions>
    </InsNewArrival>
    Thanks.
    kale

  • Formatting XML output as hierarchical vs detail

    Thank you for clicking into this thread, given the vague subject. I didn't know how to best word it.
    My query to produce a list of search terms and related category is;
    SELECT XMLElement("SEARCH_TERM"
    ,XMLAttributes(search_category as "category")
    ,search_term
    ) AS result
    FROM t1;
    Results;
    <SEARCH_TERM category="a">123</SEARCH_TERM>
    <SEARCH_TERM category="a">456</SEARCH_TERM>
    <SEARCH_TERM category="b">789</SEARCH_TERM>
    How can I write this query to get the following results?
    <SEARCH_CATEGORY name="a">
    <SEARCH_TERM>123</SEARCH_TERM>
    <SEARCH_TERM>456</SEARCH_TERM>
    </SEARCH_CATEGORY>
    <SEARCH_CATEGORY name="b">
    <SEARCH_TERM>789</SEARCH_TERM>
    </SEARCH_CATEGORY>
    Happy Holidays.

    #1. Please read posting guidelines regarding database version, and code samples...
    SQL> drop table T1
      2  /
    Table dropped.
    SQL> create table T1
      2  (
      3    search_category VARCHAR2(10),
      4    SEARCH_TERM VARCHAR2(10)
      5  )
      6  /
    Table created.
    SQL> insert into T1 values ('a','123')
      2  /
    1 row created.
    SQL> insert into T1 values ('a','456')
      2  /
    1 row created.
    SQL> insert into T1 values ('b','789')
      2  /
    1 row created.
    SQL> set long 1000 pages 50
    SQL> --
    SQL> select XMLSERIALIZE
      2         (
      3           DOCUMENT
      4           xmlElement
      5           (
      6             "SearchCatergory",
      7             xmlAttributes(SEARCH_CATEGORY as "category"),
      8             xmlAGG
      9             (
    10               xmlElement("SearchTerm",SEARCH_TERM)
    11             )
    12           )
    13           AS CLOB INDENT SIZE=2
    14         )
    15    from T1
    16   group by SEARCH_CATEGORY
    17  /
    XMLSERIALIZE(DOCUMENTXMLELEMENT("SEARCHCATERGORY",XMLATTRIBUTES(SEARCH_CATEGORYA
    <SearchCatergory category="a">
      <SearchTerm>123</SearchTerm>
      <SearchTerm>456</SearchTerm>
    </SearchCatergory>
    <SearchCatergory category="b">
      <SearchTerm>789</SearchTerm>
    </SearchCatergory>
    SQL>
    SQL>XMLAGG is 'GROUP' function, so can be comibined with a GROUP BY...

  • Payment Format Program Output in XML

    Hi All,
    I am trying to create a new payment format and should display the output in XML.
    For this I created a PL/SQL procedure , created my tags and displayed the out put in XML format. Using this I created one RTF template and did the data def and data Template.
    I defined the payment format, programs and a document.
    When I run the payment batch using this format , It says no output is generated.
    But the xml output is generated, the template is not shown as attached.
    If I run the concurrent program alone of the payment format I can see the template attched and the output generated in XML.
    BUt when I run the same through a payment batch selecting the document from which the program format is run it does not seem to take the template and hence no output even though there is XML.
    Can someone throw some light.
    Thanks.

    Hi,
    I got it...Now I am able to generated the output in PDF.
    It is a 2 step process, I had to submit XML Report Publisher Program once the format program is run so that it picks the tempalte and generates the output.
    So, Now is there a way to skip this 2 step process ?
    coz finally I have to print the out of the format to a printer.
    Thanks
    Edited by: user576422 on Oct 21, 2008 2:22 PM

  • XML output File Format change

    Hi experts,
    I am currenty getting below output in my XML file and it is wrapped in message type MT_Test.
    <?xml version="1.0" encoding="UTF-8"?>
    <ns0:MT_Test xmlns:ns0="http://test.com/xi/T1/Data">
    <Tests>
    <schemaLocation>http://tempuri.org/TestSchema.xsd F:/documentation/MID/Release-Test/TestSchema.xsd</schemaLocation>
    <Test>
    <HeaderID>This is a string 1</HeaderID>
    </Test>
    </Tests>
    </ns0:MT_Test>
    and I want to change it to the below format.
    <?xml version="1.0" ?>
    <Tests xmlns="http://tempuri.org/TestSchema.xsd" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://tempuri.org/TestSchema.xsd F:/documentation/TEMP/Release-Test/TestSchema.xsd">
    <Test HeaderID="RES-996-25885-527">
    </Test>
    </Tests>
    Request you to give your inputs on how I can achieve this?

    Hi ,
             You need a java mapping to produce exactly the output you posted here.
    I assume you r working with PI 7.1 here is the java mapping code.
    import java.io.FileInputStream;
    import java.io.FileOutputStream;
    import java.io.InputStream;
    import java.io.OutputStream;
    import java.util.Map;
    import javax.xml.parsers.DocumentBuilder;
    import javax.xml.parsers.DocumentBuilderFactory;
    import org.w3c.dom.Document;
    import org.w3c.dom.NodeList;
    import com.sap.aii.mapping.api.AbstractTransformation;
    import com.sap.aii.mapping.api.StreamTransformationException;
    import com.sap.aii.mapping.api.TransformationInput;
    import com.sap.aii.mapping.api.TransformationOutput;
    public class FormatXML extends AbstractTransformation{
         public void execute(InputStream in, OutputStream out)
         throws StreamTransformationException {
              try{
              // TODO Auto-generated method stub
              DocumentBuilderFactory factory=DocumentBuilderFactory.newInstance();
              DocumentBuilder builderel=factory.newDocumentBuilder();
              /*input document in form of XML*/
              Document docIn=builderel.parse(in);
              NodeList l=null;
              String schemaLocation="";
              l=docIn.getElementsByTagName("schemaLocation");
              if(l!=null)
                   schemaLocation=l.item(0).getTextContent();
                   schemaLocation=schemaLocation.replaceFirst("/MID/", "/TEMP/");
              String outPut="<?xml version=\"1.0\" ?><Tests xmlns=\"http://tempuri.org/TestSchema.xsd\" " +
                                  "xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\" " +
                                  "xsi:schemaLocation=\""+schemaLocation+"\">"
                                  +"<Test HeaderID=\"RES-996-25885-527\">"
                                  +"</Test></Tests>";
              out.write(outPut.getBytes("UTF-8"));
              catch(Exception e)
                   throw new StreamTransformationException(e.getCause().toString());
         public void setParameter(Map arg0) {
              // TODO Auto-generated method stub
         public static void main(String[] args) {
              // TODO Auto-generated method stub
              try{
                   FormatXML genFormat=new FormatXML();
                   FileInputStream in=new FileInputStream("C:\\Apps\\sdn\\format.xml");
                   FileOutputStream out=new FileOutputStream("C:\\Apps\\sdn\\format1.xml");
                   genFormat.execute(in,out);
                   catch(Exception e)
                   e.printStackTrace();
         public void transform(TransformationInput arg0, TransformationOutput arg1)
                   throws StreamTransformationException {
          this.execute(arg0.getInputPayload().getInputStream(), arg1.getOutputPayload().getOutputStream());
    If you are new to java mapping pls follow this  http://www.****************/Tutorials/XI/Mapping/Index.htm
    You need to install eclipse and java 1.5.0 for PI 7.1. You also need proper library files for PI 7.1 which you need to download from PI server. Please follow this link http://wiki.sdn.sap.com/wiki/display/XI/WheretogetthelibrariesforXI+development
    Regards
    Anupam

  • Xml output format in sql*plus problem

    Hi all,
    In stead of seeing xml output in multiple line format, my sql*plus always returns xml output in ONE line, is there a way to change the format, it's really hard to read.
    Thanks
    1 select xmlelement("row", xmlelement("user", xmlattributes(username as "name", default_tablespa
    2 from dba_users
    3* where rownum=1
    SQL>/
    XMLELEMENT("ROW",XMLELEMENT("USER",XMLATTRIBUTES(USERNAMEAS"NAME",DEFAULT_TABLES
    <row><user name="SYS" tbs="SYSTEM"></user></row>
    however I want to see something well formatted like
    <row>
    <user name="SYS" tbs="SYSTEM"></user>
    </row>

    Not sure if there are any settings with the SQL*PLUS but if you use packages other than the SQLX operators like DBMS_XMLQUERY, DBMS_XMLGEN, SYS_XMLGEN to generate xml then the output is as desired.
    select dbms_xmlgen.getxml('select username, default_tablespace from dba_users
    where rownum=1') from dual
    DBMS_XMLGEN.GETXML('SELECTUSERNAME,DEFAULT_TABLESPACEFROMDBA_USERSWHEREROWNUM=1'
    <?xml version="1.0"?>
    <ROWSET>
    <ROW>
    <USERNAME>REVIEW</USERNAME>
    <DEFAULT_TABLESPACE>METRICS</DEFAULT_TABLESPACE>
    </ROW>
    </ROWSET>
    But these packages does not offer the flexibility you have with SQLX operators.
    so if you requirement is simple generation you can use the above method.

  • How to get XML output from a stored procedure

    I have a very simple question:
    I would like to write a stored procedure (SP) that will return results in XML format (as a string). My tables in database are not of XML TYPE. But I need XML output.
    ie, SP will run like a typical SP but the only difference will be its output in XML.
    1) is it possible?
    2) if possible, how?
    Please, help
    Omer Koksal

    Thank you Peter, it was a great problem for me !
    Omer Koksal

  • Generate XML output using DBMS_XMLGEN.getxmltype and not from rdf

    Hi,
    I have a requirement to display output from a particular table in XL format. Out of all the known possible options, I am planning to use the XML publisher to generate XL output.
    For the data source, instead of using the conventional way of creating XML data using rdf,I am planning to use DBMS_XMLGEN.getxmltype pl/sql procedure to generate the XML output. And from the output, call the template to generate the required Excel output.
    Now, I am using the following code to generate XML output but am not sure how to proceed from here. I need to first print the XML data in the FND Output file after which I was planning to call the 'XML Report Publisher' (XDOREPPB) program and use the current request id to get the excel output but I am not able to find the way to print the XML data in the output file as:
    fnd_file.put_line (fnd_file.output, l_xml_type); - is throwing an error as l_xml_type is an XML data output.
    PROCEDURE xml_main (
    errbuf OUT VARCHAR2
    ,retcode OUT VARCHAR2
    ,p_project_from IN VARCHAR2
    ,p_project_to IN VARCHAR2
    AS
    l_xml_type XMLTYPE;
    BEGIN
    SELECT DBMS_XMLGEN.getxmltype
    ('SELECT fnd_global.conc_request_id
    ,TO_CHAR (segment1)
    ,to_char(start_date,''MM/DD/RRRR'')
    ,to_char(xxmcc_project_details_pkg.current_profit_projection
    (project_id),''999,999,990.90'')
    ,to_char(xxmcc_project_details_pkg.cost_to_date (project_id),''999,999,990.90'')
    ,''1''
    FROM pa_projects_all
    WHERE segment1 BETWEEN NVL (p_project_from, segment1)
    AND NVL (p_project_to, segment1)')
    INTO l_xml_type
    FROM DUAL;
         fnd_file.put_line (fnd_file.output, l_xml_type);
    END xml_main;
    Can anyone point me as to how to publish XML output using a PL/SQL procedure (DBMS_XMLGEN.getxmltype)
    Thanks.

    Pl see if the example included in this presentation helps http://www.oracle.com/technology/products/applications/Events/OOW-2006/EBS/S281401_Sridhar_Bogelli.pdf
    Also, you do not need to explicitly call XDOREPPB in later versions of XML Publisher. If you set up everything correctly (as described in the presentation above and the link below) the Output Post Processor is called automatically after the XML file is generated successfully.
    Another excellent tutorial is at http://www.oracle.com/technology/obe/fusion_middleware/fusion/bi/xmlp_ebiz/index.html
    HTH
    Srini

  • When running an xml publisher report the xml output leads to 9 mb and the excel output file leads to 20 mb.But the output records is originally 4000 records. When copy to new excel it is showing 3.5 mb only. Does anyone knows the answer for this issue?

    When running an xml publisher report the xml output leads to 9 mb and the excel output file leads to 20 mb. The records contained in excel file is 4000 records. When taking the excel records and copy to new excel file the excel file size is 3.5 mb only.Why does the oracle software generates 20mb file?
    Does any one knows the answer please advice?

    Hello,
    This issue is because the Excel output from BI Publisher is MHTML (XML Publisher generates XHTML) not binary .xls.
    MHTML and XHTML are more verbose formats than binary .xls.
    It will be large because the current Excel output is just an HTML and not compressed like PDF. Please use the workaround (save it as .xls file).  This is a known limitation of RTF layout templates.
    BI Publisher Enterprise has a new feature True Excel Templates. The layouts generate binary Excel output.
    Excel Output File Size Generated By BI Publisher is Very Large (Doc ID 760437.1)
    Bogdan

  • Format XML data when writing to a file

    Hi,
    I am trying to write runtime data (XML) to a file. I am doign the following to write to the file:
    public void saveFile() throws Exception {
    try {
    TransformerFactory transformerFactory =
    TransformerFactory.newInstance();
    Transformer transformer = transformerFactory.newTransformer();
    DOMSource source = new DOMSource(doc);
    OutputStream output = new FileOutputStream(XMLFile);
    StreamResult result = new StreamResult();
    transformer.transform(source, result);
    output.flush();
    output.close();
    } catch (Exception x) {
    throw x;
    The output from the above code is a clutter of elements. All the elements are on the same line some times.
    1) How can I format the output? (Indent the elements in the file)
    Is there a way to achieve this?
    Sometimes, I see a square character at the end of some lines. I thought the output file is corrupt because of this character. But it does not seem to be a problem.
    2) How do I avoid this character?

    Also, I am planning on using xpath in conjunction with DOM. However I read on one of the websites not to use too many xpath queries. I am using jdk 1.5.
    Is it tight. My code might have to be run many times. Is the following ok?
    or should I eliminate xpath and do my own traversing. I am concerned about runtime performance if I have to continue to update the xml file frequently.
    public Element getMatchingNode(MyAttributes attr) throws Exception {
    try {
    File myFile = new File(XMLFile);
    if (myFile.exists()) {
    System.out.println(XMLFile + " File exists");
    XPathFactory factory = XPathFactory.newInstance();
    XPath xPath = factory.newXPath();
    InputSource inputSource =
    new InputSource(new FileInputStream(myFile));
    String matchingString = this.getMatchingString(attr);
    Element module =
    (Element)xPath.evaluate("/" + TEST_TAG +
    "/" +
    TEST_TAG2 +
    "/" +
    DETAIL +
    matchingString,
    inputSource,
    XPathConstants.NODE);
    return module;
    } else
    return null;
    } catch (Exception x) {
    throw x;
    private String getMatchingString(MyAttributes attrs){
    StringBuffer buffer = new StringBuffer();
    for (Enumeration e=attrs.keys(); e.hasMoreElements();){
    String attribute = (String)e.nextElement();
    String value = attrs.get(attribute);
    buffer.append("[@" + attribute + "=" + "'" + value + "']");
    return buffer.toString();
    }

  • Report XML output fail to load into .RTF layout [EBS r12]

    Hi,
    In EBS r12, we have requirement to have a standard report output in excel.
    I got the report's xml output to create the xml template (.RTF layout) using BI Publisher.
    I created the .RTF layout and it works fine on my laptop using Bi Publisher.. the xml loads into it and i can preview xml data on layout with all format (Excel, PDF...)
    I uploaded the layout to EBS, and assigned it to the standard report.
    I changed standard report out put to XML
    When i go to submit report request, the template is assigned with report and everything seems correct.
    [See screen shot: http://img35.imageshack.us/i/xmlt.jpg/]
    But after i run the report.
    The report is Completed with Warning status.. and output is only XML with Error message :
    This XML file does not appear to have any style information associated with it. The document tree is shown below.
    The Log file says :
    Executing request completion options...
    ------------- 1) PUBLISH -------------
    Beginning post-processing of request 2350601 on node CLONE at 13-APR-2011 09:03:47.
    Post-processing of request 2350601 failed at 13-APR-2011 09:03:48 with the error message:
    One or more post-processing actions failed. Consult the OPP service log for details.
    ------------- 2) PRINT   -------------
    Not printing the output of this request because post-processing failed.
    Finished executing request completion options.
    Why this is happening ? i have done this many times with other standard reports and it worked fine.
    Please advise.
    Standard Report: Supplier Aging Report
    EBS : 12.1.1

    please check the log file and post the output here
    How to find OPP log file?
    To investigate on XML issues or other publishing problems, often the OPP logfile is needed.
    OPP stands for Output Post Processor. Below are the steps to find log file
    1. Login to the application as SYSADMIN
    2. Responsibility: System Administrator
    3. Function: Concurrent --> Manager --> Administration
    4. Select the Output Post Processor
    5. Click on the Processes button
    6. Select the Concurrent Process which was active during the time that the request ran
    7. Click on the Manager Log button to open the Output Post Processor log file

  • How to generate PDF from XML output without XML publisher

    Hi,
    I am facing a problem while splitting the rdf generated XML output.
    Problem Description:
    I have a oracle invoice report which runs once every day (scheduled program). This report fetches me the invoices generated on that day and needs to be Mailed / Faxed to the customers.
    So i developed the report in such a way that it generates the output order by customers...since the output generated will be as one .out file in APPLCSF/out directory...the .out file needs to be splitted by customers, for which i have written a cursor which takes the data of the main query and submits that many requests as many as customers are there.....There is a possibility of having 1000 customers per day also. If that is the case then my main program will fire that many requests.
    Is there a different approach......any inputs are highly appreciated.
    Also, i am generating the output in XML format. Is there a way from which i can directly generate a PDF from that XML output rather using any other tool.
    Thanks & Regards,
    Lakshmi Kalyan Vara Prasad.

    Hi,
    with Reports Bursting and the defined "distributions" it's possible to have one report splittet to several parts with different receipients. Have a look at http://download-uk.oracle.com/docs/cd/B14504_01/dl/bi/B13673_01/pbr_dist.htm.
    With xsl-fo it's possible to create pdf out of xml ... that's what xml publisher is doing.
    Regards
    Rainer

  • Generating and Viewing XML Output without rdf

    Howdy,
    I have been dev Oracle Forms/Reports for over 10 years. We are now migrating all of our reports to BIP.
    To date when I have been developing these reports I have been using the old rdf files to "generate to a file" and thus get a nice, quick and dirty XML output file (what I am calling a “datafile”). Using this makes it substantially easier to then dev the format template. However going forward I/we would like to completely remove the Designer 2000 tool entirely when it comes to report development.
    How can we as developers can get our hands on the XML "datafiles" that are generated by the data templates in BIP? Are these stored anywhere on the server for the viewing? Is there another tool I can pop my Data template and SQL into and generate XML ‘with’ the correct groupings, ect.?
    Thanks in advance for any assistance/guidance you can provide.
    ScottC

    Or, from the browser see Note:394631.1
    1.Using System Administrator responsibility
    Nav:Profile->System
    query Viewer: Text, set this to Browser and save
    2. Using your Receivables responsibility
    Run the the XML report that is failing, note the request_id
    when it finishes, even with errors do this,
    View->Requests
    query this request_id
    click on Diagnostic button->View XML
    save the file to your PC by doing File->Save As
    3. Upload this XML data file.

  • How to send job postings to multiple third party sites using the XML output

    Dear Friends,
    We are Implementing Irecruitment for our client, Client requirement is how can we send job postings to multiple third party sites using the XML output from i-Recruitment
    With regards
    Surya
    .

    Can you be more specific about your Requirement. In General, Please navigate to iRecruitment Recruiter Responisbility.
    Then Select, Setup > Recruiting Sites. Here, you can configure your Third Party Websites information and attach stylesheets. The default mode oracle sends the vacancy information is HR-XML Format.
    If you would like to select more sites information select "Add Another Row".
    Then, you can see this information while "New Vacancy Creation Process".
    iRecruiter.
    Edited by: iRecruiter on Oct 18, 2009 7:43 AM

  • How can print blank rows for XML output report..

    Hi all,
    I am working in XML output PO fix format report and in that report there is 3 sections. (1) Header section(2)Line section (3) Footer section. My requirement is like this, header and footer section print in all pages and line section break for next page after printing fix 15 lines in a page. And if any page has less then 15 lines then it generate remaining blank row to maintain footer position.
    Please suggest me, how can i generate blank rows and break lines for page if there is more then 15 rows in Line section.
    Thanks in Advance!

    Hi,
    <?for-each:ROW?>
    <?end for-each?><xsl:variable name="cnt" select="count(//row|//ROW)" />
    <?for-each:xdoxslt:foreach_number($_XDOCTX,1,15-count(ROW),1)?> <?end if?>
    this will create 15 lines irrespective of you have that much rows of data in xml or not
    if you want more help , drop me mail @ [email protected]

Maybe you are looking for

  • Return multiple values from a list box

    hi I have a listBox (<mx:List>) that is populated by a webService acting as its dataProvider ("myDataProvider")...... within the listBox the value shown from the dataProvider is the "customerName", there is also a customerID values within the dataPro

  • Error while creating database in classic appln

    Hi All, I am getting this error while creating database in classic application. com.hyperion.planning.olap.EssbaseException: Failed to create database, error code [%s] (1013221). Can anyone please let me know why I am getting it? Thanks in advance

  • Unable to use Markup in Yosemite

    When I compose a new mail, and attach an image, I get the markup extension. When I clic on it, I am able to see all the tools (Text, Colors, etc), but once I select a tool, I am not able to use it. It is like the program freezes, because it doesn't r

  • My I phone is new and i am trying to connect it to my i tunes on my computer. It does not come up on the i tunes at all.

    I have a new phone, i phone 4s. I have tried to connect it tom y i tunes on the compuetr but it is not coming up???? It was easier to download the songs onto a Blackberry!!!!!

  • Erased unwanted parts of photo now how to make a background

    I am just getting started with PSE 8.0.1. I have a photo where I just want that part which is a given person.  I cropped then erased unwanted parts. The erased areas are pure white.  How would I create a background that looked like clouds or draped c