Closing tag in xml transformation

Hi experts,
I have the following ABAP code:
ABAP itab to XML string
  CALL TRANSFORMATION id SOURCE data = ti_stocks[]
                         RESULT XML    ps_output.
The result in ps_output should be an xml like this
<?xml version="1.0" encoding="utf-16" ?>
<asx:abap xmlns:asx="http://www.sap.com/abapxml" version="1.0">
<asx:values>
<DATA>
<ZTABLE_STO>
  <FIELD1 /> ABC</FIELD1>
  <FIELD2 />0300</FIELD2>
  <FIELD3 />1</FIELD3>
  </ZTABLE_STO>
etc.
However, if my internal table ti_stocks contains the field1 with an empty value then the xml is incorrect without its corresponding closing tag:
<?xml version="1.0" encoding="utf-16" ?>
<asx:abap xmlns:asx="http://www.sap.com/abapxml" version="1.0">
<asx:values>
<DATA>
<ZTABLE_STO>
  <FIELD1 />
  <FIELD2 />0300</FIELD2>
  <FIELD3 />1</FIELD3>
  </ZTABLE_STO>
etc.
How can I resolve this problem? I would like to have an open tag and a closing tag for every field.
FIELD1 is a char type field.
Thank you,
Oscar
Edited by: Oscar Arranz on Jan 26, 2012 2:46 PM

Hello everyone, sorry for my english, I had the same requeriment for the end tag, the simple transformation give this result <xxx/> when the value was empty, and I did something similar to Oscar,
i did the simple transformation and the result whas and xstring, i used a function to pass it to string, and then I make a replacement.
here is some code:
*  Genera XML
   data: xml_xstring          type xstring.
   data: w_xml                 type string.
   data: ixml                    type ref to if_ixml,
           streamfactory      type ref to if_ixml_stream_factory,
           encoding             type ref to if_ixml_encoding,
           ixml_ostream      type ref to if_ixml_ostream.
   data: resstream           type ref to if_ixml_ostream.
****Create an instance of the Ixml Processor
   ixml = cl_ixml=>create( ).
*  ****Create the Stream Factory
   streamfactory = ixml->create_stream_factory( ).
*  ****Create an Endcoding and Byte Order
   encoding = ixml->create_encoding( character_set = 'ISO-8859-1' byte_order = 0 ).
*  *  ****Create the output stream with a pointer to our binary string
   ixml_ostream = streamfactory->create_ostream_xstring( xml_xstring ).
*  ****Set the Encoding into a stream
   ixml_ostream->set_encoding( encoding = encoding ).
****Call simple Transformation
   call transformation zdte_libros
   source zcaratula = x_doc
   result xml ixml_ostream.
*From xstring to string.
   call function 'HR_RU_CONVERT_HEX_TO_STRING'
          exporting
                 xstring = xml_xstring
          importing
                 cstring = w_xml.
* <xxx/> to <xxx><xxx/>
   replace all occurrences of regex '<([^><\s]+)( [^><]+)?/>' in w_xml with '<$1$2></$1>'.
Hope it helps someone with the same problem .

