XMLParser and CDATA-Element

Why do the XMLParser replace '<' with '<' in a CDATA-Element?
I have a Stylesheet with an Element like this:
<script lang...><![CDATA[
function test(){
for(i=0; i<2; i++)...
}]]>
</script>
Now I use the oracle.xml.parser.v2.XMLParser to parse the Stylesheet in this way:
parser = new DOMParser();
parser.setPreserveWhitespace(true);
parser.parse(xslURL);
xsldoc = parser.getDocument();
and now I print it out this way:
xsldoc.print(out);
This is the result:
... for(i=0; i<2; i++) ...
How can I tell him not to do this replacement? I thought all characters inside the <![CDATA[-tag wouldn't be parsed. Am I wrong?
I use the XMLParser 9.0.1.0.0 Production                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

I've found a workaround with <xsl:comment> like this:
<script ...>
<xsl:comment>
<![CDATA[
...Javascriptcode...
]]>
</xsl:comment>
</script>
null

Similar Messages

  • CDATA element deleted in SOAP receiver adapter

    Hello Everybody!
    I've got a problem with SOAP receiver adapter. I've made a mapping for synchronous HTTP -> XI -> SOAP interface, in which the request mapping is java mapping, which produce a message like this:
    <?xml version="1.0" encoding="UTF-8"?> <ns0:SaveISDocument xmlns:ns0="http://pl.optix.pl/aews">
    <ns0:xmlDocument><IMAGES><IMAGE FileName="tmp.xml" ClassName="IVX">
    <![CDATA[PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iaXNvLTg4NTktMiI/Pgo8SU5WT0lDMDECiAgPElET0MCiAgICAgPEVESV9EQzQwPgogICAgICA8VEFCTkFNPkVESV9EQzQwPC9UQUJOQU0CiAgICAgIDxNQU5EVD4zMDwvTUFORFQCiAgICAgIDxET0NOVU0OTAzMTAyMzA4MzwvRE9DTlVNPgogICAgICA8RE9DUkVMPjQ1QjwvRE9DUkVMPgogICAgICA8U1RBVFVTPjMwPC9TVEFUVVMCiAgICAgIDxESVJFQ1QMTwvRElSRUNUPgogICAgICA8T1VUTU9EPjI8L09VVE1PRD4KICAgICAgPElET0NUWVASU5WT0lDMDE8L0lET0NUWVACiAgICAgIDxDSU1UWVAWjFJTlYwMTwvQ0lNVFlQPgogICAgICA8TUVTVFlQPklOVk9JQzwvOVk9JQzAxPgo=]]>
    </IMAGE></IMAGES>
    </ns0:xmlDocument></ns0:SaveISDocument>
    In CDATA is a Base64 representation of some file.
    I hoped at oubound of SOAP adapter sholud be something like this:
    <SOAP:Envelope xmlns:SOAP='http://schemas.xmlsoap.org/soap/envelope/'><SOAP:Header/><SOAP:Body><ns0:SaveISDocument xmlns:ns0='http://pl.optix.pl/aews'>
    <ns0:SaveISDocument xmlns:ns0="http://pl.optix.pl/aews">
    <ns0:xmlDocument><IMAGES><IMAGE FileName="tmp.xml" ClassName="IVX">
    <![CDATA[PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iaXNvLTg4NTktMiI/Pgo8SU5WT0lDMDECiAgPElET0MCiAgICAgPEVESV9EQzQwPgogICAgICA8VEFCTkFNPkVESV9EQzQwPC9UQUJOQU0CiAgICAgIDxNQU5EVD4zMDwvTUFORFQCiAgICAgIDxET0NOVU0OTAzMTAyMzA4MzwvRE9DTlVNPgogICAgICA8RE9DUkVMPjQ1QjwvRE9DUkVMPgogICAgICA8U1RBVFVTPjMwPC9TVEFUVVMCiAgICAgIDxESVJFQ1QMTwvRElSRUNUPgogICAgICA8T1VUTU9EPjI8L09VVE1PRD4KICAgICAgPElET0NUWVASU5WT0lDMDE8L0lET0NUWVACiAgICAgIDxDSU1UWVAWjFJTlYwMTwvQ0lNVFlQPgogICAgICA8TUVTVFlQPklOVk9JQzwvOVk9JQzAxPgo=]]>
    </IMAGE></IMAGES>
    </ns0:xmlDocument></ns0:SaveISDocument>
    </SOAP:Body></SOAP:Envelope>
    Unfortunatelly there is something like:
    <SOAP:Envelope xmlns:SOAP='http://schemas.xmlsoap.org/soap/envelope/'><SOAP:Header/><SOAP:Body><ns0:SaveISDocument xmlns:ns0='http://pl.optix.pl/aews'>
    <ns0:SaveISDocument xmlns:ns0="http://pl.optix.pl/aews"><ns0:xmlDocument><IMAGES><IMAGE FileName="tmp.xml" ClassName="IVX">
    PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iaXNvLTg4NTktMiI/Pgo8SU5WT0lDMDECiAgPElET0MCiAgICAgPEVESV9EQzQwPgogICAgICA8VEFCTkFNPkVESV9EQzQwPC9UQUJOQU0CiAgICAgIDxNQU5EVD4zMDwvTUFORFQCiAgICAgIDxET0NOVU0OTAzMTAyMzA4MzwvRE9DTlVNPgogICAgICA8RE9DUkVMPjQ1QjwvRE9DUkVMPgogICAgICA8U1RBVFVTPjMwPC9TVEFUVVMCiAgICAgIDxESVJFQ1QMTwvRElSRUNUPgogICAgICA8T1VUTU9EPjI8L09VVE1PRD4KICAgICAgPElET0NUWVASU5WT0lDMDE8L0lET0NUWVACiAgICAgIDxDSU1UWVAWjFJTlYwMTwvQ0lNVFlQPgogICAgICA8TUVTVFlQPklOVk9JQzwvOVk9JQzAxPgo=
    </IMAGE>
    </IMAGES></ns0:xmlDocument></ns0:SaveISDocument>
    </SOAP:Body></SOAP:Envelope>
    ... which is not correct, because CDATA tags are lost!
    Anyone has idea, how to enable adapter to process message right?
    Best regards,
    Mikolaj

    Henrique:
    As I wrote - the webservice was wrote by 3rd party software supplier - so I wasn't sure if I could change a specification at this point - that was a reason why I needed a CDATA element. A CDATA element was at entry of this webservice and I couldn't send to it my data correctly using XI. That was a problem. Hope You got it now.
    Finally I've managed the problem because 3rd party software supplier agreed to change their service and use <CDATA> tag instead of CDATA element.
    I solved the problem but my question still remain not answered.
    At OSS I was asked to upload latest SP (now I've got 12 at Java Stack).
    If this will help I'll close this thread.
    Best regards
    Mikolaj

  • CDATA element mapping in Biztalk Mapper

    Hi,
    we have a input message which has an element called ParticleName.
    an example is:
     <ns:ParticleName><![CDATA[TestingName]]></ns:ParticleName>
    There is a biztalk map which takes this message and transforms it into another.
    When i try test map, it doesn't output any value on the target ParticleName node.
      it comes as <ns:ParticleName>
                           </ns:ParticleName>
    There are 2 cases:
    a)In one case, I want only the node value (TestingName) in the target node?
    b)In the second case, i want the whole CDATA section in the target?
    Please assist.
    regards,

    Hi,
    If you want to read the values from the CDATA use custom XSLT functoid. Visit below links for your reference :
    http://stackoverflow.com/questions/10323332/how-to-parse-an-xml-dom-inside-a-cdata-element-in-xslt
    http://social.msdn.microsoft.com/Forums/en-US/a6f40a1f-583d-4339-8cf9-d70dd56b20df/cdata
    Please indicate "Mark as Answer" or "Mark as Helpful" if this post has answered the question
    Regards,
    Rahul Madaan
    biztalkvillage.blopspot.com

  • Will anyone please Tell me how to create a CDATA Element

    Hello Guys
    I am hammering my head to create a CDATA Element in Oracle 9i using XMLDOM Package.
    The Element structure should look like this
    <Formula>
    <![CDATA[VALVERB("AC_Fluid_Pressure_Sensor")]]>
    </Formula>
    The Code I used to create in ORACLE 10G is Given below, But The same code when I used for 9i is Not working
    field_elmt := xmldom.createelement(doc,'FORMULA');
    field_node := xmldom.appendchild(ssd_node,xmldom.makenode(field_elmt));
    -- Create a CDATA ELEMENT
    field_text := xmldom.createtextnode(doc,'CDATA ELEMENT');
    field_node := xmldom.appendchild(field_node,xmldom.makenode(xmldom.createCDATASection(doc,SSDRECORD.FORMULA)));
    field_node := xmldom.appendchild(field_node,xmldom.makenode(field_text));
    Please Help me Out.
    Regards
    Madhu

    Hi Manikandan
    i once have a similar problem using a BTE, i solved creating the data element and adding the records in TPS01 and TPS02, i tried to create a record on TBE01 and it says the same mentioning TPS01 and TPS02
    please check this link
    http://scn.sap.com/thread/3173012
    create the data element asking the authorization code to your basis and create the records
    hope this help
    Regards
    Marco Cristobal

  • XMLDOM and CDATA

    Guru's,
    I have a requirement using PL/SQL whereby I need to store more that 32K bytes of HTML in an XML Element. Since the content is HTML, it seems to me that I have to use the CDATA method of XMLDOM
    (for example item_node := xmldom.appendChild(item_node, xmldom.makeNode(xmldom.createCDATASection(doc, p_bodycopy)));)
    My issue is that the createCDATASection can only handle a VARCHAR2, and I require it to handle (at most) 64K of information.
    I can use the AppendData procedure w/ Character data, but that creates decode,translation and transformation issues.
    Is there any light at the end of this tunnel? or should I punt.
    The following works very well for everything <= 32K
    item_elmt := xmldom.createElement(doc, 'BodyCopy');
    item_node := xmldom.appendChild(root_node, xmldom.makeNode(item_elmt));
    item_node := xmldom.appendChild(item_node, xmldom.makeNode(xmldom.createCDATASection(doc, p_bodycopy)));
    I am looking for a solution for content >32K
    Any insight is much appreciated.
    -Scot

    Hi Scot. Unfortunately most of the xml packages and functions are brain dead when it comes to handling large data. Most are implicitly tied to varchar limits and lob limitations in PL/SQL.
    To get a CDATA element exactly as you describe, I think you need to resort to building it up from 1st principles using lob methods.
    e.g.
    declare
    v_lob clob;
    v_lob_temp clob;
    begin
    v_lob := '<FamilyHistory><![CDATA[';
    select x.bigdata into v_lob_temp from x1 x where x.item='mysample';
    DBMS_LOB.APPEND(v_lob, v_lob_temp );
    DBMS_LOB.APPEND(v_lob, ']]></FamilyHistory>');
    insert into x2 values('mysample',v_lob);
    end;
    There is an approach using xmltype views based on object types, but these will implicitly xml encode your clob rather than quote it as CDATA (and I don't know a way to prevent this).
    e.g.
    CREATE TABLE x1 (item varchar(25) primary key, bigdata clob);
    -- (insert a very large record)
    CREATE OR REPLACE TYPE x1_t AS OBJECT
    (Holder varchar(25),BookData CLOB);
    CREATE OR REPLACE VIEW vx1 OF XMLTYPE
    WITH OBJECT ID (ExtractValue(sys_nc_rowinfo$, '/ROW/HOLDER')) AS
    SELECT sys_XMLGen(x1_t(x.item, x.bigdata)) from x1 x;
    Here's a sample entry:
    SELECT
         extractvalue(x.SYS_NC_ROWINFO$,'/ROW/HOLDER') as holder
         ,'xml_length: ' || dbms_lob.getlength(x.SYS_NC_ROWINFO$.getclobval()) as xml_length
    FROM vx1 x;
    HOLDER XML_LENGTH
    mysample xml_length: 324198
    Note sql*plus has a problem querying this:
    SQL> select * from vx1;
    ERROR:
    OCI-31167: XML nodes over 64K in size cannot be inserted
    Unless we just go for the clob. In this example the "BOOKDATA" is pure unencoded XML in table X1, but automatically encoded in the xmltype view vx1:
    SQL> set long 200
    SQL> select (SYS_NC_ROWINFO$).GETCLOBVAL() from vx1;
    (SYS_NC_ROWINFO$).GETCLOBVAL()
    &lt;?xml version=&quot;1.0&quot;?&gt;
    &lt;ROW&gt;
    &lt;HOLDER&gt;mysample&lt;/HOLDER&gt;
    &lt;BOOKDATA&gt;&amp;lt;books&amp;gt;
    &amp;lt;book id=&amp;quot;1&amp;quot;&amp;gt;
    &amp;lt;title&amp;gt;the book 1 title&amp;lt;/title&amp;gt;
    &amp;lt;/book&amp;gt;
    &amp;lt;book id=&amp;quot;2&amp;qu

  • Releation between fields and data element

    Dear Abapers,
    What is the relation between the fields and data element,  while cretion of fields system will ask the data element, can we have one data element to more than one fields.  Can you plese explain me.
    Regards

    Hi,
    data elements are structures defined in SAP Dictionary. 
    Fields you meen in a table? or in programs? in both places you create in reference to SAP Dictionary. 
    data element char20.  TEXT20
    Programs  data:  l_text type char20.
    Tables  ... field   ZTEXT  type CHAR20...TEXT20

  • How to get the values of all elements and sub elements from  following xml

    how to get the values of all elements and sub elements from following xml...
    <?xml version="1.0" encoding="UTF-8" ?>
    <List_AML_Finacle xmlns="http://3i-infotech.com/Cust_AML_Finacle.xsd"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:schemaLocation="http://3i-infotech.com/Cust_AML_Finacle.xsd List_AML_Finacle.xsd">
    <TransactionID>TransactionID</TransactionID>
    <Match>
    <Src_Matched_Field>Src_Matched_Field</Src_Matched_Field>
    <List_Matched_Field>
    <FSFM_Matches>
    <NUMBER>NUMBER</NUMBER>
    <TERROR>TERROR</TERROR>
    <TU>TU</TU>
    <NAMEU>NAMEU</NAMEU>
    <DESCRIPT>DESCRIPT</DESCRIPT>
    <KODCR>KODCR</KODCR>
    <KODCN>KODCN</KODCN>
    <AMR>AMR</AMR>
    <ADDRESS>ADDRESS</ADDRESS>
    <SD>SD</SD>
    <RG>RG</RG>
    <ND>ND</ND>
    <VD>VD</VD>
    <GR>GR</GR>
    <YR>YR</YR>
    <MR>MR</MR>
    <CB_DATE>CB_DATE</CB_DATE>
    <CE_DATE>CE_DATE</CE_DATE>
    <DIRECTOR>DIRECTOR</DIRECTOR>
    <FOUNDER>FOUNDER</FOUNDER>
    <TERRTYPE>TERRTYPE</TERRTYPE>
    </FSFM_Matches>
    <OfacMatchDetails>
    <UID>UID</UID>
    <TITLE>TITLE</TITLE>
    <SDNTYPE>SDNTYPE</SDNTYPE>
    <REMARKS>REMARKS</REMARKS>
    <ID_UID>ID_UID</ID_UID>
    <IDTYPE>IDTYPE</IDTYPE>
    <IDNUMBER>IDNUMBER</IDNUMBER>
    <IDCOUNTRY>IDCOUNTRY</IDCOUNTRY>
    <ISSUEDATE>ISSUEDATE</ISSUEDATE>
    <EXPIRATIONDATE>EXPIRATIONDATE</EXPIRATIONDATE>
    <ADDRESS1>ADDRESS1</ADDRESS1>
    <ADDRESS2>ADDRESS2</ADDRESS2>
    <ADDRESS3>ADDRESS3</ADDRESS3>
    <CITY>CITY</CITY>
    <STATEORPROVINCE>STATEORPROVINCE</STATEORPROVINCE>
    <POSTALCODE>POSTALCODE</POSTALCODE>
    <COUNTRY>COUNTRY</COUNTRY>
    </OfacMatchDetails>
    </List_Matched_Field>
    </Match>
    </List_AML_Finacle>

    avoid multi post
    http://forum.java.sun.com/thread.jspa?threadID=5249519

  • I have downloaded, extracted and installed Elements 12 but it will not open nor can I find the Adobe file in the file where I installed it to..  When I've tried to download and install again

    I have downloaded, extracted and installed Elements 12 but it will not open nor can I find the Adobe file in the file where I installed it to..  When I've tried to download and install again it says that the "Object Already Exists."  It may exists, but it is not visible in the file or in my list of programs on the Startup Menu.

    cactisken
    You should not have to uninstall Premiere Elements 12/12.1 in order to install and run Premiere Elements 13 on the same computer unless your computer is overloaded and the computer resources are compromised. Just use one program at a time.
    Can you still use 12/12.1 on this same computer that will not let you use 13?
    What specific Window operating system are you using?
    Let us go through the usual drill...
    1. Does the problem exist with and without the antivirus and firewall(s) disabled?
    2. Are you using a pen and tablet device instead of a mouse?
    3. Did you install the program with antivirus and firewall(s) disabled?
    4. Disable the SLCache Folder found in Windows 7, 8, or 8.1 64 bit
    Local Disk C
    Program Files (x86)
    Common Files
    Adobe
    and in the Adobe Folder should be the SL Cache Folder that you delete or disable by renaming the Folder
    from SLCache to SLCacheOLD.
    5. Are you running the program as Administrator and is the latest version of QuickTime installed on the same
    computer as Premiere Elements 13?
    Let us start here and then decide what next.
    Thank you.
    ATR

  • What do i do with a very slow Photoshop Elements and Premiere Elements on a PC?

    I seem to be getting mixed opinions as to why my Adobe software gets so slow, despite efforts to avoid that, but my computer seems to be working just fine, it is only when in Adobe that the problems arise, like freezing, taking longer and longer periods of time to open the screen to edit a photo, or to compare two photos side by side.  Any process seems to take such a long time, and the freezing can last for several minutes, and then continue on.    I have had a computer person come to my house and examine my computer and though his knowledge of Photoshop is limited, he feels that it is NOT the computer but something with Adobe Photoshop.  I would tend to agree with him.   
    Several theories have been explained to me, such as Elements and Premiere Elements are a low end of the scale of Photoshop programs, so it is just not going to be able to process high definition large photos well and quickly.  Stating comments like i can only use 2 GB of my memory even though i have 8 GB, so unless i can use 64 bit this is what i have to deal with, and it is just a way for Photoshop to say you need to upgrade to the fancier programs.  I do not need fancier programs.  I am working hard to master these, and have accomplished 4 great blu rays in high definition thanks to recommendations from the Forum here, especially Steve with the help of his books. 
    Others say i need a solid state hard drive to solve the problem.  Others say the only way i will ever solve the problem is to switch to a MAC.  Others state is a mal-ware problem, but i have never had my hard drive so clean and uncluttered.  I supposedly have as good of PC as i could have as far as QUAD-core, 8GB memory, presently a 1 TB hard drive less than 1/2 full.   All suggestions involve big outlays of money, with no guarantee that things will be any better.  I have tried to contact different computer companies and computer 'nerds', and these are some of the suggestions, but no one really has a lot of knowledge of the Photoshop software. 
    I am thinking of adding an additional internal hard drive, but not sure that is going to help either.  Could i put all my Photoshop of the second hard drive, and might that speed things up? 
    Adobe is rather worthless in trying to get help from them.  I have spent hours on the phone waiting and then talking to someone who says they understand English but they do NOT understand the question i am asking, which becomes very frustrating with repeat phone calls.  I gave up yesterday trying to do that challenging experience yesterday after i had spent 3 times the amount of time they said i would need to wait to get a reply, and i was at work, and my free time had come to an end.  So i am hoping you guys can give me some clues of the best thing to do.
    Is it true that Photoshop Elements and Premiere Elements are just such a lower end program that trying to do things in high definition, with 2000x1500 photos, making them into a blu ray disc is a major challenge with a PC?  I wish i had a greater computer knowledge, but i have struggled to achieve my goal, but the speed of it all gets very frustrating, though it is possible. 
    Another question asked which i don't think exists, is whether there is a program that could clean up Photoshop, or are there some clues that could accomplish that and thereby speed things up.
    Would appreciate any suggestions anyone has.  I am in the middle of another project so now is probably not the best time to consider any major changes.  But any comments would be appreciated.
    Ron

      Premiere Elements 10 is now 64 bit, but not PSE10.
    Take a look at your scratch disk set-up and if you have a spare volume, allocate that first before the C drive. Elements use scratch disks when it gets low on RAM.
    Click image to enlarge
    Turn off face recognition and the auto-analyzer to improve performance.
    When editing photos or videos check the task manager to see what background processes may be running and end them temporarily if not needed.

  • Report Painter Request - Cost Center and WBS Element

    Hi Everyone,
    Currently, my company settles all project related expenses through to a cost center by way of an internal settlement cost element (category 21).  The issue with this is that when the expense gets to the cost center, they lose all visability as to where the expense originated, such as salaries or travel expense (category 1 cost elements).  We can't switch the settlements to the originating cost element from wbs to cost center just because of the additional data/volume that will cause.  My thought was to create a report painter that can run by cost center but also show the wbs's that settle to that cost center and group the expenses by primary cost element (cat 1).  I'm assuming that there is a way to marry a cost center and wbs element by way of the wbs settlement rule but how would that be done for reporting purposes?  I've seen it done before by way of a nightly job that created sets based on the combination of cost center and wbs but I'm not sure how that was done.  Any advise and examples?
    Example:
    Cost Center:  IT
    WBS: A.0017.01.01 (settles to cost center IT)
    Postings made:
    1.  CC IT and CE 552000 "salaries"..............................$20,000
    2.  WBS A.0017.01.01 and CE 552000 "salaries"........... $5,000
    3.  Settlement of WBS to CC (expenses flow through to CC IT by way of CE 985000)
    I want to run CC IT and see that the account 552000 really shows $25,000 and can be broken down by cost object (CC and WBS by the amounts above)
    Thanks,
    Pete

    Hi Peter,
    I had a similar requirement and used report painter report group 1SHK-002 (in library 1VK).
    I took a copy of the standard and ameneded it slightly, I switched the explode so it occured on the cost center not cost element.
    The report runs so that direct costs on the cost center are shown at primary cost level. And values settled to the cost center are shown on the partner object. In your case i guess WBS Elements (Partner ObjType WBS).
    Now in my case I didnt need cost element breakdown on partner level, just on cost center so effectively I have(sorry for text alignment but I hope you get the idea):
    GL1   .............  100
    GL2   .............  250
    + Cost center1 total ....350
    GL3 .............   50
    GL4 ............. 100
    + Cost center2 total.... 150
    Primary Cost Total ..... 500
    X-YZ-1.200 .............   50
    X-YZ-1.400 ............. 100
    + WBS total ............. 150
    IO 1............. 100
    IO 2  ............. 100
    +IO total  ............. 200
    Partner Total............. 350
    Overall total .............  850.
    Its not exactly like your requirement but it might be a good report for you to work with to get what you need.
    Elaine

  • Relationship between tables milestone and wbs element

    Hi  Guys,
    1.I have taken two tables in my source code retieving milestone number(mlst_zaehl), usage(mlstn),and wbs element(pspsnr)
    from TABLE MLST and the other table is PRPS(WBS ELEMENT TABLE, and the fields are psphi(project) , and pspnr(wbs elemrnt,
    The problem is i am not getting the project (psphi)  FROM PRPS TABLE and the link field is PRPS-PSPNR = MLST-PSPNR.
    2.Other requiremnt is  in the same program, iam getting reservation quantity and also DELIVERY QUANTITY
    if delivery qty equal to reservation quantity then exit  and if the reservation qty is NOT equal to delivery qty,
    i need to UPDATE the corressponding USAGE , MILESTONE TEXT, AND QTY in milestone table MLST.
    please let me know any function to update milestone or BAPI or i sahll use BDC.
    Reagrds
    subbara

    Hi
    I think you want to link MLST and PRPS tables to get the milestone fields...
    From Table MLST - Mile stone number - MLST_ZAEHL and WBS element - PSPNR, link the WBS elements with PRPS table - WBS element - PSPNR and for project - PSPHI (Current Project Number).
    For project number you can take from PRPS - PSPHI or from PROJ table
    - Pithan

  • How to block reusage of archived Project definition and WBS element numbers

    Dear All,
    We have archived our projects using the TC SARA and the Project definition and WBS elements numbers no more exist in tables PROJ and PRPS etc.. When I now try to create a new project, the system proposes the next open number or allows to enter a number which is the same as one of the archived projects. But in our organization we cannot reuse the Project definition and WBS element numbers (even if it is archived) as a rule.
    Can anybody guide me what are the possibilities to block or avoid the reusage of the numbers of archived project definition and WBS elements in a fool-proof way? 
    Thanks and regards

    One Workaround:
    Use T code OPSJ and lock the project coding mask. Doing this you can not use this mask any more.
    But you want to continue using the mask but with different numbers. Not sure how this can be acheived. lets wait for others view
    Regards
    Sreenivas

  • How to write Header and Footer elements in Write file Adapter

    Hi,
    I have a requirement to write the file.The write file contains header and footer elements ,how we can write these elements. These elements are fixed for all files.these are not come from any input.below is the sample file.
    $begintable
    name,Id,Desg
    ad,12,it
    $endtable

    Hi,
    I have created the XSD for you, and i created a sample SOA Composite which writes the file same like what you want, the below XSD can write a file with one header record, multiple data records and one trailer record.
    <?xml version="1.0" encoding="UTF-8" ?>
    <xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema"
    xmlns:nxsd="http://xmlns.oracle.com/pcbpel/nxsd"
    xmlns:tns="http://TargetNamespace.com/WriteFile"
    targetNamespace="http://TargetNamespace.com/WriteFile"
    elementFormDefault="qualified" attributeFormDefault="unqualified"
    nxsd:version="NXSD" nxsd:stream="chars" nxsd:encoding="UTF-8">
    <xsd:element name="Root-Element">
    <xsd:complexType>
    <!--xsd:choice minOccurs="1" maxOccurs="unbounded" nxsd:choiceCondition="terminated" nxsd:terminatedBy=","-->
    <xsd:sequence>
    <xsd:element name="RECORD1">
    <xsd:complexType>
    <xsd:sequence>
    <xsd:element name="header" type="xsd:string"
    nxsd:style="terminated" nxsd:terminatedBy="${eol}"
    nxsd:quotedBy='"'/>
    </xsd:sequence>
    </xsd:complexType>
    </xsd:element>
    <xsd:element name="RECORD2" minOccurs="1" maxOccurs="unbounded">
    <xsd:complexType>
    <xsd:sequence>
    <xsd:element name="data1" type="xsd:string"
    nxsd:style="terminated" nxsd:terminatedBy=","
    nxsd:quotedBy='"'/>
    <xsd:element name="data2" type="xsd:string"
    nxsd:style="terminated" nxsd:terminatedBy=","
    nxsd:quotedBy='"'/>
    <xsd:element name="data3" type="xsd:string"
    nxsd:style="terminated" nxsd:terminatedBy="${eol}"
    nxsd:quotedBy='"'/>
    </xsd:sequence>
    </xsd:complexType>
    </xsd:element>
    <xsd:element name="RECORD4" nxsd:conditionValue="$endtable">
    <xsd:complexType>
    <xsd:sequence>
    <xsd:element name="trailer" type="xsd:string"
    nxsd:style="terminated" nxsd:terminatedBy="${eol}"
    nxsd:quotedBy='"'/>
    </xsd:sequence>
    </xsd:complexType>
    </xsd:element>
    </xsd:sequence>
    </xsd:complexType>
    </xsd:element>
    </xsd:schema>
    Hope this helps,
    N

  • New Mac: Why are CC and Photoshop Elements not working when Lightroom and Reader are fine

    Last week I changed computers (swapping an old Mac for a 13-in MacBook Pro Retina running OSX Yosemite 10.10.3. I copied all my data over to the new machine using Migration Assistant.
    All programs work fine (including my copy of Lightroom 3 and Reader XI). But my CC and Photoshop Elements 10 do not. I have tried uninstalling both, but whenever I try to reinstall PE10 from its disk or download it just stops almost at the end. I then I get an "initiation failed" message, along with a request to download the now defunct "Support Advisor" app!
    I cannot download Adobe Application Manager, or the CC desktop app either - for the former I get an "initiation failed" message, along with the "download Support Advisor" app" message again! For the latter I get a message saying "Adobe Creative Cloud Is Needed to Resolve this problem - however it is missing or damaged." Then I get a message and a link to download Creative Cloud. Then when I've downloaded it and I click on the installer... it runs for a bit and then I get the message again: "Adobe Creative Cloud Is Needed to Resolve this problem - however it is missing or damaged." And I get a prompt and link to download the CC app. Guess what happens next? And so it goes on. And on and on, in a tedious circle.
    This is incredibly annoying and frustrating as I have work to do! Anyone have any ideas what's happening?
    Cheers
    K

    do not use migration to install adobe programs.
    you should uninstall and clean whatever you've done, Use the CC Cleaner Tool to solve installation problems | CC, CS3-CS6
    then dl the cc desktop app to your new computer and use it to install your adobe cc programs, Download Adobe Creative Cloud apps | Free Adobe CC trial
    if you have non-subscription adobe programs, use the installation files for them:
    Downloadable installation files available:
    Suites and Programs:  CC 2014 | CC | CS6 | CS5.5 | CS5 | CS4, CS4 Web Standard | CS3
    Acrobat:  XI, X | 9,8 | 9 standard
    Premiere Elements:  13 | 12 | 11, 10 | 9, 8, 7 win | 8 mac | 7 mac
    Photoshop Elements:  13 |12 | 11, 10 | 9,8,7 win | 8 mac | 7 mac
    Lightroom:  5.7.1| 5 | 4 | 3
    Captivate:  8 | 7 | 6 | 5.5, 5 | 1
    Contribute:  CS5 | CS4, CS3 | 3,2
    FrameMaker:  12, 11, 10, 9, 8, 7.2
    Download and installation help for Adobe links
    Download and installation help for Prodesigntools links are listed on most linked pages.  They are critical; especially steps 1, 2 and 3.  If you click a link that does not have those steps listed, open a second window using the Lightroom 3 link to see those 'Important Instructions'.

  • I have a license for Photoshop and Premier Elements 10, where can I download it from?

    I am deploying a new PC to a user and need to transfer Premier Elements and Photoshop Elements 10 onto the new PC.  Could you please provide me a location for older software?  Thank you.

    This link has the software you require:
    <http://helpx.adobe.com/photoshop-elements/kb/photoshop-elements-10-11-downloads.html>
    Good luck.

Maybe you are looking for