The columns are missed in Backgroup job in report program

Hi experts,
    I have a report program and I  display it by WRITE statement. The total length of the report is about 550, and I set the line-size to 600. When I run it by backgroup job, it can not display the row completedly, the last  10 columns are missed. Do any one know what happpen and how I fixed it? Thanks in advance.
Best Regards
Joe

Hi Kiran,
I had completed the program and now I am showing you my solution in brief.
I hvae two programs to meet the solution. First is ZSDR0087 and next is ZSDR0087_RAW_PROGRAM. The former program is just for the purpose of calliing latter program, and latter program is for handling the program logic. The transaction code link to ZSDR0087 They are using a same selection screen.
Below is the cods of selection screen
SELECTION-SCREEN BEGIN OF BLOCK sel1 WITH FRAME TITLE text-001.
PARAMETERS: p_hbad TYPE /bluesky/cshbad-hbad OBLIGATORY MEMORY ID hba."#EC EXISTS
SELECT-OPTIONS: s_airli FOR /bluesky/mdairlz-airline MODIF ID m4,
                s_altp FOR /bluesky/mdairlz-altp MODIF ID m4,
                s_kunnr FOR knvv-kunnr MODIF ID m4,
                s_prsdt FOR /bluesky/fecpost-prsdt MODIF ID m4,
*                s_atdat FOR /bluesky/fearde-atdat OBLIGATORY,
                s_actyp FOR /bluesky/mdacrt-actyp MODIF ID m4,
                s_mtmcat FOR /bluesky/mdacrt-mtomcat MODIF ID m4,
                s_regid FOR /bluesky/mdreg-regid MODIF ID m4,
                s_fenum FOR /bluesky/fehdr-fenum MODIF ID m4.
PARAMETERS: p_en_ex TYPE c AS LISTBOX VISIBLE LENGTH 10 MODIF ID m4.
SELECTION-SCREEN END OF BLOCK sel1.
SELECTION-SCREEN BEGIN OF BLOCK run WITH FRAME TITLE text-003.
PARAMETERS: p_imm RADIOBUTTON GROUP grp1 DEFAULT 'X' USER-COMMAND comm."Run the program immdiately and show report at frontend
PARAMETERS: p_batch RADIOBUTTON GROUP grp1, "Run in backgroup job, the result will be saved at application server as .txt file
            p_file  TYPE g_type_file LOWER CASE MODIF ID m1. ".txt File name which will be saved in application server
PARAMETERS: p_ser RADIOBUTTON GROUP grp1. "Read the data from .txt file in application server
SELECTION-SCREEN BEGIN OF LINE.
SELECTION-SCREEN COMMENT 1(14) text-004 FOR FIELD p_txt MODIF ID m2.
PARAMETERS: p_txt  TYPE g_type_file LOWER CASE MODIF ID m2."Source .txt file in application server
SELECTION-SCREEN COMMENT 50(14) text-005 FOR FIELD p_del MODIF ID m2.
PARAMETERS: p_del AS CHECKBOX MODIF ID m2. "The .txt file will be deleted once the report is generated
SELECTION-SCREEN END OF LINE.
SELECTION-SCREEN END OF BLOCK run.
SELECTION-SCREEN BEGIN OF BLOCK sel2 WITH FRAME TITLE text-002.
PARAMETERS: p_xls AS CHECKBOX DEFAULT '' MODIF ID m3."Generate the excel file in frontend
SELECTION-SCREEN END OF BLOCK sel2.
Main Code in ZSDR0083
REPORT  zsdr0087 MESSAGE-ID zbluesky_program LINE-SIZE 530 NO STANDARD PAGE HEADING."#EC *
INCLUDE zsdr0087_top.
INCLUDE zsdr0087_common_blk.
INCLUDE zsdr0087_frm.
START-OF-SELECTION.
  PERFORM handle_report.
FORM handle_report .
  IF p_imm = 'X' OR p_ser = 'X'.
    PERFORM run_program_without_batch.
  ELSEIF p_batch = 'X'.
    PERFORM submit_to_batch.
  ENDIF.