Similar Messages

  • Avoid explicit closing tag in XML using graphical mapping

    Hi,
    I created a data type with an element called TAG1 which has an attribute called attr.
    I mapped an empty constant to the element and the value XXX to the attribute.  I`m using graphical mapping and the XML I get is the following:
    <TAG1 attr = u201CXXXu201D></TAG1>
    But for reasons of volume I need to generate the XML without the explicit closing tag, such as:
    <TAG1 value = u201CXXXu201D/>
    Is there any possibility to achieve this with graphical mapping?
    Thanks & Best Regards,
    Viviana

    > But for reasons of volume I need to generate the XML without the explicit closing tag, such as:
    >
    >  <TAG1 value = u201CXXXu201D/>
    >
    > Is there any possibility to achieve this with graphical mapping?
    This is not posible. The graphical mapping always creates start and end tag, even for empty elements.
    You need a seperate mapping step with XSLT or Java mapping.
    Regards
    Stefan

  • How to make an explicit closing tag in XML(e4x).

    I'm working with some XML data and I'm having trouble forcing the way my closing tags are generated.
    I want the long hand form, such as:
    var xmlData:XML =
    <code>
       <codeSnippet>
       </codeSnppet>
    </code>;
    But when I try to insert nodes within the codeSnippet node as child nodes(<snippet />, etc.), and then write to a file, it
    makes the codeSnippet node look like <codeSnippet /> and the <snippet /> nodes are after, which will not work.
    How can I make it NOT treat an empty node as  <codeSnippet /> and explicitly keep it as in long hand form, such as:
    <codeSnippet>
    </codeSnppet>
    Thanks...
    fd

    I figured it out for myself.
    So, does that mean I get the 10 points?
    fd

  • How to skip XML tags in Simple transformation

    Hi,
    I am trying to convert an XML file to ABAP code using Simple Transformations.
    I tired converting a small XML file to ABAP using it and it worked fine.
    The problem is that the number of tags in the XML file I now want to parse is huge (over 200).
    Is there any way that for the tag in XML corresponding tag is not created in ST? Is there any conditional tag to achieve this?
    Also, is Simple Transformation a better way of parsing in such a scenario over XSLT and DOM parser?
    Thanks and Regards,
    Neha
    Edited by: Neha Anand on Jun 2, 2008 1:19 PM

    Hi Raja,
    I have already looked through the code snippets and I am able to write a CALL TRANSFORMATION.
    I want to find out if the number of tags is huge then if there is any way that some tags can be skipped for matching tags in XML which anyhow I dont need for manipulation.
    Thanks and Regards,
    Neha

  • Remove tags from XML using transformation

    Can anybody tell me how to remove empty tags using xsl transformation.
    <App_Data App="MOD" Name="Metadata_Id" Value="SP1282"/>
    <App_Data App="MOD" Name="Metadata_Spec_Major_Version" Value=""/>
    <App_Data App="MOD" Name="Metadata_Spec_Minor_Version" Value=""/>
    My XML will have tags similar to above. My requirement is to remove all tags having attribute Value="". How can i achieve this using transformation.
    Thanks
    Krish

    You need to add the xsi:nil="true" attribute to your xsl-construct to be able to ommit the xml-element which are empty.
    To be able to do this you need to add a choose-when-otherwise xsl construct inside your mapping file to test for ""-values.
    The xsi:nill='true' isn't supported in the transform-activity yet, you need to add this attribute manually inside your xsl-mapping file.
    Kind regards,
    Nathalie

  • ACE-4710 : XML Syntax Error du to a missing closing tag

    Hi,
    We use XML over HTTPS to gather connections information from a management station. We can successfully read the number of connections per real server (rserver), but the ACE returns a buggy XML code when we tray to get the number of connections through the VIP (by asking the service-policy). The problem is a missing closing tag in the returned code. The missing tag is </sp_class_map>.
    We have the latest ACE software version A3(2.2) installed. Note that the same request on a ACE Service Module does not presents this bug. I took a look in the bug toolkit but did not found the exact match.
    Does somebody already had this problem ? it is anoying as we cannot represent the number of connections for a specific vip in the NMS.
    I attach the returned XML code, in which I highligted the tad that does not have its closing counterpart.
    Thank you for any info before I open a TAC case
    Yves

    Thank you Gilles,
    It seams that this bug is only visible inernally : "Information contained within bug ID CSCsz52234 is only available to Cisco employees".
    I saved the bug to be informed on its status. Do you thing I should open a TAC case anyway ?
    Yves

  • XML closing tags missing throws exception with SAX Parser

    Hey,
    I'm trying to create an XML Document from some HTML.
    I am getting this exception:
    [Fatal Error] :1:334: The element type "input" must be terminated by the matching end-tag "</input>".
    Exception in thread "main" java.lang.RuntimeException: org.xml.sax.SAXParseException: The element type "input" must be terminated by the matching end-tag "</input>".
         at server.XMLUtils.createDocument(XMLUtils.java:76)The xml is like this:
    <html>
    <input name="s" size="5">
    </html>Is there some setting I can change in the parser to make it ignore missing closing tags?
    Here is my current code
         public static Document createDocument(InputStream is) {
              try {
                   Document doc;
                   DocumentBuilderFactory dbf = DocumentBuilderFactory.newInstance();
                   DocumentBuilder db = dbf.newDocumentBuilder();
                   doc = db.parse(is);
                   doc.getDocumentElement().normalize();
                   is.close();
                   return doc;
              } catch (Exception e) {
                   throw new RuntimeException(e);
         }Thanks

    Nether wrote:
    Hey,
    The xml is like this:
    <html>
    <input name="s" size="5">
    </html>
    That is not XML. It might qualify as HTML. An XML file would be
    <html>
    <input name="s" size="5"/>
    </html>Winston

  • Create XML element without closing tag using Visual C++

    I know how to create xml element with closing tag (using WriteStartElement and WriteEndElement methods)
    <tag id="1234">
    </tag>
    but is there a way in Visual C++ to produce xml element like this
    <tag id="1234"/>
    i.e. without closing tag?

    Hi adamay,
    Please refer to this thread.
    http://stackoverflow.com/questions/8182245/create-xml-element-without-closing-tag-using-xslt
    I think you could try the way of write your own class derived from XmlWriter.
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Dreamweaver bug?: XML closing tag ( _/ ) is flawed.

    This is the original code:
    <_bug>hello</_bug>
    And this is how it's opened by DW (CS4):
    <_bug>hello<_bug>
    Sorry but I can't try it in CS5

    Hello Murray! Thanks for your help. The title of my post is wrong and the underscore it's really an underscore. Just copy-paste the code i wrote, save it as .xml, and then open it with DW. You will see the slash of the closing tag is missing   But if you open it with notepad, for example, you will see the slash again.
    The problem comes when you save the file with DW... Your slash will be deleted forever.

  • XML Transformation error (ABAP -- XML)

    Hi,
    I'm getting the foll. error while doing a XML Transformation, Can anyone help me in this regard..
      <FIN_WT>56.0</FIN_WT>
      <FIN_WT_UNIT>KG</FIN_WT_UNIT>
      <ZZQMNUM />
      <ZZHOLD />
      <ZZDUMATNR
    The XML page cannot be displayed
    Cannot view XML input using XSL style sheet. Please correct the error and then click the Refresh button, or try again later.
    The following tags were not closed: asx:abap, asx:values, OUTPUT, item. Error processing resource 'file:///C:/Documents and...
    > />
      <PSP_NR>U5/0626-HT-193-1-36-344</PSP_NR>
      <ZZCRTNAME>ALFI</ZZCRTNAME>
      <ZZAPPNAME>ALFI</ZZAPPNAME>
    Regards
    Jiku

    are you trying to transform XML to itab?
    is the xml well formed one - you can check this by running the xml file in webbrowser, if it doesnt display, then it means the xml is not well formed.
    Regards
    Raja

  • Self closing tags appearing in xquery

    I am working on a migration project where the weblogic is getting migrated from weblogic 8 to 10.x
    my application uses xquery and when upgraded to higher version i can see some self closing tags getting created in the transformed xml which is not the case with 8.1.
    for example:
    I have given a simple declaration as below
    let $a  := <find an attribute value>
    return
    <abc:value>{$a}</abc:value>
    if the "find an attribute value" returns null then in weblogic 8 the node will not be sent in transformed xml but in weblogic10.x it is parsing the node as self closing one like <abc:value/>
    Is this an issue with migration? I know that the xquery upgraded to 2004 and I did took care of that part.

    So workaround for me in this case would be? as i have number of direct mappings happening in my code of 8.1 and definitely I can't keep an if else block to make it work.
    Well, as you've been relying on a bug then I guess you now have to correct your code.
    I don't see how you can do it without using a conditional block.

  • How to Include html tag in xml

    Hi,
    Is there any way to include html tags in xml?
    For Example, I'm using xsl to get the value of FIELD_1 from fetch.xml
    In fetch.xml, I have the tag
    <FIELD_1>
    <font color='#8080ff'>&#160;<font face='Times New Roman, Times' size='28'>Testing font and color</font></font>
    </FIELD_1>
    But If I tried to read the value from xsl like <xsl:value-of select="FIELD_1"/> I'm just gettig the display 'Testing font and color' without the specified font and color....
    How to achieve this?
    Thanks
    Selva.

    Hi,
    Thanks for the input.
    I tried with the below code
    <fo:block space-after="5mm" font-family="Arial"><xsl:copy-of select="FIELD_1"/></fo:block>
    But I'm getting the below error...
    "An invalid XML character (Unicode: 0xa0) was found in the element content of the document."
    Below is the code included in the xsl....
    <?xml version="1.0" encoding="utf-8"?>
    <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:fo="http://www.w3.org/1999/XSL/Format">
    <xsl:output method="xml" indent="yes"/>
    <xsl:template match="Values"><fo:root xmlns:fo="http://www.w3.org/1999/XSL/Format">
    <fo:layout-master-set>
    <fo:simple-page-master master-name="simpleA4" page-height="29.7cm" page-width="21cm" margin-top="3cm" margin-bottom="2cm" margin-left="2cm" margin-right="2cm">
    <fo:region-body/>
    </fo:simple-page-master>
    </fo:layout-master-set>
    <fo:page-sequence master-reference="simpleA4">
    <fo:flow flow-name="xsl-region-body">
    <fo:block space-after="5mm" font-family="Arial"><xsl:copy-of select="FIELD_1"/></fo:block>
    </fo:flow> </fo:page-sequence> </fo:root> </xsl:template></xsl:stylesheet>
    Is there any mistakes in the above code?
    Regards,
    Selva.

  • Javax.xml.transform.TransformerException durin XSL Transformation in Java

    Hi,
    Below is my piece of code where i access a web service that returns a xml as a string. I apply a xsl tranformation on it and try to store the result as a string. I get this error message
    javax.xml.transform.TransformerException: Result object passed to ''{0}'' is invalid.
         at com.sun.org.apache.xalan.internal.xsltc.trax.TransformerImpl.getOutputHandler(Unknown Source)
         at com.sun.org.apache.xalan.internal.xsltc.trax.TransformerImpl.transform(Unknown Source)
         at NewService.main(NewService.java:52)My Code:
    import java.io.BufferedWriter;
    import java.io.File;
    import java.io.FileInputStream;
    import java.io.FileNotFoundException;
    import java.io.FileWriter;
    import java.io.IOException;
    import java.io.InputStream;
    import java.io.StringReader;
    import java.net.MalformedURLException;
    import java.net.URL;
    import java.rmi.RemoteException;
    import javax.xml.namespace.QName;
    import javax.xml.rpc.ServiceException;
    import javax.xml.transform.Result;
    import javax.xml.transform.Source;
    import javax.xml.transform.Transformer;
    import javax.xml.transform.TransformerConfigurationException;
    import javax.xml.transform.TransformerException;
    import javax.xml.transform.TransformerFactory;
    import javax.xml.transform.stream.StreamResult;
    import javax.xml.transform.stream.StreamSource;
    import org.apache.axis.client.Call;
    import org.apache.axis.client.Service;
    public class NewService {
          * @param args
         public static void main(String[] args) {
              // TODO Auto-generated method stub
              String endPoint = "http://localhost:8080/SampleDynamicWebProj/services/SampleClient";
              Service service = new Service();
              Call callOne;
              try {
                   callOne = (Call) service.createCall();
                   callOne.setTargetEndpointAddress(new URL(endPoint));
                   callOne.setOperationName(new QName("http://DefaultNamespace",
                             "getXMLString"));
                   String concated = (String) callOne.invoke(new Object[] { "s" });
                   InputStream xsltFile = new FileInputStream("xslpackage/empTran.xsl");
                   Source xmlSource = new StreamSource(new StringReader(concated));
                 Source xsltSource = new StreamSource(xsltFile);
                 TransformerFactory transFact =
                    TransformerFactory.newInstance();
                 Transformer trans = transFact.newTransformer(xsltSource);
                 Result result = new StreamResult();
                 trans.transform(xmlSource, result);
                 System.out.println(result.toString());
              } catch (ServiceException e) {
                   e.printStackTrace();
              } catch (MalformedURLException e) {
                   e.printStackTrace();
              } catch (RemoteException e) {
                   e.printStackTrace();
              } catch (FileNotFoundException e) {
                   e.printStackTrace();
              } catch (TransformerConfigurationException e) {
                   e.printStackTrace();
              } catch (TransformerException e) {
                   e.printStackTrace();
    }I get the transformed XML into a Result object, but when i do a toString() oon it, i get the above exception.
    any help wil be appreciated,
    Dilip

    Oh well, yes it was a typo in address tag...ok agreed that its a bad example, check this out then,
    i have a XML data that i convert to a html format using xsl transformation, now this converted html has to be shown in a html page(i use the out.write option).
    so my initial xml looks like this ::
    <?xml version="1.0" encoding="ISO-8859-1"?>
    <Results>
        <ColumnCount>6</ColumnCount>
        <Columns>
            <column>UID</column>
            <column>UserName</column>
            <column>Password</column>
            <column>LastName</column>
            <column>FirstName</column>
            <column>EmailAddress</column>
        </Columns>
        <Rows>
            <Row>
                <value>1</value>
                <value>userone</value>
                <value>password-1</value>
                <value>Anant</value>
                <value>Dilip</value>
                <value>[email protected]</value>
            </Row>
            <Row>
                <value>2</value>
                <value>usertwo</value>
                <value>password-2</value>
                <value>Palli</value>
                <value>Gilli</value>
                <value>[email protected]</value>
            </Row>
        </Rows>I apply XSL transformation on this to get a HTML which i will be writing into my output screen hoping that the user will see it in a tabular format!
    <[!CDATA["
    <?xml version="1.0" encoding="UTF-8"?>
    <table border="1">
    <tr bgcolor="#9acd32">
    <th align="left">UID</th>
    <th align="left">UserName</th>
    <th align="left">Password</th>
    <th align="left">LastName</th>
    <th align="left">FirstName</th>
    <th align="left">EmailAddress</th>
    </tr>
    <tr>
    <td>1</td>
    <td>userone</td>
    <td>password-1</td>
    <td>Anant</td>
    <td>Dilip</td>
    <td>[email protected]</td>
    </tr>
    <tr>
    <td>2</td>
    <td>usertwo</td>
    <td>password-2</td>
    <td>Palli</td>
    <td>Gilli</td>
    <td>[email protected]</td>
    </tr>
    </table>
    "]]>The entire data is passed to a XML parser . I want the transformed xml data (which will be inside a <status></status> tag to be untouched by this parser. As you see i have put the transformed xml in a CDATA tag, but this aint helping me...
    need urgent help,
    Dilip

  • Purpose of CustomBuilt xml-Transformer

    Hi all,
    I am using an xmliView to retrieve and display the YahooRSS Feeds. It is working fine. I have used the standard RSS-HTMLB transformer.
    Could you please let me know how far will the custom built transformers be useful in customising the whole RSS Feed. Is it possible to restrict/edit the data displayed. Can i change the text fonts/colors.
    Thanks,
    KSK

    Hi;
    Please see:
    http://oracle.anilpassi.com/extend-oa-framework-in-r12-2.html
    http://learnwithme11g.wordpress.com/tag/server-xml/
    http://www.orabyte.com/whitePapers/Surender_Sara_R12_New_Features_AppsDBA.ppt
    Also see:
    How To Generate Server.Xml Required To Make Modifications To Seeded VO/EO/AM [ID 968014.1]
    Need Server.Xml File For All HR Modules [ID 790169.1]
    Knowledge Base "Server.Xml" Files For OA Customization [ID 461173.1]
    Regard
    Helios

  • Overlapping or no closing tag

    Using DW6. 
    Trying to insert anything, a div tag or spry menu bar in the menu_bar , main or footer content areas, and the insertion jumps to the body tag and inserts above the outer container.
    I clicked on highlight invalid code
    Code is hightlighted as overlapping or no closing tag for outer, inner and header container only.
    So right now I cannot make any insertions, I have closed and reopened with same results. I have also tried to insert manually but nothing shows, although I can create and edit new rules.
    Thanks for helping
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <title>index</title>
    <link href="styles/css_main.css" rel="stylesheet" type="text/css" />
    </head>
    <body>
    <div id="outer_container">   (highlighted)
      <div id="inner_container">   (highlighted)
        <div id="header">(highlighted)
          <!--#include file="includes/header_main.txt" -->
        </div> (highlighted)
    <div id="red_bar">Helping Saint Louis Sleep Better Since 2000</div>
    <div id="menu_bar">sdfgsdfg</div>
             <div id="main_content">Contnt for  id "main_content" Goes Here</div>
             <div id="footer">Contvent for  id "footer" Goes Here</div>
      </div>   (highlighted)
    </div>(highlighted)
    </body>
    </html>
    @charset "utf-8";
    .include_header {
    font-size: 75px;
    color: #CC0000;
    text-align: center;
    margin: 0px;
    font-variant: normal;
    padding-top: 0px;
    padding-right: 55px;
    padding-bottom: 0px;
    padding-left: 0px;
    font-style: normal;
    text-transform: none;
    font-weight: 900;
    font-family: Pupcat;
    border-top-style: none;
    border-right-style: none;
    border-bottom-style: none;
    border-left-style: none;
    border-top-color: #336699;
    border-right-color: #336699;
    border-bottom-color: #336699;
    border-left-color: #336699;
    .hampton_address {
    list-style-type: none;
    margin: 0px;
    float: left;
    padding-left: 250px;
    font-weight: bold;
    color: #333;
    background-color: #FFF;
    .hampton_address ul li {
    list-style-type: none;
    .mcree_address ul li {
    list-style-type: none;
    .mcree_address {
    float: right;
    padding-right: 300px;
    font-weight: bold;
    color: #333;
    text-decoration: none;
    list-style-type: none;
    background-color: #FFF;
    #outer_container {
    background-image: url(../images/background/gradient59803139.png);
    background-repeat: no-repeat;
    background-position: 100% 100%;
    margin: 0px;
    padding: 0px;
    overflow: hidden;
    visibility: visible;
    z-index: 0;
    height: 100%;
    width: 100%;
    left: 8px;
    top: 7px;
    #inner_container {
    background-color: #FFF;
    margin: 0 auto;
    padding: 0px;
    height: auto;
    width: 968px;
    overflow: hidden;
    /* [disabled]visibility: visible; */
    border: thick double #336699;
    color: #333;
    #header {
    background-color: #FFF;
    width: 968px;
    overflow: hidden;
    height: 205px;
    border-top-style: none;
    border-right-style: none;
    border-bottom-style: none;
    border-left-style: none;
    border-top-color: #336699;
    border-right-color: #336699;
    border-bottom-color: #336699;
    border-left-color: #336699;
    #menu_bar {
    margin: 0px;
    padding: 0px;
    float: left;
    width: 250px;
    #red_bar {
    font-family: "Comic Sans MS", cursive;
    color: #FFF;
    background-color: #F00;
    height: 40px;
    width: 968px;
    font-size: 24px;
    text-align: center;
    border-top-style: solid;
    border-right-style: solid;
    border-bottom-style: solid;
    border-left-style: solid;
    border-top-color: #336699;
    border-right-color: #336699;
    border-bottom-color: #336699;
    border-left-color: #336699;

    <table width="986" background-color="FFF" cellspacing ="0" cellpadding="0">
      <tr>
        <td><img src="./images/logo/bed_guy.gif" width="195" height="116" alt="bedguy logo" /></td>
        <td><div class="include_header">The BedGuy</div></td>
        <td><a href="#"><img src="./images/logo/logo_sticker.jpg" width="205" height="96" alt="shop saint louis" border="0" /></a> </td>
      </tr>
    </table>
    <div class="hampton_address">
      <ul>
        <li>6431 Hampton Ave</li>
        <li>Saint Louis, MO 63109</li>
        <li>314-678-9100</li>
      </ul>
    </div>
    <div class="mcree_address">
      <ul>
        <li>4666 McRee Ave</li>
        <li>Saint Louis, MO 63110</li>
        <li>314-772-9999</li>
      </ul>
    </div>

Maybe you are looking for

  • Java.lang.Exception: IOException in sending Request :: Connection refused:

    Hi all, I am a new to Oracle 10g.I am using Enterprise manager for DBA jobs.After ogging in to enterprise manager, when i click the refresh button, i get the folllowing error " java.lang.Exception: IOException in sending Request :: Connection refused

  • Disc not ejecting

    I'm in the process of ripping my extensive CD collection with iTunes 7.3.1.3. Often a disc is not able to be ejected by iTunes/Windows or the hardware button. This requires a system restart. The paperclip trick does not work as well because the DVD/C

  • Stored Procedure :  Verify Database message

    Hi, I'm new to Crystal Reports and am using the latest Trial version. I'm using this against SQL Server stored procedure - which is working fine on SQL Server side. Running it in SQL Server, returns ~9000 rows, using 58 columns, in about 9secs. When

  • Define Business Transaction Variants (New GL) - transaction: S_AL0_96000709

    Hi people, I am Trying to create a New category inside the Business Transaction 0300 and Transaction Variante: 0001, But the system shows me: "Choose the key from the allowed namespace" and not save the data. Do you know what happend? Thanks, Rosana

  • Muse Slideshow - How to get rid of persistent "stroke"

    Spent far too many hours trying to fix this, I am hoping there is an easy "A Ha" fix :-) Please!! No matter what I seem to do when the slideshow previews as it "settles" on the image in the sequence a white thin stroke appears. Seems to be in the act