Display form at UWL error " Insufficient information for generating output"

Hi experts,
I got error while use "display form" button in UWL.
the error is " Insufficient information for generating output (missing printer, for ex.) "
■The ABAP call stack was:
Form: USEREXIT_TOP_2 of program RPRTEF00
Form: TOP_OF_PAGE of program RPRTEF00
TOP-OF-PAGE of program RPRTEF00
Form: PRINT-REISEVERLAUF of program RPRTEF00
Form: DRUCKE_REISE of program RPRTEF00
Form: PRINT_TRIP of program RPRTEF00
Form: DRUCKE-REISEN of program RPRTEF00
Form: DRUCKE_PERSONALNUMMER of program RPRTEF00
Form: %_GET_PERNR of program RPRTEF00
Form: FILL_INFOTYPE_TABLES_AND_PUT of program SAPDBPNP
how to solve this?
thanks

Can you elaborate on what exactly configured and how and why? I fail to understand what exactly you did because in my company, we used the standard (up until now);that means UWL configuration file "com.sap.pct.erp.mss.tra".
And for the request-Form handling it has this action:
<Action name="com.sap.pct.erp.mss.tra.action.DisplayRequestForm" groupAction="" handler="SAPAppLauncher" referenceBundle="com.sap.pct.erp.mss.tra.DisplayForm" returnToDetailViewAllowed="yes" launchInNewWindow="yes" launchNewWindowFeatures="toolbar=no,menubar=no">
      <Properties>
        <Property name="sap.xss.tra.TripNo" value="${item.TripNumber}"/>
        <Property name="display_order_priority" value="10"/>
        <Property name="SAPIntegrator" value="ROLES://portal_content/com.sap.pct/every_user/com.sap.pct.erp.ess.bp_folder/com.sap.pct.erp.ess.roles/com.sap.pct.erp.ess.employee_self_service/com.sap.pct.erp.ess.employee_self_service/com.sap.pct.erp.ess.area_travel_expenses/com.sap.pct.erp.ess.tripform"/>
        <Property name="sap.xss.tra.TripComponent" value="R"/>
        <Property name="sap.xss.tra.PersNo" value="${item.EmployeeNumber}"/>
      </Properties>
    </Action>
So I'm kind of missing the "common thread" within your development; could you go more into detail?

