Excel from BDS to Desktop

Dear Experts,
i want save  a File from the Business Document Service to the local Desktop.
Have you a ABAP example
Greetings
Frank

REPORT  ZTESTPSP.
data:  COMPONENTS type table of  BAPICOMPON WITH HEADER LINE,
       SIGNATURE  type table of  BAPISIGNAT WITH HEADER LINE,
       CONNECTIONS  type table of  BAPICONNEC With header line.
data: lt_SIGNATURE type table of  BAPISIGNAT WITH HEADER LINE,
      lt_COMPONENTS type table of  BAPICOMPON WITH HEADER LINE,
      lt_CONTENT type table of  BAPICONTEN  WITH HEADER LINE,
      lt_ASCII_CONTENT type table of  BAPIASCONT  WITH HEADER LINE.
create pdf
DATA:
      content TYPE xstring.
file save
DATA:
      default_extension TYPE string VALUE 'PDF',
      filename TYPE string,
      path TYPE string,
      fullpath TYPE string.
xstring to binary
DATA:
      pdf_data_tab TYPE STANDARD TABLE OF x255.
DATA: lv_filename TYPE string.
DATA: lv_path     TYPE string.
DATA: lv_fullpath TYPE string.
DATA: lv_content  TYPE xstring.
DATA: lv_length   TYPE i.
DATA: lv_rc TYPE sy-subrc.
DATA: lt_file TYPE filetable.
DATA: ls_file LIKE LINE OF lt_file.
cl_gui_frontend_services=>file_open_dialog(
  CHANGING
    file_table              =  lt_file  " Table Holding Selected Files
    rc                      =  lv_rc  ). " Return Code, Number of Files or -1 If Error Occurred
READ TABLE lt_file INTO ls_file INDEX 1.
IF sy-subrc = 0.
  lv_filename = ls_file-filename.
ENDIF.
CALL FUNCTION 'BDS_DOCUMENT_GET_TABLE'
  EXPORTING
  CLIENT                = SY-MANDT
    DOC_ID                = 'BDS_LOC2  AB359E8A6553AE4586BE29E15A1F6D3F'
  BINARY_FLAG           = 'X'
  TABLES
    SIGNATURE             = lt_SIGNATURE
    COMPONENTS            = lt_COMPONENTS
   CONTENT               = lt_CONTENT
   ASCII_CONTENT         = lt_ASCII_CONTENT
EXCEPTIONS
   NOTHING_FOUND         = 1
   PARAMETER_ERROR       = 2
   NOT_ALLOWED           = 3
   ERROR_KPRO            = 4
   INTERNAL_ERROR        = 5
   NOT_AUTHORIZED        = 6
   OTHERS                = 7.
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 lt_CONTENT.
    CONCATENATE content lt_content-LINE into content in byte mode.
  endloop.
CALL FUNCTION 'SCMS_XSTRING_TO_BINARY'
  EXPORTING
    buffer     = CONTENT
  TABLES
    binary_tab = pdf_data_tab.
filename =  lv_filename.
cl_gui_frontend_services=>gui_download(
  EXPORTING
    filename = filename
    filetype = 'BIN'
  CHANGING
    data_tab = pdf_data_tab ).
cl_gui_frontend_services=>execute(
  EXPORTING
    document = filename ).