ENDFORM.                    " handle_report
FORM run_program_without_batch .
  DATA: lv_answer TYPE c.
  IF p_ser = 'X' AND p_txt IS INITIAL.
    MESSAGE s029.
    EXIT.
  ENDIF.
  IF p_ser = 'X' AND p_del = 'X' AND p_xls = ''.
    PERFORM popup_to_confirm USING 'Delete file in server' "titlebar
                                   'The file in server will be deleted, are you going to save the data in Excel file?' "question
                                   'SAVE IN EXCEL'"the text in first button
                                   'ICON_XLS' "the icon for first button
                                   'Not Save'
                                   'ICON_WARNING'"the icon for second button
                                   '1'"default button
                                   'X'"display cancel button
                            CHANGING lv_answer.
    CASE lv_answer.
      WHEN '1'.
        p_xls = 'X'.
      WHEN '2'.
        p_xls = ''.
      WHEN 'A'.
        MESSAGE s032.
        EXIT.
    ENDCASE.
  ENDIF.
  SUBMIT zsdr0087_raw_program WITH p_hbad = p_hbad
                              WITH s_airli IN s_airli
                              WITH s_altp IN s_altp
                              WITH s_kunnr IN s_kunnr
                              WITH s_prsdt IN s_prsdt
                              WITH s_actyp IN s_actyp
                              WITH s_mtmcat IN s_mtmcat
                              WITH s_regid IN s_regid
                              WITH p_en_ex = p_en_ex
                              WITH p_imm = p_imm
                              WITH p_batch = p_batch
                              WITH p_file = p_file
                              WITH p_ser = p_ser
                              WITH p_txt = p_txt
                              WITH p_del = p_del
                              WITH p_xls = p_xls
                              AND RETURN.
ENDFORM.                    " run_program_without_batch
FORM submit_to_batch .
  DATA: lv_job_name TYPE tbtcjob-jobname,
        lv_job_number TYPE tbtcjob-jobcount.
  lv_job_name = p_file.
  TRANSLATE lv_job_name TO UPPER CASE.
  CALL FUNCTION 'JOB_OPEN'
    EXPORTING
      jobname          = lv_job_name
    IMPORTING
      jobcount         = lv_job_number
    EXCEPTIONS
      cant_create_job  = 1
      invalid_job_data = 2
      jobname_missing  = 3
      OTHERS           = 4.
  IF sy-subrc <> 0.
    MESSAGE e022.
  ENDIF.
  SUBMIT zsdr0087_raw_program WITH p_hbad = p_hbad
                              WITH s_airli IN s_airli
                              WITH s_altp IN s_altp
                              WITH s_kunnr IN s_kunnr
                              WITH s_prsdt IN s_prsdt
                              WITH s_actyp IN s_actyp
                              WITH s_mtmcat IN s_mtmcat
                              WITH s_regid IN s_regid
                              WITH p_en_ex = p_en_ex
                              WITH p_imm = p_imm
                              WITH p_batch = p_batch
                              WITH p_file = p_file
                              WITH p_ser = p_ser
                              WITH p_txt = p_txt
                              WITH p_xls = p_xls
                              VIA JOB lv_job_name NUMBER lv_job_number
                              AND RETURN.
  IF sy-subrc NE 0.
    MESSAGE e023 WITH 'zsdr0087_raw_program'..
  ENDIF.
  CALL FUNCTION 'JOB_CLOSE'
    EXPORTING
      jobcount             = lv_job_number
      jobname              = lv_job_name
      strtimmed            = 'X'
    EXCEPTIONS
      cant_start_immediate = 1
      invalid_startdate    = 2
      jobname_missing      = 3
      job_close_failed     = 4
      job_nosteps          = 5
      job_notex            = 6
      lock_failed          = 7
      OTHERS               = 8.
  IF sy-subrc NE 0.
    MESSAGE e025.
  ELSE.
    MESSAGE s026.
  ENDIF.
