PDF file getting corrupted while creating document

Dear experts ,
                           we are creating DMS document using  BAPI_DOCUMENT_CREATE2 , its all working fine in DEV and Quality system but in production system in case of PDF file bapi is returning success message , but user is not able to display or see the document , getting an error saying 'There was an error opening this document. The file is damagedand could not be repaired'.
my fuction module getting call from java webdynpro application , I have doubt on the OPEN DATASET statments
I am using below code to transfer data to application server ,
  IF iv_file_path IS NOT INITIAL.
    SPLIT iv_file_path AT '.' INTO lv_filename lv_ext.
    CALL FUNCTION 'CV120_DOC_GET_APPL'
      EXPORTING
        pf_file   = iv_file_path
      IMPORTING
        pfx_dappl = lv_file_type.
    TRANSLATE lv_file_type TO UPPER CASE.
    OPEN DATASET log FOR OUTPUT IN BINARY MODE
    TRANSFER lv_ext TO log.
    ls_documentfiles-wsapplication = lv_file_type.
    TRANSLATE ls_documentfiles-wsapplication TO UPPER CASE.
    CONCATENATE
                       lv_filename
                        lv_ext
                        INTO lv_file_name.
    CONDENSE lv_file_name  NO-GAPS.
    TRANSFER lv_file_name TO log.
    OPEN DATASET lv_file_name FOR OUTPUT IN BINARY MODE MESSAGE lv_msg.
**Transfer Attachment Content to Application Server
    TRANSFER iv_file_data TO lv_file_name.
    CLOSE DATASET lv_file_name.
Please help

After convert PDF file  you have to use following FM the u send file.
DATA: pdf TYPE REF TO cl_hrasr00_pdf_generation.
  DATA : lt_data            TYPE solix_tab.
  OPEN DATASET filename FOR INPUT IN BINARY MODE.
  IF sy-subrc EQ 0.
    READ DATASET filename INTO filex.
  ENDIF.
  IF filex IS NOT INITIAL.
    CALL FUNCTION 'SCMS_XSTRING_TO_BINARY'
      EXPORTING
        buffer        = filex
      IMPORTING
        output_length = file_length
      TABLES
        binary_tab    = gt_objbin.
  ENDIF.
  CLOSE DATASET filename.

