RE: Internal error in SAP OLE document container control

Hi,
When i execute the transaction for assigning standard document to an applicant activity, PBWW, i get an error message stating 'Internal error in SAP OLE document container control'.  Please help me out of this problem.
We are using SAP version ECC 6
Thanks and Regards,
sowmya

Hi,
Sorry for replying so late.
Follow these steps
•     Create a report ZPAPUT04 in your system.
•     Using ZPAPUT04, upload all the templates in TEMPLATES.zip one by one. Please make sure that only the option 'Upload' in the selection screen is chosen. You have to pass the other inputs as given below
If you have extracted the templates in the 'C: \ folder of your system
then
For R3_TP97_E.dot template
FILENAME = C:\R3_TP97_E.DOT
DOTNAME = R3_TP97_E
For TEMPLATE_E.DOT template
FILENAME = C:\TEMPLATE_E.DOT
DOTNAME = TEMPLATE_E
Execute the upload program ZPAPUT04
For R3_TP97A_E.dot template
FILENAME = C:\R3_TP97A_E.DOT
DOTNAME = R3_TP97A_E
Execute the upload program ZPAPUT04
<b>Report to be executed</b>
REPORT  ZPAPUT04                                .
types: begin of data_type,
        line(132) type x,
      end of data_type.
DATA langu type thead-tdspras VALUE 'D'.                  
DATA data_x type table of data_type.
DATA wa_data_x type data_type.
DATA text type table of tline.
DATA wa_text type tline.
DATA header type thead.
DATA header_x type xstring.
field-symbols: <data_x> type x,
               <text> type x.
DATA filename type string.
parameters:  file_c(128) default 'C:\R3_TP97_D.DOT',
             dotname type TDOBNAME default 'R3_TP97_D',
             download as checkbox default 'X',
             upload as checkbox default 'X'.
DATA bytes_up type i.
DATA bytes_down type i.
DATA result1 type string.
DATA result2 type string.
data charsize type i.
class CL_ABAP_CHAR_UTILITIES definition load.
charsize = CL_ABAP_CHAR_UTILITIES=>charsize.
filename = file_c.
if upload = 'X'.
CALL FUNCTION 'GUI_UPLOAD'
  EXPORTING
    FILENAME                      = filename
    FILETYPE                      = 'BIN'
  HAS_FIELD_SEPARATOR           = ' '
  HEADER_LENGTH                 = 0
  READ_BY_LINE                  = 'X'
  IMPORTING
    FILELENGTH                    = bytes_up
  HEADER                        =
  TABLES
    DATA_TAB                      = data_x
  EXCEPTIONS
    FILE_OPEN_ERROR               = 1
    FILE_READ_ERROR               = 2
    NO_BATCH                      = 3
    GUI_REFUSE_FILETRANSFER       = 4
    INVALID_TYPE                  = 5
    NO_AUTHORITY                  = 6
    UNKNOWN_ERROR                 = 7
    BAD_DATA_FORMAT               = 8
    HEADER_NOT_ALLOWED            = 9
    SEPARATOR_NOT_ALLOWED         = 10
    HEADER_TOO_LONG               = 11
    UNKNOWN_DP_ERROR              = 12
    ACCESS_DENIED                 = 13
    DP_OUT_OF_MEMORY              = 14
    DISK_FULL                     = 15
    DP_TIMEOUT                    = 16
    OTHERS                        = 17
IF SY-SUBRC <> 0.
  MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
          WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
ENDIF.
IF bytes_up <= 0.
  result1 = 'UPLOAD ERROR ?:o('.
ELSE.
  result1 = 'UPLOAD OK :o)'.
ENDIF.
LOOP AT data_x INTO wa_data_x.
  assign wa_data_x-line to <data_x> casting.
  assign wa_text-tdline to <text> casting.
  <text> = <data_x>.
  append wa_text TO text.
ENDLOOP.
CALL FUNCTION 'INIT_TEXT'
  EXPORTING
    ID             = 'TAPP'
    LANGUAGE       = langu                                 
    NAME           = dotname
    OBJECT         = 'APP-DOT'
  IMPORTING
    HEADER         = header
  TABLES
    LINES          = text
  EXCEPTIONS
    ID             = 1
    LANGUAGE       = 2
    NAME           = 3
    OBJECT         = 4
    OTHERS         = 5
