Error al abrir documento PDF

Cuando intento abrir un documento, el cual en propiedades me indica que ha sido creado con INSO KANSAS CITY PDF FILTER, me aparece el siguiente error: Tipo de operando erroneo.
¿ Alguien sabe como puedo abrirlo, pluggin necesario, .. ?
Gracias de antemano.
Acrobat Profesional 6.0.1

Hola, Judith.
Aquí hay una respuesta en inglés para tu pregunta:
cor pro, "Printing page number?" #, 13 Sep 2005 1:11 pm
Si tienes problemas con el inglés, pasa el texto por cualquier programa traductor, o pregunta aquí.
Me olvidaba: no es recomendable agregar en un tema ya existente una pregunta no relacionada con él. Por una parte, tu pregunta puede pasar inadvertida para quienes podrían responderla; y por otro, es un poco como interrumpir una conversación. Cuando tengas una pregunta nueva, abre un tema nuevo con ella. Y da de partida el máximo de información relevante a tu problema, lo que no hiciste aquí.

Similar Messages

  • Abrir documento PDF en web con tan sólo Javascript.

    Hola a todos.
    Quiero hacer una web en la que puedan leerse documentos PDF directamente, sin Flash, ni nada adicional,
    tan sólo las librerias Javascript necesarias.
    He encontrado esta web, que parece que promete, pero no encuentro ejemplos, ni código, ....
    http://www.adobe.com/devnet/acrobat/javascript.html
    ¿Alguien puede guiarme un poco?
    Gracias, un saludo.

    Javascript es un lenguaje de programación que puede interactuar o hacer que se realicen o ejecuten toda clase de acciones y rutinas, pero para poder leer un PDF necesitas algun tipo de bibliotecas PDF o de un lector PDF como Acrobat Reader instalado en el ordenador cliente, o usar las funcionalidades del Sistema operativo de Apple OSX, o del futuro Windows 8.
    Leyendo el texto indicado tampoco saco otra conclusión de lo que comento.
    Javascript puede aumentar las funciones y el acceso a tareas complicadas en diversas operaciones.

  • Problemas al abrir documento PDF desde la WEB.

    Buenas tardes, el problema que tengo es que navegando en la WEB y al tratar de abrir un documento desde la WEB en PDF la pagina queda en blanco y de ahí no pasa, actualmente tengo IE8, ¿Alguien habrá encontrado alguna solución a esto?
    Gracias de antemano.
    Saludos.

    Hola quiero abrir un archivo pdf desde el explorer y que lo abra por medio del acrobat 6 o sea separado del explorer , el problema es que cuando me abre el archivo en acrobat no me abre la ventana maximizada y quiero que se abra maximizada, pero cuando abro un pdf localmente si me respeta esa opcion alguien me puede ayudar, ya que necesito que se abra automaticamente maximizada para realizar un proceso ayudenme por favor

  • No abren los Documentos PDF directamente desde la WEB

    al intentar abrir un documento pdf directamento desde la web, la pagina se me cierra, y pone error. y no puedo descargar nada.
    por favor necesito una solución urgente!!!

    Google translate:
    hi people I have problems with my apple id not remember the password and to change it from the pc to the ipod will not let me tells me q is erroneous if they can help me and I thank all the steps from the web but I can not access from the ipod touch 4G 32GB ... please thanks
    See:
    http://support.apple.com/kb/HT1212?viewlocale=es_ES
    It is in Spanish

  • Organizar páginas de un documento PDF

    Hola estoy tratando de organizar las páginas de un archivo PDF usando javascript pero he tenido algunos problemas.
    Se trata de documentos muy grandes, de mas de 1000 páginas. Actualmente el procso se hace de forma manual, localizando las paginas en un listado y llevandolas a la posisión que le corresponde arrastrandolas en las miniaturas.
    Cada págian en el documento pdf, salvo algunas excepciones, esta formada por una cabezara que contiene sólo 4 lineas de texto y el resto de la página contiene imagenes.
    La idea es que a partir de esas cuatro lineas que se encuentran en la cabecera se pueda localizar la pagina correcta a partir de una base de datos y posteriormente colocarla en la posisión que le corresponde.
    Hasta ahora he podido implementar un codigo en javascript en adobe acrobat 9, el codigo me permite conectar con una base de datos y de forma busque cada uno de los registros a partir del nombre (la primera linea) de cada página.
    He hecho varias correcciones tratando de usar la documentación de adobe "developer_guide" y "api_reference", donde sugieren una forma de mover páginas en un documento pdf, sin embargo en cada una me encuentro con que el programa se cuelga, funciona con pocas páginas pero no cuando hago las pruebas con documentos tan grandes.
    En el codigo que anexo he logrado que no se cuelgue al menos hasta 150 registros pero tengo otro problema, el archivo crece brutalmente de tamaño de 90 M se fue a casi 5 G.
    Espero alguien me pueda ayudar.
    No soy muy limpio haciendo codigos espero no cause mucha confución, aún tiene muchos errores (espero no sean muy duros en las criticas jiji)
    Despues de todo el rolloaclaro que se me ocurrio que era una buena forma de hacer esto pero si existe otro programa o lenguje que alguien conosca y que tenga el mismo resultado es vienvenida la propuesta.
    Saludos.
    //**************  ORGANIZADOR DE PDFs  **************
    var titulo;
    var numPalabras;
    var numLetras;
    var tituloPartido;
    var numCadenaTitulo;
    var numCadenaPalabras;
    var numPaginaPdf;
    var cadenaTitulo;
    var tituloPdf;
    var pagInicioBusqueda;
    var tituloEncontrado;
    var i;
    var p;
    pagInicioBusqueda = 2;
    //Variables de la base de datos
    var stitulo
    //Función para mover hojas
    function moverPagina(p, destino){
            if (p<destino)
    destino=destino-2;
            if (p>destino)
            destino = destino - 1;
    // copiar las paginas en el documento temporal
    this.insertPages({
                    nPage: destino,
      cPath: this.path,
      nStart: p,
      nEnd: p
    // Borrar las pásginas del documento original
    this.deletePages({nStart: p+1, nEnd: p+1});
    function buscaYAcomoda(bdTitulo){
    titulo = bdTitulo;
    //Contar el numero de letras
    numLetras = titulo.length;
    //Partir titulo
    tituloPartido = titulo.split(" ");
    //Contar el numero de palabras
    numPalabras = tituloPartido.length;
    //Imprimir numero de palabras y letras
    console.println("\n" + numLetras);
    console.println("\n" + numPalabras);
    //Tratamiento de titulo
    if (numLetras > 31){
    numCadenaLetras = numLetras;
    numCadenaPalabras = numPalabras;
    while (numCadenaLetras > 31){
      numCadenaPalabras = numCadenaPalabras - 1;
      cadenaTitulo = tituloPartido[0];
      for(i = 1; i <= numCadenaPalabras; i++){
       cadenaTitulo = cadenaTitulo + " " + tituloPartido[i];
      numCadenaLetras = cadenaTitulo.length;
      console.println(cadenaTitulo);
      console.println(numCadenaPalabras);
    else{
    numCadenaLetras = numLetras;
    numCadenaPalabras = numPalabras - 1;
    //Quitamos todos los espacios al fina del titulo
    while (tituloPartido[numCadenaPalabras] == ""){
      numCadenaPalabras = numCadenaPalabras - 1;
      cadenaTitulo = tituloPartido[0];
      for(i = 1; i <= numCadenaPalabras; i++){
       cadenaTitulo = cadenaTitulo + " " + tituloPartido[i];
      numCadenaLetras = cadenaTitulo.length;
      console.println(cadenaTitulo);
      console.println(numCadenaPalabras);
    //+++++++++++++++++++++++++++++++++++++++++++
    //+++++++++++++++++++++++++++++++++++++++++++
    //Buscar titulo y devolver la pagina
    //Asignar las variables a ocupar
    tituloPdf = "";
    tituloEncontrado = 0;
    p=pagInicioBusqueda -1;//inicia en la pagina anterios porque en la primera instrucción se le suma uno
    while (p < this.numPages-1){
    while (tituloPdf != cadenaTitulo && p < this.numPages){
      p++;
      if (p != this.numPages){
       tituloPdf = this.getPageNthWord (p, 0);
       //Creamos la cadena de la hoja para comparar
       for (i=1; i<=numCadenaPalabras; i++){
        tituloPdf = tituloPdf + " " + this.getPageNthWord (p, i);
       //console.println(tituloPdf);
      if (tituloPdf != cadenaTitulo && tituloEncontrado == 1) break;
    if (tituloPdf == cadenaTitulo && p != this.numPages){
      numPaginaPdf = p;
      console.println("Esta en la página " + (numPaginaPdf+1));
      tituloEncontrado = 1;
      //Regorre las páginas
      moverPagina(numPaginaPdf, pagInicioBusqueda);
      pagInicioBusqueda++;
      tituloPdf="";
    else{
      if (tituloEncontrado == 0){
       console.println("Este titulo no exsiste en este documento: ");
       console.println(tituloPdf);
       tituloEncontrado = 0;
      else{
       p = this.numPages;
    console.println(this.numPages);
    //Incorporar la conexión a la base de datos
    // Obtain a list of accessible databases:
    var databaseList = ADBC.getDataSourceList();
    // Search the DataSourceInfo objects for the "bd_pdf" database:
    if (databaseList != null) {
         var DB = "";
         for (var i=0; i<databaseList.length; i++)
              if (databaseList[i].name == "bd_pdf") {
                   DB = databaseList[i].name;
                   break;
    if (DB != "") {
         // Connect to the database and obtain a Connection object:
         var myConnection = ADBC.newConnection(DB.name);
    // Obtain the array of TableInfo objects representing the database tables:
    var tableArray = myConnection.getTableList();
    // Print the name and description of each table to the console:
    for (var i=0; i<tableArray.length; i++) {
         console.println("Table Name: " + tableArray[i].name);
         console.println("Table Description: " + tableArray[i].description);
    // Obtain the array of ColumnInfo objects representing the Sales table:
    var columnArray = myConnection.getColumnList("Periodicos");
    myStatement = myConnection.newStatement();
    // Create the SQL statement:
    var SQLStatement = 'Select * from \"Periodicos\"';
    // Execute the SQL statement:
    myStatement.execute(SQLStatement);
    //Bucle de busqueda
    for (var bd = 1; bd <= 30; bd++){
    // Make the next row (the first row in this case) available:
    myStatement.nextRow();
    // Obtain the information contained in the first row (a Row object):
    var firstRow = myStatement.getRow();
    titulo = firstRow.Title.value
    buscaYAcomoda(titulo);
    //Cerramos la conexión
    myConnection.close();

    Nacho, si trabajas con la primera opción, de páginas enfrentadas, cuando te vas a "archivo/valores de pdf", seleccionas el que consideres, yo te recomendaría el x1a:2001, pero ten cuidado en la opción de "marcas y sangrados" debes poner o bien que tome la sangre del documento (es la que yo pongo) o bien una sangre que tú consideres. Ese es un detalle a controlar con los pdf que se generan con esta especificación y para el caso de documentos con sangre. También decirte que este perfil cambia todas las imágenes en rgb a cmyk, con lo cual, si no lo habías hecho, te puedes encontrar con "sorpresas". De todas formas es el estandar de las imprentas.
    Por lo demás, con un pdf con estas condiciones las imprentas te querrán mucho, pues lo meterán en sus programas de imposición y ellos impondrán como les venga mejor.
    Un saludo y desearos a todos feliz 2010
    desde Triana, Sevilla
    mateo sánchez

  • Error Exportación a PDF

    Hola a todos,
    Estoy teniendo el siguiente problema: Cuando intento exportar cualquier documento a formato PDF el sistema me manda una ventana del Microsoft Visual C++ Runtime library con el siguiente mensaje: "Runtime Error! Program D:SAP Business One.exe R6025 -pure virtual function call " cuando oprimo 'OK' SAP Business One se cierra completamente.
    Ya verificamos las rutas y los permisos de las carpetas y todas cuentan con los permisos correspondientes.
    Actualmente estamos con SAP Business One 8.8 PL15 SP:00, no se si saben de algo con respecto a este error o alguna solución al mismo. Les agradezco mucho la atención!

    Muchas gracias Luis, ya resolví el problema generando unas carpetas en una unidad distinta en la que esta instalado el sistema, debido a que por alguna extraña razón los permisos no se grababan y eso mandaba el error.
    Se generó una carpeta B1SHR en una undiad distinta y se colocaron los permisos y autorizaciones correspondientes y posteriormente se ligaron a las rutas de parametrizaciones generales de SBO y ya con eso no mandó error y exporta a PDF sin problemas.
    Muchas nuevamente por la ayuda!

  • Como hago para que se habran varios documentos PDF

    Saludos.
    Quiera saber como se hace para que al colocar Links en un documento PDF abra Otro Documento pero en uno nueva ventana, ya que cuando coloco el Link y lo abro me abre el documento PDF pero lo hace sobre la misma ventana donde estaba el documento que tenia que ya tenia abierto (es decir se abre en la misma ventana).
    Utilizo el Adobe Acrobat 8 Professional para crear los Links, pero no se como configurarlo para que ejecute los links y me abra distintos documentos en diferentes ventanas.
    de Antemano gracias por su tiempo.

    Creo que las Preferencias de Acrobat 8.0 (Ctrl/Cmd+K) tienes una categoría llamada Documentos con una casilla (la segunda tal vez) que estará marcada para abrir, o no, los vínculos entre documentos en la misma ventana.

  • Transformar documento PDF en word

    Estoy intentando convertir un documento PDF en documento word.dc, en concreto un diploma y cuando lo transporma en word, la aureola del diploma no sale en todo el documento correctamente, los textos le pasa lo mismo.

    Y que esperabas?
    La forma, el lenguaje utilizado en representar texto y otros objetos que se utilizan en un PDF y cómo se hace en las aplicaciones de Microsoft no son la misma ni del todo equivalentes.
    Supongo que en Acrobat (?) has dicho Guardar Como > Microsoft Word.
    El modelo de representación gráfico o de imagen PDF no coincide con el basado en instrucciones de Windows que usa MSWord©, lo más que puede hacer es transladar el contenido del texto, pero por ejemplo si el PDF utiliza en el texto una tipografía Adobe Caslon Pro que no tienes instalada en tu ordenador, lógicamente no puede aplicarsela a ese texto.
    Depende de que el texto esté etiquetado, o no en el PDF para que luego el texto aparezca en orden correcto, (por que tiene marcado el orden sucesivo de los párrafos) en el documento.
    Ocurre igual con otros aspectos de los contenidos del PDF, la orla puede salir mejor o peor, con otras dimensiones, los colores tambien pueden modificarse, si por ejemplo eran CMYK.
    Quizás conviniera abrir el PDF en Illustrator e ir copiando y pegando en Word.
    De todas maneras,  el flujo que pretendes va en dirección opuesta a lo recomendado. El formato PDF es un formato final o de salida mientras Word es de contenidos de texto previos, a incluir en un documento maquetado en InDesign u otros programs y acabando en PDF.
    Existen utilidades que pueden hacer la conversión mejor que Acrobat Pro.
    Como supongo  que lo que pretendes es usar el PDF y cambiar los nombres o el Titulo, puedes usar, Ilustrator o colocar el PDF en InDesign y colocar marcos de texto encima del PDF con los nuevos textos.

  • COMO COPIAR DOCUMENTOS PDF A CD

    Tengo dos documentos PDF en una carpeta de mi disco duro con botones definidos que en cada uno de los ficheros habre el otro.
    Al definir la accion de los botones le indico que documento quiero abrir(Ejemplo:c:\carpeta\docum.pdf).
    Como puedo hacer para coopiar estos documentos en un CD y que la accion sea a "d:\docum.pdf".
    Al definir la accion de abrir fichero para un boton, solo me permite hacerlo a ficheros que pueda encontrar en ese momento.

    Para lograr esto debes insertar la referencia relativa y no la absoluta, es decir en ves de c:\docum.pdf, debes insertar ../docum.pdf donde cada serie de ../ indica un directorio arriba....

  • Abrir un PDF con una busqueda

    Saludos.
    Quiero abrir un PDF con una busqueda de una cadena en concreto. La siguiente instruccion si funciona:
    Acrobat.exe /A "search=DEFINICION" "C:\MyDoc.pdf"
    Ahora quiero buscar la cadena "DEFINICION DE MATERIAL". La siguiente instruccion no vale:
    Acrobat.exe /A "search=DEFINICION DE MATERIAL" "C:\MyDoc.pdf"
    ¿Cual seria la sintaxis?
    Gracias.

    ¿Puede usted utilizar apóstrofes dentro de las cotizaciones dobles, como esto? Por ejemplo:
    Acrobat.exe /A "search= ' DEFINICION DE MATERIAL ' " "C:\MyDoc.pdf"
                          --^                      --^
    (Agregué espacios en blanco aquí, para hacer los apóstrofes más fáciles ver…)
    ¡No sé si esto trabaja! ¿Usted consiguió un mensaje de error específico?  ¿Es el mensaje de Windows, o Adobe?

  • Documento pdf no valido

    Hola. Bajé un documento que supuestamente es pdf pero al abrirlo me sale un error como documento PDF no valido. Que hago para poder verlo

    Hi javierj81335952,
    Could you please specify more on the same.
    What version of Adobe Reader are you using?
    Share the screenshot of the error message that you get.
    If possible, please share the document with me so that I can also check at my end.
    I have sent you a message with my contact id details.
    Regards,
    Anubha

  • Error while exporting to PDF document in OBIEE 11g

    Hi
    In OBIEE 11g we are facing an issue regarding exporting a few reports to pdf. It is resulting in following error: "Error generating PDF document".
    The reports are placed on a dashboard which has a prompt too. However, when we remove the prompts, the export is working fine.
    We will really appreciate any help in this regard.
    Thanks.

    Hi,
    Looks like this is a sort of known bug with PDF creator in 11g. Try implementing the below solution:
    To configure the Javahost service, edit the Javahost service configuration parameters in the
    instanceconfig.xml file. The parameters are
    identified by their relative path starting from the /WebConfig/ServerInstance node
    For example:
    <JavaHost>
    <PDF>
    <InputStreamLimitInKB>50000</InputStreamLimitInKB>
    </PDF>
    </JavaHost>
    After changes restart Siebel Analytics Java Host and Siebel Analytics Web services
    If it doesn't work try to create same report in xml publisher as presentations services in obiee has limited capacities in printing out reports.
    Refer to this thread for related useful information: Error in creating a PDF
    Hope it helps.
    Thanks,
    -Amith.

  • Error in opening the PDF file created from the smart form output.

    Hi All,
    i have a simple smart form which takes 3 values like customer no, name and no of times customer called and gives an out like
    Customer 0001000000 with name Ravi called 5 times today.
    I have to send this output to mail as an attachment.
    for this i am coding as below.
    ******Call the SSF Function module
    CALL FUNCTION 'SSF_FUNCTION_MODULE_NAME'
    EXPORTING
    formname = Form name
    VARIANT = ' '
    DIRECT_CALL = ' '
    IMPORTING
    fm_name = lv_fmname
    EXCEPTIONS
    no_form = 1
    no_function_module = 2
    OTHERS = 3
    lv_partner_number = '0001000000'.
    lv_name_org1 = 'Ravi'.
    lv_z_no_calls_day = '5'.
    lw_ctrlop-getotf = 'X'.
    lw_ctrlop-no_dialog = 'X'.
    lw_compop-tdnoprev = 'X'.
    lw_compop-tddest = 'LP01'.
    *******Call the Form Function module and get the OTF of form output
    CALL FUNCTION lv_fmname
    EXPORTING
    name_org1 = lv_name_org1
    partner_number = lv_partner_number
    z_no_calls_day = lv_z_no_calls_day
    control_parameters = lw_ctrlop
    output_options = lw_compop
    user_settings = ' '
    IMPORTING
    job_output_info = w_return
    EXCEPTIONS
    formatting_error = 1
    internal_error = 2
    send_error = 3
    user_canceled = 4
    OTHERS = 5.
    i_otf] = w_return-otfdata[.
    *********Now here if i look in to the OTF data i got in debug it has the data i aniticipated along with some other data.
    the output is in the format
    TDPRINTCOM(2) TDPRINTPAR(70)
    ST XXXX.. customer 0001000000 with
    name.....
    i have my data in the above format spread in three lines of the output otf table where XXXX... is some number.
    ***********To convert to PDF Format
    CALL FUNCTION 'CONVERT_OTF'
    EXPORTING
    format = 'PDF'
    max_linewidth = 132
    IMPORTING
    bin_filesize = lv_len_in
    BIN_FILE =
    TABLES
    otf = i_otf
    lines = i_tline
    EXCEPTIONS
    err_max_linewidth = 1
    err_format = 2
    err_conv_not_possible = 3
    err_bad_otf = 4
    OTHERS = 5
    *********For testing purpose i created a file on the desktop with the the data in i_tline. it created PDF file but when i tried to open it it's giving an error.
    i_objtxt = 'test with pdf-Attachment!'.
    APPEND i_objtxt.
    DESCRIBE TABLE i_objtxt LINES v_lines_txt.
    READ TABLE i_objtxt INDEX v_lines_txt.
    wa_doc_chng-obj_name = 'Smart Form'.
    wa_doc_chng-obj_descr = 'Frequent Caller Alert_Day'.
    wa_doc_chng-doc_size = ( v_lines_txt - 1 ) * 255 + STRLEN( i_objtxt ).
    *********Creating the Entry for the document
    CLEAR i_objpack-transf_bin.
    i_objpack-head_start = 1.
    i_objpack-head_num = 0.
    i_objpack-body_start = 1.
    i_objpack-body_num = v_lines_txt.
    i_objpack-doc_type = 'RAW'.
    APPEND i_objpack.
    i_objbin] = i_tline[.
    DESCRIBE TABLE i_objbin LINES v_lines_bin.
    READ TABLE i_objbin INDEX v_lines_bin.
    i_objhead = 'Frequentcaller list_Day.pdf'.
    APPEND i_objhead.
    ************Creating the entry for the attachment.
    CLEAR : i_objpack.
    i_objpack-transf_bin = 'X'.
    i_objpack-head_start = 1.
    i_objpack-head_num = 1.
    i_objpack-body_start = 1.
    i_objpack-body_num = v_lines_bin.
    i_objpack-doc_type = 'PDF'.
    i_objpack-obj_name = 'ATTACHMENT'.
    i_objpack-obj_descr = 'FCA'.
    i_objpack-doc_size = v_lines_bin * 255 .
    APPEND i_objpack.
    CLEAR i_reclist.
    i_reclist-receiver = 'mail id'.
    i_reclist-rec_type = 'U'.
    APPEND i_reclist.
    CALL FUNCTION 'SO_NEW_DOCUMENT_ATT_SEND_API1'
    EXPORTING
    document_data = wa_doc_chng
    put_in_outbox = 'X'
    commit_work = 'X'
    TABLES
    packing_list = i_objpack
    object_header = i_objhead
    contents_bin = i_objbin
    contents_txt = i_objtxt
    receivers = i_reclist
    EXCEPTIONS
    too_many_receivers = 1
    document_not_sent = 2
    operation_no_authorization = 4
    OTHERS = 99.
    This is all i am doing.
    It is sending a mail with the attachment but we are not able to open the attachment. it's giving an error like file is damaged and couldn't be repaired.
    I serched in the forum but i couldn't get the answer.
    I suspect there is a problem in getting the OTF data..
    Please help me in resolving this issue....
    Thanks in advance.
    RK

    Check the sample , and see where you made the mistake.
    REPORT ZPDF_MAIl.
    DATA:
      w_fm_name      TYPE rs38l_fnam,
      w_bin_filesize TYPE i,
      w_filesize     TYPE i,
      w_lines_txt    TYPE i,
      w_lines_bin    TYPE i.
    DATA:
      wa_ctrlop   TYPE ssfctrlop,
      wa_outopt   TYPE ssfcompop,
      wa_objhead  TYPE soli_tab,
      wa_buffer   TYPE string,
      wa_doc_chng TYPE sodocchgi1.
    DATA:
      BEGIN OF t_mail_ids OCCURS 0,
        mailid TYPE ad_smtpadr,
      END OF t_mail_ids,
      t_otfdata TYPE ssfcrescl,
      t_otf TYPE itcoo OCCURS 0 WITH HEADER LINE,
      t_pdf_tab TYPE tline OCCURS 0 WITH HEADER LINE,
      t_objpack LIKE sopcklsti1 OCCURS 0 WITH HEADER LINE,
      t_objtxt LIKE solisti1 OCCURS 0 WITH HEADER LINE,
      t_objbin LIKE solisti1 OCCURS 0 WITH HEADER LINE,
      t_record LIKE solisti1 OCCURS 0 WITH HEADER LINE,
      t_reclist LIKE somlreci1 OCCURS 0 WITH HEADER LINE.
    CALL FUNCTION 'SSF_FUNCTION_MODULE_NAME'
      EXPORTING
        formname           = 'Z195_TEST'
      IMPORTING
        fm_name            = w_fm_name
      EXCEPTIONS
        no_form            = 1
        no_function_module = 2
        OTHERS             = 3.
    IF sy-subrc EQ 0.
    ENDIF.                               " IF sy-subrc EQ 0.
    wa_ctrlop-getotf = 'X'.
    wa_ctrlop-no_dialog = 'X'.
    wa_outopt-tdnoprev = 'X'.
    CALL FUNCTION w_fm_name
      EXPORTING
        control_parameters = wa_ctrlop
        output_options     = wa_outopt
        user_settings      = 'X'
      IMPORTING
        job_output_info    = t_otfdata
      EXCEPTIONS
        formatting_error   = 1
        internal_error     = 2
        send_error         = 3
        user_canceled      = 4
        OTHERS             = 5.
    IF sy-subrc EQ 0.
    ENDIF.                               " IF sy-subrc EQ 0.
    t_otf[] = t_otfdata-otfdata[].
    CALL FUNCTION 'CONVERT_OTF'
      EXPORTING
        format                = 'PDF'
        max_linewidth         = 132
      IMPORTING
        bin_filesize          = w_bin_filesize
      TABLES
        otf                   = t_otf
        lines                 = t_pdf_tab
      EXCEPTIONS
        err_max_linewidth     = 1
        err_format            = 2
        err_conv_not_possible = 3
        err_bad_otf           = 4
        OTHERS                = 5.
    IF sy-subrc EQ 0.
    ENDIF.                               " IF sy-subrc EQ 0.
    LOOP AT t_pdf_tab.
      TRANSLATE t_pdf_tab USING '~'.
      CONCATENATE wa_buffer t_pdf_tab INTO wa_buffer.
    ENDLOOP.
    TRANSLATE wa_buffer USING '~'.
    DO.
      t_record = wa_buffer.
      APPEND t_record.
      SHIFT wa_buffer LEFT BY 255 PLACES.
      IF wa_buffer IS INITIAL.
        EXIT.
      ENDIF.
    ENDDO.
    t_objtxt = ' To Change the COR, Use the Transaction ZCOR_CHANGE'.
    APPEND t_objtxt.
    t_objtxt = ' Check the Attached PDF file for COR'.
    APPEND t_objtxt.
    DESCRIBE TABLE t_objtxt LINES w_lines_txt.
    READ TABLE t_objtxt INDEX w_lines_txt.
    READ TABLE t_objtxt INDEX w_lines_txt.
    wa_doc_chng-obj_name = 'COR Display'.
    wa_doc_chng-expiry_dat = sy-datum + 10.
    CONCATENATE 'COR' "w_cornr
                '-' "w_stat_descr w_action_desc
           INTO wa_doc_chng-obj_descr SEPARATED BY space.
    wa_doc_chng-sensitivty = 'F'.
    wa_doc_chng-doc_size =  w_lines_txt  * 255.
    CLEAR t_objpack-transf_bin.
    t_objpack-head_start = 1.
    t_objpack-head_num = 0.
    t_objpack-body_start = 1.
    t_objpack-body_num = w_lines_txt.
    t_objpack-doc_type = 'RAW'.
    APPEND t_objpack.
    t_objpack-transf_bin = 'X'.
    t_objpack-head_start = 1.
    t_objpack-head_start = 1.
    t_objpack-head_num = 0.
    t_objpack-body_start = 1.
    DESCRIBE TABLE t_objbin LINES w_lines_bin.
    READ TABLE t_objbin INDEX w_lines_bin.
    t_objpack-doc_size = w_lines_bin * 255 .
    t_objpack-body_num = w_lines_bin.
    t_objpack-doc_type = 'PDF'.
    t_objpack-obj_name = 'COR'.
    t_objpack-obj_descr = 'COR Test'.
    * concatenate 'COR' w_cornr into t_objpack-obj_descr
    *                           separated by space.
    APPEND t_objpack.
    *LOOP AT t_mail_ids.
      CLEAR t_reclist.
      t_reclist-receiver = 'INTENATEMAIL'.
      t_reclist-rec_type = 'U'.
      APPEND t_reclist.
    *ENDLOOP.
    CALL FUNCTION 'SO_NEW_DOCUMENT_ATT_SEND_API1'
      EXPORTING
        document_data              = wa_doc_chng
        put_in_outbox              = 'X'
        commit_work                = 'X'
      TABLES
        packing_list               = t_objpack
        object_header              = wa_objhead
        contents_bin               = t_objbin
        contents_txt               = t_objtxt
        receivers                  = t_reclist
      EXCEPTIONS
        too_many_receivers         = 1
        document_not_sent          = 2
        document_type_not_exist    = 3
        operation_no_authorization = 4
        parameter_error            = 5
        x_error                    = 6
        enqueue_error              = 7
        OTHERS                     = 8.
    IF sy-subrc EQ 0.
    ENDIF.

  • Error message in Adobe Pdf in printer device panel when trying to create a pdf document.  I have CS3

    Error message in Adobe Pdf in printer device panel when trying to create a pdf document.  I have CS3 Web Premium with Acrobat Professional 8.  I use it fine on my old computer with Windows XP.  I recently got a new laptop with Windows 7.  I installed all my Adobe programs, and I think they are working.  When I look at Adobe PDF in the device section of the Control Panel it looks okay.  But when I try to print a Word, Photoshop, or HTML page in PDF, nothing happens.  I have tried printing both as File>print and using the PDF tab on the top menu bar.  I look at the device in the control panel and it has the yellow error warning symbol and suggests trying to troubleshoot.  I look at the document list and it says status "error".  When I try troubleshooting Windows suggests doing some Home Sharing and also suggests canceling the document I'm trying to print.  I tried re-installing just Acrobat 8 from CS3 (and have to use Photoshop CS4 disk for shared documents I guess).  I ran into a can't locate adobepdf_dll file, so did a web search on this issue and found a suggestion that I find and use the adobepdf_dll_64 file and may have to (I did have to) remove the "_64" for it to work.  I think I successfully reinstalled using that dll file- no errors came up anyway.  But still when I try printing/converting a photoshop, webpage, or word document into pdf, the pdf device in control panel still gives the error status on the document and gives the same troubleshooting advice.  Help?

    I just compared the properties between the two computers.  On the old computer it has the port as "My Documents/*.pdf".  On my new computer it lists the port as "LPT1".  I tried changing the port to "Print as File", but when I try printing a photoshop picture as pdf, I get a "Access Denied".  I then tried to create a new port on the device control panel.  I tried to create a local port "My Documents/*.pdf" port but was denied.  I ten tried to create a new port type and control panel asked for an INF file.  I wonder if this is where my problem lies.  Thoughts?

  • Error when exporting a pdf in SAP

    She sends me the error when exporting a pdf from the SAP system, this is the message:
    X Object reference not set to an instance of an object.
    I hope I can support.
    Annex image

    See your other thread.

Maybe you are looking for

  • From VCR tape to Macbook Pro

    Hi, I am looking to transfer my old home videos from VHS tape to DVD (dont want to buy a VCR with DVD recorder).  I was thinking of using my 13" Macbook Pro, the specs are Early 2011 2.3GHz intel i5 16gb RAM intel HD Graphics 3000 512Mb and I hope to

  • CR not displaying certain characters.

    Afternoon, I hope this is the best forum for my question/problem otherwise would appreciate a push in the right direction. Working in Eclipse 3.4.1 Crystal Reports for Eclipse  v2.0.4.r825 Oracle9i Enterprise Edition Release 9.2.0.8.0 NLS_Characterse

  • My application's page(sql report) run slowly

    Hi,All I have a apex with 3.2.1 version, on my WIN7 OS. The application can run normally, But sometimes the page sumbit very slowly,about need waiting 2 or 3 minutes (Most of time it runs normal) My reports is sql report, and not complicacy. These re

  • Chinese language option

    Hi my e61i was purchased in India and does not have a Chinese language option. Would appreciate any advice as to where and how this can be added to my phone. Many tks in advance.

  • Hewlett-packard motherboard 0944

    I have an old Compaq NC6230 and I am looking for the motherboard drivers.  I've been unlucky in finding any thus far. The motherboard is a Hewlett-packard 0944; KBC version 40.22.  I had to to do a fresh install of Windows XP RO and alot of drivers a