Similar Messages

  • PDF file gets corrupted when generated from BSP

    Hi,
         I am generating a PDF file from a BSP page ( see the code below). The problem is that PDF file gets corrupted and  I am unable to open it. I also tried to use other functions like GUI_Download and DOwnload as suggested by many and they also do not work either. Has any one generated a PDF from BSP and can some one help?
    Data: GG type String.
    event handler for data retrieval
    data : event type ref to cl_htmlb_event.
    class cl_htmlb_manager definition load.
    class CL_HTTP_RESPONSE DEFINITION LOAD.
    DATA : PARAMS TYPE PRI_PARAMS,
             VALID  TYPE C,
    GV_SUCCESS_SPOOL_NO LIKE SY-SPONO.
    CALL FUNCTION 'GET_PRINT_PARAMETERS'
        EXPORTING DESTINATION           = 'LOCL'
               COPIES                = COUNT
               LIST_NAME             = 'TEST'
               LIST_TEXT             = 'Test NEW-PAGE PRINT ON'
                  IMMEDIATELY           = ''
                  RELEASE               = 'X'
                  NEW_LIST_ID           = 'X'
               EXPIRATION            = DAYS
                  LINE_SIZE             = 140
               LINE_COUNT            = 23
               LAYOUT                = 'X_PAPER'
               SAP_COVER_PAGE        = 'X'
               RECEIVER              = 'SAP*'
               DEPARTMENT            = 'System'
                  NO_DIALOG             = 'X'
        IMPORTING OUT_PARAMETERS        = PARAMS
                  VALID                 = VALID.
      IF VALID <> SPACE.
        NEW-PAGE PRINT ON  PARAMETERS PARAMS NO DIALOG.
    write :/ 'Hello Message1'.
    write :/ 'Hello Message2 '.
    NEW-PAGE PRINT OFF .
      ENDIF.
    data :        spool_no TYPE TSP01-RQIDENT .
    spool_no = sy-spono.
    DATA: itab TYPE TLINE,
            witab TYPE TABLE OF TLINE,
            output TYPE STRING,
            outputx TYPE XSTRING.
    data : l_pdf_len type i.
    data: mi_bytecount type i.
    DATA : APP_TYPE TYPE STRING VALUE  'APPLICATION/PDF' .
    DATA:    cached_response TYPE ref to if_HTTP_RESPONSE.
    data : l_display_url type string .
    data : guid type GUID_32 .
      call function 'CONVERT_ABAPSPOOLJOB_2_PDF'
        EXPORTING
          SRC_SPOOLID              = spool_no
          NO_DIALOG                = 'X'
       IMPORTING
          PDF_BYTECOUNT            =  mi_bytecount
        TABLES
          PDF                      = witab
        EXCEPTIONS
          ERR_NO_ABAP_SPOOLJOB     = 1
          ERR_NO_SPOOLJOB          = 2
          ERR_NO_PERMISSION        = 3
          ERR_CONV_NOT_POSSIBLE    = 4
          ERR_BAD_DESTDEVICE       = 5
          USER_CANCELLED           = 6
          ERR_SPOOLERROR           = 7
          ERR_TEMSEERROR           = 8
          ERR_BTCJOB_OPEN_FAILED   = 8
          ERR_BTCJOB_SUBMIT_FAILED = 9
          ERR_BTCJOB_CLOSE_FAILED  = 10
          others                   = 11.
      if sy-subrc EQ 0.
        LOOP AT witab INTO itab.
          CONCATENATE
            output
            itab-tdline
          INTO output in character mode.
        ENDLOOP.
    endif.
    CALL FUNCTION 'SCMS_STRING_TO_XSTRING'
            EXPORTING
                text   = output
                mimetype =   'APPLICATION/PDF'
            IMPORTING
                buffer = outputx.
    concatenate cl_abap_char_utilities=>byte_order_mark_little
    outputx
    into outputx in byte mode.
      response->set_header_field( name = 'content-type' value =
    'APPLICATION/PDF; charset=utf-16le'  ).
      response->delete_header_field( name =
    if_http_header_fields=>cache_control ).
      response->delete_header_field( name = if_http_header_fields=>expires
      response->delete_header_field( name = if_http_header_fields=>pragma )
      response->set_header_field( name = 'content-disposition'
                                  value = 'attachment; filename = TEST.PDF'
      l_PDF_len = xstrlen( OUTPUTX ).
      response->set_data( data = OUTPUTx
                          length = l_PDF_len ).
    navigation->response_complete( ).
    Regards
    Amit Agrawal

    HI Craig Cmehil,
                   I have tried this code as well as given in the URL specified by you. But using this also browser shows the following  content. It seems that PDF content is corrupted.
    My Output as shown on Browser Starts below this line----
    DF-1.3
    %âãÏÓ
    2 0 obj
    /WinAnsiEncoding
    endobj
    3 0 obj
    <<
    /Type /Font
    /Subtype /Type1
    /BaseFont /Courier
    /Name /F001
    /Encodg 2 0 R
    >>
    endobj
    4 0 obj
    <<
    /Length 5 0 R
    >>
    stream
    /F001 7.30 Tf 0 0 0.753 rg BT 18.00 570.65 Td 0 Tw <33302E30362E3230302020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020>Tj ET 0 0 0.753 rg BT 2950 570.65 Td 0 Tw
    <20204854545020436F6E74726F6C202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020>Tj ET 0 0 0.753 rg BT 572.40 570.65 Td 0 Tw <2020202020202020202020202031>Tj ET q 0 0 0 RG 0.55 w 18.00 562.90 m
    634. 562.90 l S Q 0 0 0.753 rg BT 18.00 551.45 Td 0 Tw <48656C6C6F20416D6974>Tj ET 0 0 0.753 rg BT 18.00 541.85 Td 0 Tw <48656C6C6F204765726176>Tj ET
    endstream
    endobj
    5 0 obj
    624
    endobj
    6 0 obj
    <<
    /Type /Page
    /MediaBox
    /Parent 1 0 R
    /Resource
    <<
    /ProcSet
    /PDF /Text
    /Font
    <<
    /F001 3 0 R
    >>
    /XObject
    <<
    >>
    >>
    /Contents 4 0 R
    >>
    endobj
    7 0 obj
    <<
    /Author (AMG )
    /CreationDate (20050630 181301)
    /Creator (Form X_58_170 EN)
    /Producer (SAP R/3 Release 620 )
    %SAPinfoStart TOA_DARA
    %FUNCTI=(    )
    %MANDANT=(   )
    %DEL_DATE=(00000000)
    %SAP_OBJECT=(          )
    %AR_OBJECT=(          )
    %OBJECT_ID=(                          )
    %FORM_ID=(                                        )
    %FORMARCHIV=(  )
    %RESERVE=(   )
    %NOTIZ=(                                                                )
    %SAPinfoEnd TOA_DARA
    >>
    endobj
    1 0 obj
    <<
    /Type /Pages
    /Kids
    [ 6 0 R
    /Count 1
    >>
    endobj
    8 0 obj<<
    /Type /Catalog
    /Pages 1 0 R
    /PageMode /UseNone
    >>
    endobj
    xref
    0 9
    0000000000 65535 f
    0000001801 00000 n
    0000000017 0000n
    0000000052 00000 n
    0000000157 00000 n
    0000000840 00000 n
    0000000862 00000 n
    0000001048 00000 n
    0000001869 00000 n
    trailer
    /Size 9
    /Root 8 0 R
    /Info 7 0 R
    >>
    startxref
    1944
    %%EOF
    Browser Displey Content Ends----
    My Coding Starts----
    Data: GG type String.
    event handler for data retrieval
    data : event type ref to cl_htmlb_event.
    class cl_htmlb_manager definition load.
    class CL_HTTP_RESPONSE DEFINITION LOAD.
    DATA : PARAMS TYPE PRI_PARAMS,
             VALID  TYPE C,
    GV_SUCCESS_SPOOL_NO LIKE SY-SPONO.
    CALL FUNCTION 'GET_PRINT_PARAMETERS'
        EXPORTING DESTINATION           = 'LOCL'
               COPIES                = COUNT
               LIST_NAME             = 'TEST'
               LIST_TEXT             = 'Test NEW-PAGE PRINT ON'
                  IMMEDIATELY           = ''
                  RELEASE               = 'X'
                  NEW_LIST_ID           = 'X'
               EXPIRATION            = DAYS
                  LINE_SIZE             = 140
               LINE_COUNT            = 23
               LAYOUT                = 'X_PAPER'
               SAP_COVER_PAGE        = 'X'
               RECEIVER              = 'SAP*'
               DEPARTMENT            = 'System'
                  NO_DIALOG             = 'X'
        IMPORTING OUT_PARAMETERS        = PARAMS
                  VALID                 = VALID.
      IF VALID <> SPACE.
        NEW-PAGE PRINT ON  PARAMETERS PARAMS NO DIALOG.
    write :/ 'Hello Amit'.
    write :/ 'Hello Gaurav '.
    NEW-PAGE PRINT OFF .
      ENDIF.
    GV_SUCCESS_SPOOL_NO = sy-spono.
    data :        spool_no TYPE TSP01-RQIDENT .
    spool_no = sy-spono.
    write: GV_SUCCESS_SPOOL_NO.
    *write: spool_no.
    IF display_type = 'convertspool'.
      DATA: itab TYPE TLINE,
            witab TYPE TABLE OF TLINE,
            output TYPE STRING,
            outputx TYPE XSTRING.
    data : l_pdf_len type i.
    data: mi_bytecount type i.
    DATA : APP_TYPE TYPE STRING VALUE  'APPLICATION/PDF' .
    DATA:    cached_response TYPE ref to if_HTTP_RESPONSE.
    data : l_display_url type string .
    data : guid type GUID_32 .
           spool_no like TSP01-RQIDENT .
    *spool_no = GV_SUCCESS_SPOOL_NO .
      call function 'CONVERT_ABAPSPOOLJOB_2_PDF'
        EXPORTING
          SRC_SPOOLID              = spool_no
          NO_DIALOG                = 'X'
       IMPORTING
          PDF_BYTECOUNT            =  mi_bytecount
        TABLES
          PDF                      = witab
        EXCEPTIONS
          ERR_NO_ABAP_SPOOLJOB     = 1
          ERR_NO_SPOOLJOB          = 2
          ERR_NO_PERMISSION        = 3
          ERR_CONV_NOT_POSSIBLE    = 4
          ERR_BAD_DESTDEVICE       = 5
          USER_CANCELLED           = 6
          ERR_SPOOLERROR           = 7
          ERR_TEMSEERROR           = 8
          ERR_BTCJOB_OPEN_FAILED   = 8
          ERR_BTCJOB_SUBMIT_FAILED = 9
          ERR_BTCJOB_CLOSE_FAILED  = 10
          others                   = 11.
      if sy-subrc EQ 0.
        LOOP AT witab INTO itab.
          CONCATENATE
            output
            itab-tdline
          INTO output in character mode.
        ENDLOOP.
    endif.
    *write : output.
    CALL FUNCTION 'SCMS_STRING_TO_XSTRING'
            EXPORTING
                text   = output
                mimetype =   'APPLICATION/PDF'
            IMPORTING
                buffer = outputx.
    *concatenate cl_abap_char_utilities=>byte_order_mark_little
    *outputx
    *into outputx in byte mode.
    CREATE OBJECT cached_response TYPE CL_HTTP_RESPONSE EXPORTING add_c_msg = 1.
    some Browsers have caching problems when loading Excel Format
      response->set_header_field( name = 'content-type' value =
    'APPLICATION/PDF'  ).
      response->delete_header_field( name =
    if_http_header_fields=>cache_control ).
      response->delete_header_field( name = if_http_header_fields=>expires
      response->delete_header_field( name = if_http_header_fields=>pragma )
        l_pdf_len = xstrlen( outputx ).
        cached_response->set_data( data   = outputx
                            length = l_pdf_len ).
        cached_response->set_header_field( name  = if_http_header_fields=>content_type
                                           value = 'application/pdf' ).
        cached_response->set_status( code = 200 reason = 'OK' ).
        cached_response->server_cache_expire_rel( expires_rel = 180 ).
        CALL FUNCTION 'GUID_CREATE'
          IMPORTING
            ev_guid_32 = guid.
        CONCATENATE runtime->application_url '/' guid '.pdf' INTO l_display_url.
        cl_http_server=>server_cache_upload( url      = l_display_url
                                             response = cached_response ).
    RETURN.
    My Coding Ends----
    Any Further help on this.
    Regards
    Amit Agrawal

  • Getting Error while creating Document object  after  parsing XML String

    Hi All,
    I have been trying to parse an XML string using the StringReader and InputSource interface but when I am trying to create Document Object using Parse() method getting error like
    [Fatal Error] :2:6: The processing instruction target matching "[xX][mM][lL]" is not allowed.
    seorg.xml.sax.SAXParseException: The processing instruction target matching "[xX][mM][lL]" is not allowed.
    Please find the code below which i have been experimenting with:
    import java.io.BufferedReader;
    import java.io.FileNotFoundException;
    import java.io.FileReader;
    import java.io.IOException;
    import java.io.StringReader;
    import java.util.List;
    import java.util.*;
    import javax.xml.parsers.DocumentBuilder;
    import javax.xml.parsers.DocumentBuilderFactory;
    import javax.xml.parsers.ParserConfigurationException;
    import org.w3c.dom.Document;
    import org.w3c.dom.Element;
    import org.w3c.dom.Node;
    import org.w3c.dom.NodeList;
    import org.xml.sax.InputSource;
    import org.xml.sax.SAXException;
    import java.io.*;
    public class TestMain {
         public static void main(String[] args) {
              String file = "";
              file = loadFileContent("C:\\Test.xml");
              System.out.println("contents >> "+file);
              parseQuickLinksFileContent(file);
    public static void parseQuickLinksFileContent(String fileContents) {
    PWMQuickLinksModelVO objPWMQuickLinksModelVO = new PWMQuickLinksModelVO();
         try {
    DocumentBuilderFactory factory =           DocumentBuilderFactory.newInstance();
         DocumentBuilder builder = factory.newDocumentBuilder();
         StringReader objRd = new StringReader(fileContents);
         InputSource objIs = new InputSource(objRd);
         Document document = builder.parse(objIs); // HERE I am getting Error.
         System.out.println(document.toString());
    What is happening while I am using builder.parse() method ???
    Thanks,
    Rajendra.

    Getting following error
    [Fatal Error] :2:6: The processing instruction target matching "[xX][mM][lL]" is not allowed.
    seorg.xml.sax.SAXParseException: The processing instruction target matching "[xX][mM][lL]" is not allowed.

  • My file gets corrupted while editing it

    It happened already twice. I am working in one of my layers, I am changing the levels , the image in that layer gets black. I cant undo or go back in history. In the history pallette the original picture at the top goes black. If I try to save, all the layers get corrupted, with missing arbitrary squares in  all of them. The first time it happens the missing areas where white, the second time they change to black. The top picture in the history pallette maches the black or white color.
    The small picture in the icon in my desktop looks normal , but when open is tottally corrupted. If I have other files open, all of them get corrupted also if I tried to save.

    More trouble
    Now the wire behavior is happening in my layers selection, they are grey when selected instead of blue, so I can't work at all!
    Thank you so much for follow my postings!! I am going crazy because my work depends on Photoshop!
    Here is my system info, I have tried everything!, this latest  trouble are not affected by turning on and of the GL.
    Can Adobe send you a virus? I used to have Abobe suit installed, from a previous Co I work for, but they didn't upgrade the license , I was not using the software but it was still installed in my HD. (I recieved a couple of messages from Adobe to let me know that the license was expired) but I didn't paid attention to it because I didn't used. I was using my license CS5 version.
    I already uninstall that. The only other thing I did before all this started was buying Mac Keeper.
    THANK YOU SO MUCH for all your help.
    A
    Adobe Photoshop Version: 12.1.1 (12.1.1x20120530 [20120530.r.190 2012/05/30:15:00:00 cutoff; r branch]) x64
    Operating System: Mac OS 10.6.8
    System architecture: Intel CPU Family:6, Model:23, Stepping:10 with MMX, SSE Integer, SSE FP, SSE2, SSE3, SSE4.1
    Physical processor count: 2
    Processor speed: 3060 MHz
    Built-in memory: 4096 MB
    Free memory: 1816 MB
    Memory available to Photoshop: 3764 MB
    Memory used by Photoshop: 88 %
    Image tile size: 128K
    Image cache levels: 5
    OpenGL Drawing: Enabled.
    OpenGL Drawing Mode: Basic
    OpenGL Allow Normal Mode: True.
    OpenGL Allow Advanced Mode: False.
    OpenGL Crash File: Not Detected.
    OpenGL Allow Old GPUs: Not Detected.
    OpenGL Version: 2.1 NVIDIA-1.6.36
    Video Card Vendor: NVIDIA Corporation
    Video Card Renderer: NVIDIA GeForce GT 130 OpenGL Engine
    Display: 1
    Main Display
    Display Depth:= 32
    Display Bounds:=  top: 0, left: 0, bottom: 1200, right: 1920
    Video Renderer ID: 16918027
    Video Card Memory: 485 MB
    Serial number:
    Application folder: Macintosh HD:Applications:Adobe Photoshop CS5.1:
    Photoshop scratch has async I/O enabled
    Scratch volume(s):
      Macintosh HD, 931.2G, 783.1G free
    Primary Plug-ins folder: Macintosh HD:Applications:Adobe Photoshop CS5.1:Plug-ins:
    Additional Plug-ins folder: not set
    Installed components:
       adbeape.framework   adbeape   3.1.74.12761   64.452786
       adobe_caps.framework   adobe_caps   4.0.42.0   1.242162
       adobe_oobe_launcher.framework      2.0.0.36  
       AdobeACE.framework   AdobeACE   2.16.36.12130   64.449933
       AdobeAGM.framework   AdobeAGM   4.20.69.12130   64.449933
       AdobeAXE8SharedExpat.framework   AdobeAXE8SharedExpat   3.5.101.12636   64.436825
       AdobeAXEDOMCore.framework   AdobeAXEDOMCore   3.5.101.12636   64.436825
       AdobeBIB.framework   AdobeBIB   1.2.02.12130   64.449933
       AdobeBIBUtils.framework   AdobeBIBUtils   1.1.01   64.449933
       AdobeCoolType.framework   AdobeCoolType   5.07.83.12130   64.449933
       AdobeCrashReporter.framework   AdobeCrashReporter   5.5.20101001  
       AdobeExtendScript.framework   AdobeExtendScript   4.1.28.12764   61.452840
       adobejp2k.framework   AdobeJP2K   2.0.0.12130   64.181312
       AdobeLinguistic.framework      11696  
       AdobeMPS.framework   AdobeMPS   5.5.0.12130   64.450375
       AdobeOwl.framework   AdobeOwl   3.0.93   61.433187
       AdobeOwlCanvas.framework   AdobeOwlCanvas   3.0.68   61.2954
       adobepdfl.framework   AdobePDFL   9.9.0.12130   64.341419
       adobepdfsettings.framework   AdobePDFSettings   1.4  
       AdobePIP.framework   AdobePIP   5.5.0.1265  
       AdobeScCore.framework   AdobeScCore   4.1.28.12764   61.452840
       AdobeUpdater.framework   AdobeUpdater   6.0.0.1452   "52.338651"
       AdobeXMP.framework   AdobeXMPCore   64.140949   64.140949
       AdobeXMPFiles.framework   AdobeXMPFiles   64.140949   64.140949
       AdobeXMPScript.framework   AdobeXMPScript   64.140949   64.140949
       aflame.framework   AFlame   1.0.44.12636   64.444140
       aflamingo.framework   AFlamingo   2.1.103.12636   64.436825
       ahclient.framework   ahclient   1.6.0.20  
       aif_core.framework   AdobeAIF   2.0.00   53.419149
       aif_ogl.framework   AdobeAIF   2.0.00   53.419149
       AlignmentLib.framework   xcode   1.0.0.1  
       amtlib.framework   amtlib   4.0.0.21  
       amtservices.framework      4.0.0.21  
       asneu.framework   AsnEndUser   1.7.0.1  
       boost_threads.framework   boost_threads   5.0.0.0  
       Cg.framework   NVIDIA Cg     
       data_flow.framework   AdobeAIF   2.0.00   53.419149
       dvaadameve.framework   dvaadameve   5.0.0.0  
       dvacore.framework   dvacore   5.0.0.0  
       dvaui.framework   dvaui   5.0.0.0  
       FileInfo.framework   FileInfo   64.140949   64.140949
       ICUConverter.framework   ICUConverter   3.61   "11" "." "6654"
       ICUData.framework   ICUData   3.61   "11" "." "6654"
       image_flow.framework   AdobeAIF   2.0.00   53.419149
       image_runtime.framework   AdobeAIF   2.0.00   53.419149
       LogSession.framework   LogSession   2.0.1.011  
       PlugPlug.framework   PlugPlug   2.5.0.232  
       UpdaterNotifications.framework   UpdaterNotifications   2.0.0.15   "2.0.0.15"
       wrservices.framework        
    Installed plug-ins:
       Accented Edges 12.0, Copyright © 1991-2010 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       ADM 3.10x16, Copyright © 1987-2008 Adobe Systems Inc.  All rights reserved. - from the file “AdobeADM.bundle”
       Angled Strokes 12.0, Copyright © 1991-2010 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Average 12.1.1x20120530 [20120530.r.190 2012/05/30:15:00:00 cutoff; r branch]  ©1993-2011 Adobe Systems Incorporated - from the file “Average.plugin”
       Bas Relief 12.0, Copyright © 1991-2010 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       BMP 12.0.2, Copyright © 2003-2010 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       Camera Raw 6.7 (339), Copyright © 2012 Adobe Systems Incorporated - from the file “Camera Raw.plugin”
       Chalk & Charcoal 12.0, Copyright © 1991-2010 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Charcoal 12.0, Copyright © 1991-2010 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Chrome 12.0, Copyright © 1991-2010 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Cineon 12.1.1x20120530 [20120530.r.190 2012/05/30:15:00:00 cutoff; r branch]  ©2002-2011 Adobe Systems Incorporated - from the file “Cineon.plugin”
       Clouds 12.1.1x20120530 [20120530.r.190 2012/05/30:15:00:00 cutoff; r branch]  ©1993-2011 Adobe Systems Incorporated - from the file “Clouds.plugin”
       Color Halftone 12.0.2, Copyright © 2003-2010 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       Colored Pencil 12.0, Copyright © 1991-2010 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       CompuServe GIF 12.0.2, Copyright © 2003-2010 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       Conté Crayon 12.0, Copyright © 1991-2010 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Craquelure 12.0, Copyright © 1991-2010 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Crop and Straighten Photos 12.1.1x20120530 [20120530.r.190 2012/05/30:15:00:00 cutoff; r branch]  ©2003-2011 Adobe Systems Incorporated - from the file “CropPhotosAuto.plugin”
       Crop and Straighten Photos Filter 12.0.2, Copyright © 2003-2010 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       Crosshatch 12.0, Copyright © 1991-2010 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Crystallize 12.0.2, Copyright © 2003-2010 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       Cutout 12.0, Copyright © 1991-2010 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Dark Strokes 12.0, Copyright © 1991-2010 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       De-Interlace 12.0.2, Copyright © 2003-2010 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       Difference Clouds 12.1.1x20120530 [20120530.r.190 2012/05/30:15:00:00 cutoff; r branch]  ©1993-2011 Adobe Systems Incorporated - from the file “Clouds.plugin”
       Diffuse Glow 12.0, Copyright © 1991-2010 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Displace 12.0.2, Copyright © 2003-2010 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       Dry Brush 12.0, Copyright © 1991-2010 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Eazel Acquire 12.1.1x20120530 [20120530.r.190 2012/05/30:15:00:00 cutoff; r branch]  ©1997-2011 Adobe Systems Incorporated - from the file “EazelAcquire.plugin”
       Embed Watermark NO VERSION - from the file “DigiSign.plugin”
       Enable Async I/O 12.1.1x20120530 [20120530.r.190 2012/05/30:15:00:00 cutoff; r branch]  © 2004-2011 Adobe Systems Incorporated - from the file “Enable Async IO.plugin”
       Extrude 12.0.2, Copyright © 2003-2010 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       FastCore Routines 12.1.1x20120530 [20120530.r.190 2012/05/30:15:00:00 cutoff; r branch]  ©1990-2011 Adobe Systems Incorporated - from the file “FastCore.plugin”
       Fibers 12.0.2, Copyright © 2003-2010 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       Film Grain 12.0, Copyright © 1991-2010 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Filter Gallery 12.0, Copyright © 1991-2010 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Fresco 12.0, Copyright © 1991-2010 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Glass 12.0, Copyright © 1991-2010 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Glowing Edges 12.0, Copyright © 1991-2010 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Grain 12.0, Copyright © 1991-2010 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Graphic Pen 12.0, Copyright © 1991-2010 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Halftone Pattern 12.0, Copyright © 1991-2010 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       HDRMergeUI 12.0, Copyright © 2003-2010 Adobe Systems Incorporated - from the file “HDRMergeUI.plugin”
       IFF Format 12.0.2, Copyright © 2003-2010 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       Ink Outlines 12.0, Copyright © 1991-2010 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       JPEG 2000 12.0x001  ©2001-2008 Adobe Systems Incorporated - from the file “JPEG2000.plugin”
       Lens Blur 12.0, Copyright © 2002-2010 Adobe Systems Incorporated - from the file “Lens Blur.plugin”
       Lens Correction 12.0.2, Copyright © 2002-2010 Adobe Systems Incorporated - from the file “Lens Correct.plugin”
       Lens Flare 12.0.2, Copyright © 2003-2010 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       Liquify 12.0.1, Copyright © 2001-2010 Adobe Systems Incorporated - from the file “Liquify.plugin”
       Matlab Operation 12.1.1x20120530 [20120530.r.190 2012/05/30:15:00:00 cutoff; r branch]  ©1993-2011 Adobe Systems Incorporated - from the file “ChannelPort.plugin”
       Measurement Core 12.1.1x20120530 [20120530.r.190 2012/05/30:15:00:00 cutoff; r branch]  ©1993-2011 Adobe Systems Incorporated - from the file “MeasurementCore.plugin”
       Mezzotint 12.0.2, Copyright © 2003-2010 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       MMXCore Routines 12.1.1x20120530 [20120530.r.190 2012/05/30:15:00:00 cutoff; r branch]  ©1990-2011 Adobe Systems Incorporated - from the file “MMXCore.plugin”
       Mosaic Tiles 12.0, Copyright © 1991-2010 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Multiprocessor Support 12.1.1x20120530 [20120530.r.190 2012/05/30:15:00:00 cutoff; r branch]  ©1990-2011 Adobe Systems Incorporated - from the file “MultiProcessor Support.plugin”
       Neon Glow 12.0, Copyright © 1991-2010 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Note Paper 12.0, Copyright © 1991-2010 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       NTSC Colors 12.1.1x20120530 [20120530.r.190 2012/05/30:15:00:00 cutoff; r branch]  ©1993-2011 Adobe Systems Incorporated - from the file “NTSC Colors.plugin”
       Ocean Ripple 12.0, Copyright © 1991-2010 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       OpenEXR 12.0.2, Copyright © 2003-2010 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       Paint Daubs 12.0, Copyright © 1991-2010 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Palette Knife 12.0, Copyright © 1991-2010 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Patchwork 12.0, Copyright © 1991-2010 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Paths to Illustrator 12.0.2, Copyright © 2003-2010 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       PCX 12.1.1x20120530 [20120530.r.190 2012/05/30:15:00:00 cutoff; r branch]  ©1989-2011 Adobe Systems Incorporated - from the file “PCX.plugin”
       Photocopy 12.0, Copyright © 1991-2010 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Picture Package Filter 12.1.1x20120530 [20120530.r.190 2012/05/30:15:00:00 cutoff; r branch]  ©1993-2011 Adobe Systems Incorporated - from the file “ChannelPort.plugin”
       Pinch 12.0.2, Copyright © 2003-2010 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       Pixar 12.1.1x20120530 [20120530.r.190 2012/05/30:15:00:00 cutoff; r branch]  ©1989-2011 Adobe Systems Incorporated - from the file “Pixar.plugin”
       Plaster 12.0, Copyright © 1991-2010 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Plastic Wrap 12.0, Copyright © 1991-2010 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       PNG 12.0.2, Copyright © 2003-2010 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       Pointillize 12.0.2, Copyright © 2003-2010 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       Polar Coordinates 12.0.2, Copyright © 2003-2010 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       Portable Bit Map 12.1.1x20120530 [20120530.r.190 2012/05/30:15:00:00 cutoff; r branch]  ©1989-2011 Adobe Systems Incorporated - from the file “PBM.plugin”
       Poster Edges 12.0, Copyright © 1991-2010 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Radial Blur 12.0.2, Copyright © 2003-2010 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       Radiance 12.1.1x20120530 [20120530.r.190 2012/05/30:15:00:00 cutoff; r branch]  ©2003-2011 Adobe Systems Incorporated - from the file “Radiance.plugin”
       Read Watermark NO VERSION - from the file “DigiRead.plugin”
       Reticulation 12.0, Copyright © 1991-2010 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Ripple 12.0.2, Copyright © 2003-2010 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       Rough Pastels 12.0, Copyright © 1991-2010 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Save for Web & Devices 12.0, Copyright © 1999-2010 Adobe Systems Incorporated - from the file “Save for Web.plugin”
       ScriptingSupport 12.1, Copyright © 2011 Adobe Systems Incorporated - from the file “ScriptingSupport.plugin”
       Shear 12.0.2, Copyright © 2003-2010 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       Smart Blur 12.0.2, Copyright © 2003-2010 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       Smudge Stick 12.0, Copyright © 1991-2010 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Solarize 12.1.1x20120530 [20120530.r.190 2012/05/30:15:00:00 cutoff; r branch]  ©1993-2011 Adobe Systems Incorporated - from the file “Solarize.plugin”
       Spatter 12.0, Copyright © 1991-2010 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Spherize 12.0.2, Copyright © 2003-2010 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       Sponge 12.0, Copyright © 1991-2010 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Sprayed Strokes 12.0, Copyright © 1991-2010 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Stained Glass 12.0, Copyright © 1991-2010 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Stamp 12.0, Copyright © 1991-2010 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Sumi-e 12.0, Copyright © 1991-2010 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Targa 12.0.2, Copyright © 2003-2010 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       Texturizer 12.0, Copyright © 1991-2010 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Tiles 12.0.2, Copyright © 2003-2010 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       Torn Edges 12.0, Copyright © 1991-2010 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Twirl 12.0.2, Copyright © 2003-2010 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       Underpainting 12.0, Copyright © 1991-2010 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Vanishing Point 12.0, Copyright © 2003-2010 Adobe Systems Incorporated - from the file “VanishingPoint.plugin”
       Water Paper 12.0, Copyright © 1991-2010 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Watercolor 12.0, Copyright © 1991-2010 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Wave 12.0.2, Copyright © 2003-2010 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       Wind 12.0.2, Copyright © 2003-2010 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       Wireless Bitmap 12.1.1x20120530 [20120530.r.190 2012/05/30:15:00:00 cutoff; r branch]  ©1989-2011 Adobe Systems Incorporated - from the file “WBMP.plugin”
       ZigZag 12.0.2, Copyright © 2003-2010 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
    Plug-ins that failed to load:
       Lighting Effects NO VERSION - 32-bit plug-in not supported in 64-bit - from the file “Lighting Effects.plugin”
       Send Video Preview to Device NO VERSION - 32-bit plug-in not supported in 64-bit - from the file “FireWire Export.plugin”
       Variations NO VERSION - 32-bit plug-in not supported in 64-bit - from the file “Variations.plugin”
       Video Preview NO VERSION - 32-bit plug-in not supported in 64-bit - from the file “FireWire Export.plugin”
    Flash:
       Mini Bridge
       Kuler
       Access CS Live
       CS Review
    Installed TWAIN devices: NONE

  • The PDF file and slideshow view corrupted using iPhoto. Macbook air only get corrupted slideshow and Mac Mini both slideshow and PDF file is corrupted.

    The PDF file and slideshow view corrupted using iPhoto. Macbook air only get corrupted slideshow and Mac Mini both slideshow and PDF file is corrupted.

    Saving as a PDF file for some users have been a problem.  If you boot into  Safe Mode and run iPhoto you can create undamaged PDF files.  We don't know why the problem but this is a workaround.
    This problem prevents many from ordering books, calendars and cards since iPhoto creates PDF file of them for uploading and printing.  Booting into Safe Mode lets them successfully order those items.

  • I am not able to open a PDF file that I just created. I get an access denied message instead.

    I am not able to open a PDF file that I just created. I get an access denied message instead.

    Thanks for asking.
    I was combining different types of files into a single PDF. Some of them were excel spreadsheets and I had set the print areas in each file. When I cleared the print area the problem stopped. So I am assuming that had something to do with it. Though I am not sure.
    The strange thing was that I was able to open the excel source documents after creating the faulty PDF but some of the MS word source documents also had "access denied" status. I still cannot figure that part out.

  • Getting error while creating Business Action with EDI EDIFACT 837 document.

    Hi,
    When I am trying to create a business action with EDI 837 &lsquo;.ecs&rsquo; file, I am getting a error. It is not creating the business action. Even it is not displaying any error details.
    Please help me in resolving this issue as it's very urgent.
    Thanks in advance.

    Hi Jyotirmoy,
    What error you are getting exactly while creating the business action? Did you try to create business action for any other protocol? If not, then please try to create business action for any other protocol and check whether you are getting the same error over there also.
    Regards,
    Anuj

  • Getting error while creating the variable of Schema Element type

    Hi everybody,
    For creating a variable of schema element type I am doing the following steps...
    Select 'Variables' after right clicking on bpel process. IN this window, go to 'Create VAriable' then select 'Element' type. Now in Type Choose, I expanded the my imported schema files. And selected a element type, then click ok to create this variable... I am getting the message...
    IN ORDER TO SAVE IMPORTED WSDL/SCHEMA FILES, YOU MUST HAVE A PARTNER LINK LOCATED UNDER THE CURRENT PROJECT DIRECTORY.
    What is mean by that.
    I have imported the schema files in project. AFter that I have imported them into the WSDL also. Now why I am getting error while creating the variable. However I can create variable directly in .BPEL file then everything is fine. And it is working also. But what is mean with the above error? Why I am not able to create variable through GUI?
    Thanks.

    Hi,
    I have this same problem this morning, and I was going crazy, until I found this webpage on the internet:
    [http://technology.amis.nl/blog/1803/problem-importing-xml-schema-in-bpel-process|http://technology.amis.nl/blog/1803/problem-importing-xml-schema-in-bpel-process]
    The idea is that the jdeveloper is not very good working with directories with spaces on the directory name. If you move all your work to a directory without spaces, it will work smoothly. At least, it had worked for me.
    Regards,
    Nacho

  • Essexcln.xll file gets corrupted

    Hi All,
    *[The location of essexcln.xll file : *C:\Oracle\Middleware\EPMSystem11R1\products\Essbase\EssbaseServer-32\bin*].*
    While i opening the Microsoft Excel, I get the following Error,
    "The file you are trying to open 'essexcln.xll' is in a different format than specified by the file extension.Verify that the file is not corrupted and is from a trusted source before opening the file.Do you want to open the file now?"
    I Proceed YES to open the Excel File, now also I didnt get the Essbase Add-Ins instead I'm getting Encrypted datas in spreadsheet.
    Kindly guide me how to overcome this issue
    Thanks And Regards
    ChiDam

    Hi Vasavya,
    After I ReInstall and ReConfigure the Essbase client 11.1.2 (Microsoft Windows 64 bit), I'm getting the same Error as
    *" essexcln.xll file gets corrupted "* when i open the MicroSoft Excel 2007
    More than that I have two folders [*EssbaseClient and EssbaseClient-32*] in the following path
    *" C:\Oracle\Middleware\EPMSystem11R1\products\Essbase ".*
    And also EssbaseClient and EssbaseClient-32 having the same set of SubFolders
    They are
    Bin
    Locale
    Perlmod
    Kindly guide me how to overcome this Issue.
    Thanks And Regards
    ChiDam

  • I downloaded the adobe XI software and it shows in my Adobe download assistant as downloaded but I can not open it and it is not a part of my applications. Very frustrating download process as I just want to convert a PDF file to an editable word document

    I downloaded the adobe XI software and it shows in my Adobe download assistant as downloaded but I can not open it and it is not a part of my applications. Very frustrating download process as I just want to convert a PDF file to an editable word document...

    Odonnells52 you will still need to install Adobe Acrobat Professional prior to being able to make edits to PDF or utilize Acrobat.   By default the installation files have been saved to your download folder.
    If you continue to face difficulties with the Adobe Download Assistant then please see Troubleshoot Adobe Download Assistant.
    You can also download the installation files directly from Download Acrobat products | Standard, Pro | XI, X if you are unable to locate the downloaded installation files.

  • How do i move a picture from one pdf-file to another already created pdf-file with adobe reader?

    How do I move a picture from one pdf-file to another, already created pdf-file, with adobe reader?

    Reader doesn't have editing capabilities.

  • Getting Error while creating Genric Datasource

    Hi,
    I was try to create genric extracter where i was getting error
    While creating view genric extracter where i am getting error "Entry A ZV_ZFRT  does not exist in DD02L - check your entry".
    My requirement is need to create extracter which is getting populated from three modules like SD,MM,FI/CO.From these three module i am using several tables and some of the tables don't have relation btween these tables as like foreign key and refrence key.
    Which extracter i need to create as given scenario?
    Does view will fullfill with my requirement or any other extracter.
    Please some one can help me in this scenario.
    Answer would be great appreciate.

    Hi,
    Rather than writing a program write a function module. Create a structure and include all the necessary fields in the structure. Then in the function module write the logic to extract the values for those fields. While creating the datasource specify the function module and structure name.
    Refer this link:
    /people/siegfried.szameitat/blog/2005/09/29/generic-extraction-via-function-module
    Hope this helps.
    PB

  • Getting error while creating the Shopping cart.

    Hi ,
    I am getting error while creating the Shopping cart.
    a.Error in account assignment for item 1  (Item  Testing SC ) 
    b.Duplicates of Cost Centre T10063 are defined in SRM  (Item  Testing SC ) 
    Kindly provide the solutions.
    Thanks,
    Dev

    Try the following in the ERP backend system:
    Standard Hierarchy Inconsistencies
    Issue: one Cost Center is repeating in more than one node in Cost Center Standard Hierarchy.
    Update from SAP Global support, the following was the email received:
    in transaction KSH3 please run both the ambiguity and completeness check(Menu -> Extras -> Check and Help functions).
    If you think that your standard hierarchy is inconsistent you can check that as following:
    Run transaction Extras -> Hierarchy - Master data -> Test. The result shows you if there are in consistencies. If that is the case run also Extras -> Hierarchy - Master data -> Comparison.
    Alternatively, you can run the report 'RKCORRH1' (TN SE38).
    Run both the Hierarchy->Master data->test and the
    Hierarchy->Master data->comparison.
    As stated above inconsistency message showed after Test. Run the comparison and you get a similar message.
    Once the above two are run, again when you go to test, the inconsistency disappears.

  • An error occurs that firmware file is corrupt while updating my iphone4 software.what does it mean and how it can be minimized.? plz help

    an error occurs that firmware file is corrupt while updating my iphone4 software.what does it mean and how it can be minimized.? plz help

    https://discussions.apple.com/message/6028012#6028012
    https://discussions.apple.com/message/7909876#7909876

  • Methodology/Processes Not getting reflected while creating a role via BRM in GRC

    Hello All,
    The methodology I have created is not getting reflected while creating a new Single role.
    I have maintained the condition groups properly in decision table, and assigned the same to the methodology as well.
    Please suggest.
    Thanks
    Regards,
    Shruti

    Methodology is updated when you press save after completing the first step.
    can you please share screen shots of configuration and issue you are getting

Maybe you are looking for

  • K9N4 SLI - Lack of 125W CPU Support

    Hello, Just wondering why does this board not support any 125W CPU's? I was looking at getting one of these boards to throw in a 6000 X2 but according to the website, this board only supports the 89W version, which is unavailable where I am. I've see

  • Webutil not working properly after applying application server patch

    i have applied patch Patch 5983622 my application server verion is upgrade to 10.1.2.3 . patch is applied sucessfully but.foms which have webutil library not working. can any one tell me what should i do for make them working again.

  • Ctrl + Spacebar will not bring up code hints either

    I'm using Windows XP CS3 with Dreamweaver from Creative Suite CS4. I cannot get code hints (when enabled) or when I press Ctrl + Spacebar. When I press Ctrl + Spacebar nothing happens.

  • FBA Login

    Hi, I have a custom Sign In form for external users using FBA. I need to update the last login details in user list when user login with FBA(custom sign In form) Could you please suggest me that how I can update the list information when user login w

  • Presets for cropping in CC

    I've installed CC and wanted to make presets for cropping. Like 20 by 30 300PPI and more sizes. But when I want to choose one of them, there only appears one size for all. How can I make it work? Somebody can help me please? Thanks, Judith