ENDFORM.                    " submit_to_batch
:OK, Below is main code in program ZSDR0087_RAW_PROGRAM
REPORT  zsdr0087 MESSAGE-ID zbluesky_program LINE-SIZE 530 NO STANDARD PAGE HEADING."#EC *
INCLUDE zsdr0087_top.
INCLUDE zsdr0087_common_blk.
INCLUDE zsdr0087_frm.
START-OF-SELECTION.
  IF sy-tcode EQ 'SE38' OR sy-tcode EQ 'SA38'.
    MESSAGE s035.
    EXIT.
  ENDIF.
  CREATE OBJECT go_bluesky_program
    EXPORTING
      i_home_base = p_hbad.
  IF p_imm = 'X' OR p_batch = 'X'.
********  Get data from database
    PERFORM get_data_from_db.
    IF p_batch = 'X'.
*******Save the data the server as .txt file, it will run at backgroup Job
      PERFORM save_data_to_server USING <gt_output>
                                        p_hbad
                                        gv_run_time
                                        gv_run_date
                                        sy-uname
                                        gv_top_folder
                                        p_file
                                        go_bluesky_program->gt_fieldcat_lvc.
      EXIT.
    ENDIF.
  ELSE.
******** Get data from server
    PERFORM get_data_from_server.
  ENDIF.
  IF <gt_output> IS ASSIGNED AND <gt_output> IS NOT INITIAL.
    IF p_xls = 'X' AND p_batch = ''.
      PERFORM output_excel.
    ENDIF.
    PERFORM display_report.
  ELSE.
    MESSAGE s004(zbluesky_program).
  ENDIF.
If parameter p_batch is check, The subroutine save_data_to_server will save the internal table data as .txt file at server.This is run in backgroup.Please set your focus on the function module C13Z_TEXT_WRITE
FORM save_data_to_server USING ut_internal_table TYPE STANDARD TABLE
                               u_home_base
                               u_run_time TYPE syuzeit
                               u_run_date TYPE sydatum
                               u_user TYPE syuname
                               u_top_folder TYPE rsmrgstr-path
                               u_filename   TYPE g_type_file
                               ut_fieldcat_lvc   TYPE lvc_t_fcat.
  FIELD-SYMBOLS: <lt_table_dataset> TYPE STANDARD TABLE.
  DATA: lv_table_ref TYPE REF TO data.
  DATA: lv_filename TYPE rcgiedial-iefile.
  DATA: lv_file_pattern TYPE rsmrgstr-name.
  CALL METHOD go_bluesky_program->convert_data_to_dataset_format
    EXPORTING
      it_internal_table = ut_internal_table
      it_fieldcat_lvc   = ut_fieldcat_lvc
    IMPORTING
      et_table_ref      = lv_table_ref.
  ASSIGN lv_table_ref->* TO <lt_table_dataset>.
*******Create file name
  PERFORM get_filename USING
             u_home_base
              u_user
              u_run_date
              u_run_time
              u_filename
    CHANGING lv_filename
             lv_file_pattern.
******Check filename again
  PERFORM check_filename_if_duplicate
              USING
                 lv_filename
                 u_top_folder
                 lv_file_pattern.
******Create dataset path
  CONCATENATE u_top_folder lv_filename INTO lv_filename.
  CALL FUNCTION 'C13Z_TEXT_WRITE'
    EXPORTING
      i_file         = lv_filename
    TABLES
      i_textdata_tab = <lt_table_dataset>
    EXCEPTIONS
      no_permission  = 1
      open_failed    = 2
      ap_file_exists = 3
      OTHERS         = 4.
  IF sy-subrc <> 0.
    MESSAGE e021.
  ENDIF.
ENDFORM.                    " save_data_to_server
If parameter p_ser is check, The subroutine get_data_from_server will read the data from .txt file in server and put it into internal table. Please focus on the DO looping in the subroutine.It is the codes for reading data from .txt file into internal table.
FORM get_data_from_server .
  FIELD-SYMBOLS: <lt_table_dataset> TYPE STANDARD TABLE,
                 <ls_line_dataset> TYPE ANY,
                 <field_runtime> TYPE ANY,
                 <field_dataset> TYPE ANY.
  DATA: lv_table_ref TYPE REF TO data,
        lv_line_ref TYPE REF TO data.
  DATA: lv_file TYPE string.
  DATA: ls_file_record TYPE rsfillst.
  DATA: ls_fieldcat_lvc TYPE lvc_s_fcat.
  PERFORM build_output_table.
