Image Missing In PDF Converted from SapScript

Hi Experts,
I was supposed to convert SapScript into PDF for sending as an attachment with mail.
When I am doing that the image (client's logo) in SapScript is not present in PDF file.
Strange scenario here is that when I am downloading that same file to my hard disk then it is absolutely fine.
I have used FM 'CONVERT_OTF_2_PDF' to get PDF table. Then I compressed the PDF table data using the follwoing code snippet:
LOOP AT lt_pdftab INTO wa_pdftab.
TRANSLATE wa_pdftab USING ' ~'.
CONCATENATE wa_buffer wa_pdftab INTO wa_buffer.
CLEAR wa_pdftab.
ENDLOOP.
TRANSLATE wa_buffer USING '~ '.
DO.
wa_record = wa_buffer.
APPEND wa_record TO lt_record.
CLEAR wa_record.
SHIFT wa_buffer LEFT BY 255 PLACES.
IF wa_buffer IS INITIAL.
EXIT.
ENDIF.
ENDDO.
I think in this above process only some thing is going wrong because when I am downloading PDF file using GUI_DOWNLOAD then I am passing directly internal table lt_pdftab & not lt_record. But on exporting lt_pdftab data as attachment with mail the PDF file is getting opened with error.
Any help regarding the same is highly appreciated.
Thanks,
Shaurya Jain

Hi,
Just observe this Code:
REPORT zsuresh_test.
Variable declarations
DATA:
w_form_name TYPE tdsfname VALUE 'ZSURESH_TEST',
w_fmodule TYPE rs38l_fnam,
w_cparam TYPE ssfctrlop,
w_outoptions TYPE ssfcompop,
W_bin_filesize TYPE i, " Binary File Size
w_FILE_NAME type string,
w_File_path type string,
w_FULL_PATH type string.
Internal tables declaration
Internal table to hold the OTF data
DATA:
t_otf TYPE itcoo OCCURS 0 WITH HEADER LINE,
Internal table to hold OTF data recd from the SMARTFORM
t_otf_from_fm TYPE ssfcrescl,
Internal table to hold the data from the FM CONVERT_OTF
T_pdf_tab LIKE tline OCCURS 0 WITH HEADER LINE.
This function module call is used to retrieve the name of the Function
module generated when the SMARTFORM is activated
CALL FUNCTION 'SSF_FUNCTION_MODULE_NAME'
EXPORTING
formname = w_form_name
VARIANT = ' '
DIRECT_CALL = ' '
IMPORTING
fm_name = w_fmodule
EXCEPTIONS
no_form = 1
no_function_module = 2
OTHERS = 3
IF sy-subrc 0.
MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
ENDIF.
Calling the SMARTFORM using the function module retrieved above
GET_OTF parameter in the CONTROL_PARAMETERS is set to get the OTF
format of the output
w_cparam-no_dialog = 'X'.
w_cparam-preview = space. " Suppressing the dialog box
" for print preview
w_cparam-getotf = 'X'.
Printer name to be used is provided in the export parameter
OUTPUT_OPTIONS
w_outoptions-tddest = 'LP01'.
CALL FUNCTION w_fmodule
EXPORTING
ARCHIVE_INDEX =
ARCHIVE_INDEX_TAB =
ARCHIVE_PARAMETERS =
control_parameters = w_cparam
MAIL_APPL_OBJ =
MAIL_RECIPIENT =
MAIL_SENDER =
output_options = w_outoptions
USER_SETTINGS = 'X'
IMPORTING
DOCUMENT_OUTPUT_INFO =
job_output_info = t_otf_from_fm
JOB_OUTPUT_OPTIONS =
EXCEPTIONS
formatting_error = 1
internal_error = 2
send_error = 3
user_canceled = 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.
t_otf] = t_otf_from_fm-otfdata[.
Function Module CONVERT_OTF is used to convert the OTF format 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 = W_bin_filesize
BIN_FILE =
TABLES
otf = T_OTF
lines = T_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.
To display File SAVE dialog window
CALL METHOD cl_gui_frontend_services=>file_save_dialog
EXPORTING
WINDOW_TITLE =
DEFAULT_EXTENSION =
DEFAULT_FILE_NAME =
FILE_FILTER =
INITIAL_DIRECTORY =
WITH_ENCODING =
PROMPT_ON_OVERWRITE = 'X'
CHANGING
filename = w_FILE_NAME
path = w_FILE_PATH
fullpath = w_FULL_PATH
USER_ACTION =
FILE_ENCODING =
EXCEPTIONS
CNTL_ERROR = 1
ERROR_NO_GUI = 2
NOT_SUPPORTED_BY_GUI = 3
others = 4
IF sy-subrc 0.
MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
ENDIF.
Use the FM GUI_DOWNLOAD to download the generated PDF file onto the
presentation server
CALL FUNCTION 'GUI_DOWNLOAD'
EXPORTING
BIN_FILESIZE = W_bin_filesize
filename = w_FULL_PATH
FILETYPE = 'BIN'
APPEND = ' '
WRITE_FIELD_SEPARATOR = ' '
HEADER = '00'
TRUNC_TRAILING_BLANKS = ' '
WRITE_LF = 'X'
COL_SELECT = ' '
COL_SELECT_MASK = ' '
DAT_MODE = ' '
CONFIRM_OVERWRITE = ' '
NO_AUTH_CHECK = ' '
CODEPAGE = ' '
IGNORE_CERR = ABAP_TRUE
REPLACEMENT = '#'
WRITE_BOM = ' '
TRUNC_TRAILING_BLANKS_EOL = 'X'
WK1_N_FORMAT = ' '
WK1_N_SIZE = ' '
WK1_T_FORMAT = ' '
WK1_T_SIZE = ' '
IMPORTING
FILELENGTH =
tables
data_tab = T_pdf_tab
FIELDNAMES =
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.
Regards,
If helpful reward with points(Don't forget).

Similar Messages

  • Can't copy and paste images that i've converted from pdf to word

    can't copy and paste images that i've converted from pdf to word

    The Reset Firefox feature can fix many issues by restoring Firefox to its factory default state while saving your essential information.
    Note: ''This will cause you to lose any Extensions, Open websites, and some Preferences.''
    To Reset Firefox do the following:
    #Go to Firefox > Help > Troubleshooting Information.
    #Click the "Reset Firefox" button.
    #Firefox will close and reset. After Firefox is done, it will show a window with the information that is imported. Click Finish.
    #Firefox will open with all factory defaults applied.
    Further information can be found in the [[Reset Firefox – easily fix most problems]] article.
    Did this fix your problems? Please report back to us!

  • I'm trying to hi-light objects and text in a pdf converted from a cadd drawing but can't do either?

    I'm trying to hi-light objects and text in a pdf converted from a cadd drawing but can't do either?

    Hi blueteam,
    Please check :http://www.wikihow.com/Highlight-Text-in-a-PDF-Document
    Regards,
    Rave

  • Converting from SAPSCRIPT to PDF

    Sir,
    I am converting form from sapscript to pdf. The form is converting but the ouput font in pdf is seen in bigger size so the alignment is getting distorted. Kindly advise solution. I am in 4.6C
    Thanks & Regards

    Hi
    See the sample code and do accordingly
    REPORT zzz_jaytest .
    Types Declaration
    TYPES : BEGIN OF ty_pa0001,
    pernr TYPE pa0001-pernr,
    bukrs TYPE pa0001-bukrs,
    werks TYPE pa0001-werks,
    END OF ty_pa0001.
    Internal Table Declaration
    DATA : i_pa0001 TYPE STANDARD TABLE OF ty_pa0001, "For pa0001 Details
    i_otf TYPE STANDARD TABLE OF itcoo, "For OTF data
    i_content_txt TYPE soli_tab, "Content
    i_content_bin TYPE solix_tab, "Content
    i_objhead TYPE soli_tab,
    Work Area Declaration
    w_pa0001 TYPE ty_pa0001, "For pa0001 Details
    w_res TYPE itcpp, "SAPscript output
    "parameters
    w_otf TYPE itcoo, "For OTF
    w_pdf TYPE solisti1, "For PDF
    w_transfer_bin TYPE sx_boolean, "Content
    w_options TYPE itcpo, "SAPscript output
    "interface
    Variable Declaration
    v_len_in TYPE so_obj_len,
    v_size TYPE i.
    Constants Declaration
    CONSTANTS : c_x TYPE c VALUE 'X', "X
    c_locl(4) TYPE c VALUE 'LOCL', "Local Printer
    c_otf TYPE sx_format VALUE 'OTF', "OTF
    c_pdf TYPE sx_format VALUE 'PDF', "PDF
    c_printer TYPE sx_devtype VALUE 'PRINTER', "PRINTER
    c_bin TYPE char10 VALUE 'BIN', "BIN
    c_name TYPE string VALUE 'C:\ZZZ_JAYTEST.PDF',"Downloading
    "File Name
    c_form(11) TYPE c VALUE 'ZZZ_JAYTEST'. "Form Name
    START-OF-SELECTION.
    Selecting the records from pa0001
    SELECT pernr bukrs werks FROM pa0001
    INTO TABLE i_pa0001 UP TO 10 ROWS.
    Setting the options
    w_options-tdcopies = 1 ."Number of copies
    w_options-tdnoprev = c_x."No print preview
    w_options-tdgetotf = c_x."Return of OTF table
    w_options-tddest = c_locl."Spool: Output device
    Opening the form
    CALL FUNCTION 'OPEN_FORM'
    EXPORTING
    form = c_form
    device = c_printer
    language = sy-langu
    OPTIONS = w_options
    IMPORTING
    RESULT = w_res.
    LOOP AT i_pa0001 INTO w_pa0001.
    Writting into the form
    CALL FUNCTION 'WRITE_FORM'
    EXPORTING
    element = 'MAIN'
    window = 'MAIN'.
    ENDLOOP.
    Closing the form
    CALL FUNCTION 'CLOSE_FORM'
    IMPORTING
    RESULT = w_res
    TABLES
    otfdata = i_otf
    EXCEPTIONS
    unopened = 1
    bad_pageformat_for_print = 2
    send_error = 3
    spool_error = 4
    codepage = 5
    OTHERS = 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.
    Converting OTF data to single line
    LOOP AT i_otf INTO w_otf.
    CONCATENATE w_otf-tdprintcom w_otf-tdprintpar
    INTO w_pdf.
    APPEND w_pdf TO i_content_txt.
    ENDLOOP.
    Converting to PDF Format
    CALL FUNCTION 'SX_OBJECT_CONVERT_OTF_PDF'
    EXPORTING
    format_src = c_otf
    format_dst = c_pdf
    devtype = c_printer
    CHANGING
    transfer_bin = w_transfer_bin
    content_txt = i_content_txt
    content_bin = i_content_bin
    objhead = i_objhead
    len = v_len_in
    EXCEPTIONS
    err_conv_failed = 1
    OTHERS = 2.
    v_size = v_len_in.
    Downloading the PDF File
    CALL FUNCTION 'GUI_DOWNLOAD'
    EXPORTING
    bin_filesize = v_size
    filename = c_name
    filetype = c_bin
    TABLES
    data_tab = i_content_bin.
    If you r using this function module check it once....
    call function 'CONVERT_OTF'
    EXPORTING
    format = 'PDF'
    max_linewidth = 132
    IMPORTING
    bin_filesize = v_len_in
    TABLES
    otf = i_otf
    lines = i_tline
    EXCEPTIONS
    err_max_linewidth = 1
    err_format = 2
    err_conv_not_possible = 3
    others = 4.
    Fehlerhandling
    if sy-subrc <> 0.
    endif.
    or u can use the standard program RSTXPDFT4 to download the script into PDF format onto a particular location
    follow this link for sample program.
    http://searchsap.techtarget.com/tip/0,289483,sid21_gci1121833,00.html
    <b>Reward points for useful Answers</b>
    Regards
    Anji

  • Image loses resolution when converting from pages to jpg

    I created an ad for my son's yearbook in Pages.  It is 9MB but I need to submit as jpg.  The only way I can figure to do that is to convert from Pages to PDF and from PDF to JPEG.  However when I do this, it shrinks from 9MB to just over 1MB which is too low rez.  Can anyone help?  I'm on a deadline. Thanks!!!

    OSX outputs pdfs at 72dpi if there is any transparency such as shadows, reflections, charts and of course directly specified transparency.
    The jpeg is generated from a pdf and is the wrong method of producing an ad, which should remain text/vector to stay sharp, with photographic style images at 300dpi.
    jpegs should only be used for purely photographic material because it makes everything else fuzzy.
    Your ad should be supplied as a vector pdf. If it has photographic material do not use transparency effects and make sure the images are at least 300dpi at final size.
    Peter

  • Integrate pdf (converted from smart form ) into portal

    Hi,
    My Requirement is as follows,
    We are using FPM framework and the application is developed on Webdynpro Java,
    When a end user fills up the details on this application form and clicks on a Review button,
    it will display the summary of the above details in a PDF format.
    This PDF will be converted from a smart form in backend.
    My question is how do we integrate this PDF at runtime into Portal via WebDynpro Java?
    Thanks in advance,
    ~Veena.

    Hi.
    First tell your abapper to make a RFC for you that returns the binary of the smartform.
    Then import that RFC.
    Create an Interactive Form UI Element.
    -In its properties, select "usePdf" option and then in pdfSource select the attribute where the binary from the zfunction is returned.
    If you dont have problems with encoding the pdf will be shown.
    Wish you luck.
    Bye

  • Unable to print using PDF Converter from Photoshop

    For years I have been able to select "Adobe PDF Converter" in my print dialogue box...resulting in the creation of a PDF file. Although the choice to use this printer driver is still an option, it won't generate a file. It gives me an error box, with no explanation as to what the error might be. Any ideas?
    I'm using Photoshop CS3, and Windows Vista.

    What version of Acrobat? Only Acrobat 9 is certified for Vista. Older versions do not cope with some of the driver and security stuff on Vista and therefore may not work correctly or not at all.
    Mylenium

  • Multiple images are blocky when converting from powerpoint to PDF?

    Heres my problem:
    If I have a powerpoint with ONE image (be it jpeg, gif, png, etc) they apper fine when you convert the document to PDF (via print>Print to PDF or by using the Acorbat plug in in Powerpoint).
    BUT
    If I have 2 or more images in a powerpoint slide, the images appear blocky and sections of the images are missing. I tried to ungroup the photos and group the photos yet I get the same result. Anyone know how to correct this??
    The images were originally created in Adobe Illustrator. There must be a setting in Illustrator or Powerpoint that is causing this problem but I cant figure it out.
    Thanks

    Correction, it appears to be a problem with the CROP button in Powerpoint. I have a PNG file and it has two images (a map and a legend) on one png. When I crop it to only show ONE image (either the map or the legend) it makes it become blocky. So weird.

  • Used Photoshop Image processor to batch convert from CR2 to Jpeg and the edits don't stick

    Ok, so I had a huge wedding where the bride paid me to deliver a ton of images.  Well, i did all my edits in ACR and then photoshop.  While in photoshop all the edits look to have been applied.  So, I use edit > Scripts>Image processor to convert the CR2 files to Jpeg in one fell Swoop.   Well, on my last run though (checking any images for missed edits or what not), none of of the edits were applied to the saved jpegs.  So I bring one up in Photoshop (the saved Jpeg) and the edits are applied in Photoshop.  So I click save and it tries to save as a PSD file (which it was not originally saved as).  I click to JPEG and it asks to replace the existing file and I do.  Voila, all the edits are a-pplied.  Now, I have about 200 images that I need to do this on. 
    Is this common with the image processor?  Is it not for converting processed Raw files to JPEG and keep the edits?
    I'm very frustrated since now, depending on my misunderstand of the tool, I have to spend extra time saving the files again.  (At least I don't have to re-edit them)

    I have action I wrote so that on large groups of pictures I hit my actions.  It goes through the whole set.  Then I hit my flatten and it goes through the whole set.  Then I go to scripts > image processor  and covert them to jpeg. 
    The weird thing is when I bring up the jpegs in photoshop, all the edits are there.  When I look through Photo Mechanic or upload them to the web, they aren't

  • Missing Audio when Converting from MPEG1 Muxed to Ipod using QT Pro 7

    I just got my video iPod over Christmas. After reading up on QT Pro 7, I purchased it over the weekend, and have attempted unsuccessfully the past two nights to convert home videos (taken with my Sony digital camera) to iPod format. My home movies play fine when I open them in Quicktime; however, when I export to the iPod format (and also when I export to mpeg4 format), I only get the video and not the audio.
    I've confirmed that my key for QT Pro 7 is successfully loaded, so that's not the issue.
    I've also confirmed that the format of the original video taken from my camera is "MPEG1 Muxed". Several internet discussion boards seem to indicate that missing audio is a common problem for people using Sony cameras and Quicktime. If this is the case, I'd prefer to simply refund my money and buy one of the other video to iPod converters available on the web.
    So, either help me solve this problem, or help me get a refund. I'm fine either way.
    -- Chief1Pat

    QT does not export the sound when exporting from muxed mpegs (mpeg-1 or mpeg-2). QT Mpeg Limitations
    You should be able to export both sound and video with this Windows freeware:
    http://www.videora.com/en-us/Converter/iPod/

  • Image size problem after converting from Managed files to Referenced files.

    I recently moved to Referenced files for all my images. I use a plug-in (Graphic Converter 8.8.2) to resize all images to a consistent size (1440 pixels wide, landsacpe format) for a web app that I use (Sandvox). With Referenced files, when I drag and drop the externally processed image, it shows up at exactly one-half the correct size (720 pixels). As a test, doing exactly the same opeartion with an Aperture library utilizing managed files, there is no problem...it works as expected.
    As a temproray work-around, I found that instead of dragging and dropping, I use the Aperture Export function, everything is correct. This is not really what I want to do because I have a lot of images to process.
    This is Aperture 3.5 and Mavericks,  but the problem was there with with Aperture 3.4 and OS 10.7.5.

    Thank you for the suggestion and running the test. I changed the Preview settings to 1440, and then 2560 and finally, Don't Limit. Quit and relaunch Aperture between each setting. No luck.
    But you gave me a hint: maybe the problem has to do with the images being first Managed and then moved to Referenced files. So I tried one that has never been a Managed file and everything works correctly! Don't know if this is a bug or a feature.
    Mystery solved, but I still have a lot of images to reprocess.
    Thank you for the help.

  • Setting page size of PDF converted from .ps by Preview

    I'm trying to generate an A4 PDF from an A4 .ps file, but Preview changes the page dimensions to 8.5"x11". I'm assuming/hoping there must be some way of setting the default page size, but I can't find it in Preview's preferences, or in the printing section of System Preferences.
    Some background, if it matters:
    The .ps was generated by Inkscape, which isn't aware of the OS X printing services, but does allow PostScript output to a file. The bounding box defined at the top of the .ps is A4 proportioned (596:842 = 1:1.414), but I don't know what the units are.

    Hi Lynne,
    I can't remember if any of the defaults changed in Acrobat v.9 (it's at v.XI now). However, the options in the Acrobat Print settings are "sticky", so perhaps it was set for one job and not noticed when yours was run.

  • Half of screen missing on PDFs displayed from browser

    One of my users running IE 8.0.7600.16385 and Adobe Reader X under Windows 7 is getting a half-screen display when he attempts to display a PDF from IE.  The scroll bar stops half way down like the screen size is set incorrectly.  If he saves the PDF to his PC, and opens it will the full Adobe Reader, it displays properly.  Suggestions?

    Welcome to Apple Discussions!
    Make sure everything is up to date...
    iTunes
    iPod Updater
    Updating iPod's Software
    Try these as well...
    Resetting iPod
    Restore the iPod
    If those do not work, try running this battery test...
    How To Determine Your iPods Battery Life
    (Use that link to set your iPod to make the battery run out. You just want to battery to die. You don't have to worry about seeing how long it lasts).
    After the battery is dead, charge it back up and reset the iPod...
    Resetting iPod
    If none of the above works, then you may need to send your iPod in for service...
    iPod Service
    btabz

  • How to keep links in a pdf converting from MAc word

    Hey.
    I need to create a pdf with a document created in MAC word - and keep the links.  This doesn't seem to be working.
    Help??

    That makes sense. So I guess it looks like I have 2 options.
    1. Put the JS short code in and have it open the link in a new window if the user opens it in adobe. If a google chrome user opens it in the default viewer, they wont be able to use the link at all.
    2. Leave the link how it is, and it will be usable in both viewers, but will not open it in a new window.
    I am sureprised that opening the link in a new window isn't just an option in Acrobat Pro. I wouldn't think you'd have to make a workaround like this.
    Is there an alternative way to have a page link on the form so that people can go to another .pdf whil keeping the main one open?

  • Inserting Fillable forms into PDFs converted from word

    I need some help with inserting a fillable form I created in Live Cycle.  When I go to insert the form into a file that was originally created in word and saved as a PDF,I receive a message (see below)
    I need to be able to find a way to insert the fillable form to the end of a regular PDF, without losing the capabilities of the form, including a submit by email button, which I tried both as the Email submit button and the regular button, formatted to submit a email in response.
    I don't know if there is some settings or preferences that I can change to be able to insert the form, but I need it to be one document.I know that this is not impossible, as I have seen other documents in this formatting, I just cant seem to be able to get it.

    I need some help with inserting a fillable form I created in Live Cycle.  When I go to insert the form into a file that was originally created in word and saved as a PDF,I receive a message (see below)
    I need to be able to find a way to insert the fillable form to the end of a regular PDF, without losing the capabilities of the form, including a submit by email button, which I tried both as the Email submit button and the regular button, formatted to submit a email in response.
    I don't know if there is some settings or preferences that I can change to be able to insert the form, but I need it to be one document.I know that this is not impossible, as I have seen other documents in this formatting, I just cant seem to be able to get it.

Maybe you are looking for

  • OS Yosemite and Photoshop CS6 didn't work correctly

    After i have been update to Yosemite, i notified that during painting in Photoshop CS6(13.02) using brush, i can't some time use my short keys on wacom tablet and on keyboard too. After i turn another tool then back to brush, shortcuts works well. Al

  • CL_SALV_BS_TT_RESULT_TABLE====CP error while downloading data from ALV grid

    Hi , I am  facing a problem when ever i am going to donload data from ALV grid to excel file.I am getting CL_SALV_BS_TT_RESULT_TABLE====CP error in GET_CELL_VALUE. Could you please provide me is there any OSS note or any patch required to solve this

  • Problem in skype number

    Good evening The problem I've got me on Skype 4 numbers 2 work well _ line U.S. and British line And 2 do not work except in the case receive Askaybe calls only and are not allowed to call with the numbers show and become invisible line and two _ Swi

  • My  CrashReporter report

    Was told to post this in this forum to understand why safari stalls and crashes periodically. Thanks. Hope this helps. 2006-11-27 18:23:10.251 SoftwareUpdateCheck[527] Checking for updates yylex: ERROR. 2006-11-27 19:38:07.589 RealPlayer[548] .script

  • Re:Query for items having Stock for a particular warehouse ..!!!

    Dear SAP Members, I need a query to display a list of items having stock by considering all the marketing documents,goods receipt,BOM,Production Order,etc. I have written query like this: SELECT T0.[ItemCode], T0.[ItemName], T1.[ItmsGrpNam],T0.[OnHan