IF SY-SUBRC <> 0.
  MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
          WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
ENDIF.
LOOP AT data_x INTO wa_data_x.
  assign wa_data_x-line to <data_x> casting.
  assign wa_text-tdline to <text> casting.
  <text> = <data_x>.
  append wa_text TO text.
ENDLOOP.
CALL FUNCTION 'SAVE_TEXT'
  EXPORTING
    CLIENT                = '000'                          
    HEADER                = header
  INSERT                = ' '
  SAVEMODE_DIRECT       = ' '
  OWNER_SPECIFIED       = ' '
  LOCAL_CAT             = ' '
IMPORTING
  FUNCTION              =
  NEWHEADER             =
  TABLES
    LINES                 = text
  EXCEPTIONS
    ID                    = 1
    LANGUAGE              = 2
    NAME                  = 3
    OBJECT                = 4
    OTHERS                = 5
IF SY-SUBRC <> 0.
  MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
          WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
ENDIF.
ENDIF.
if download = 'X'.
refresh data_x.
refresh text.
clear wa_data_x.
clear wa_text.
unassign <data_x>.
unassign <text>.
DOWNLOAD
CALL FUNCTION 'READ_TEXT'
  EXPORTING
    CLIENT                        = '000'                  
    ID                            = 'TAPP'
    LANGUAGE                      = langu                  
    NAME                          = dotname
    OBJECT                        = 'APP-DOT'
  ARCHIVE_HANDLE                = 0
  LOCAL_CAT                     = ' '
IMPORTING
  HEADER                        =
  TABLES
    LINES                         = text
  EXCEPTIONS
    ID                            = 1
    LANGUAGE                      = 2
    NAME                          = 3
    NOT_FOUND                     = 4
    OBJECT                        = 5
    REFERENCE_CHECK               = 6
    WRONG_ACCESS_TO_ARCHIVE       = 7
    OTHERS                        = 8
IF SY-SUBRC <> 0.
  MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
          WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
ENDIF.
LOOP AT text INTO wa_text.
  assign wa_data_x-line to <data_x> casting.
  assign wa_text-tdline to <text> casting.
  <data_x> = <text>.
  append wa_data_x TO data_x.
ENDLOOP.
*DATA fn_length type i.
*DATA offset type i.
*fn_length = strlen( file_c ).
*offset = fn_length - 4.
*concatenate filename(offset) '_DOWN' filename+offset(4) INTO filename.
IF upload <> 'X'.
  DATA dx_ln type i.
  describe table data_x lines dx_ln.
  bytes_up = dx_ln * sy-tleng.
ENDIF.
CALL FUNCTION 'GUI_DOWNLOAD'
  EXPORTING
    BIN_FILESIZE                  = bytes_up
    FILENAME                      = filename
    FILETYPE                      = 'BIN'
  APPEND                        = ' '
  WRITE_FIELD_SEPARATOR         = ' '
  HEADER                        = '00'
  TRUNC_TRAILING_BLANKS         = ' '
  WRITE_LF                      = 'X'
  COL_SELECT                    = ' '
  COL_SELECT_MASK               = ' '
  IMPORTING
    FILELENGTH                    = bytes_down
  TABLES
    DATA_TAB                      = data_x
  EXCEPTIONS
    FILE_WRITE_ERROR              = 1
    NO_BATCH                      = 2
    GUI_REFUSE_FILETRANSFER       = 3
    INVALID_TYPE                  = 4
    NO_AUTHORITY                  = 5
    UNKNOWN_ERROR                 = 6
    HEADER_NOT_ALLOWED            = 7
    SEPARATOR_NOT_ALLOWED         = 8
    FILESIZE_NOT_ALLOWED          = 9
    HEADER_TOO_LONG               = 10
    DP_ERROR_CREATE               = 11
    DP_ERROR_SEND                 = 12
    DP_ERROR_WRITE                = 13
    UNKNOWN_DP_ERROR              = 14
    ACCESS_DENIED                 = 15
    DP_OUT_OF_MEMORY              = 16
    DISK_FULL                     = 17
    DP_TIMEOUT                    = 18
    FILE_NOT_FOUND                = 19
    DATAPROVIDER_EXCEPTION        = 20
    CONTROL_FLUSH_ERROR           = 21
    OTHERS                        = 22
IF SY-SUBRC <> 0.
  MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
          WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