Similar Messages

  • Download image from se78 to desktop...

    Hi,
    can any one plz tell me hw to download image from se78 to desktop...
    Thanks & Regards
    Ashu Singh.

    Ashu,
    use this code:
    REPORT Z_DUMMY_ATG_3.
    DATA : L_BYTECOUNT TYPE I,
           L_TDBTYPE   LIKE STXBITMAPS-TDBTYPE,
           L_CONTENT   TYPE STANDARD TABLE OF BAPICONTEN INITIAL SIZE 0.
    DATA: GRAPHIC_SIZE TYPE I.
    DATA: BEGIN OF GRAPHIC_TABLE OCCURS 0,
    LINE(255) TYPE X,
    END OF GRAPHIC_TABLE.
    CALL FUNCTION 'SAPSCRIPT_GET_GRAPHIC_BDS'
      EXPORTING
        I_OBJECT       = 'GRAPHICS'
        I_NAME         = 'ZPRUEBA'
        I_ID           = 'BMAP'
        I_BTYPE        = 'BCOL'
      IMPORTING
        E_BYTECOUNT    = L_BYTECOUNT
      TABLES
        CONTENT        = L_CONTENT
      EXCEPTIONS
        NOT_FOUND      = 1
        BDS_GET_FAILED = 2
        BDS_NO_CONTENT = 3
        OTHERS         = 4.
    CALL FUNCTION 'SAPSCRIPT_CONVERT_BITMAP'
      EXPORTING
        OLD_FORMAT               = 'BDS'
        NEW_FORMAT               = 'BMP'
        BITMAP_FILE_BYTECOUNT_IN = L_BYTECOUNT
      IMPORTING
        BITMAP_FILE_BYTECOUNT    = GRAPHIC_SIZE
      TABLES
        BDS_BITMAP_FILE          = L_CONTENT
        BITMAP_FILE              = GRAPHIC_TABLE
      EXCEPTIONS
        OTHERS                   = 1.
    CALL FUNCTION 'WS_DOWNLOAD'
      EXPORTING
        BIN_FILESIZE            = GRAPHIC_SIZE
        FILENAME                = 'C:\FirmaAsociado.bmp'
        FILETYPE                = 'BIN'
      TABLES
        DATA_TAB                = GRAPHIC_TABLE
      EXCEPTIONS
        INVALID_FILESIZE        = 1
        INVALID_TABLE_WIDTH     = 2
        INVALID_TYPE            = 3
        NO_BATCH                = 4
        UNKNOWN_ERROR           = 5
        GUI_REFUSE_FILETRANSFER = 6.
    IF SY-SUBRC  0.
      MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
              WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    Change ZPRUEBA with the image you want to download and C:\FirmaAsociado.bmp with your own path and file -;)
    Amit.

  • Call excel from report6i

    Hi
    Is there anyway to call excell from Reports6i.if it is please tell me how
    Thnks
    Kamaraj

    Of course it can be done!!!!
    The way to do it is using OLE2 Built In Package.
    This is the way of call Word from Forms, but it also works for Report and Excel.
    HOW TO - Performing OLE on the client using WebUtil
    Introduction
    Many Forms applications utilize OLE to perform tight integration with the Windows desktop. However, when moving your Forms application to the Web, the calls to OLE are now running on the application server and not the client machine.
    Typically you need OLE to access the machine at which the user is sitting and integrate with the OLE services on the client. For example, loading data into an Excel worksheet and display for the user.
    WebUtil provides you the functionality to perform client side OLE integration from within the Forms Java applet.
    Set up
    For the steps to set up WebUtil, please refer to the WebUtil Familiarization Manual available as part of the software download.
    Changing code
    Consider the following code:
    DECLARE
    app OLE2.OBJ_TYPE;
    docs OLE2.OBJ_TYPE;
    doc OLE2.OBJ_TYPE;
    selection OLE2.OBJ_TYPE;
    args OLE2.LIST_TYPE;
    BEGIN
    -- create a new document
    app := OLE2.CREATE_OBJ('Word.Application');
    OLE2.SET_PROPERTY(app,'Visible',1);
    docs := OLE2.GET_OBJ_PROPERTY(app, 'Documents');
    doc := OLE2.INVOKE_OBJ(docs, 'add');
    selection := OLE2.GET_OBJ_PROPERTY(app, 'Selection');
    -- insert data into new document from long item
    OLE2.SET_PROPERTY(selection, 'Text', :long_item);
    -- save document as example.doc
    args := OLE2.CREATE_ARGLIST;
    OLE2.ADD_ARG(args, 'c:\temp\example.doc');
    OLE2.INVOKE(doc, 'SaveAs', args);
    OLE2.DESTROY_ARGLIST(args);
    -- close example.doc
    args := OLE2.CREATE_ARGLIST;
    OLE2.ADD_ARG(args, 0);
    OLE2.INVOKE(doc, 'Close', args);
    OLE2.DESTROY_ARGLIST(args);
    OLE2.RELEASE_OBJ(selection);
    OLE2.RELEASE_OBJ(doc);
    OLE2.RELEASE_OBJ(docs);
    -- exit MSWord
    OLE2.INVOKE(app,'Quit');
    END;
    This code opens a Word document to the user and inserts data from a Forms text field into that Word document before saving and closing the file. To perform the same functionality, but on the client side when deployed on the Web, attach the WebUtil object library and PL/SQL library, and replace any instance of OLE2 with CLIENT_OLE2.
    The resulting code will now work, as before, but write the file to the client machine.
    DECLARE
    app CLIENT_OLE2.OBJ_TYPE;
    docs CLIENT_OLE2.OBJ_TYPE;
    doc CLIENT_OLE2.OBJ_TYPE;
    selection CLIENT_OLE2.OBJ_TYPE;
    args CLIENT_OLE2.LIST_TYPE;
    BEGIN
    -- create a new document
    app := CLIENT_OLE2.CREATE_OBJ('Word.Application');
    CLIENT_OLE2.SET_PROPERTY(app,'Visible',1);
    docs := CLIENT_OLE2.GET_OBJ_PROPERTY(app, 'Documents');
    doc := CLIENT_OLE2.INVOKE_OBJ(docs, 'add');
    selection := CLIENT_OLE2.GET_OBJ_PROPERTY(app, 'Selection');
    -- insert data into new document from long item
    CLIENT_OLE2.SET_PROPERTY(selection, 'Text', :long_item);
    -- save document as example.doc
    args := CLIENT_OLE2.CREATE_ARGLIST;
    CLIENT_OLE2.ADD_ARG(args, 'c:\temp\example.doc');
    CLIENT_OLE2.INVOKE(doc, 'SaveAs', args);
    CLIENT_OLE2.DESTROY_ARGLIST(args);
    -- close example.doc
    args := CLIENT_OLE2.CREATE_ARGLIST;
    CLIENT_OLE2.ADD_ARG(args, 0);
    CLIENT_OLE2.INVOKE(doc, 'Close', args);
    CLIENT_OLE2.DESTROY_ARGLIST(args);
    CLIENT_OLE2.RELEASE_OBJ(selection);
    CLIENT_OLE2.RELEASE_OBJ(doc);
    CLIENT_OLE2.RELEASE_OBJ(docs);
    -- exit MSWord
    CLIENT_OLE2.INVOKE(app,'Quit');
    END;

  • Exporting to Excel from Aria People Search

    Is it possible to export to Excel from Aria People Search.
    I would like to output the Org Chart (built in) and the Tree (I created) to an Excel file.
    Does anyone know how to do this?
    Thanks,
    Tom

    Hi,
    If you are using 10g, then OLE2 is supported. However, it will be executed in the App Server Machine.
    If you want to do the operation in the Client machine (as how it was done in the Client / Server), you need to use Client_OLE (Which is part of WebUtil).
    Look at
    http://www.oracle.com/technology/products/forms/htdocs/webutil/webutil.htm
    for more details on WebUtil.
    HTH.
    Regards,
    Arun

  • How can I delete PDF files from my iMac desktop?

    How can I delete PDF files from my iMac desktop?

    Not on my system,When I try to dump if off in the trash it will not go. I get a message that says this file cannot be removed. I also tried going to File and clicking on Move to Trash. No dice.

  • Issues on exporting the report to Excel from full client BO 5.1

    Hi,
    I am facing a problem in exporting the BO report from Business Objects 5.1 to excel file. I am aware that there is no direct way to export the BO report to Excel from Business Objects(File--> save as to .txt file and then copy its data to excel )
    When the export the BO report to excel file,I received two errors one over other
    error1: Numeric data overflow (3349)
    When I click OK button, second error received is like this
    error2:export failed (dma0005)
    I tried all options to fix this and also I looked for an dialog box " export to external file format " in Business Objects inorder to copy the report data to COPY TO DDE option but I didn't find any aforementioned dialog box
    Please provide me the solution to fix the issues
    Kind Regards,
    Srinivas

    Hi Denis,
    Yes,all reports based on this particular universe have this problem
    Are you telling me to isolate the object from the universe that is creating problems and then run the report ?
    Also, I am unable to find the option from  menu items in Full client BO 5.1 to open the dialog box with name " export to external file format ". Can you please tell me where I can find this?
    Warm Regards,
    Srinivas

  • HP LaserJet M1132 MFP does not print from a remote desktop

    Hi,
    I have a HP LaserJet M1132 MFP (product number CE847A) connected to a PC (MS Windows XP Home Edition + SP3) via USB. There is no problem with the printer. However, when the connection using Remote Desktop (it's set to use local facilities and resources, or in my case, printers, and serial ports) to the server (MS Windows Server 2008 R2), I can not even print a test page from a remote desktop.
    Error message: "Print a test page failed. Do you want to display a tool to solve problems with printing to get help?"
    But it does not lead to nowhere, as expected is access to the internet, and I have not it from a MS Windows Server 2008 R2.
    The same error is for the HP LaserJet M1120n MFP.
    I have installed on my PC other printer - old OKI ML321 (needle) connected to a PC using LPT cable and network printer Konica Minolta 1690MF (in another room). In both of these printers can easily print a test page from a remote desktop.
    Please help me.
    This question was solved.
    View Solution.

    Thank you for your interest.
    The situation is a bit different than the picture. Windows Server 2008 R2 is available through the WAN. LAN is plugged into the PC-1, PC-2 and Konica Minolta printer. HP LaserJet M1120n MFP is connected via USB to the PC-1. OKI ML 3320 printer is connected via LPT also to the PC-1. PC-1 has access to Konica Minolta printer via the LAN. PC-2 also has access to Konica Minolta printer via the LAN. PC-2 is also available for PC-1 HP and OKI.
    It seems to me that I found the explanation for the printing problems - some of "my" printers are simply not compatible with Windows Server 2008 R2. I found on the net the following information:
    http://www.windowsservercatalog.com/item.aspx?idItem=cdde267a-800d-2d9f-1f0c-225cabd6838e&bCatID=128...
    http://www.windowsservercatalog.com/item.aspx?idItem=31df9819-ca52-4684-dc3b-8e31b70c77d7&bCatID=128...
    http://www.windowsservercatalog.com/item.aspx?idItem=6475235d-8dbb-9e95-11dc-3575d569acc2&bCatID=128...
    http://www.windowsservercatalog.com/item.aspx?idItem=59731747-9976-8d51-dcbb-7664cbc17a89&bCatID=128...
    I think I can close the topic.
    (translated from Polish into English using Google translator)

  • I had to reformat my hard drive on an older Desktop running Windowx XP. The IE browser is not working now. Is there a way I can download Firefox onto a flash drive from my new desktop and install it on my old desktop?

    I had to reformat the hard drive on my old desktop. It is runninf Windows XP. I can't get Internet Explorer to work so I can connect to the internet via wireless. Is there a way I can download firefox from my new desktop onto a flas drive and then install Firefox from the flash drive onto my old desktop? If so, please explain the procedure.

    Go to a suitable download page eg: [http://www.mozilla.com/en-US/firefox/all.html]
    Download firefox, use the save option rather than install.
    Save it directly to the flash drive, or to somewhere on your computer and copy/move it the flash drive.
    However if IE is not working possibly you have some sort of setup problem so firefox may not work either.

  • I just synced my iPhone and lost all the info in notes from my phone. It was replaced with whT was on my iMac how do you make the sync go from phone to desktop and not the other way around

    I Just synced my iPhone and lost all the info in notes I had on the phone. How do you have the info sync from phone to desktop and not the other way around as I usually make contact changes etc on my phone. I would then like to be able to sync that info from desktop to ipad thanks

    It does make sense.  The iPhone is a one-person device and just syncs to one computer.
    The way it should work is as follows:
    Old computer content ---> New computer
    New computer <---> syncs to iPhone
    But the way you are trying to operate sounds like:
    Old computer content ---> iPhone
    ... and ...
    New computer content <---> iPhone
    So simply move your old stuff (either directly from iTunes, or from a computer backup) to the new computer, have it all there, then sync your iPhone to the new machine.

  • How do you move your music library from a laptop to a desktop? I have moved my library from a laptop to another laptop but can't figure out how to move music from laptop to desktop. Anybody know? Thanks

    How do you transfer your music library from itunes on a laptop to a desktop? I have transfered from one laptop to another and from desktop to laptop but can't figure out how to go from LAPTOP TO DESKTOP> Thanks

    Hello, Sandralee59. 
    Thank you for the question.  The attached article below provides multiple options for moving your iTunes library to a new computer. 
    iTunes: How to move your music to a new computer
    http://support.apple.com/kb/ht4527
    Cheers,
    Jason H. 

  • How do i move itunes from my old desktop to new windows 7 laptop

    How do I move Itunes from my old desktop computer which runs Windows XP to my HP Laptop that runs Windows 7.

    1. On the old computer, connect an USB drive, go to the Music folder and copy iTunes folder to the USB drive.
    2. Connect your USB drive to the new computer and copy iTunes folder to the Music folder.
    3. Open iTunes and your library will show on your PC

  • How do I move photos from Ipad to desktop

    How do I move photos from Ipad to desktop to free space on Ipad?

    Use can use a cloud sync service like DropBox, you can use a WiFi transfer app (search the App Store - there are a number of them available) or you can connect the iPad to your computer and import the photos from the camera roll
    iOS: Importing personal photos and videos from ... - Support - Apple

  • In download to excel from bsp hw to increase excel column width to wrap txt

    in download to excel from bsp how to increase excel column width to wrap text
    in each column.
    My client does not want to manually click each cell aftet downloading to excel to see full text in each column

    Hi,
    You can achieve this by formatting your output using HTML table tag.
    Try the following code.
      DATA: lv_output  TYPE string.
      concatenate
      '<table border="1">'
      '<tr style="font-weight: bold; text-align:center; "><td>Name</td><td width="150">Description</td></tr>' cl_abap_char_utilities=>cr_lf
      '<tr><td>First Name</td><td>Some Description goes here..... ....... ...... </td></tr>' cl_abap_char_utilities=>cr_lf
      '<tr><td>2nd Name</td><td>XYZ.......</td></tr>' cl_abap_char_utilities=>cr_lf
      '</table>'
      into lv_output.
      response->set_cdata( data = lv_output ).
    Regards
    Geogy
    PS. Reward the useful answers.

  • Report in excel from java

    I'm generating report in Excel from Java.In this is it posssible to place background color upto the text in the single cell

    If you are using POI, you can set the background colour for a single cell.

  • Apps tab missing from Creative Cloud Desktop

    Hello and thanks in advance for any help you can provide.
    I'm running Creative Cloud on Mac OS 10.9.5. A couple days ago I updated several of the apps through the Creative Cloud Desktop app in the menu bar. The apps updated and they all seem to run fine, but now the Apps tab is missing altogether from the CC Desktop Window, and it's even missing from the CC Desktop preferences. (Please see the screenshots.) Also, when I click on the "Install Adobe Apps" button in the CC Desktop window, nothing happens.
    I've un-installed -> re-downloaded -> re-installed CC Desktop several times, along with trying some of the other troubleshooting suggestions I've found here on the Adobe site, such as:
    restarting the computer
    logging out of CC Desktop then back in again
    deleting the opm.db file
    deleting the CoreSync folder
    deleting the AdobeAAMDetect plugin
    Nothing seems to fix it. As I mentioned, the applications all seem to running fine, but I'd like to know that CC Desktop is functioning as intended and keeping me up to date. Any other suggestions?
    Thanks again...

    I had this issue. And went through to chat with customer support. I have my apps panel once again. Transcript is below if you want to follow what I did.
    Linci Mary: Hello. Welcome to Adobe Technical Support.
    Linci Mary: Hi Thomas
    Thomas Shambler: Hi there. My 'Apps' tab seems to have disapeared from Adobe CC desktop.
    Linci Mary: As I understand you are unable to access the Apps tab of the Creative cloud as it keeps spinning, Is that right?
    Thomas Shambler: On a windows machine. Have updated the app, re-installed, signed-out, signed in.
    Thomas Shambler: Nope. there is no 'Apps' option even there...
    Linci Mary: Thank you for confirming.
    Linci Mary: I will be glad to check and help you with this issue.
    Thomas Shambler: I put a screenshot up in one of the community forum.
    Thomas Shambler: https://forums.adobe.com/thread/1648803?sr=inbox
    Linci Mary: Okay
    Linci Mary: Thank you for the information
    Linci Mary: Lets try uninstalling and re-installing
    Linci Mary: Please navigate to C:\Program Files (x86)\Common files\Adobe
    Thomas Shambler: Done.
    Linci Mary: Let me know if you can see AAM Updater , OOBE folder, Adobe application manager folder 
    Thomas Shambler: Yup. See all of them.
    Linci Mary: Delete them
    Thomas Shambler: Says OOBE folder is in use. But CC is not open.
    Linci Mary: Open task manager
    Thomas Shambler: Open
    Thomas Shambler: Adobe IPC Broker, Adobe Reader and Acrobat Manager, and Adobe Update Service are the only tasks related to CC.
    Thomas Shambler: Ah. Ended those tasks. OOBE folder is now deleted.
    Linci Mary: End all the Adobe related processes
    Linci Mary: Okay
    Linci Mary: Perfect!
    Linci Mary: Now navigate to C:\Program Files (x86)\Adobe
    Linci Mary: Let me know if you can see Adobe Creative Cloud folder.
    Thomas Shambler: Nope. I do not see a CC folder.
    Linci Mary: Okay
    Linci Mary: Press windows key+ R to open run window
    Linci Mary: Type %localappdata% and hit enter.
    Thomas Shambler: It opened AppData > Local folder
    Linci Mary: Open the Adobe folder
    Linci Mary: Delete the AAM Updater , OOBE folder.
    Thomas Shambler: Deleted.
    Linci Mary: Okay
    Linci Mary: Please click on the below link to run the cleaner tool :
    Linci Mary: http://helpx.adobe.com/creative-suite/kb/cs5-cleaner-tool-installation-problems/_jcr_conte nt/main-pars/accordion_container_1/accordion-par/accordion-item-0/accordion-item-par/proce dure/proc_par/step_0/step_par/download/file.res/AdobeCreativeCloudCleanerTool.exe
    Thomas Shambler: Right. At the "Choose from one of the following options to clean up:" window.
    Thomas Shambler: 1. All, 2 Flash Player, etc.
    Linci Mary: 1.  Please type  E for english and then hit enter.
    Linci Mary: 2.  Please type  Y to confirm and then hit enter.
    Linci Mary: 3.  Please type  3 and then hit enter. (Creative Cloud and CS6)
    Linci Mary: 4.  Please type  1 and then hit enter. (Creative Cloud Desktop app /Adobe Application Manager)
    Thomas Shambler: "Adobe Creative Cloud Cleaner Tool completed successfully"
    Linci Mary: Okay
    info: Your chat transcript will be sent to [email protected] at the end of your chat.
    Linci Mary: Please click on the below link and re-install the creative cloud desktop app:
    Linci Mary:
    Linci Mary: https://creative.adobe.com/products/creative-cloud
    Thomas Shambler: "Initializing Installer"
    Linci Mary: Okay
    Linci Mary: Please let me know the status of installation for every two minutes.
    Thomas Shambler: "Downloading Creative Cloud desktop"
    Thomas Shambler: "Downloading Creative Cloud desktop"
    Linci Mary: Okay
    Thomas Shambler: 'We've encountered the following issues: Creative Cloud desktop failed to install. (Error code: 50)
    Thomas Shambler: Did not work.
    Linci Mary: This issue occurs due to conflicting process running in the background.
    Linci Mary: Please open task manager and check once
    Thomas Shambler: Only think that is open is "Adobe IPC Broker" and Adobe Update Service"
    Linci Mary: Open Task manager, select Show processes from all users.
    Linci Mary: Yes delete them
    Thomas Shambler: Adobe IPC Broker just popped up, after ending the task
    Thomas Shambler: ended task - it started up again
    Linci Mary: Okay .
    Linci Mary: Try installing CC desktop application.
    Thomas Shambler: Downloading.
    Thomas Shambler: Same error.
    Thomas Shambler: Adobe IPC Broker task seems to originate from this folder: C:\Program Files (x86)\Common Files\Adobe\OOBE\PDApp\IPC
    Linci Mary: Navigate to C:\Program Files (x86)\Adobe
    Linci Mary: Let me know if you can see Adobe Creative Cloud folder.
    Thomas Shambler: Yes. I do see it.
    Linci Mary: Delete it
    Thomas Shambler: It says the folder or a file in it is open in another program.
    Thomas Shambler: Only thing I can think of, is that whenever I end the "Adobe IPC Broker" app, it re-starts.
    Linci Mary: In this case I request you to restart the system and try
    Thomas Shambler: Nothing else is open.
    Thomas Shambler: Alright. Will restart.
    Linci Mary: Okay
    Linci Mary: Sure
    Linci Mary: I'll will keep this case as open if you have any further issues please contact us back.
    Linci Mary: Is there anything else I can help you with?
    Thomas Shambler: Ok. Let's see what happens.
    Thomas Shambler: Thanks for all your help. Hope this resolves the issue.
    Linci Mary: Thank you
    Linci Mary: I certainly appreciate your patience in this process.
    Linci Mary: Thank you for contacting Adobe. Good Bye.

Maybe you are looking for