This PostScript file was created from an encrypted PDF file.

I have a postscript file which has been created from secure or encrypted (opening restriction) pdf.
Now when i use distiller to convert this postscript file to pdf then distiller cannot produce a pdf file.
The log file contains following text:
This PostScript file was created from an encrypted PDF file.
Redistilling encrypted PDF is not permitted.
%%[ Flushing: rest of job (to end-of-file) will be ignored ]%%
%%[ Warning: PostScript error. No PDF file produced. ] %%
1) Is there a way to convert this postscript file into pdf ?
I have a limitation that i cannot remove security from secure pdf.
2) Do distiller provide any settings which can be changed to convert
this kind of ps(from secure pdf) to pdf.
3) Can we provide password to distiller during process of conversion to
pdf.
4) If above methods do not work then is there a way we can
programatically use Distiller Api's for conversion of postscript (in case
of postscript created from secure pdf) to pdf
Like methods 'FileToPdf' etc.
Thanks in advance.

I am facing a similar problem.
My workflow dictates that I convert the input PDF job initially to PS and finally back to PDF. If the input PDF file is secure (it's not encrypted - you will still be able to open the document), the redistillation of PS to PDF fails while using Normalizer 6.0 && 9.0 libraries. If I use Normalizer 505 library, the redistillation succeeds. I have checked with the same generated PS on both Distiller 6.0 && 9.0, and both the versions fail to reconvert as well. I am a little surprised that 6.0 and 9.0 will fail to do something that 505 library manages.
Any suggestions?

Similar Messages

  • My file was changed from psd to "5 file" and won't open

    Hi,
    I just spent 2+ hours woking on a difficult mask, saving as I worked.
    I left for dinner and closed down photoshop.
    When I returned I couldn't open my file.  This message appeared:  could not complete your request because it is not the right kind of document
    The file is no longer a psd is a "5 file".
    Any suggestions to what happened to my file and how can I get ps to open it?
    Thanks,
    Alison

    AlisonKaMail wrote:
    Hi,
    I just spent 2+ hours woking on a difficult mask, saving as I worked.
    I left for dinner and closed down photoshop.
    When I returned I couldn't open my file.  This message appeared:  could not complete your request because it is not the right kind of document
    The file is no longer a psd is a "5 file".
    Any suggestions to what happened to my file and how can I get ps to open it?
    Thanks,
    Alison
    It sounds like you have Windows set to hide the extension of common file types, which means that a photoshop file called Pix03.psd will show up in Windows Explorer and in file open/save dialogs as Pix03 with the file type Photoshop file.  This is not desirable because it means you don't know what your files are actually named.  It also makes it harder to fix situations like this. 
    I would strongly suggest that you open Windows Explorer (My Computer icon, or WindowsStart+E), then go to Tools > Folder Options > View and UNcheck "Hide extensions for known file types."  
    Once you've done that, you will see your file names as Pix03.psd (the ".psd" is the "extension" that you need to see).  In Windows Explorer, or a File Open dialog with the criteria set to All Files (*.*), find the file you are having trouble with.  It will have a .5 extension, like Pix03.5.  Click on it once, wait a second, and click again.  This will let you rename it.  All that you need to change is the extension, so click at the end, backspace over the "5" and replace it with "psd".  That should make your photoshop file openable in Photoshop again.

  • How to change the font and size in the fillable field of an encrypted PDF file?

    hi!
    I’d like to change the font and size in the fillable field of an encrypted PDF file I-485 from www.uscis.gov/files/form/i-485.pdf
    I’m using Adobe Acrobat Pro 9 in Windows XP. I firstly tried Adobe LiveCycle Designer, but the I-485 file requires password to be opened, which I don’t know.
    Then I tried to print it to a PDF file, and use the Typewriter tool to fill in the form. But got error message while printing it to PDF file:
    This PostScript file was created from an encrypted PDF file.
    Redistilling encrypted PDF is not permitted.
    The I-485 file can be exported to unencrypted postscript file, but got the same error message while trying to open the ps file.
    I don’t know much about pdf file, can anyone please help?
    Thanks a lot!

    Ask the creator of the file for a unprotected version.

  • Encrypted PDF file open error

    Hi All,
    problem is when i open to outlook to check mail at that time i got mail but attached file is not open which is encrypted file
    so please help how to open attached file following process i do .
    1: convert otf to pdf file
    2: download pdf file into application server
    3:encrypt pdf file with password protect
    4:upload pdf file from application server
    5:send mail
    1. OTR TO PDF
    CALL FUNCTION 'CONVERT_OTF'
       EXPORTING
         format                      = 'PDF'
         max_linewidth               = 132
    *   ARCHIVE_INDEX               = ' '
    *   COPYNUMBER                  = 0
    *   ASCII_BIDI_VIS2LOG          = ' '
    *   PDF_DELETE_OTFTAB           = ' '
       IMPORTING
         bin_filesize                = gv_bin_filesize
    *   BIN_FILE                    =
        TABLES
          otf                         = gt_otf
          lines                       = gt_pdf_tab
       EXCEPTIONS
         err_max_linewidth           = 1
         err_format                  = 2
         err_conv_not_possible       = 3
         err_bad_otf                 = 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.
    then download pdf file into application server using following code
    OPEN DATASET l_file FOR OUTPUT IN BINARY MODE  .
      IF  sy-subrc = 0 .
        LOOP AT gt_pdf_tab.
          TRANSFER gt_pdf_tab TO l_file .
        ENDLOOP.
        CLOSE DATASET l_file  .
      ELSE.
        WRITE : / 'operating system could not open file' .
      ENDIF.
    *Then i use command line mode Encryptpdf, from verypdf.com, *
    so successfuly file encrypted and password protected.*
    Then upload pdf filw which is encrypted form application server
    OPEN DATASET to_file FOR INPUT IN BINARY MODE.
      IF sy-subrc = 0.
        DO .
          READ DATASET to_file INTO gs_objbin. "GS_PDF_TAB.
          IF sy-subrc = 0.
            APPEND gs_objbin TO gt_objbin .  "GS_PDF_TAB TO GT_PDF_TAB.
          ELSE.
            EXIT.
          ENDIF.
        ENDDO.
        CLOSE DATASET to_file.
      ENDIF.
    then i use use FM SO_NEW_DOCUMENT_ATT_SEND_API1
    CALL FUNCTION 'SO_NEW_DOCUMENT_ATT_SEND_API1'
        EXPORTING
          document_data                    = gs_docdata
         put_in_outbox                    = 'X'
         commit_work                      = 'X'
    * IMPORTING
    *   SENT_TO_ALL                      =
    *   NEW_OBJECT_ID                    =
        TABLES
          packing_list                     = gt_objpack
    *   OBJECT_HEADER                    =  I_OBJTXT
         contents_bin                     = gt_objbin
         contents_txt                     = i_objtxt
    *   CONTENTS_HEX                     =
    *   OBJECT_PARA                      =
    *   OBJECT_PARB                      =
          receivers                        = gt_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
    Edited by: Krupaji on Oct 27, 2010 11:31 AM

    Related FM SO_NEW_DOCUMENT_ATT_SEND_API1 you can check following example:
    clear : gs_docdata,gt_objbin. "
        refresh : gt_objbin . "
    *   gs_docdata-obj_name = 'ord_accept'.
        gs_docdata-obj_name = 'Invoice'.
        gs_docdata-expiry_dat = sy-datum + 10.
    *   gs_docdata-obj_descr = 'Your Invoice No : '.
        gs_docdata-obj_descr = detail1.
        gs_docdata-sensitivty = 'F'. "Functional object
        gs_docdata-doc_size = gv_desc_lines * 255.
        clear gs_objpack-transf_bin.
    * Start line of object header in transport packet
    *    GS_OBJPACK-TRANSF_BIN = 'X'.
        gs_objpack-doc_size = gv_desc_lines * 255.
        gs_objpack-head_start = 1.
        gs_objpack-head_num = 0.
        gs_objpack-body_start = 1.
        gs_objpack-body_num = gv_desc_lines.
        gs_objpack-doc_type = 'RAW'.
    *    GS_OBJPACK-OBJ_NAME = 'ORDER_ACCEPTANCE'.
    *    GS_OBJPACK-OBJ_DESCR = 'ORDER_ACCEPTANCE.PDF'.
        append gs_objpack to gt_objpack.
      endif.
    *• Passing the SAP Script text lines to SAPoffice: Single List with Column Length 255 table
      clear : gs_objbin, gs_pdf_tab.
    *&      Encrypted file
      filename = name.
      if name is initial.
        concatenate   'd:\pdf\' main_dtl-vbeln '.PDF' into name.
      filename = name.
    endif.
    data: pdf type ref to cl_hrasr00_pdf_generation.
      data : lt_data            type solix_tab.
      open dataset filename for input in binary mode.
      if sy-subrc eq 0.
        read dataset filename into filex.
      endif.
      if filex is not initial.
        call function 'SCMS_XSTRING_TO_BINARY'
          exporting
            buffer        = filex
          importing
            output_length = file_length
          tables
            binary_tab    = gt_objbin.
      endif.
      close dataset filename.
    describe table gt_objbin lines gv_tab_lines.
      clear gs_objbin.
      read table gt_objbin into gs_objbin index gv_tab_lines.
      if sy-subrc = 0.
        gs_objpack-doc_size = ( gv_tab_lines - 1 ) * 255 + strlen( gs_objbin ).
        gs_objpack-transf_bin = 'X'.
        gs_objpack-head_start = 1.
        gs_objpack-head_num = 0.
        gs_objpack-body_start = 1.
        gs_objpack-body_num = gv_tab_lines.
        gs_objpack-doc_type = 'PDF'.
        gs_objpack-obj_name = 'INVOICE'.
        gs_objpack-obj_descr = 'Invoice Order'.
        append gs_objpack to gt_objpack.
      endif.
    call function 'SO_NEW_DOCUMENT_ATT_SEND_API1'
        exporting
          document_data                    = gs_docdata
         put_in_outbox                    = 'X'
         commit_work                      = 'X'
    * IMPORTING
    *   SENT_TO_ALL                      =
    *   NEW_OBJECT_ID                    =
        tables
          packing_list                     = gt_objpack
    *   OBJECT_HEADER                    =  I_OBJTXT
         contents_bin                     = gt_objbin
         contents_txt                     = i_objtxt
    *   CONTENTS_HEX                     =
    *   OBJECT_PARA                      =
    *   OBJECT_PARB                      =
          receivers                        = gt_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 <> 0.
        message id sy-msgid type sy-msgty number sy-msgno
                with sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
      else.
        open dataset name for input in binary mode.
        if sy-subrc eq 0.
          delete dataset filename.
        endif.

  • I just reinstalled iTunes, and it will not open, as it says iTunes library itl. was created from an earlier version. Any idea what this means, and how I can get itunes to open?

    I just reinstalled iTunes, and it will not open, as it says iTunes library itl. was created from an earlier version. Any idea what this means, and how I can get itunes to open?

    Many thanks.
    That suggests that another application has stashed old QuickTime componentry in your system files.
    So just in case we'll go looking for older QuickTime componentry in the most common locations for it to be stashed.
    First we'll need to change some view settings.
    In your Start menu, open Computer.
    In your Organise menu, select Folder Options.
    In the View tab, make sure that "Show hidden files and folders" is selected, and Hide extensions for known file types is unchecked.
    Click OK.
    Now in Computer, open your C:\ drive (or whichever drive you have your operating system installed on).
    Open the "Windows" folder.
    If you have a 32-bit version of Windows, open the "System32" folder.
    If you have a 64-bit version of Windows, open the "SysWOW64" folder.
    What files and folders can you see in there with QuickTime in the title? (In a standard installation of Quicktime you should be seeing precisely two files... QuickTime.qts and QuickTimeVR.qtx ... and no QuickTime folders whatsoever.)

  • "Save As failed to process this document. No file was created." Error trying to convert pdf to word document

    Hi - I have a pdf created from indesign as a print quality pdf. The client now wanted to text in an editable format so they can reuse the content for a new years event.
    I get an error message "Save As failed to process this document. No file was created."
    Can anyone help out here?  There are a lot of graphics in it and it is horizontal - could any of this be an issue?
    Thanks
    Nikola

    Totally agree. Saving the pdf as a word file gives it the look of a word file, until corrections have to be made. The text flow will be, so to say, "strange". Reusing that file in Indesign ...
    We always save as rtf, send that one back and relink it afterwards (as long as the styles stay the same, only smaller corrections have to be made.

  • Set Adobe Acrobat XI Pro. When I want to save the file in WORD, EXCEL or esporta file into ... immediately throws an error "save as failed to process this document no file was created". What's the problem?

    Set Adobe Acrobat XI Pro. When I want to save the file in WORD, EXCEL or esporta file into ... immediately throws an error "save as failed to process this document no file was created".
    What's the problem?
    Any help in finding a solution is greatly appreciated.
    Thank you,

    Installed AcrobatXI PRO 11.0.09  on seven computers and laptops. Two of them gives an error when you try to save a document in WORD, EXCEL, Power Point, or when exporting to... error: Save failed to process this document. No File was created.
    But all good saves in the format of TXT and jpg.
    I have uninstalled and restored and re-installed and updated and registry cleaned and removed using the special utility Cleaner Tool for Acrobat, but nothing helps.
    On one notebook with Windows 8.1 and Microsoft office 2013, on another laptop with Windows 7 and Microsoft office 2010, the same problem, although there are computers with Windows 7 and Microsoft office 2010 and everything works.
    Tell me where to find the problem and how to solve it.
    Thank you.

  • Save as failed to process this document. No file was created.

    I've had Adobe Acrobat XI installed on my computer since November of 2013 and had never had any problems with the 'Save As' function - I could save all kinds of PDFs to Word, Excel, Power Point -- whichever format I needed -- until yesterday. Now I am suddenly getting "Save as failed to process this document. No file was created."
    I also have the exact same set up (Windows 8, 64, Adobe Acrobat XI) on my laptop and have no issues w/ the "Save As" feature. To make sure that it is just my desktop's Acrobat that is acting strange, I took the exact same document and was NOT ABLE to "Save As" on desktop -- and was, with no issues, able to "Save As" the exact same document to Word on my laptop.
    The ability to "Save As" is a feature that I use often -- so, please, tell me how I can get that feature back. I've already tried the "Repair" feature in Acrobat - no luck.

    Hi Bill,
    Yes - I did the upgrade - which I was avoiding because last time I upgraded, the font and icons within Adobe Acrobat became microscopic -- so I did a 'system restore' and turned off my updates. I have old eyes & work with Adobe Acrobat all day -- so the tiny print is horrible.
    So, now I can either NOT be able to see the fonts and have the ability to convert to Word/Excel, etc OR, I can revert and actually SEE the fonts - but not be able to convert the documents I need to convert. This sucks.
    Adobe Acrobat XI upgrade (11.0.06 and .07) has really been a disappointment. I've done all the little tricks about trying to fix the size of the fonts - but, just like most of what I've read, I can either have HUGE fonts/menus, etc or make it 'readable' by changing the registry - but then end up w/ horrible little icons.
    It's really sad to have to choose one or the other - I'm very disappointed in Adobe.
    Thanks for your input!!

  • I am facing issue when opening flash files in Flash CC. (error:- This file was created with a later release of Flash Professional and might contain new features that would be lost when saved in the current format.)

    I am facing issue when opening flash files in Flash CC. (error:- This file was created with a later release of Flash Professional and might contain new features that would be lost when saved in the current format.)

    Wow. Okay...
    I'll let the real veterans in this forum tackle your issues one after the other. But, I can tell you, all will be well.
    My only comment would be re: your computer specs:
    BJReis wrote:
    .  This may be due to somewhat older equipment:
    GHz Intel Core Duo MacBook Pro with a 4GB memory computer with Ddr3 running OSX 10.8.4
    To be completely honest, FCPX is a RAM hog. It just is. But, RAM is relatively cheap, and the pay-off is good.
    4GB is right on the edge, IMHO. 16G is ideal.
    I wish you luck, hang in there, and standby for more help.

  • When creating PDF I get message "This file was saved to the Temporary Internet  Files Folder"

    about 80% of the time when I am creating a PDF Document using the Print to Adobe function I get the following message:
    "For your computers security, this file was saved to the Temporary Internet Files folder"
    "Do you want to open this folder?"
    It doesn't matter if I say yes I want to open the folder or not I can never locate the file.
    I am using Vista Ultimate 32. for an operating system.
    I have the following programs installed too:
    Office 2007 Enterprise
    Office 2007 Project Professional
    Office Visio Professional 2007
    As a antivirus I am using Trend Micro Internet Security Pro 2008
    Diskeeper 2008 Pro
    Nero 8
    Quicken Home and Business 2008
    WinRar
    I am using Microsoft Internet explorer V 7.0.6001.18000
    Thank you for your help. I have looked everywhere and I'm lost.

    You can get the same results (as turning protected mode off) by:
    (presuming you have an icon for Internet Explorer on your desktop or taskbar) -- right click the icon and pick "Run as administrator"
    I've got the same problem printing to pdf (Acrobat v8; problem's only in IE7) on a Dell Optiplex/Vista Business desktop machine (though not my T61/Vista Ultimate Thinkpad laptop) and the above resolves the issue for my desktop machine. Certainly not a fix but perhaps a clue to Adobe developers, on the [slim?] chance they read these posts.

  • "This file was created by Oracle Reports. View this document in Page Layout mode" , how to avoid this text

    we print some RTF Files , we dont want to  print to paper  this text "This file was created by Oracle Reports. View this document in Page Layout mode"
    How to able do it.
    Tanks for reply.

    we print some RTF Files , we dont want to  print to paper  this text "This file was created by Oracle Reports. View this document in Page Layout mode"
    How to able do it.
    Tanks for reply.

  • This file was created with a newer version of Adobe After Effects

    I downloaded the trial version of Adobe After Effects last night and spent a lot of time learning how to use the product, created my first tracking face on a body in a video.
    This morning when I tried to open the project I got an error message: After Effects Error: this file was created using a newer version of After Effects [3.0 (unknown)] -- time to upgrade your application!
    What should I do?

    Sounds odd. If you created it in CS6 it should open just fine in that same version. chances are that the project fiel is simply damaged. Impossible to tell without actualyl seeing the file.
    Mylenium

  • No PDF file was created because Acrobat encountered an unidentified error.

    Product:
    Adobe Acrobat 8
    Windows XP SP3
    Problem:
    when user try to combine multiple PDF files into one file from network drives (hence that user have full permissions), received this error:
    "Error (file skipped)
    No PDF file was created because Acrobat encountered an unidentified error."
    Steps taken so far:
    - cleared windows temp files
    - cleared acrobat temp files
    - tried, same error
    - ran acrobat repair, tried it out, same error
    - made adjustments to "PDF Printer Properties per this article 
    http://www.experts-exchange.com/Web_Development/Document_Imaging/Adobe_Acrobat/Q_23903725. html
    - tried again, no luck.
    - removed adobe acrobat and reinstalled it completely from scratch.
    - ran updates
    - tried again, no luck.
    - granted the user full permission access to acrobat folder under program files, still same error
    - then, copied files that I need to convert locally to the system and tried to combine them, it worked!
    - its not permission issue as I tried the same from my domain admin account and received the error.
    - also the user reported that acrobat takes 15 o 20 sec each time opening a file
    Any ideas?!
    Thanks!

    If I change the properties to open as administrator, within the program I can combine pdfs over the network drive.
    .  I can't drag and drop or combine pdfs from windows explorer and everytime I open acrobat it asks if it can make changes.
    So it's still best to copy to c drive in order to use Combine and Portfolio features but would be really nice to use as designed.

  • Retrieve the date a file was created in the background

    EDITED CONTENT----
    Apologies all...I just realized there is a specific forum for this type of question.  I will post it there.
    Thanks Marilyn for point this out>>>>should have read it first as suggested. 
    /message/2572763#2572763 [original link is broken]
    Hi guru's,
    I have a custom application that does some windows directory cleaning based an older than 'X' days setting.  I have to do some calculation to determine if the file being processed is older than that number of day and delete it if it is.  To determine the file created date I use the method DIRECTORY_LIST_FILES from CL_GUI_FRONTEND_SERVICES.  This works great in the foreground but dumps in the background because the handle object reference is not created in the class constructor and subsequently does a call to a "NULL" object.
    My question:
    Does anyone know of a way to get the date a file was created while running in the background?  If not, please read on --- I have another question regarding an alternate approach I am trying.
    I have tried the following approach FM EPS_GET_DIRECTORY_LISTING to return an internal table with all files in a directory.  Works fine in the background, but the created date is not in the return values.  Soooooo I looped at the internal table and called this system function:
            CALL 'C_FILE_ATTRIBUTES'
                ID 'NAME'     FIELD tempfile
                ID 'TYPE'     FIELD singleFile-
                ID 'LEN'      FIELD file-len
                ID 'OWNER'    FIELD file-owner
                ID 'MTIME'    FIELD file-mtime
                ID 'MODE'     FIELD file-mode
                ID 'ERRNO'    FIELD file-errno
                ID 'ERRMSG'   FIELD file-errmsg.
    This returns the MTime, which is the Modified time (in Epoch time format: number of seconds since Midnight 1 January 1970), but no created time.  Does anyone know the ID for the created time?  I tried CTIME but no value is returned. 
    Along with this question: any idea if a FM or Method exists to convert Epoch time to a standard time.  I could do the calculation myself....but it seems someone would have already done this.  No point in re-creating the wheel.
    Thanks so much,
    Quack
    Message was edited by:
            Ryan Quackenboss

    I will be happy to.
    Please post something to this thread. 
    Retrieve the date a file was created in the background
    I UNMARKED this question as a post and reposted in the data transfer forum.
    That post is still open.  Once you post there, I will mark it ANSWERED and award points.
    Thanks for the help
    Quack

  • Run big report in PDF hangs though the PDF file was created in server

    When running Oracle reports6i big master-details-details report(220 pages) in PDF format thru report server CGI on Netscape Enterprise Web server, it hangs. But the pdf file was created when checking in the server and is good when it's viewed directly using IE. Also checked the http://domain_name:8083/cgi-bin/reportcgi/showjobs?server=repsrv, the Job Status was 'FINISHED'.
    The HTTP_error_Log in the server is:
    [17/Feb/2004:13:31:42] failure (28995): for host 63.237.37.70 trying to POST /cgi-bin/reportcgi, cgieng_scan_headers reports: the CGI program /usr/netscape/elecprod/cgi-bin/reportcgi did not produce a valid header (read failed, error is Resource temporarily unavailable).
    Please help as our users demand it urgently.
    Thanks a lot.

    1) This bug734197 is fixed in version 3.0.5.13.0, which means it should be available in 6i (the version you are using) also. But from the bug description I see that it is reproduced with Reports 6.0.5.28.0 version also. If your reports 6i version is higher than this, it may contain this fix. Best thing is to apply the latest patch. The patches should be available in metalink (metalink.oracle.com) .
    2) For troubleshooting purposes run the report in html/rtf and see whether it times out. ( just to see whether
    this is a PDF specific issue)
    3) Disable acrobat web integration (in Adobe acrobat settings) and try . This will prevent Acrobat reader from opening the pdf automatically and instead will show a dialog to save the pdf report ( There are some IE - Adobe issues which are not reports bugs).
    4) There were some threads some time back which had this problem with long running reports and PDF. Finally it turned out to be webserver timeout problems. Pls see ( this is for 9i servlet and Apache webserver, but for 6i also it could be similar)
    Re: Long running reports end successfully - present s "page can not be foun
    5) If these does not work and if you are not able to make further progress, I suggest you to get in touch with Oracle Support (if you have a support contract) to solve this issue. [ If the possibility is that the bug you are mentioning is not pushed forward to 6i (a remote chance) then only they will be able to a get a oneoff patch.]
    Thanks
    Ratheesh

Maybe you are looking for

  • External Processing with material Provided to Vendor

    Dear All, I have a problem in external processing of Maintenance Order. When i have created external processing operation. I have assigned one component for that external operation which i have to send to vendor. After saving the Maintenance order, s

  • GOA Distribution SRM 5.0-ECC 6.0 - Account Category & Multiple Distribution

    Hi everyboby, I'm trying to distribute a GOA, or better I have distributed a GOA to ECC, but I have a problem 2 problems: 1.) account category on the idoc BLAORD (inbound in ECC) is always <b>U</b> (Unknown). Instead I want that account category is b

  • Error: XDB requires a username ans password

    Hello there, I have installed Oracle xe 10g a few months ago on a Windows 2003 server. I use Oracle for storing some data that I use in my Asp.Net / C# webapplication. Everything worked fine until a few weeks ago.... On the Oracle server I opened int

  • Dual monitors in photoshop elements 11

    how can i use dual monitors in photoshop elements 11 in photoshop elements 9 i can simply drag the open file over to the other monitor

  • Passing Parameter Value  from Global link

    Hi All, I have one common Page. It will be accessed from many other Pages. So I added a link in Global button bar to access my common PG. While I click the link , I like to pass url of the current Page. I like to get suggestion for this.... Thanks