******Get the dataset format(all the fiels are CHAR type)
  CALL METHOD go_bluesky_program->convert_data_to_dataset_format
    EXPORTING
      it_internal_table = <gt_output>
      it_fieldcat_lvc   = go_bluesky_program->gt_fieldcat_lvc
    IMPORTING
      et_table_ref      = lv_table_ref.
  ASSIGN lv_table_ref->* TO <lt_table_dataset>.
  CREATE DATA lv_line_ref LIKE LINE OF <lt_table_dataset>.
  ASSIGN lv_line_ref->* TO <ls_line_dataset>.
  PERFORM get_file_record
              USING
                 sy-mandt
                 sy-uname
                 p_hbad
                 gv_top_folder
              CHANGING
                 ls_file_record.
  CONCATENATE ls_file_record-dirname ls_file_record-name INTO lv_file.
  OPEN DATASET lv_file FOR INPUT IN TEXT MODE ENCODING DEFAULT.
  IF sy-subrc NE 0.
    MESSAGE e030 WITH p_txt.
  ENDIF.
  DO.
    READ DATASET lv_file INTO <ls_line_dataset>.
    IF sy-subrc EQ 0.
      IF <ls_line_dataset> IS NOT INITIAL.
        APPEND <ls_line_dataset> TO <lt_table_dataset>.
        CLEAR <ls_line_dataset>.
      ENDIF.
    ELSE.
      EXIT.
    ENDIF.
  ENDDO.
  CLOSE DATASET lv_file.
  IF p_del = 'X'.
    DELETE DATASET lv_file.
  ENDIF.
*  break chengr.
  LOOP AT <lt_table_dataset> ASSIGNING <ls_line_dataset>.
    LOOP AT go_bluesky_program->gt_fieldcat_lvc INTO ls_fieldcat_lvc.
      ASSIGN COMPONENT ls_fieldcat_lvc-fieldname
                         OF STRUCTURE <ls_line_dataset> TO <field_dataset>.
      ASSIGN COMPONENT ls_fieldcat_lvc-fieldname
                         OF STRUCTURE <gs_output> TO <field_runtime>.
      <field_runtime> = <field_dataset>.
    ENDLOOP.
    APPEND <gs_output> TO <gt_output>.
  ENDLOOP.
At last, I think you understand how to display it in ALV .