ENDIF.
IF bytes_down <> bytes_up and upload = 'X'.
  result2 = 'DOWNLOAD ERROR ?:o('.
ELSEIF bytes_down > 0.
  result2 = 'DOWNLOAD OK :o)'.
ELSE.
  result2 = 'DOWNLOAD ERROR ?:o('.
ENDIF.
endif.
write: result1, / result2, / 'Bytes per Character: ', charsize.
Download the template attached to note 558548
Regards,
Sowmya

Similar Messages

  • INTERNAL ERROR IN SAP OLE DOCUMENT CONTAINER CONTROL. in transaction PBWW

    Well while running a transaction PBWW when we click on create button it opens the word document with the
    text in it but suddenly the text is gone and it is showing a error which is INTERNAL ERROR IN SAP OLE DOCUMENT CONTAINER CONTROL.
    how can it be resolved????
    Thanks And regards
    Amit

    Friend,
    See this line from OSS#427615:
    Note:
    This note is a continuation of the correction from Note 402195 (Stabilization of the Word interface). Thus, the correction from Note 402195 is an absolutely necessary prerequisite for this note.
    i'm about to sure that if you implement first 402195 than 427615 problem would be solved.
    Both OSS are made in continuation.

  • Internal error in SAP OLE document container control

    While opening WW-Invitation in so10 with standard text - WW-INVITATION where Text ID - Palt the doc is not opening and the following error as coming :
    Internal error in SAP OLE document container control
    Message no. SOFFICEINTEGRATION019
    Can any body suggest the solution on this.....
    We have SAP HR patch level 72 .
    I checked in the scn they are saying about some note but those note are not applicable in my system
    Thanks

    Same thing over here.
    ECC5.0, SAP GUI 7.1 Comp 3 (win).
    Whenever I try to open any Document (Transaction PBWW) I get the same error: Word 2007 opens and as soon as the document itself is loaded, it vanishes. All that is left, is the GUI showing the "Internal Error in SAP OLE Document Container Control" (SOFFICEINTEGRATION019).
    What's wrong with that. GUI 6.4 and 7.1 Comp. 2 did their job...
    Even GUI 7.1 Comp. 3 and Word 2003 do as they're supposed to and open the documents nicely.
    What I've found out is that the Word template R3_TP97_D.dot which is created in the temporary folder in Windows needs to be deleted before using PBWW. Once the file is gone, opening any document via PBWW succeeds. SAP Note 558548 does not resolve the issue.
    Regards, Oliver
    Edited by: Oliver Günther on Sep 15, 2009 1:34 PM
    Edited by: Oliver Günther on Sep 15, 2009 1:37 PM

  • Error : Internal Error in SAP OLE document container control

    Hi ,
    In recruitment module, when i try to display letter in applicant activity above error occurs. i need to set SAP Script in standard text , Please let me know how to make SAP Script settings.
    Regards,
    Rahul

    Hi rahul
    Here also i am geting same problem.
    how could u overcome that one.
    Plz tell me

  • Error when creating table (Document contains no data)

    Hi,
    I've installed htmldb 2.0 and after playing with it for a while, everything seems to be ok, except
    for table creation. No matter I use the sql command console or the object creation wizard, the
    situation is the same: i can arrive until the last confirmation page, and after submitting the browser
    complains about a page with no data (Document contains no data).
    I can create other things, such as views, functions, sequences, even applications. Is just table the one giving problems. Can somebody tell me where are the relevant logs, in order to trace better the situation? Or, if you have any other suggestion (maybe I missed something during the installation, or things like that).
    Thanks in advance.
    salu2
    dario estepario ...

    Sure, this is part of the weird thing: nothing is displayed when this error happens. However, yesterday, a friend of mine made the same test (with another browser) and I saw some messages like this ones on the error_log*:
    [Tue Nov 22 15:12:01 2005] [error] [client 201.138.102.50] [ecid: 1132693921:192.168.1.1:24300:0:155,0] mod_plsql: /pls/htmldb/wwv_flow.accept HTTP-500 Error Reading Data from Client!!
    At least, they are a http-500 errors ... while in my case, I can not receive any answer at all.
    But this was yesterday, today ... every time I reproduce the situation, the error_log does not move.
    Regards,
    PS: Another point: I can create the table importing data.

  • Internal error in SAP user exit

    Hi,
      i am working on the SAP user exits in SD module for Free goods enhancement, if customer buys 100 goods in 'X' material we have to provide 'Y' quantity of goods as free. i did coding part under the standard program "MV45AFZZ " in the form" user exit_save_document_prepare", its working fine in creation of sales order in VA01 transaction the free goods are getting added correctly.
    But, while changing the sales order in VA02 transaction the free goods are not getting updated after changing the order quantity. its just displaying the following error "An internal system error occurred. See note 442831."
    kindly help me to solve this issue.

    Dear vinod,
    No, this can't be done because with the help of configuration we can able to do only for 1:1 relationship.
    but this includes n :1 relationship free goods.so we need to develop code.in that only during execution only am getting this internal error.

  • Error at SAP BO when containing no data in SAP BI Query

    Dear all,
    I found this error message when I tried to open my dashboard reports:
    "A database error occured. The database error text is: Error in MDDataSetBW.GetCellData. FUNCTION_NOT_FOUND. (WIS 10901)"
    This error only show when the first time I opened the reports and the data is empty. After I clikc Ok and re-run the report, it's ok. If the query contains the data, the error will not show.
    Please advise or give some suggestion for tihs problems.
    I'm using SAP BW 7.0 SP 21 and SAP BusinessObject XI 3.1
    Thanks and best regards,
    Henki Chen

    Hello Henri,
    He is the resolution to your problem:
    1.  Restrict query results to a smaller set of data.
    2.  Suppress the 'Not assigned/#' Hierarchy node (Exclude Selection) in the BEx hierarchy query. This reduces the size of I-Table & buffer requirements.
    3.  Avoid use of 'default values' for hierarchy & hierarchy node variables. Or, if a default must be assigned, set it to an attribute that has 0 levels.
    4.  Implement : Enhancement Pack 1 + Support Package 3 (or above) for optimized interoperability between BusinessObjects & SAP modules. 
    Thank you,
    Scott

  • Acrobat error message: The PDF document contained image masks that were not downsampled.

    I'm .pfing a document from InDesign CS2, and even after I use Acrobat 8 to try to reduce the file size, the file is still about 12 mb. I 'm getting the error listed above, and wondering if that has anything to do with it.
    Any suggestions?
    Thanks.

    Content streams are pages, type 3 fonts, comments (annotations), form fields and XObjects.
    If you're really concerned about the file size, one trick (although not recommended since it can cause other issues such as fonts busting out, colour transformations etc) would be to open the PDF and then PRINT to the Adobe PDF printer using say STANDARD or SMALLEST FILE SIZE ... this re-fry might will remove/re-create the content streams and reduce the overall size.
    Cheers,
    Jon

  • Error message: "This PDF document contains forms. The filling of form fields is not supported."

    Hello, I am running with this operating system: Microsoft windows XP Professional version 2002 service pack 3
    Just downloaded the newest version of Adobe reader
    Using an updated version of Firefox.
    There is an online form that I must fill out in adobe reader online...  I could download it, but then I would have to FAX or mail it in, as apposed to directly sending it to the organization it is from via a "SUBMIT" button at the end of the form...  I do not have a printer.
    Thank you for any help you can give.

    Do you use the Firefox PDF viewer, or the Adobe PDF plugin?  The Firefox PDF viewer is incompatible with many modern PDF features.
    See http://helpx.adobe.com/acrobat/kb/pdf-browser-plugin-configuration.html

  • SAP OLE

    Hi,
    While maintaining Standard text in MS-WORD it giving a error 'Internal error in SAP OLE Container Control'.
    According to my knowlegde its giving error because some file missed in msofficeintegration in OLE.
    But i am unable to sort out this problem.
    If any one have idea in this pls reply me.

    Hello,
    Try this for Landscape (all ole objects are of type OLE2_OBJECT)
    CREATE OBJECT EXCEL 'EXCEL.APPLICATION'.
    IF SY-SUBRC NE 0.
      WRITE: / 'No EXCEL creation possible'.
      STOP.
    ENDIF.
    SET PROPERTY OF EXCEL 'DisplayAlerts' = 0.
    CALL METHOD OF EXCEL 'WORKBOOKS' = WORKBOOK .
    SET PROPERTY OF EXCEL 'VISIBLE' = 1.
    * creating workbook
    SET PROPERTY OF EXCEL 'SheetsInNewWorkbook' = 1.
    CALL METHOD OF WORKBOOK 'ADD'.
    CALL METHOD OF EXCEL 'WORKSHEETS' = SHEET.
    CALL METHOD OF SHEET 'ADD'.
    FREE OBJECT SHEET.
    CALL METHOD OF EXCEL 'WORKSHEETS' = SHEET
      EXPORTING
        #1 = 1.
    GET PROPERTY OF sheet 'PageSetup' = h_pagesetup.
    set PROPERTY OF h_pagesetup 'Orientation' = 2.

  • Error message:Material document contains no items (order: 40000004 item: 00

    Good Day SAP expert,
    I have facing an error message on Material document contains no items (order: 40000004 item: 000010) & Message no. /DBM/COMMON286.
    This error happen when I want to create Good Issue with action QGIS (Create Goods Issue (DBM)).
    Steps that I create vehicle order:
    1.     Go to /dbm/order01 and select 3010 u2013 Vehicle Order based on Model
    2.     Then I create for a new customer with model sales code
    3.     I save the vehicle order in DBM.
    4.     I go to VELO to create vehicle on Peugeot model sales code and create PO, good receipt and incoming invoice.
    5.     Then I use action QDBM to enable vehicle to DBM.
    6.     I assign the vehicle (DBM) to my vehicle order (created based on model).
    7.     The assignment is successful; therefore I would like to do Good Movement (good issue). Error : Material document contains no items pop up.
    8.     I have try with create VELO, assign QDM and create 3000 u2013 vehicle order, Good Movement able to perform.
    I apply snote 1527931 - Problem with reading of document flow on nonunicode systems.
    Its doesn't work, system say still say that material document contains no items.
    is it advisable change error message to warning message?
    Please advice.
    Thanks
    regards,
    ng chong chuan

    I am not sure but this coudl be reason.
    You have created a vehicle but you have not created the purchase order and Goods Recipt for the Vehicle, means the VEHICLE IS NOT IN YOUR INVENTORY
    First check whether the vehicle is in inventory or not, if not then not possible to do Goods issue.

  • F4M document contains errors - URL missing from Media tag

    I feel like I'm getting close to finally get a live stream to work correctly in 4.5
    I can see the streams being recorded in the following directories
         C:\FMSHOME\applications\livepkgr\streams\_definst_\liveevent1
         C:\FMSHOME\applications\livepkgr\streams\_definst_\liveevent2
         C:\FMSHOME\applications\livepkgr\streams\_definst_\liveevent3
    Each directory contains five files: bootstrap ,control, meta, f4f, and f4x.
    I have a single file called Event.xml in the directory: C:\FMSHOME\applications\livepkgr\events\_definst_\liveevent
    <Event><EventID>liveevent</EventID>
    <Recording>
    <FragmentDuration>4000</FragmentDuration>
    <SegmentDuration>16000</SegmentDuration>
    <DiskManagementDuration>3</DiskManagementDuration>
    </Recording>
    </Event>
    However the client player receives the exception F4M document contains errors - URL missing from Media tag.
    If this file is dynamically generated on the fly by the server what do I need to change to resolve this issue?
    <object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"
                codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab##version=10,0,0,0"
                width="600"
                height="409">
                <param name="movie" value="StrobeMediaPlayback.swf"></param>
                <param name="FlashVars" value="src=http://myserver/hds-live/livepkgr/_definst_/liveevent.f4m"></param>
                <param name="allowFullScreen" value="true"></param>
                <param name="allowscriptaccess" value="always"></param>
                <embed src="StrobeMediaPlayback.swf"
                       type="application/x-shockwave-flash"
                       allowscriptaccess="always"
                       allowfullscreen="true"
                       width="600"
                       height="409"
                       FlashVars="src=http://myserver/hds-live/livepkgr/_definst_/liveevent.f4m">
                </embed>
    </object>
    Thanks Again!
    Dave

    I will suggest you to go through this doc for complete implementation details. It is pretty comprehendable and would help you understand http live streaming better.
    http://help.adobe.com/en_US/flashmediaserver/devguide/WSeb6b7485f9649bf23d103e5512e08f3a33 8-8000.html#WSd391de4d9c7bd609a95b3f112a373a7115-7ff6.
    As per your questions -
    1. "I try to access the stream using the local player at http://localhost/hds-live/livepkgr/_definst_/liveevent/livestream.f4m" - This should be http://localhost/hds-live/livepkgr/_definst_/liveevent/liveevent.f4m.
         The name of the f4m is the name of the event you are referring to. In your case, the live event - liveevent is associated with all your three livestreams- namely livestream1, livestream2. livestream3.
    2. "Do I need to create BOTH a 'manifest.xml' and a 'event.xml'? And do both of these files need to be in the event directory like below?" - Yes. If you are using mbr you need both these files at the exact place you mnetioned.
    For simple single bitrate streams, mainfest.xml file is optional.
    3. "If I need to manually create a manifest.xml file would this file and directory be correct?" - Yes, you are right on track. Create the file Manifest.xml and place it inside events directory at the place you mentioned.
    4. "Do I need to use a absolute url in the streamid field in manifest.xml to resolve the error msg 'The F4M document contains errors URL missing from Media tag'?" - No. This is not needed. StreamId is not the content path, that is taken care of by the url path in the output manifest. You streamIds will be - livestream1, livestream2, livestream3.
    After all this, I would suggest you to check one more thing. If you are publishing the way you mentioned above, there would be '.stream' files (For eg - 'MTYxMjAzMzAzMg=.stream' ) created in your events folder - "C:\FMSHOME\applications\livepkgr\events\_definst_\liveevent\". You should check that there are 3 and only three files formed. It somehow happens that when you publish and republish again without deleting these files, FMS creates multiple copies and tries to map each one to the actual content written at - C:\FMSHOME\applications\livepkgr\streams\_definst_\livestream1\ etc.. So there should be three files and each one should point to one of the streams directory. If there are more, please delete these files, delete your hds streaming content (if possible) and republish again the same way.
    This should solve your problem. If still you are facing some issues, do let us know.
    Thanks,
    Apoorva.

  • Document contains some order item more than once - invoice verification

    Hi,
    we have one cross company stock transfer process in which when a billing is created in SD side, an IDOC will be triggered automatically and create an invoice verification at the MM side.
    The problem is some of our billing of this process having an IDOC application error that said.
    Document contains same order item more than once
    Message no. M8321
    Diagnosis
    Under the following circumstances, you can settle an order item in an invoice received via EDI more than once:
    - Goods-receipt-based Invoice Verification has been defined for the order item.
    - The IDoc contains the delivery note numbers of the goods receipts.
    System Response
    If this is not the case, the system cancels posting of the IDoc.
    Question:
    1 - The funny thing is IDOC showing 51 IDOC error code message on status record of INVOIC. But the invoice verfication get created in PO history.
    2 - I think this error is because we need to make the PO as GR-based Inverifcation. We have flagged it in Vendor master, and Info record, but this indicator is not flag automatically in the PO (and we cannot manually change the PO as this indicator is grey-out). How?
    3 - how to solve this error?
    Thanks

    Once PO history is created, you cannot change the "GR-based-IV" flag. Two options are there before you.
    1. Cancel all the GRs & Invoices posted in the STO then system will allow you to update the GR-based-IV flag. After updating this flag repost the GRs and invoices.
    2. Create a new STO, now since you have updated the vendor maser & info-record, this flag will automatically get updated during the STO creation itself.
    First option is tedious and should be selected only if you can go option 2 is not at all feasible

  • Acrobat Reader 9.5.1 'Internal Error' [solved]

    Hello, everybody.
    To come quickly to the point, here is the problem / issue (hopefully, in the most concise and useful formulation).
    OS: openSUSE Linux 12.1 with kernel v. 3.1.10-1.9 and (just for the report - even if I don't think it matters) Qt libraries v. 4.7.4-19.6.1. I say I don't think it matters, because I've already experienced this very same issue with openSUSE 11.0 (kernel 2.6.25.5 and Qt 4.4.0, with Acrobat Reader 8.1.3).
    Acrobat Reader v. 9.5.1 (the release included with the distro).
    The issue: when I try to overwrite an existing PDF document (i.e.: save 'foo.pdf' OVER a pre-existing copy of 'foo.pdf') I systematically get caught into the sequence 'the document already exists. Do you want to overwrite it?' -> yes -> 'An internal error has occurred' -> the document can't be overwritten.
    Attempts to fix: I've already tried - suspecting I had possibly missed something during the installation process - to change the permissions of the '.adobe' preferences folder under my /home directory by issuing the usual 'chown -R xxx:yyy .adobe' command: with no result.
    Any idea about the possible causes and workarounds?
    BTW, while I was trying to recover the exact information about the program's version in the 'Help -> about Adobe Reader' menu, I've stumbled into another issue (which looks very much like a bug): that is, the program freezes if I try to read the 'Credits' information by pushing the suitable button in the red 'Adobe Reader 9' banner. Possible causes and remedies (aside from upgrading to the most recent version)?
    Thank you very much in advance
    Mario Grilli
    Message was edited by: jaygrey
    Reason: solved

    I add this one to my previous message, which solves the issue (and closes the thread).
    The issue has been solved (on another system, though: that is, Fedora 17) by installing the original Acrobat Reader 9.5.1 from Adobe. With "original" I mean: not the .rpm archive enclosed in the OS DVD, but the one which can be downloaded directly from Adobe.
    The method:  one has to open a terminal and simply do the following:
    # rpm -Uvh http://linuxdownload.adobe.com/adobe-release/adobe-release-i386-1.0-1.noarch.rpm
    [as root] # yum install AdobeReader_enu
    The version of Acrobat Reader which is installed by this method is complete with all the GTK suitable libraries: and actually works with no hassle, allowing to overwrite previous versions of the same file.
    Now, however, I have to find some equivalent procedure under openSUSE: because it's a fact that even the AdbeRdr9.5.1-1_i486linux_enu.rpm file one usually downloads from here installs a copy of Acrobat Reader which shows the aforementioned issue, despite all the necessary graphical libraries being already installed in the system. Now, since this one is probably the .rpm archive a user finds in the main .rpm-based Linux distros, I add that it might be interesting if some Adobe engineer would try to dig a little deeper into this issue...

  • Error 'Internal Error' with Reader X

    Hi,
    we got an "Internal Error" by opening PDF Documents wie Adobe Reader X. These Documents works fine with Adobe 9. We deteimined the error remaining on the jpg which is in the document. We created the jpg again an now we could open new documents with adobe reader x.
    Our problem is that all old documents have the old version of the jpg. Becouse of technical restrictions we aren´t able to creat the documents with the new jpg. We have to open the old pdf document with adobe X.
    Does anyone have an idea whats wrong with adobe x? Is it possible, that´s a knowen error and it would be fixed in the next version?
    Thanks for any help
    Regards

    Hello dbausnd2,
    It may not be your answer but I encountered the "internal error" message you described on some documents
    For me, disabling protected mode as described in following link solved it
    http://forums.adobe.com/message/3463596
    According to this, "protected mode" is a new feature in X, it could explain your 9.0, X behavior difference  http://blogs.adobe.com/livecycle/2010/11/technical-details-of-adobe-reader-x-protected-mod e.html
    Interestingly,  right clicking a file, selecting "Open with Adobe Reader X" would trigger "internal error" for me on the affected documents.  But right clicking, selecting "open with" and then "Adobe Reader" did not.  Go figure.  Also, opening from the reader's file menu worked.
    I imagine disabling protected mode reduces your system security, so that is something to consider

Maybe you are looking for

  • Table for Reservation creation Date

    All SAP Gurus, What is the Table for Reservation creation Date? Regards,

  • Problem creating A/R Invoice with Withholding tax data via DI-Server

    Hi! Using the following SOAP Request to the DI-Server, I wanted to create an A/R Invoice having a withholding tax data but it always respond with an error saying Total taxable amount of all rows exceeds the base amount  [INV5.TaxbleAmnt][line: 1] SOA

  • [solved] Xorg freezing on wakeup with EXA enabled

    I am having a weird issue. Whenever I put my laptop to sleep and then I wake it up, Xorg seems to freeze on me. I've noticed this only happens with EXA enabled and it does not happen when the laptop hibernates. I don't have any other issues with X (a

  • The Mac Pro appears to be very slow.

    At least according to some testing I've done with Photoshop. The MacBook Pro is looking really good though. Can anyone explain this: http://mac.sandman.net/pages/StrangeBenchmarks

  • GL Transaction Query

    Hi Everyone, I need a query that gives the transactions made to GLl from AR,AR and other responsibility in particular period. I required the fields to display in my report are: GL transaction date, account number,debit, credit, opening balance,period