Similar Messages

  • I am using Adobe Pro 11 and on opening a pdf I am getting error 'Insufficient Data for an Image'. Please help and provide a workaround if the solution not there.

    Hi all,
    I am using Adobe Pro 11 and on opening a pdf I am getting error 'Insufficient Data for an Image'. Please help and provide a workaround if the solution not there.
    I have already set the preferences to for page view to low zoom settings, and page fit view settings, but it never opens the pdf. Please check and provide a solution asap.
    Thanks in advance!

    Most of the documents have sensitive info on them.  I will have to do some looking for some that i can share, but will get something to upload (dropbox) as soon as I can.
    Thanks for you help.

  • Why do I keep getting an error "insufficient data for an image" when opening a document

    why do I keep getting an error "insufficient data for an image" when opening a document in Adobe Reader XI 11.0.06

    I am also having this problem, especially with scanned documents. Since I need to download scanned documents in my work this is a big problem!Sometimes I can read but not save the document, sometimes one or two of the pages will be blank from the start. I have the latest version of Adobe Reader XI (11.0.10). I tried reducing the page zoom, a suggested workaround on this page: Acrobat: “Insufficient data for an image” error after updating to 10.1.4 or 9.5.2,  but that did not help at all. FWIW I use a Windows 8.1 PC with 4 GB RAM. I usually download PDFs from the internet using Firefox.

  • What's the Oracle Standard for generating Output & logfile for Conc Prog?

    Is there any Oracle Standard for generating output and log files for standard concurrent programs and reports.
    for example: if Error, only Log no output
    if Warning, Log & output
    Complete Normal, Log & output
    Any help is appreciated...
    Thanks,
    Subhadeep

    Is there any Oracle Standard for generating output and log files for standard concurrent programs and reports.
    for example: if Error, only Log no output
    if Warning, Log & output
    Complete Normal, Log & output
    Any help is appreciated...APPS.FND_CONCURRENT -- procedure get_dev_phase_status
    http://etrm.oracle.com/pls/et1211d9/etrm_pnav.show_details?c_name=FND_CONCURRENT&c_owner=APPS&c_type=PACKAGE%20BODY&c_detail_type=source
    Thanks,
    Hussein

  • Sapscript-PDF-Mail error: Insufficient data for an image

    Hi, I've made a function module that takes a Purcharse Orden from spool, converts to PDF file and then send the form via mail. Everything work fine but the corporative logo in the form can't be seen... When I try to open the attachment, Acrobat Reader launchs a popup with the message "Insufficient data for an image" and then ONLY the logo is not displayed.
    Here's the MF code. I'll give points to useful answers. Thank you.
    FUNCTION Z_WF_SENDMAIL_PO_PDF.
    *"*"Interfase local
    *"  IMPORTING
    *"     VALUE(PO_ORDER) LIKE  EKKO-EBELN
    *"     VALUE(DELETE_SPOOL) LIKE  SYST-FTYPE OPTIONAL
    *"     VALUE(FILENAME) LIKE  P05T_RESPONSE-FILENAME OPTIONAL
    *"     VALUE(RECEPTOR) LIKE  SWHACTOR STRUCTURE  SWHACTOR
    *"  EXCEPTIONS
    *"      SENDING_FAILURE
    *"      CONVERSION_ERROR
    *"      NO_SPOOL
    *"      UPLOAD_ERROR
      DATA: T_TSP01 TYPE TSP01 OCCURS 0 WITH HEADER LINE,
            PDF TYPE TLINE OCCURS 0 WITH HEADER LINE.
      DATA: NUMBYTES TYPE I,
            PDFSPOOLID TYPE TSP01-RQIDENT,
            JOBNAME TYPE TBTCJOB-JOBNAME,
            JOBCOUNT TYPE TBTCJOB-JOBCOUNT,
            SPOOLS TYPE I.
      DATA: gd_cnt TYPE i,
            gd_sent_all(1) TYPE c,
            gd_doc_data LIKE sodocchgi1,
            gd_error TYPE sy-subrc.
      DATA: it_packing_list LIKE sopcklsti1 OCCURS 0 WITH HEADER LINE.
      DATA: lt_objpack LIKE sopcklsti1 OCCURS 2 WITH HEADER LINE,
            lt_objhead LIKE solisti1 OCCURS 1 WITH HEADER LINE,
            lt_objbin LIKE solisti1 OCCURS 10 WITH HEADER LINE,
            lt_objtxt LIKE solisti1 OCCURS 10 WITH HEADER LINE,
            lt_reclist LIKE somlreci1 OCCURS 5 WITH HEADER LINE,
            l_document_data TYPE sodocchgi1.
      DATA: l_att_lines TYPE i,
            gd_buffer type string.
      DATA: BEGIN OF lt_mails occurs 0,
              bname like usr21-bname,
              smtp_addr like adr6-smtp_addr,
            END OF lt_mails.
      REFRESH : pdf, it_packing_list.
      CLEAR : pdf, it_packing_list.
      SELECT RQIDENT
      INTO T_TSP01-RQIDENT
      FROM TSP01
      WHERE RQOWNER EQ receptor-objid
        AND RQCLIENT EQ SY-MANDT.
        APPEND T_TSP01.
      ENDSELECT.
      IF SY-SUBRC NE 0.
        RAISE NO_SPOOL.
      ELSE.
        SORT T_TSP01 DESCENDING.
        READ TABLE T_TSP01 INDEX 1.
        CALL FUNCTION 'CONVERT_OTFSPOOLJOB_2_PDF'
          EXPORTING
            SRC_SPOOLID              = T_TSP01-RQIDENT
            NO_DIALOG                = ''
          IMPORTING
            PDF_BYTECOUNT            = NUMBYTES
    *        PDF_SPOOLID              = PDFSPOOLID
    *        BTC_JOBNAME              = JOBNAME
    *        BTC_JOBCOUNT             = JOBCOUNT
          TABLES
            PDF                      = PDF
          EXCEPTIONS
            ERR_NO_OTF_SPOOLJOB      = 1
            ERR_NO_SPOOLJOB          = 2
            ERR_NO_PERMISSION        = 3
            ERR_CONV_NOT_POSSIBLE    = 4
            ERR_BAD_DSTDEVICE        = 5
            USER_CANCELLED           = 6
            ERR_SPOOLERROR           = 7
            ERR_TEMSEERROR           = 8
            ERR_BTCJOB_OPEN_FAILED   = 9
            ERR_BTCJOB_SUBMIT_FAILED = 10
            ERR_BTCJOB_CLOSE_FAILED  = 11
            OTHERS                   = 12.
        IF SY-SUBRC NE 0.
          RAISE CONVERSION_ERROR.
        ELSE.
          IF NOT FILENAME IS INITIAL.
            open dataset filename for output in binary mode.
            if sy-subrc ne 0 .
              RAISE UPLOAD_ERROR.
            endif.
            loop at pdf.
              transfer pdf to filename.
              if sy-subrc ne 0 .
                RAISE UPLOAD_ERROR.
              endif.
            ENDLOOP.
          ENDIF.
          IF NOT DELETE_SPOOL IS INITIAL.
            DELETE FROM TSP01 WHERE RQIDENT EQ T_TSP01-RQIDENT.
          ENDIF.
          CHECK NOT ( receptor IS INITIAL ).
          CLEAR: lt_reclist, lt_reclist[],
                 lt_objhead, lt_objhead[],
                 lt_objtxt, lt_objtxt[],
                 lt_objbin, lt_objbin[],
                 lt_objpack, lt_objpack[].
          CLEAR l_document_data.
    * Chequea si fue bajada la orden de spool
          CHECK NOT ( pdf[] IS INITIAL ).
    * Transferir los strings de 132 caracters a strings de 255 caracteres.
          loop at pdf.
            translate pdf using ' ~'.
            concatenate gd_buffer pdf into gd_buffer.
          endloop.
          translate gd_buffer using '~ '.
          do.
            lt_objbin = gd_buffer.
            append lt_objbin.
            shift gd_buffer left by 255 places.
            if gd_buffer is initial.
              exit.
            endif.
          enddo.
    * Cuerpo del mail
          CONCATENATE 'Se adjunta Pedido de Compra' PO_ORDER INTO lt_objtxt SEPARATED BY SPACE.
          APPEND lt_objtxt.
          DESCRIBE TABLE lt_objtxt LINES l_att_lines.
          READ TABLE lt_objtxt INDEX l_att_lines.
    * Titulo del mail
          l_document_data-obj_descr = 'Envio de Pedido de Compra'.
          l_document_data-obj_name = 'Pedido'.
          l_document_data-sensitivty = 'F'.
          l_document_data-expiry_dat = sy-datum + 10.
          l_document_data-doc_size = ( l_att_lines - 1 ) * 255 + strlen( lt_objtxt ).
          l_document_data-obj_langu = sy-langu.
          lt_objhead = 'ORDERS'.
          APPEND lt_objhead.
    * Configuración del cuerpo del mail
          CLEAR lt_objpack.
          REFRESH lt_objpack.
          lt_objpack-transf_bin = space.
          lt_objpack-head_start = 1.
          lt_objpack-head_num = 0.
          lt_objpack-body_start = 1.
    *      lt_objpack-body_num = 1.
          lt_objpack-body_num = l_att_lines.
          lt_objpack-doc_type = 'RAW'.
    *      lt_objpack-doc_size = STRLEN( lt_objtxt ).
          APPEND lt_objpack.
    * Configuración del archivo adjunto del mail
          DESCRIBE TABLE lt_objbin LINES l_att_lines.
          READ TABLE lt_objbin INDEX l_att_lines.
          clear lt_objpack.
          lt_objpack-transf_bin = 'X'.
          lt_objpack-head_start = 1.
          lt_objpack-head_num = 1.
          lt_objpack-body_start = 1.
          lt_objpack-body_num = l_att_lines.
          lt_objpack-doc_type = 'PDF'.
          lt_objpack-obj_name = 'Pedido'.
          lt_objpack-obj_descr = 'Pedido de Compra'.
    *      lt_objpack-doc_size = ( 255 * ( l_att_lines - 1 ) ) + STRLEN( lt_objbin-line ).
          lt_objpack-doc_size = 255 * l_att_lines.
          append lt_objpack.
    * Lista de receptores
          SELECT u~bname a~smtp_addr
            FROM usr21 as u
            INNER JOIN adr6 as a
            ON u~persnumber = a~persnumber
            INTO TABLE lt_mails
            WHERE bname = receptor-objid.
          LOOP AT lt_mails.
            clear lt_reclist.
            refresh lt_reclist.
            lt_reclist-receiver = lt_mails-smtp_addr.
            lt_reclist-rec_type = 'U'.
            lt_reclist-com_type = 'INT'.
            APPEND lt_reclist.
          ENDLOOP.
    * Envio del mail
          CALL FUNCTION 'SO_NEW_DOCUMENT_ATT_SEND_API1'
            EXPORTING
              document_data              = l_document_data
              put_in_outbox              = 'X'
              commit_work                = 'X'
            TABLES
              packing_list               = lt_objpack
              object_header              = lt_objhead
              contents_bin               = lt_objbin
              contents_txt               = lt_objtxt
              receivers                  = lt_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 NE 0.
            RAISE SENDING_FAILURE.
          ENDIF.
        ENDIF.
      ENDIF.
    ENDFUNCTION.

    I guess this could be one of the reasons, check you have authorizations on image.
    Regards,
    SaiRam

  • Apps Login Page Error- Insufficient privileges for the current operation

    Hi Gurus,
    We migrated application node from HP-UNIX to SUN Solaris with 11.5.10.2 and 10.2.04 database. When i try to login as sysadmin, got the error You have insufficient privileges for the current operation.
    But i can able to go in with Forms URL and it works. I don't see any errors on IAS except
    Fatal error in parsing device registration file in jserv.log.
    Any help is appreciated.
    Thank You.

    I found 150 invalid objects in the database. Also i have question here my database and the application is on different domains.Where do you have those invalid objects? Under what schema?
    Using different domain names should be OK.
    Do you think that will work. If the application and database put it in the same domain( put the apps in same database domain), by running the autoconfig will update the domain name in application server globally.I cannot assure if it is going to work or not.
    Have you checked Apache log files?
    If not change the domain name globally what else need to be done to change it. Please suggest on that.These are the docs you need to access if you want to change the domain name.
    How to change the hostname of an Applications Tier using AutoConfig [ID 341322.1]
    How to change the hostname and/or port of the Database Tier using AutoConfig [ID 338003.1]
    Steps To Clean Nonexistent Nodes or IP Addresses From FND_NODES [ID 260887.1]
    Thanks,
    Hussein

  • Reader version 9 not opening some files: error "insufficient data for an image"

    Adobe reader version 9 is having difficulties opening PDF's, mainly with PDF's that contain charts or jpg's.
    When using Google Chrome browser, I get the message "insufficient data for an image."
    I am using windows XP.  When I open these same PDF's using Internet Explorer, they display fine, but some of them don't print, and cause the printing spooler to malfunction, i.e., the print spooler begins turning itself off repeatedly, and then I can't print anything from any program. This print spooler problem is really difficult to solve. But I think all of this is originating from some inability of the current version of Adobe to handle some PDF's, which is a recent phenomenon. I've never had problems like this before with previous versions.

    I've had the same problem then it got "magically" fixed by itself. A big thanks to Adobe for their updates

  • T-code SUIM taking much more time for generating output for profie change.

    Hi All
    We want to extract report for profile addition and deletion for Users in ECC 6. While executing the the t-code SUIM it is taking much more time (taking more than 20 hrs). This problem is coming after patch application
    Please give the solution/Suggest to minimize the time taken in report generation.
    Thanks-
    Guru Prasad Dwivedi

    Hello Prasad,
    The reason for the performance trouble is a new feature regarding the user change documents. Since note 874850 and 1015043 you will get a more complete overview about the changes regarding a user.
    The disadvantage of that new feature is, that in some customer system usage scenario, the performance is very poor. That's the case, if the central change documents are intensivly used also by other applications and the tables CDPOS, CDHDR, ... contains a very big count of rows. Unfortunatly the user change documents can not be searched by the key columns of the central change docs. - so the bad response time can explained.
    What now ... ?
    There are some work arounds to get the change documents on faster way.
    1st. - You can get the former report output and performance if you
           would use the report RSUSR100 instead of the new RSUSR100N in
           separate mode.
    2nd. - If you want to use the new report RSUSR100N directly and only
           want to get the information about the traditional topics
           (content of USH* tables) you should only mark the search areas
           on the tabstrip 'user attributes') to get a better performance.
         - furthermore limit the date range, if possible
    3rd. - You should regulary (monthly) archive the user relevant documents
           for PFCG and IDENTITY from the central change documents.
           As per our note 1079207 chapter 3 you can reload that archives
           into more selective tables.
           The selection for change documents will be rather faster over
           reloaded archived documents than the documents in the
           central change documents tables.
    Best Regards,
    Guilherme de Oliveira.

  • PDF from postscript (ps2pdf) displays "Insufficient data for an image" error in Reader

    Hello,
    I'm not fully confident this is the best place for this, but I'll start here. Note that this is NOT the same as the issue that was recently fixed in Reader 11 (found at http://helpx.adobe.com/acrobat/kb/insufficient-data-image.html)
    I am using the command "ps2pdf" (using Ghostscript) to convert postscript files to PDF. To get better quality, I use the ps2pdf options "-dAutoFilterColorImages=false -dColorImageFilter=/FlateEncode", which force lossless encoding for color images. However, there are images on certain pages that yield the error "Insufficient data for an image" when opened in Adobe Reader XI (current version), and the image on that page is not viewable (or rather, it can be viewed, but only until you get the whole image on the screen; then the image disappears). If the PDF is printed, the image will not print. The error also occurs in Acrobat 9.4.0, and possibly other versions. However, Reader 8 displays the files with no issues. Also, Foxit reader displays the PDF files fine.
    The postscript files are screenshots generated by the user dragging a box to define the area of the screen to be printed to file. This issue only occurs for some size boxes that the user draws; others come out fine and are read by Reader just fine.
    This only happens when using FlateEncode; using lossy JPEG compression (e.g. the default ps2pdf output) does not yield files that produce the error.
    Here are some example files to demonstrate the issue (hey, maybe the issue is not even reproducible for other people! That would be helpful to know if true, so even if you can't help solve the problem, if you could verify whether this issue occurs when you open one of these files in Reader or Acrobat, it would awesome).
    bad pdf where error occurs: http://www.mediafire.com/file/zbk36yfy7vrhvhw/gmbad.pdf
    good pdf (very similar, but slightly different box drawn): http://www.mediafire.com/file/649fuxul0td5bsx/gmgood.pdf
    Merged good and bad: http://www.mediafire.com/file/54nwwebh3da7p9w/good_and_bad.pdf
    If anyone has any ideas on this issue, I would greatly appreciate it. Or if you think this isn't the right place for this, and perhaps know of a better place for my question, I'd appreciate that too. Thanks!
    Additional possibly relevant information:
    ps2pdf is being run using Ghostscript 8.15 on Unix Solaris 10. I also ran the same postscript files through ps2pdf (again using Ghostscript 8.15) on a Windows 7 machine, and the resulting PDFs did not exhibit the same errors when opened in Reader or Acrobat.
    Adobe Reader 8 and 11, and Foxit were run on Windows 7. Acrobat 9.4.0 was run through a Citrix server, and I'm not sure what version of Windows it runs on.
    I tried lots of different options in ps2pdf, and also tried running the postscript through ghostscript directly (using the "gs" command). Nothing was able to eliminate the error without resorting to using lossy JPEG compression.
    I am now using lossy (but fairly high quality) JPEG compression in the workflow, accepting the loss in quality and (paradoxically) doubled filesize of the JPEG-compressed PDF files, so I'm really just pursuing this to figure out what the heck is going on, not because it is mission critical.
    Postscript files used to create the above pdfs:
    bad: http://www.mediafire.com/file/v656dp45h2jeyj6/gmbad.ps
    good: http://www.mediafire.com/file/47sn60dgbzbxrs6/gmgood.ps
    The .ps files are very similar to each other, differing only in the image content and the image location/translation.
    The postscript files give multiple warnings/errors when opened in gsview (this happens with all .ps files created by Pinnacle, not just the ones giving me issues).
    The program that is used to create the postscript files is Philips (Adac) Pinnacle^3, a treatment planning system for radiation oncology.

    Hi, thanks for getting back to me so quickly.  Our application uses scanned images up to 10 years old, and there are thousands of images so we cannot rescan these unfortunately.   
    I work in a large organisation with it's own desktop team so unfortunately I can't upgrade the version of Reader on our user's machines to see if this resolves either.  The desktop team will also not upgrade the version as the problem appears to have only started in 9.5.2. 
    Does anyone know how I can confirm if the problem was first seen in 9.5.2 or if there were instances in 9.5.1 also?
    Thanks again

  • Adobe Standard 9.5.2 after update I get "Insufficient data for an image" error

    After updating to Acrobat Standard and Readre 9.5.2, some (but not all) of my pdf files are now opening with the error "Insufficient data for an image." The files open, but they are fuzzy, pixelated and are missing the bates stamp I applied earlier (using a utility from LexisNexis Casemap). I can open the files fine on another computer with Acrobat Standard 9.5.1.
    How can I uninstall the 9.5.2, or get it to work again?

    Windows 7 64-bit with Samsung SSD on an i5 Lenovo laptop. Yes, I have both Acrobat Standard and Reader 9.5.2 on the machine. Both give the same error when opening the attached file.
    -Dan-
    [email protected]
    Date: Thu, 16 Aug 2012 23:06:52 -0600
    From: [email protected]
    To: [email protected]
    Subject: Adobe Standard 9.5.2 after update I get "Insufficient data for an image" error
        Re: Adobe Standard 9.5.2 after update I get "Insufficient data for an image" error
        created by vamalik in Acrobat Installation & Update Issues - View the full discussion
    Hi osieko,Can you share across any such sample pdf file? Also, what OS are you working upon?You have both Acrobat Standard 9.5.2 and Reader 9.5.2 installed on your machine. Right? One option that you can try is to repair your Acrobat/Reader from Programs in Control Panel and see if that resolves the issue.Otherwise kindly attach a screenshot of the error you are receiving along with any sample pdf file.
         Replies to this message go to everyone subscribed to this thread, not directly to the person who posted the message. To post a reply, either reply to this email or visit the message page: http://forums.adobe.com/message/4627764#4627764
         To unsubscribe from this thread, please visit the message page at http://forums.adobe.com/message/4627764#4627764. In the Actions box on the right, click the Stop Email Notifications link.
         Start a new discussion in Acrobat Installation & Update Issues by email or at Adobe Forums
      For more information about maintaining your forum email notifications please go to http://forums.adobe.com/message/2936746#2936746.

  • "insufficient data for an image" error using Firefox 3/Reader 9

    I find some PDF files won't open in Firefox (3.0.3), giving the error "insufficient data for an image". usually the first page displays (partly garbled), then when I try to page down, I get this error. The PDF files are fine -- if I "Save as" they open without problems and they open in IE6.
    The problem is not consistent: the same file will open at one attempt and not at the next (and vice versa).
    Anyone come across this problem?
    Thanks, Jim

    The same error occurs in Google Chrome and even in the actual reader itself when trying to open certain PDFs. Adobe is almost impossible to contact directly and there are few clues as to how to resolve this issue on their website.
    Not only were there "insufficient data for an image" errors, other errors also displayed, sometimes resulting in freezing the browser and forcing a Ctrl, Alt, Del / end program procedure.
    An uninstall and reinstall of Adobe 9 did not resolve the issue. After discussion with another user who did not have Adobe 9 installed, and was still using Adobe 8, it was clear that the issues surround Adobe 9. This was uninstalled and replaced with Adobe 8 and so far all documents that did not previously open now open without a problem.
    While one cannot with certainty verify whether this solution works with Firefox, it is clear that Adobe 9 has a number of issues. Backward compatibility may be one of them. Documents constructed to display on older readers obviously create problems for Adobe 9. An interesting point is that even with Adobe 9 installed, by uploading the direct link to the PDF in question to Google Docs, the document displays without a problem within Google Docs itself, though a download of the same reproduces the same errors as outlines above.
    So in summary, try uninstalling Adobe 9 and install Adobe 8. NB: it is advisable to close all browsers before initiating the new install to enable browser integration.
    Good luck.

  • REMOVED " V/032 Insufficient authorization for sales document"

    We are having serious issues with the multiple credit card authorization at the time of releasing the billing document to accounting. Everything is with fine with a single payment card. But as soon we split the order value into two payment card and try to release it to accounting, It gives me this error " Insufficient authorization for sales document XXXX". It was working fine sometime back in July and i had tested it many times, i have no clue what happened in the system or what triggered it. I have checked all the config and settings, everything is fine, and i am unable to understand what is causing this issue. Any help from anywhere would be greatly appreciated....
    thanks all in advance for their input..
    Message was edited by:
            Yathish K

    Hi,
    Please <b>read rules of engagement</b> before posting.
    Step 1: Finding An Answer
    Rule number one: Try to find the answer first. There are tons of resources out there, show that you have tried to find the answer. A question that shows that the person is willing to try and help themselves is more likely to be answered than one which simply demands information. Tell us what you have done to try and solve the problem yourself - often we can learn from that too!
    Search the forums, the articles, the blog posts and the Frequently Asked Questions (FAQ) in the Wiki for your topic.
    Step 2: Asking Your Question
    Once you have verified that no resources are available for solving your problem, ask your question. Do the following:
    - Use a Good Subject Line
    The subject header is your golden opportunity to attract qualified experts' attention in around 50 characters or less. Don't waste it on babble like "Workflow question". We all have busy jobs, often we just skim through the list headings and read those that interest us. Also, DO NOT reply to an unrelated post to ask a different question. This confuses those reading the thread and may lose people that would be interested in your question. Always start a new topic with a new mail.
    <i>Bad subject: Urgent problem with workflow</i>
    Good subject: Error after transport: "Inconsistent workflow definition"
    Do not use words in capital letters and any of the words: urgent, quickly, burning, etc in your message. Especially not in the title! This just irritates and does not help you get to your goal. From our side, we definitely do not answer faster when we see these words.
    <i>The same goes for such things as ??? or !!! in appends. In the English language one ? or ! is sufficient to terminate a sentence.</i>

  • SSIS 2008 generates Registration information for this application needs to be updated - VSTA.exe

    I am getting the following error in SQL Server 2008 R2 (build 10.50.1734) x86 platform BI Development Studio (BIDS) 9.0.30729.4462 with .NET Framework 3.5 SP1 in a Integration Services project.
    I have a package with a Data Flow task that contains a Script Component. I edit it and attempt to edit script and I get the following error:
    Registration information for this application needs to be updated. To update, log on as an administrator and run this command:
    C:\Program Files\Microsoft Visual Studio 9.0\Common7\IDE\VSTA.exe /HostID SSIS_ScriptComponent /setup
    About a minute later, another box displays with the following message
    Cannot show Visual Studio Tools for Applications editor.
    Additional information:
    The VSTA designer failed to load. “System.Runtime.InteropServices.COMExeption (0x80004005) Error HRESULT E_FAIL has been returned from a call to a COM component at VSTADTAProvider.Interop.VSTADTEProiderClass.GetDTE(String bysHostID, Uint32 dwTimeout).
    I execute the command above running as an administrator (there are no output results). BIDS displays the same symptoms.
    This happens on a Windows 7 Enterprise (I said Professional in an earlier but un-related post) workstation x86 platform. I get the error even if I create a new script component in a new data flow task in a new package. I also have VS 2010 Premium
    Edition (build 10.0.30319.1 RTMRel) installed on this workstation (if that matters). I also uninstalled and re-installed SQL Server from my workstation. My colleague does
    not experience this error, who should have a similarily configured PC. Does anyone have any ideas? Thanks.
    Greg

    Old thread, but I was having the exact same problem and fixed it, so maybe this will help someone else in the future.
    My problem is that I was confusing the concept of running as an administrator in Windows 7.  I was logged into my machine as an administrator, but I was not actually running the "VSTA /HostID SSIS_ScriptComponent /setup" command as an administrator. 
    When you don't run as an administrator, the command does nothing - no message, nothing.
    I ran the Command Prompt as an Administrator while logged in as a user with Administrator privileges (right click on Command Prompt, select "Run As Administrator").  Then, from that command prompt, I ran "VSTA /HostID SSIS_ScriptComponent /setup", VSTA
    did its magic, and then everything worked.
    After all these years, that explicit "Run As Administrator" concept still trips me up sometimes.

  • "Insufficient data for an image" when opening a PDF, even with Adobe Reader 11.0.06

    I have extracted some pages from a large, scanned, PDF into a separate document, using a product called Nuance PDF Converter 7, and when we try to open that with Adobe Reader 11.0.06, we receive the error "Insufficient data for an image".  I have read that this error was supposed to be fixed with the latest version of Adobe Reader 11, but I have installed that, and it doesn't help.

    I am also having this problem, especially with scanned documents. Since I need to download scanned documents in my work this is a big problem!Sometimes I can read but not save the document, sometimes one or two of the pages will be blank from the start. I have the latest version of Adobe Reader XI (11.0.10). I tried reducing the page zoom, a suggested workaround on this page: Acrobat: “Insufficient data for an image” error after updating to 10.1.4 or 9.5.2,  but that did not help at all. FWIW I use a Windows 8.1 PC with 4 GB RAM. I usually download PDFs from the internet using Firefox.

  • Insufficient data for image (9-9.3) or a blank page (8.1)

    Hi,
    We recently started using a Xerox workcenter 5675 to scan document to my central server. About 3 days ago users started reporting an error message with a white page. I immediately checked the copier, nothing changed setting wise. It has been fully restarted, and other software like Sumatra PDF, and Apple's Preview applications open the PDFs just fine.
    In any version of 9 the error "insufficient data for image" pops up. In 8.1 it just shows a blank page.
    I would like to troubleshoot this issue, as we need to use the features of creating PDFs.
    Is there a way I can view the code of the PDF and post it or even submit it to a site or software to identify any bad code, so that then I know it is the copier? Is there a way to reduce the strict rules reader follows?
    Anyone have any ideas or clues as to what the issue might be, for the PDFs to be fine one day and not the next? I can easily provide a few PDFs made days apaprt for review.
    Thanks!

    I do not really have any ideas.  What software product you use to run the scan - Acrobat, or Xerox' own software?
    If Acrobat, please try the Acrobat forum, and mention your OS and Acrobat version.
    If Xerox, contact them.

Maybe you are looking for

  • How to show arabic data in to crystal reports ?How to aligh crystal report right to left

    <p>we are trying to make a crystal report for both english and arabic..All the arabic data is stored in data base tables.And for arabic screens we need tables and datas come right to left.. </p><p>1)How can we get the arabic data and right to left al

  • In eCATT, How to mention the values as  input parameter during test script

    Hi, 1. I am just learning eCATT tool. I created a Test Script by recording my transaction. But if i want to execute the recorded transaction with different data then how to store the values. 2. How to execute my Test Script created in one client to a

  • How much data is used to stream movies

    I have a data plan but I also have ultraviolet movies, I can't download them all to my iPhone 5c 16G .i was wondering how much data was being used while I am streaming rather that be from wifi or the phone as the internet provider. Any feedback would

  • Windows 2008 R2 Std SP1 - firewall reports packets dropped...

    Hi, 1) I'm trying to harden the Windows firewall on standalone (non AD) Windows 2008 R2 Std SP1 server, and restrict outgoing packets to known rules. What I'm seeing is firewall log entries showing dropped packets, and the dropped packets are always

  • CC don't work on the second device (edu)

    I am a student from Amsterdam. Since last month I installed Adobe CC on my iMac at home. Today I try the same on my iMac by my parentsat home. Unfortunately Adobe CC asks for serial number or trial versions every time. What should I do? The condition