Similar Messages

  • Yahoo! Mail no longer loads emails and the ads are missing after having cleared Firefox's cookies, history, and cache.

    Ironically, I made this support account just to ask this question and had to go to IE to verify.
    Anyway, Yahoo! Mail use to work almost flawlessly before a couple days ago. Basically, the page loads like normal when I have a good connection except that the ads on the sides are missing, my profile picture is gone, the "fancy" rounded edges of the buttons are nonexistent, none of the menus work or open anything, and all of the links are useless. I have been searching for solutions for two hours now and none of them are relevant or useful:
    - Clear cookies = when I cleared cookies, cache and history is when the problem first started;
    - Disable Ghostery = I just learned about it today and so never installed it, but I also checked to make sure it wasn't there somehow;
    - Start in Safe Mode = the problem is still there and the only change was that it loaded the page faster;
    - Disable AVG = I can't because I can't find it anywhere...;
    - Disable Security/Change Permissions? = I think this was a suggested solution, but it already allows Yahoo! Mail to load images and set cookies while blocking pop-ups, location sharing, and installing themes/extensions;
    - Update Firefox = No. I like my old version. I keep hearing weird and annoying things about updated versions of Firefox, and I'm not going to risk losing everything else just to get Yahoo! Mail back
    I started using Firefox (3.6.12) because IE was slow, but ever since I tried clearing the cache, cookies and history Firefox has been going slower. Oddly enough, all of my browsing history was not deleted because certain web pages (that I haven't accessed in ages) show up in the address bar when I go to type. Gmail works in Firefox despite saying my browser isn't supported, but Yahoo! never bothers me about my browsers and now its acting strange.
    By the way, I don't know if this has anything to do with it, but right before Yahoo! Mail took the usability train off a cliff, it reloaded (because clearing the cookies logged me out), then told me the internet connection was slow and that I can switch to Basic for better results. I decided to stick with Classic and then it "crashed".
    Anyone help with this would be appreciated. One of the reasons I switched to FF is because Yahoo! Mail was faster on it, and I'd hate to have to go back to IE...
    Thanks in advance!

    As it turns out, many others have been having similar issues on other browsers. It seems that maybe Yahoo! is taking a much longer time to load or something like that. Either way, its been working on and off all week, and the same issue even showed up yesterday with IE 8 instead of FF. It still loads faster than IE 8, but again is spotty. Some people think the issue may be with mail.yimg.com or s.yimg.com, which I could see was the loading url in the left corner whenever Yahoo! Mail was refusing to work. A couple of people said blocking it caused the issue. Alternatively, some people suggested blocking it to solve the problem. Does anyone have any information on that? Again, I have no add-ons that would be blocking any urls, and my firewall hasn't any records of it. I really don't want to do anything to mess up my browsers more than they may have already been. Thanks for all of your help so far!

  • I tried to open Photoshop Elements 11. I got a message that components of the application are missing and that I needed to reinstall Photoshop Elements. I purchased the software by downloading it from Adobe so how can I reinstall it?

    I tried to open Photoshop Elements 11. I got a message that components of the application are missing and that I needed to reinstall Photoshop Elements. I purchased the software by downloading it from Adobe so how can I reinstall it?

    Are you launching Pages from an icon in your Dock? Installing the update does not change the Dock icons & it does not remove the older versions. Go to your Applications folder & launch the new Pages from there.

  • Using Adobe Export PDF, I converted a PDF document into MS Word. However, all the images are missing

    Using Adobe Export PDF, I converted a PDF document into MS Word. However, all the images are missing--replaced by black rectangles. How can I fix this? Thanks for any assistance.

    Hi Ravinder,
    As I mentioned in my email to you, I wasn't able to reproduce the behavior your described.  The images appear properly.
    Please let me know if you have any questions.
    -David

  • I loaded a lot of music from my CDs on to my iMac at home.  All my music is stored on the cloud.  So why is the music on my MacBook Pro different.  The CDs are missing from this list.

    I loaded a lot of music from my CDs on to my iMac at home.  All my music is stored on the cloud.  So why is the music on my MacBook Pro different.  The CDs are missing from this list. The iTunes account details I use on both computers is the same.

    Hi Chris,
    Thanks for the reply.
    I think you ave sorted my problem with your question.  I thought that as my iTunes account was on their server (Cloud) and I had previously added CDs which showed up, that all my music was "on the cloud".  I used to use Match but when I turned it off lost all my music that I had previously loaded onto my computer.
    So I guess I have to use the cloud again to access my songs.  This is frustrating as I fly a lot and can not use the music (Cloud based) when the phone is in flight mode as there is no internet.
    So how then do I retrieve all my music to my iMac and have my laptop synced so they are the same?
    I am totally confused now.

  • I have set up folders to file my emails on iCloud but notice that some of the emails are missing. Can anyone tell me where they are and how to get them back.

    I have set up folders on iCloud to file my mail but notice that some of the emails are missing when I've transferred them. Can anyone tell me where they are and how to get them back please?

    This can be a problem with the file places.sqlite that stores the bookmarks and the history.
    * http://kb.mozillazine.org/Bookmarks_history_and_toolbar_buttons_not_working_-_Firefox

  • Can I extract low quality links from a indd which the links are missing?

    Can I extract low quality links from a indd which the links are missing?
    That's it...
    I've an old file without it's links folder, I was wondering If there was any way to extract low quality images from it to relink them.

    @Bernardo – you could export the graphic frame that holds the low res preview to e.g. PNG.
    But I would *NOT* re-link them! Place them anew in case someone has geometrically transformed (cropped, rotated, skewed, mirrored) the original ones. Keep in mind that by exporting graphic frames to PNG, fill and stroke properties together with applied effects are exported as well.
    Uwe

  • How to identify what are all the events are created in background jobs?

    Hi all,
    how to identify what are all the events are created for  background jobs. And what events gets triggered for a particular job.
    thanxs
    haritha

    Hi Haritha,
    JOB is a program which starts to a determined point of time and executes some standard programs in the system. JOBs can be planed to a determined point of time on the regular basis (every night, for example) or to some discret time moments. So, the JOB can be planed and then will be started automatically without the manual start.
    Realtime programs are understood in the most cases as actual program execution which is started by somebody to the actual moment of time.
    Typically per JOBs some special processes will be started that should be executed automatically and regularly: for example, IDOC application, some correction reports, statistic updates etc.
    Standard jobs are those background jobs that should be run regularly in a production SAP System These jobs are usually jobs that clean up parts of the system, such as by deleting old spool requests.
    Use
    As of Release 4.6C, the Job Definition transaction ( sm36 ) provides a list of important standard jobs, which you can schedule, monitor, and edit.
    Standard jobs are those background jobs that should be run regularly in a production SAP System. These jobs are usually jobs that clean up parts of the system, such as by deleting old spool requests.
    for more information you can go thru the following thread:
    http://help.sap.com/saphelp_nw70/helpdata/en/24/b884388b81ea55e10000009b38f842/frameset.htm
    About Events:
    Events have meaning only in the background processing system. You can use events only to start background jobs.
    Triggering an event notifies the background processing system that a named condition has been reached. The background processing system reacts by starting any jobs that were waiting for the event.
    Types of Events:
    There are two types of events:
    1.)System events are defined by SAP. These events are triggered automatically when such system changes as the activation of a new operation mode take place.
    2.)User events are events that you define yourself. You must trigger these events yourself from ABAP or from external programs. You could, for example, signal the arrival of external data to be read into the SAP system by using an external program to trigger a background processing event.The event scheduler processes an event if the event is defined in the system.
    For example, if a system (System 1) receives an event from another system (System 2), the event scheduler of System 1 processes the event only if it is defined in System 1. That event does not need to be defined in System 2 (the sending system).
    You define an event by assigning a name (EVENTID) to it. When defining an event, you do not define the event arguments.
    for more information you can go thru the following thread:
    http://help.sap.com/saphelp_nw04s/helpdata/en/fa/096e2a543b11d1898e0000e8322d00/frameset.htm
    When you schedule the process chain or infopackages the jobs associated with it run in the background mode. In case you want to create a job for a specific activity you can do so in SM36. You would be creating jobs that would get executed in any one of the options:
    1. Immediate
    2. Date & Time
    3. After event.
    4. After job.
    5. At Operation mode.
    In case you want to view the job logs go to sm37.
    Also Pls check DB02 for database performance and ST03 for workload .
    Analyse u will have an idea ,
    *pls assign points,if info is useful**
    Regards
    CSM reddy
    null

  • Conversion from .pdf to .docx: I have converted a text in Slovenian in .pdf, but all the accents are missing in the converted .docx. version

    Conversion from .pdf to .docx:
    I have converted a text in Slovenian in .pdf, but all the accents are missing in the converted .docx. version.
    Does Adobe have a converter for texts with European-language accents, or shall I cancel my subscription?

    Subscription for what: ExportPDF or Acrobat?
    [topic moved to Acrobat.com Services forum]

  • When I export an indesign document the graphics are missing from the eps file.

    When I export an indesign document the graphics are missing from the eps file.

    The why it isn't working can be a number of reasons. While I never have exported an EPS out of ID before, I just tried it and it worked fine.
    What "graphics" are missing? I used bitmaps, native drawn ID vector, lines and a placed EPS file. Came into AI as an opened EPS fine.
    Links up to date? For items not hitting the EPS, are they on a layer set to non-printing?
    In the export dialog,General tab, PostScript Level 3? Data format set to ASCII? On the Advanced tab, Send Data set to All? OPI off?

  • TS1292 The itune car I have has a bar code and numbers underneath, however some of the numbers are missing is there anyway I can use this card

    The itune card I have has a bar code and numbers underneath, however some of the numbers are missing is there anyway I can use this card?

    Hi,
    Here is a Support Article that will help:
    http://support.apple.com/kb/HT6021
    Cheers,
    GB

  • I am using Adobe Photshop Elements 11, I just transferred all of my data from an old computer to a new computer, all my pictures and documents transferred fine but, my albums are missing and the date and time that is usually under the picture are missing.

    I am using Adobe Photoshop Elements 11, I just transferred all of my data from an old computer to a new computer, all my pictures and documents transferred fine but, my albums are missing and the date and time that is usually under the picture are missing.. How do I get them back?

    Hi,
    Which operating system are you running on?
    The date & Time can be displayed by going to the View menu and checking Details - also File Names if you want them displayed.
    The Album information is saved within the catalog so it sounds as though you didn't do a catalog backup on the old computer and a catalog restore on the new computer which is the recommended way of transferring elements data. Did you just copy the photos over?
    Brian

  • Half of the filters are missing CS4

    Half of the filters are missing on reinstall of CS4 64 bit. If I switch over to 32 bit the High Pass filter is missing.
    Vista Ultimate 64bit
    Any help to revover these filters would be appreciated.

    Before you go through all that try resetting your preferences as described in the FAQ.
    http://forums.adobe.com/thread/375776?tstart=0
    You either have to physically delete (or rename) the preference files or, if using the Alt, Ctrl, and Shift method, be sure that you get a confirmation dialog.
    This resets all settings in Photoshop to factory defaults. 
    A complete uninstall/re-install will not affect the preferences and a corrupt file there may be causing the problem.

  • ITunes could not be installed because some of the files are missing, please

    I just bought an Iphone and when I went to install the latest version of itunes i get the message "iTunes could not be installed because some of the files are missing, please reistall iTunes" during the installation. I have tried every recommended solution I could find on the apple website. Does anyone know of a solution to this problem??

    A number of people seem to have had this problem, see this thread:
    http://discussions.apple.com/thread.jspa?threadID=1221432&tstart=0
    In the thread you will find a post from Royb of Apple inviting people to send in installer logs. It might be an idea to take advantage of that.

  • When I updated the new version and used icloud, some of the apps are missing, how can I find those apps(but i was not using my account to download some apps before). Please advise.

    When I updated the new version IOS5 and used icloud, some of the apps are missing, how can i find those apps (but i was not using my account to download some apps before).  Please advise.

    They are free to iOS 7 users who have activated their NEW device on Sept 1 2013 or after. They are NOT automatically free with iOS 7.
    AirDrop is only compatible with iPad 4th gen and iPad mini. iPad 3rd gen and below do contain the necessary hardware for AirDrop. Also, AirDrop is only compatible between iOS devices. You cannot AirDrop between iOS device and Mac OS.

Maybe you are looking for

  • Issue in header display for reuse_alv_grid_display

    Hi All, I have a requirement to place the items as  shown below . Date:      29.03.2011                                     XXX text                                         System:  xxxx new text:   ZRV_XXX                                            

  • JS CS3 Annotations

    I found a site called PS-Scripts that had some functions for creating and adding text into annotations. I had no issues with the creation part but when I tried to add text (string) to the annotation it kept giving me a "Could not complete the command

  • Do I need Quicktime?

    I have iMovie HD 6. Is there any reason I should upgrade to QuickTime Pro?

  • Is close() blocking in nonblocking SocketChannel?

    Hi I'm writing a socket server based on the NIO package. I saw in several NIO code samples that the SocketChannel close() method is invoked inside the NIO select loop, which should only contain nonblocking calls. However, I couldn't find any document

  • Hierarchial Input Parameters

    Hi All, I have created a Crystal report with SAP BW Database. On executing the SAP BW Query in the BEx Analyser, I find the input parameters to be displayed in hierarchial format.  When I use that query in the Crystal Report, I get only few of  those