Designer 9i - nested DDL structure not executable for XML

To support an XML data transfer, we need to define types,collections, and tables. When we define a table that references types and collections, we do not get adequate DDL from Designer 9i that identifies all of the nested structures, and the DDL that is generated is not executable. We can manually type the DDL and specify the appropriate nesting. We have done that, executed that successfully. We have then reverse engineered this table into Designer 9i, and requested DDL from it. The resulting DDL is not executable. Has anyone run into this problem?

Designer 9i does not support these complex datatypes, hence your errors.
Regards
Sue

Similar Messages

  • Depreciation is not executed for last month and the period is closed. Giving Error in this Dep. Cycle.

    Hi All,
    We had a month End scenario where the depreciation for a company code is not executed for the last month and closed the period without checking it.
    While  running the Depreciation posting for this month we encounted a error that last motn period is closed. Can we do the depreciation without opening the period closed. Kindly let us know the options available.
    Regards,
    Lakshmi Narayana

    Lakshmi,
    There is no way you can post depreciation without opening the prior periods. Please discuss with your business and secure all necessarry approval, I believe the business has a process on this kind of situations. As long as it is fully documented, auditors will not find it wrong.
    This is the best time to improve your process, think of possible ways so that business will not forget to post depreciation (e.g send automatic email during 3 days before, 2 days before., 1 day before and during the day of depreciation run).
    Hope this helps.
    Thanks!
    Jhero

  • OAF : LOV mappings do not execute for specified default value in the LOV

    Dear All,
    I know the topic of default value in an LOV has been discussed a million times.
    Please bear with me -
    I set the "Initial Value" property for an LOV to populate a default value in the LOV field when the page loads. This works fine
    My LOV has about 4 lov mappings that populate 4 "formValue" items on my page.
    However, for the default value, these mappings are not executed and the formValue items remain empty. (Though the default value shows up fine on the screen)
    Do I have to explicitly default these formValue items as well ? Is there anyway to get the mappings to execute ?
    Thanks,
    Gagan

    Anyone ?

  • Replace function not working for XML CLOB data

    Hi all,
    I am generating XML using DBMS_XMLGEN in oracle 10g. After generating the XML, I am replacing the ROW tags with appropriate tag name using REPLACE function. Sometimes the tag name is not replaced correctly.
    Eg.I am replacing </Cargo_ROW> with </CargoDetail>. But sometimes in one xml, this tag is coming as </CargoDetROW> or </CargoDetaiW>. The XML size is always huge and the same tag is repeated so many time in the loop and in the same XML, only one tag will be replaced incorrectly. This also not happening for all XMLs.
    If any one knows the cause about this problem or solution, please share the same.
    thanks,

    Yes Anton, you are right..
    It was typecasting problem
    replace supports clob
    Check this out
    SQL> declare
      2  xmldata clob;
      3  Begin
      4  xmldata:='<Message transaction_log_id="" extraction_date="25/11/09 09:52:03 AM" versio
      5  <Transaction>
      6  <TransactionType>ORIGINAL</TransactionType>
      7  <ControlNumber>60022449779</ControlNumber>
      8  <BookingHeader>
      9  <PortCodeOriginal>GBSOU</PortCodeOriginal>
    10  <Contact>.</Contact>
    11  <PhoneContact>.</PhoneContact>
    12  </BookingHeader>
    13  <PartyInformation>
    14  <PartyDetails>
    15  <PartyId>10002866</PartyId>
    16  <Type>SHIP</Type>
    17  <Name1>L LTD.</Name1>
    18  </PartyDetails>
    19  </PartyInformation>
    20  <Cargo>
    21  <CargoDetROW>
    22  <CargoHeader>
    23  <CargoReceivedSeqNo>600015391790</CargoReceivedSeqNo>
    24  <CargoId>RW9330P013948</CargoId>
    25  </CargoHeader>
    26  <CargoDimensions>
    27  <Length>1</Length>
    28  <Width>2</Width>
    29  </CargoDimensions>
    30  </CargoDetail>
    31  <CargoDetROW>
    32  <CargoHeader>
    33  <CargoReceivedSeqNo>600015391791</CargoReceivedSeqNo>
    34  <CargoId>RW9330P01394AA</CargoId>
    35  </CargoHeader>
    36  <CargoDimensions>
    37  <Length>2</Length>
    38  <Width>2</Width>
    39  </CargoDimensions>
    40  </CargoDetail>
    41  <Cargo_ROW>
    42  <CargoHeader>
    43  <CargoReceivedSeqNo>600015391792</CargoReceivedSeqNo>
    44  <CargoId>RW9330P01322</CargoId>
    45  </CargoDetaiW>
    46  <CargoDimensions>
    47  <Length>1</Length>
    48  <Width>2</Width>
    49  </CargoDimensions>
    50  </Cargo_ROW>
    51  </Cargo>
    52  </Transaction>
    53  </Message>';
    54  xmldata:=to_clob(regexp_replac(xmldata,'</Cargo_ROW>|</CargoDetaiW>|</CargoDetROW>','</CargoDetail'));
    55  xmldata:=to_clob(regexp_replace(xmldata,'<Cargo_ROW>|<CargoDetaiW>|<CargoDetROW>','<CargoDetail>'));
    56  dbms_output.put_line(xmldata);
    57  end;
    58  /
    <Message transaction_log_id="" extraction_date="25/11/09 09:52:03 AM"
    version="1.0">
    <Transaction>
    <TransactionType>ORIGINAL</TransactionType>
    <Contro
    lNumber>60022449779</ControlNumber>
    <BookingHeader>
    <PortCodeOriginal>GBSOU</Por
    tCodeOriginal>
    <Contact>.</Contact>
    <PhoneContact>.</PhoneContact>
    </BookingHead
    er>
    <PartyInformation>
    <PartyDetails>
    <PartyId>10002866</PartyId>
    <Type>SHIP</Ty
    pe>
    <Name1>L
    LTD.</Name1>
    </PartyDetails>
    </PartyInformation>
    <Cargo>
    <CargoDetail>
    <CargoHea
    der>
    <CargoReceivedSeqNo>600015391790</CargoReceivedSeqNo>
    <CargoId>RW9330P01394
    8</CargoId>
    </CargoHeader>
    <CargoDimensions>
    <Length>1</Length>
    <Width>2</Width>
    </CargoDimensions>
    </CargoDetail>
    <CargoDetail>
    <CargoHeader>
    <CargoReceivedSeq
    No>600015391791</CargoReceivedSeqNo>
    <CargoId>RW9330P01394AA</CargoId>
    </CargoHe
    ader>
    <CargoDimensions>
    <Length>2</Length>
    <Width>2</Width>
    </CargoDimensions>
    <
    /CargoDetail>
    <CargoDetail>
    <CargoHeader>
    <CargoReceivedSeqNo>600015391792</Carg
    oReceivedSeqNo>
    <CargoId>RW9330P01322</CargoId>
    </CargoDetail>
    <CargoDimensions>
    <Length>1</Length>
    <Width>2</Width>
    </CargoDimensions>
    </CargoDetail>
    </Cargo>
    </Transaction>
    </Message>
    PL/SQL procedure successfully completed.
    SQL> Twinkle
    Edited by: Twinkle on Nov 26, 2009 6:05 PM

  • Table Designer third rule thick is not working for me.  Any suggestions?

    I am trying to turn the third rule in a four row table thick. I go into Table Designer and select Every 3rd Thick.  The others are all none.  The table is not responding to the command to make the third rule thick as I need it to be.  Does anyone have any suggestions?  Thank you.

    To remove table format overrides, you need to go to Table > Format > Custom Ruling and Shading, and set as follows:
    For more info, see page 171 of my book.
    -Matt
    Matt R. Sullivan
    co-author Publishing Fundamentals: Unstructured FrameMaker 11

  • Query not executing for one particular value

    Hi
    I have query on multi provider. and this multi provider is combination of Info objects only but not any ODS or cubes. I have one key figure in this multi provider.while executing the query i need to give input for variabl which has 7 different values. Query is executing fine for 6 values but not for one particular value.
    query executed in listcube transaction and it is executed fine here for the same selection. then what might be the reason?
    Please advise as soon as possible.
    Thanks

    Hi Kiran,
    are you maintaining any filters in the query? or is there any logic in the exit for this variable.
    regards.

  • EA1 - SQL DDL Tab not working for 10.2.0.3 Oracle Apps DB

    I just downloaded the EA1 SQL Developer 1.5.0.51.70 for evaluation purposes. I am connecting to various types of databases - all databases are version 10.2.0.3.
    When I am connected to an Oracle Applications 11i database (10.2.0.3 version) as the apps user, then select a table, and then click on the SQL tab - I get a message Generating DDL and then the errors:
    o.d.db.DBUtil No more data to read from socket
    o.d.r.utils.DBObject Could not get schema Object:java.sql.SQLException:OALL8 is in an inconsistent state
    When I connect to one of our other in-house (non Oracle Apps) Oracle database 10.2.0.3 I am able to view the tables and the DDL in the SQL tab.
    Is there a reason why I am unable to view the DDL from the SQL tab for Oracle Apps databases
    Message was edited by:
    user571286
    Message was edited by:
    user571286

    If you get the same error when running the equivalent DBMS_METADATA through SQL*Plus (rather than through SQL Developer), I would assume that it is a problem with DBMS_METADATA in the database - this can be fixed (based on earlier posts, such as Re: ORA-06502 error on SQL tab by reinstalling DBMS_METADATA by running $ORACLE_HOME/rdbms/admin/catmeta.sql.
    If it works in SQL*Plus, then I would say it sounds like an issue with how SQL Developer is connecting to the database - simply based on the "no more data to read from socket".
    theFurryOne

  • EventHandler not executes for more of an user

    Hi Guys,
    I have three eventhandlers Post-Process, generator user login, associate the user manager and changer user status, from OIM 11g. When executes my HR reconciliation, and exists a new user to be created, is executed all eventhandlers normally, but when exists more than one user to be created, is executed all eventhandlers but only the creates user login isn't executed.
    In my config eventhandlers, this eventhandlers is in order 1000.
    Someone know me speak how resolve this issue?
    Thanks

    Hi Kevin,
    I used the same structure in all the java class. Below is the my bulkevent code, for you try help me indentify something wrong:
    public BulkEventResult execute(long l, long l1,
    BulkOrchestration bulkOrchestration){
    tcUserOperationsIntf userOperationsService = Platform.getService(tcUserOperationsIntf.class);
    logger.warn("CreateUserLogin.execute BulkEventResult");
    HashMap parameters = bulkOrchestration.getParameters();
    logger.warn("Parameters.BulkEventResult " + parameters);
    String operation = bulkOrchestration.getOperation();
    logger.warn("PostProcess Operation " + operation);
    String lastName = (parameters.get("Last Name") instanceof ContextAware)
    ? (String) ((ContextAware) parameters.get("Last Name")).getObjectValue()
    : (String) parameters.get("Last Name");
    String firstName = (parameters.get("First Name") instanceof ContextAware)
    ? (String) ((ContextAware) parameters.get("First Name")).getObjectValue()
    : (String) parameters.get("First Name");
    String fullName = (parameters.get("Nome Completo") instanceof ContextAware)
    ? (String) ((ContextAware) parameters.get("Nome Completo")).getObjectValue()
    : (String) parameters.get("Nome Completo");
    String cpf = (parameters.get("CPF") instanceof ContextAware)
    ? (String) ((ContextAware) parameters.get("CPF")).getObjectValue()
    : (String) parameters.get("CPF");
    String role = (parameters.get("Role") instanceof ContextAware)
    ? (String) ((ContextAware) parameters.get("Role")).getObjectValue()
    : (String) parameters.get("Role");
    String loginRecon = (parameters.get("User Login") instanceof ContextAware)
    ? (String) ((ContextAware) parameters.get("User Login")).getObjectValue()
    : (String) parameters.get("User Login");
    if (fullName == null || fullName.isEmpty()){
    fullName = firstName.trim()+" "+lastName.trim();
    String nome = fullName.substring(0,fullName.indexOf(" "));
    String sobrenome = fullName.substring(fullName.indexOf(" ") +1,fullName.length());
    sobrenome = sobrenome.replaceAll(" ", " ");
    sobrenome = sobrenome.replaceAll(" ", " ");
    if (loginRecon.equals(cpf)){        
    try{
    boolean valido = false;
    int tentativa = 1;
    int sequencia =1;
    String login = null;
    String iTResourceName = getLookup().getDecodedValueForEncodedValue("Lookup.xxx.Customization","ADITResourceName");
    String criar_email = getLookup().getDecodedValueForEncodedValue("Lookup.xxx.Customization","Criar_email");
    logger.warn("Atributo ADITResourceName = "+iTResourceName);
    logger.warn("Atributo Criar_email = "+criar_email);
    while (!valido) {
    logger.warn("TENTATIVA ("+tentativa+")");
    login = GeraLogin(nome, sobrenome, tentativa, sequencia);
    HashMap<String, String> validalogin = new HashMap<String, String>();
    validalogin.put("usr_udf_login", login);
    tcResultSet valida = userOperationsService.findUsers(validalogin);
    if (valida.getRowCount() > 0){
    valido = false;
    tentativa++;
    if (tentativa > 3){
    sequencia++;
    else{
    logger.warn("Verificando existencia do login "+login+" no Active Directory");
    String retAD= ValidaLoginAD(login,iTResourceName);
    if (retAD.equals("Existe")){
    valido = false;
    tentativa++;
    if (tentativa > 3){
    sequencia++;
    else{
    valido = true;
    HashMap<String, Object> mapAttrs = new HashMap<String, Object>();
    if (criar_email.toLowerCase().equals("yes")){
    String email = login+"@xxx.com";
    mapAttrs.put("Email", email);
    mapAttrs.put("Login de Rede", login);
    getEntityManager().modifyEntity(bulkOrchestration.getTarget().getType(), bulkOrchestration.getTarget().getEntityId(), mapAttrs);
    else{
    mapAttrs.put("Login de Rede", login);
    getEntityManager().modifyEntity(bulkOrchestration.getTarget().getType(), bulkOrchestration.getTarget().getEntityId(), mapAttrs);
    }catch (Exception e) {
    logger.error(e.getMessage());
    e.printStackTrace();
    else{
    logger.warn("No generate "+loginRecon);
    return new BulkEventResult();
    Thanks a lot

  • OBI Nested Subqueries does not execute before main query

    Hello,
    I am using Oracle Business Intelligence 11.1.1.6.0. I am trying to create a report that uses 4 different analyses. I will refer to them as analysis A, B, C & D.
    Analysis A & B have the normal filters that will be updated by a prompt on a dashboard.
    Analysis C has filters updated by the same dashboard prompt, but it also uses analysis A & B as part of its filter.
    Analysis D has filters updated by the same dashboard prompt, but it also uses analysis C as part of its filters. This is the analysis that shows the final results on the dashboard.
    After selecting the prompts and running the queries, I get no results from analysis D. However, if I hard-code the values for the filter for each analysis (A-D) and run analysis D, I get the results. I cannot get the results via the dashboard. It seems that the filters for the other analyses (A, B & C) are not updated before analysis D is executed.
    What am I doing wrong?
    Thanks.

    user1396441 wrote:
    Thanks for the suggestion but AndFilter is a subclass of AllFilter. So it is probably already an AllFilter behind the covers. If my problem is caused by a Coherence bug, I doubt that the bug is in constructing an AllFilter from an AndFilter. I doubt an AllFilter would solve the problem. I know the custom extractor suggested by robvarga would work. I just have to try it to see if the code is as readable with it.
    Edited by: user1396441 on Sep 21, 2011 1:01 PMThe only difference in how the code would look like is that you would have to wrap the method name string into the construction of the extractor:
    instead of
    new WhateverFilter("methodName", ...) you would have something like
    new WhateverFilter(new NullOnErrorReflectionExtractor("methodName"), ...) If the filter is a custom filter, then you can even hide the explicit extractor instantiation inside the constructor of the filter.
    Take care to use the extractor not only in creating the filter but also at creating the index otherwise indexed queries would not find the index. And of course the index would have to properly implement equals(), hashCode(), and the serialization methods belonging to your service configuration (ideally both POF and ExternalizableLite).
    Best regards,
    Robert

  • Apply Nested Styles Script not working for me anymore

    //DESCRIPTION: Applies nested styles as directly applied character styles.         WARNING: This script will override any character styles which are directly applied to the text with the nested styles applied, and formatting might change!
    (function(){
         function IsValid (obj){
              var err;
              try{
                   if(!obj){return false}
                   if(kAppVersion>=6){
                        return obj.isValid;
                   var test = obj.parent;
                   return true;
              catch(err){return false;}
         function ResetFindPrefs(){
              if(kAppVersion<5){app.findPreferences = null;}
              else{app.findTextPreferences = null;ResetFindChangeOptions();}
         function ResetFindChangeOptions(){
              app.findChangeTextOptions.properties = {
                   includeLockedStoriesForFind:false,
                   includeLockedLayersForFind:false,
                   includeHiddenLayers:false,
                   includeMasterPages:false,
                   includeFootnotes:false,
                   wholeWord:false,
                   caseSensitive:false
         function GetTempColor(doc){
              for(var i=0;i<doc.swatches.length;i++){
                   if(doc.swatches[i].label == 'harbsTempColor'){return doc.swatches[i]}
              return doc.colors.add({label:'harbsTempColor'});
         function GetAppColor(colorName){
              for(var i=0;i<app.swatches.length;i++){
                   if(app.swatches[i].name==colorName){return app.swatches[i]}
              return null;
         if(app.documents.length==0){return}
         kAppVersion = parseFloat(app.version);
         var doc = app.documents[0];
         if(kAppVersion<5){
              var charStyles = doc.characterStyles;
         }else{
              var charStyles = doc.allCharacterStyles;
         var tempDocColor = GetTempColor(doc);
         var colorName = tempDocColor.name;
         var tempAppColor = GetAppColor(colorName);
         var removeAppColor=false;
         if(!tempAppColor){
              removeAppColor=true;
              tempAppColor=app.colors.add({name:colorName})
         for(var i=1;i<charStyles.length;i++){
              var savedColor = charStyles[i].underlineGapColor;
              var finds=undefined;
              var findsLength=0;
              do{
                   if(finds){findsLength=finds.length}
                   charStyles[i].underlineGapColor=tempDocColor;
                   ResetFindPrefs();
                   if(kAppVersion<5){
                        app.findPreferences.underlineGapColor = tempDocColor;
                        app.changePreferences.appliedCharacterStyle = charStyles[i];
                        doc.search("",false,false,'');
                        break;
                   }else{
                        if(kAppVersion<6){
                             app.findTextPreferences.underlineGapColor = tempAppColor;
                        }else{
                             app.findTextPreferences.underlineGapColor = tempDocColor;
                        app.changeTextPreferences.appliedCharacterStyle = charStyles[i];
                        finds = doc.changeText();
                        //alert(finds.length);
              }while(findsLength!=finds.length);
              charStyles[i].underlineGapColor=savedColor;
         tempDocColor.remove();
         if(removeAppColor){tempAppColor.remove()}
    This was a script to apply nested styles directly to the text as character styles.It was supplied to me by someone on this forum to help make a file adaptable to an epub doc. It has worked fine for many months but now it does not. I am wondering if the cause is that I have added two nested styles in the paragraphs, where before there was only one. The paras. are currently set up with nested styles as follows:[none] up to En Space, italic through 5 sentences.                  I am using 5 sentences because I can't figure how to use a para. end as a limiter. I know this is confused but any help will be appreciated. Thanks

    That looks like mine (and someone didn't follow my request on this page) :
    http://in-tools.com/scripts.html
    What doesn't work?
    You can PM me, and I'll try to figure out what's wrong...
    Harbs

  • SVHC checks not executing for pure substance

    When checked for REACH SVHC for the Vend substances, check results shows as Compliance not ascertainable and calculated compliance status differs from existing status. These Vend substances have a DCT pulled in the production system and do not have any SVHC.
    getting Errors like
    Compliance data for product is missing from supplier
    Speccification is not a ascertainable because of deeper level of product structure.
    Calculated compliance status differs from existing status.
    Kindly help
    Ismail

    Dear Anshul
    SAP is using at many places "identification listings" of different kind. E.g. for hit list, for composition/spec listing, hazard inducer etc.purposes. For DG filling in most cases a different ident listing is used. Now it depends on how do you use SAP. There is a "standard" ident. listing to be used for DG purposes; you need therefore to compare the different ident listings and may be adapt the set up.
    Any SAP standard is starting with "D_" in customizing (e.g. D_HITLIST etc.):
    C.B.
    PS: e.g. check: Identification Listing
    Error in DG Filling
    https://help.sap.com/saphelp_erp60_sp/helpdata/en/03/34981109d311d286e6080009b98822/content.htm
    http://help.sap.com/printdocu/core/print46c/en/data/pdf/EHSDGP/LOEHSDGP.pdf

  • Currency conversion rule not executing for manual journal entries.

    Hi,
    We have currency conversion business rule set in our project. THis business rule is not converting LC to other currencies for manual journal posting entries. i.e, it is audit id with DATASRC_TYPE="M".
    Can any one let me know if any specific settings are to be done for this to work?
    Regards,
    Swetha

    Hi,
    Is the currency conversion working on the other datasources?
    If yes, then try to post some record through input schedule in the M datasource, run the currency conversion, and see if the currency conversion is working fine or not.

  • Properly structuring a document for XML output, CS4

    Hello all,
    I was wondering if anyone could provide me with a proper resource for how to to do this, what parameters I must work in and how I can work around some problems that I may be forseeing.
    Now, I have done some research on this. I have some books on the subject but I have yet to find them to be terribly helpful for the kind of content I work with. In books, Things like the master pages, footnotes many other elements are essential. Most of the examples provided for me are frankly not as complex as the documents I work with. Frequently the books provide examples of an image with some text next to it.
    Anyway clearly this could go on forever, so let me try and keep this tight. If anyone knows of an online database/resource of information I could use, that'd be great. Secondly, is it possible to export the data from the master pages into XML, or perhaps map the relevent content to xml (page numbers, title running head and chapter running head.) and the footnotes.
    Thank you!

    Did you know that you can place an InDesign document into another InDesign document?
    Start with your letter-size version, and make sure it's up-to-date. Save it, close it, then start a new empty tabloid document. Go to File -> Place and place the four pages of your letter-size document into your tabloid document.
    When you need to update both docs, then make the text changes in the lettersize doc. Save and close, then open up the tabloid doc and update the links. In fact, unless you've changed the way your install of ID is set up, then the moment you open the tabloid doc, it should ask you if you want to update your out-of-date links.

  • Email Attachment is not Working for xml file

    Hi All,
    if any one has any answer to this below Query, Your help will be highly appreciated.
    1- while configuring the email for attachment i am getting the selection failure Error in Content Encoding line where i am setting the base64 for encoding. Please fine configuration done for Email activity
    <scope name="Email1">
    <bpelx:annotation>
    <bpelx:pattern patternName="bpelx:email"></bpelx:pattern>
    </bpelx:annotation>
    <variables>
    <variable name="varNotificationReq"
    messageType="ns1:EmailNotificationRequest"/>
    <variable name="varNotificationResponse"
    messageType="ns1:ArrayOfResponse"/>
    <variable name="NotificationServiceFaultVariable"
    messageType="ns1:NotificationServiceErrorMessage"/>
    </variables>
    <sequence name="Sequence1">
    <assign name="EmailParamsAssign">
    <copy>
    <from expression="string('Default')"/>
    <to variable="varNotificationReq" part="EmailPayload"
    query="/EmailPayload/ns1:FromAccountName"/>
    </copy>
    <copy>
    <from expression="string('')"/>
    <to variable="varNotificationReq" part="EmailPayload"
    query="/EmailPayload/ns1:Bcc"/>
    </copy>
    <copy>
    <from expression="string('')"/>
    <to variable="varNotificationReq" part="EmailPayload"
    query="/EmailPayload/ns1:Cc"/>
    </copy>
    <copy>
    <from expression="string('')"/>
    <to variable="varNotificationReq" part="EmailPayload"
    query="/EmailPayload/ns1:ReplyToAddress"/>
    </copy>
    <copy>
    <from expression="bpws:getVariableData('subject')"/>
    <to variable="varNotificationReq" part="EmailPayload"
    query="/EmailPayload/ns1:Subject"/>
    </copy>
    <copy>
    <from expression="bpws:getVariableData('mailId')"/>
    <to variable="varNotificationReq" part="EmailPayload"
    query="/EmailPayload/ns1:To"/>
    </copy>
    <copy>
    <from>
    <Content xmlns="http://xmlns.oracle.com/ias/pcbpel/NotificationService">
    <MimeType xmlns="http://xmlns.oracle.com/ias/pcbpel/NotificationService">multipart/mixed</MimeType>
    <ContentBody xmlns="http://xmlns.oracle.com/ias/pcbpel/NotificationService">
    <MultiPart xmlns="http://xmlns.oracle.com/ias/pcbpel/NotificationService">
    <BodyPart xmlns="http://xmlns.oracle.com/ias/pcbpel/NotificationService">
    <MimeType xmlns="http://xmlns.oracle.com/ias/pcbpel/NotificationService"/>
    <ContentBody xmlns="http://xmlns.oracle.com/ias/pcbpel/NotificationService"/>
    <BodyPartName xmlns="http://xmlns.oracle.com/ias/pcbpel/NotificationService"/>
    </BodyPart>
    <BodyPart xmlns="http://xmlns.oracle.com/ias/pcbpel/NotificationService">
    <MimeType xmlns="http://xmlns.oracle.com/ias/pcbpel/NotificationService"/>
    <ContentBody xmlns="http://xmlns.oracle.com/ias/pcbpel/NotificationService"/>
    <BodyPartName xmlns="http://xmlns.oracle.com/ias/pcbpel/NotificationService"/>
    <contentencoding xmlns="http://xmlns.oracle.com/ias/pcbpel/NotificationService"/>
    </BodyPart>
    </MultiPart>
    </ContentBody>
    </Content>
    </from>
    <to variable="varNotificationReq" part="EmailPayload"
    query="/EmailPayload/ns1:Content"/>
    </copy>
    <copy>
    <from expression="string('base64')"/>
    <to variable="varNotificationReq" part="EmailPayload"
    query="/EmailPayload/ns1:Content/ns1:ContentBody/ns1:MultiPart/ns1:BodyPart[2]/ns1:ContentEncoding"/>
    </copy>
    <copy>
    <from expression="string('application/xml')"/>
    <to variable="varNotificationReq" part="EmailPayload"
    query="/EmailPayload/ns1:Content/ns1:ContentBody/ns1:MultiPart/ns1:BodyPart[1]/ns1:MimeType"/>
    </copy>
    <copy>
    <from expression="bpws:getVariableData('body')"/>
    <to variable="varNotificationReq" part="EmailPayload"
    query="/EmailPayload/ns1:Content/ns1:ContentBody/ns1:MultiPart/ns1:BodyPart[1]/ns1:ContentBody"/>
    </copy>
    <copy>
    <from expression="string('application/xml')"/>
    <to variable="varNotificationReq" part="EmailPayload"
    query="/EmailPayload/ns1:Content/ns1:ContentBody/ns1:MultiPart/ns1:BodyPart[2]/ns1:MimeType"/>
    </copy>
    <copy>
    <from expression="'abc.xml'"/>
    <to variable="varNotificationReq" part="EmailPayload"
    query="/EmailPayload/ns1:Content/ns1:ContentBody/ns1:MultiPart/ns1:BodyPart[2]/ns1:BodyPartName"/>
    </copy>
    <copy>
    <from expression="ora:readFile('file:///*/*.xml')"/
    <to variable="varNotificationReq" part="EmailPayload"
    query="/EmailPayload/ns1:Content/ns1:ContentBody/ns1:MultiPart/ns1:BodyPart[2]/ns1:ContentBody"/>
    </copy>
    </assign>
    If any one has done it before please help me out...
    thanks
    Dillip

    Hello Dillip,
    Please find below links. Either of one should solve your problem -
    http://mysoathoughts.blogspot.fi/2013/02/send-xml-file-as-attachment.html
    http://neeraj-soa-tips.blogspot.co.uk/2012/01/sending-attachment-using-email-activity.html
    BR
    Vaibhav

  • Float value not coming for xml where in xsd datatype is double

    Dear Nandy, Previously i faced same error. Then I Chaned the data type "Double into String i changed in the xsd". Or  "Double into Integer also it will work"  Please changed the data type then run it.  Please let me know. Thanks & RegardsKasireddy+966545281845

    We are using xml as source and xml parser is used. In xsd datatype is double but where in xml value is like-100.0 but after xml parser value is coming 100 though datattype is double. I can see scale is 0. Can anybode tell me how to increase  scale in xml parser or any other way to solve this. Thanks.

Maybe you are looking for

  • My 2012 Macbook Air wont turn on. SMC restart DOESN'T do ANYTHING. Is there anything else I can try?

    So my 2012 Macbook Air was working just fine until the next morning I open it up and nothing happens: the apple logo doesnt light up, screen doesnt turn on, no boot up noise...nothing. Tried pressing and holding the power buttton multiple times...nad

  • Invalid Attribute value Exception while adding Timestamp Attribute value

    Good Day friends, I'm using IBM Directory Server 4.1 LDAP to maintain the Online User Registeration for a Web Application. I need to store the Timestamp at the time user registers, so that another java application of mine can delete non-active users

  • ALV list Header details scattered

    Hi All, I have a ALV-LIST report output but the header details displayed are scattered in output. Can you suggest how to align all deatils properly aligned.

  • Javax.naming.NameNotFoundException: comp not bound

    When i try to deploy the following error message.. pls help Hii all..I am facing some problems with eclipse.If any one know waht the problem is pls help me.. i cant bulid the work space completely as i get out of memory error continuously. i use 1GB

  • Flash memory corrupt

    My daughter recieved a Iphone 4 as a gift, it was working fine and she downloaded about 30 games from the app store.  Then the iphone went into recovery mode.  We tried and tried to fet it out from recovery mode and also connected it to Itunes. .....