Entries missing in excel sheet when sent as an attachmt in email in ECC6.0

Hi All,
When I am sending an email with excel attachment from SAP , email functionality is working fine. But when I try to open excel sheet it is giving a warning that "Incompatible format" and when I click on "OK" button excel sheet is opened bu some entries are missing. This problem is occuring when I am sending email in ECC6.0 whereas in 4.7E it works fine.
I am using classes to send email. Please let me know if any one has any solution.
My code is :
g_text_content is the internal table having data .
example data in g_text_content : line 1 : col1#col2#col3#....
                                                 line 2:  col1#col2#col3#...
convert the content from RAW to TXT
  CALL FUNCTION 'SO_RAW_TO_RTF'
    TABLES
      objcont_old = g_text_content
      objcont_new = g_text_content
    EXCEPTIONS
      OTHERS      = 0.
    create the document with attachments
    main document
    APPEND 'Sales Report (Quantity Basis) ' TO g_text.
  WRITE p_date TO wa_line.
  CONCATENATE 'Report Date:' wa_line INTO wa_line SEPARATED BY space.
  APPEND wa_line TO g_text.
  APPEND 'Sent as attachment' TO g_text.
TRY.
    create the send request
      send_request = cl_bcs=>create_persistent( ).
      IF NOT text[] IS INITIAL.
        document = cl_document_bcs=>create_document(
                                  i_type    = 'RAW'
                                  i_text    = text  "main email text
                                  i_subject = p_subj ).
      ENDIF.
    add text attachment to document
      IF NOT text_content[] IS INITIAL.
        document->add_attachment( i_attachment_type    = 'XLS'
                              i_attachment_subject = p_subj
                              i_att_content_text   = text_content ).
      ENDIF.
    add list attachment to document
      IF NOT list_content[] IS INITIAL.
        document->add_attachment( i_attachment_type    = 'ALI'
                           i_attachment_subject = p_subj
                           i_att_content_hex    = list_content ).
      ENDIF.
    add document to send request
      send_request->set_document( document ).
*email to
    create recipient and add to send request
      IF NOT p_to IS INITIAL.
        LOOP AT p_to.
          recipient = cl_cam_address_bcs=>create_internet_address(
                                            p_to-low ).
          CALL METHOD send_request->add_recipient
            EXPORTING
              i_recipient = recipient.
        ENDLOOP.
      ENDIF.
*copy to
    create recipient and add to send request
      IF NOT p_cc IS INITIAL.
        LOOP AT p_cc.
          recipient = cl_cam_address_bcs=>create_internet_address(
                                            p_cc-low ).
          CALL METHOD send_request->add_recipient
            EXPORTING
              i_recipient = recipient
              i_copy      = 'X'.
        ENDLOOP.
      ENDIF.
Blind copy
      IF NOT p_bcc IS INITIAL.
        LOOP AT p_bcc.
          recipient = cl_cam_address_bcs=>create_internet_address(
                                            p_bcc-low ).
          CALL METHOD send_request->add_recipient
            EXPORTING
              i_recipient  = recipient
              i_blind_copy = 'X'.
        ENDLOOP.
      ENDIF.
    send
      sent_to_all = send_request->send( i_with_error_screen = 'X' ).
      IF sent_to_all = 'X'.
        MESSAGE s022.
      ENDIF.
      COMMIT WORK.
    CATCH cx_bcs INTO bcs_exception.
      MESSAGE e865 WITH bcs_exception->error_type.
  ENDTRY.
Thanks,
Sonali.

Hi change the below sample as per your requirement.
<unreadable code removed by moderator>
Regards
chitra
Moderator message: please post only relevant code parts, your posts must contain less than 5000 characters to preserve readable formatting.
Edited by: Thomas Zloch on Nov 15, 2011 1:03 PM

Similar Messages

  • How to add a new excel sheet  when the row count exceed more than 65 k

    am working on business intellignence am able to export the data to excel sheet but my data exceeds the sheet limit so how to add to another sheet when the last row is hit ..???
    any suggestions warm welcome...
    help me to fix this issue...

    You've not specified how you're generating the Excel file. Are you using POI? JExcel? What?
    People on the forum help others voluntarily, it's not their job.
    Help them help you.
    Learn how to ask questions first: http://faq.javaranch.com/java/HowToAskQuestionsOnJavaRanch
    (Yes I know it's on JavaRanch but I think it applies everywhere)
    ----------------------------------------------------------------

  • How to Convert Report into Excel Sheet when Sending Mail.

    Dear Friends,
    i want to send mail to HOD of Product with an Excel Sheet .
    i want to send Pending Issue details to HOD in Excel Sheet attachment .
    here i have pending issue report now i need to send it in Excel Sheet attachment .
    i have table where i have manage Product ID and HOD OF PRODUCT.
    CREATE TABLE  "MAP_USER_PRODUCT_DTL"
       (     "ID" NUMBER NOT NULL ENABLE,
         "PRODUCT_ID"NUMBER,
         "USER_ID" VARCHAR2(5) NOT NULL ENABLE,
         "HOD_PROD" VARCHAR2(100)========================================Value is Y OR N IF HOD then Y else N
         CONSTRAINT "MAP_USER_PRODUCT_DTL_PK" PRIMARY KEY ("ID") ENABLE
    /i have one more table where all complete issue detail insert.
    CREATE TABLE  "CRM_ISSUE_PROBLEM"
       (     "ID" NUMBER,
         "SUBJECT" VARCHAR2(255) NOT NULL ENABLE,
         "CLIENT_ID" NUMBER,
         "ASSIGNED_TO_ID" VARCHAR2(100),
         "ASSIGNED_ON" DATE,
         "DESCRIPTION" VARCHAR2(4000),
         "PRODUCT_ID" NUMBER NOT NULL ENABLE,
         "STATUS_ID" NUMBER NOT NULL ENABLE,
          CONSTRAINT "CRM_ISSUE_PROBLEM_PK" PRIMARY KEY ("ID") ENABLE
    Here STATUS_ID is Like Pending ISsue,Open Issue and Close Issue .i want to send mail to HOD with Pending Issue Report convert into Excel Sheet and send to HOD?
    How can i do this.
    Thanks
    Edited by: Vedant on Oct 12, 2011 12:36 AM
    Edited by: Vedant on Oct 12, 2011 2:22 AM

    Hello Vedant,
    Would it suffice if you send a CSV file?
    If yes, then see following code.. run the code under APEX > Home > SQL Workshop > SQL Commands
    DECLARE
            ln_id NUMBER;
            lc_clob CLOB;
         lb_blob BLOB;
         li_in PLS_INTEGER := 1;
         li_out PLS_INTEGER := 1;
         li_lang PLS_INTEGER := 0;
         li_warning PLS_INTEGER := 0;
         lv_mail_rcpts VARCHAR2(2000) := '[email protected]';
         lv_mail_from VARCHAR2(100) := '[email protected]';     
           lv_clmn_separator VARCHAR2(1) := ',';
    BEGIN
         -- Build file content as CLOB
      -- Replace with your query
         FOR i IN (select object_id A, object_name B, object_type C, status D, temporary E, generated F, secondary G,namespace H from user_objects where rownum < 10)               
         LOOP
        IF lc_clob IS NULL THEN
          lc_clob := i.A||lv_clmn_separator||i.B||lv_clmn_separator||i.C||lv_clmn_separator||i.D||lv_clmn_separator||i.E||lv_clmn_separator||i.F||lv_clmn_separator||i.G||lv_clmn_separator||i.H;
        ELSE
          lc_clob := lc_clob||CHR(10)||i.A||lv_clmn_separator||i.B||lv_clmn_separator||i.C||lv_clmn_separator||i.D||lv_clmn_separator||i.E||lv_clmn_separator||i.F||lv_clmn_separator||i.G||lv_clmn_separator||i.H;
        END IF;
         END LOOP; 
         -- Convert CLOB to BLOB
         DBMS_LOB.CREATETEMPORARY(lb_blob,TRUE);
         DBMS_LOB.convertToBlob(lb_blob,lc_clob,DBMS_LOB.LOBMAXSIZE,li_in,li_out,DBMS_LOB.DEFAULT_CSID,li_lang,li_warning);
         -- Send mail
         ln_id:= APEX_MAIL.SEND(
           p_to        => lv_mail_rcpts,
                 p_from      => lv_mail_from,
                 p_subj      => 'Subject Goes here',
                 p_body      => 'Body goes here'
           -- add CSV file as attachment
         APEX_MAIL.ADD_ATTACHMENT
           p_mail_id   => ln_id,
           p_attachment => lb_blob,
           p_filename   => 'filename.csv',
           p_mime_type  => 'application/csv'
      -- push mail queue
      APEX_MAIL.PUSH_QUEUE;
         -- empty temporary space
         DBMS_LOB.FREETEMPORARY ( lob_loc =>  lb_blob);       
         COMMIT;
    END;Regards,
    Hari

  • I can not open Excel (.xls) document sent as an attachment in email. I have Excel on my Mac.

    I am not able to open an Excel (.xls) document sent as an attachment in an Email.  I have Office for Mac loaded on my Mac.

    Try dragging those attachments out of the mail message and into a Finder folder or onto your Desktop.
    Then drag the .xls file onto the Excel app (the "actual" app or the Dock icon will do), or use File->Open from within Excel.
    If that doesn't work, it's possible that the Excel file being sent to you was created using a more recent version of Excel than the one you have. Ask the person sending it to save it in an older format. If you just need to look at it and not edit it, the other person could send it to you as a PDF file.

  • Open new Excel sheet when number of rows is too big

    Hi again,
    I'm using ActiveX to write some data to Excel. It is common that the amount of data that I want to write to Excel takes more than the 65536 rows of a sheet, so every time this number of rows is reached I wanted to open a new sheet and write data to it and so one. The writting part is alrigth (I adapted the Write Table to XL.vi), I can see the row current row number I am writting data to and I now how to open the new sheet and write to it. The problem is that I don't seem to find a way to open the new sheet only once after the row nº is greater than 65536...  I don't know where to test the row number...I join my code if you have some time to look at it, any suggestion would be of great help.
    I hope you understand my problem...
    Best regards,
    Isabel

    Here is the change that I suggested.  I use the modulus for simplicity to wrap the 65535 back to 0.  A new sheet is added only when the row and column indexes are both at 0.  The shift registers are used to hold the current value of the Sheet reference.
    I also correct several bugs in your code with comments on why.
    The nested for loops used is the Example code is only suitable for a small amount of data.  The proper way to transfer a large array to Excel is with a Block Write.  Your data array would need to be broken into worksheet-sized chunks and written with a single Range->Value write using the double indexed data.
    Michael Munroe, ABCDEF
    Certified LabVIEW Developer, MCP
    Find and fix bad VI Properties with Property Inspector
    Attachments:
    Write Table & Header to Excel large import_mod.vi ‏92 KB

  • Problem when printing Excel sheets when downloaded from Portal

    Hey,
    I am using the desformat=spreadsheet option to generate Excel files for my reports downloaded from Portal and this works fine. The trouble is that when users go to print the downloaded Excel reports it seems that the scale of the report changes and everything is made smaller to try and fit on the one page. The font size decreases, and the scale of the report decreases to the point where the report is nearly unreadable when printed. But when just viewing the reports in Excel everything looks fine.
    Any suggestions on why this is happening and how it can be fixed?
    Thanks

    Hello hermannedem,
    If you cannot see any content on pages you printed or in print preview, the cause might be margins which are set too high.
    #In order to check the margins, we need to go to ''File'' > ''Page Setup''.
    #Once this is done, switch to the ''Margins & Header/Footer'' tab.
    #Check what's set there under ''Margins''.
    The following are the default values for ''Margins'':
    '''Right''': 12.7
    '''Top''': 12.7
    '''Left''': 12.7
    '''Bottom''': 12.7
    Check these values accordingly and change them if necessary.
    Please let us know, if this resolves the issue.
    Thanks!

  • Add header line to excel sheet when using FM RH_START_EXCEL_WITH_DATA

    Hi
    I'm using FM RH_START_EXCEL_WITH_DATA to download an internal table to EXCEL. But when excel is started it's without a header line.
    What I would like to do, is to take the field-names/field-text from the abap dictionary, and use them as the header line. How do I achieve this ?
    Regards
    Morten Nielsen

    Hi ,
    See this sample code.
    Tables : zacg_cca,zacg_exsh.
    data: P_file like RLGRAP-FILENAME.
    Data: Begin of it_header occurs 0,
          Header(15) ,
          end of it_header.
    Data : begin of it_final occurs 0,
           ccode type zacg_cca-ccode,
           mat_cd type zacg_cca-mat_cd,
           ingr_desc type zacg_cca-ingr_desc,
           conc type  zacg_cca-conc,
           quantity type zacg_cca-quantity,
           percqty type zacg_cca-percqty,
           flag ,
           APP_DATE type zacg_cca-app_date,
           rsamnos type zacg_cca-rsamnos,
           end of it_final.
           SELECTION-SCREEN : BEGIN OF BLOCK blk WITH FRAME TITLE text-000.
           select-options : s_Date for zacg_cca-app_date.
           SELECTION-SCREEN  : END OF BLOCK blk.
           it_header-Header = 'Samp_code'.
           Append it_header.
           it_header-Header = 'Mat_code'.
           Append it_header.
           it_header-Header = 'Ingr_Desc'.
           Append it_header.
           it_header-Header = 'Conc'.
           Append it_header.
           it_header-Header = 'Quan'.
           Append it_header.
           it_header-Header = 'Perc'.
           Append it_header.
           it_header-Header = 'Flag'.
           Append it_header.
           it_header-Header = 'Date'.
           Append it_header.
           it_header-Header = 'Rsamnos'.
           Append it_header.
             it_header-Header = 'Mat_code'.
           Append it_header.
           select ccode
                  mat_cd
                  ingr_desc
                  conc
                  quantity
                  percqty
                  app_date
                  rsamnos
                  from zacg_cca  into corresponding
            fields of table
           it_final where  zacg_cca~app_date in s_date.
           loop at it_final.
           it_final-flag = 'T'.
           modify it_final.
           it_final-quantity = it_final-quantity * 2 .
           Modify it_final.
           endloop.
           CALL FUNCTION 'MS_EXCEL_OLE_STANDARD_DAT'
             EXPORTING
               FILE_NAME                       = 'E:\IT\P_FILE'
             CREATE_PIVOT                    = 0
             DATA_SHEET_NAME                 = ' '
             PIVOT_SHEET_NAME                = ' '
             PASSWORD                        = ' '
             PASSWORD_OPTION                 = 0
            TABLES
             PIVOT_FIELD_TAB                 =
              DATA_TAB                        = it_final[]
              FIELDNAMES                      = it_header[]
            EXCEPTIONS
              FILE_NOT_EXIST                  = 1
              FILENAME_EXPECTED               = 2
              COMMUNICATION_ERROR             = 3
              OLE_OBJECT_METHOD_ERROR         = 4
              OLE_OBJECT_PROPERTY_ERROR       = 5
              INVALID_PIVOT_FIELDS            = 6
              DOWNLOAD_PROBLEM                = 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.
    Regards
    ABG

  • How to convert Bex Analyser report into normal MS Excel sheet

    Hi,
    I created query in Bex Analyser. Now, I want to send this copy as a normal MS Excel document through mail.
    When I tried save as and send a copy, It is showing the filter,table, information buttons and appearing same as bex report.  I would like to see normal excel sheet when it opens.
    Is there any way except copy & paste.
    Any help would be appreciated.
    Thanks,
    Aparna.

    Hi Chandu,
    I followed same procedure as you said. I created one node for SMTP in SAP connect:Administration(SCOT).
    I gave destination as RFC destination -> BWDCLNT -> Internet -> enter mail address...etc as per system requirements.
    Once I executed, It is showing "No message sent". Did I miss any steps to follow...
    Can you give me step by step procedure to follow.
    In our Bex tools, Only Broadcaster was disabled. If I configure mail server, may be it enable?
    Your help would be appreciated.
    Thanks,
    Aparna.

  • How to read the data in excel sheet

    Dear sir,
    How to read the data in excel sheet when i recieve a data serial communication... ie i have store a data in excel such that
    Cell A       Cell B
       A           Apple 
       B           Ball
       C           Cat
       D           Doll
    when i recieve A from serial communication i have to display Apple, and when i recieve B i have to display Ball and so on.. 

    Hi, 
    I would recommend you to have a look at the VI attached. It makes use of a VI named 'Read from Spreadsheet' to read the row and column data from the tab delimited excel file. The read data is then searched for the Alphabet specified and finally returns you the corresponding string. The test file used to validate the operation of the VI is also attached. 
    Trust this would help you solve the issue. 
    Regards, 
    Sagar G Yadav | Application Engineer | National Instruments
    Attachments:
    read_from_excel.vi ‏10 KB
    Book1.txt ‏1 KB

  • How to convert the customized report sales price list into excel sheet

    hi friends,
    i am faceing the probulem in VK13 report is not conveting into excel sheet, then i developed the one customized report,
    in this report i am using the tables are a506, konp,and makt, result is coming and it converted into excel sheet in my systam. when i was clik on the excel sheet icon it comming  excel format it working fine and save it. But in menubar list>export> localfile and select redio button spredsheet this navigation only it print the three colums not coming the total colums,
    same program test in another system it not converted into excel sheet, when i am click on excel sheet icon  it's given the message is 'VIEW CAN NOT BE SWITCHED, PRODUCT NOT INSTALLED OR INTEGRATION NOT ACTIVE'. but i giving the print privew it giving the three colums only,.
    In program i am using regular using reuse_alv_grid_display FM only.
    sorry this qusition is repeted becuse before that one mising some text.
    any one plz help me.
    thanks
    raj

    nice answer

  • Need to download the ALV blocked output in to excel sheet

    I have a requirement where there is a need to download the Alv block output to excel sheet. when i click on excel button which is on output only header block data is coming in excel sheet.but i need both header block and item block data into excel.

    Hi,
    create a pushbutton on the toolbar,
    whenever user clicks the pushbutton,
    call the fm gui_download for 2 times
    for the first time,
    append = ' ',
    and for second time.
    append = 'X'.
    check this thread.
    Re: How to download multiple ALV Container data on a screen to a single Excel?
    Regards.
    R K.

  • How to export to excel sheet from Oracle APEX 4.0?

    Hello,
         I'm relatively new to Oracle APEX. I'm in need of a solution to address the above question. I want to export a report's contents to an excel sheet from Oracle APEX(Priority).
    The export should be customizable to add entries into the excel sheet as I need(Secondary). Can anybody help?

    Checkout this link:
    http://technology.amis.nl/2011/02/19/create-an-excel-file-with-plsql/
    Thank you,
    Tony Miller
    Ruckersville, VA

  • Generating EXCEL sheet from an iView

    hiii......
    i've developed a iView which holds list of users in a dropdown list box....and a button...
    now i want this data to be filled in a excel sheet when i click this button.....
    can some one send me sample code for this task...
    i have some code which doesnt work.......
    i cudnt debug this.....
    plz go through.......
    import java.io.FileOutputStream;
    import org.apache.poi.hssf.usermodel.HSSFCell;
    import org.apache.poi.hssf.usermodel.HSSFCellStyle;
    import org.apache.poi.hssf.usermodel.HSSFDataFormat;
    import org.apache.poi.hssf.usermodel.HSSFFont;
    import org.apache.poi.hssf.usermodel.HSSFRow;
    import org.apache.poi.hssf.usermodel.HSSFSheet;
    import org.apache.poi.hssf.usermodel.HSSFWorkbook;
    public class XLSGen {
    public void generate() throws Exception {
         HSSFWorkbook wb = new HSSFWorkbook();
         FileOutputStream fileOut = new FileOutputStream("workbook.xls");
         HSSFSheet sheet = wb.createSheet();
         HSSFRow row = sheet.createRow(3);
         HSSFCell cell = row.createCell((short)0);
         HSSFCellStyle cs1 = wb.createCellStyle();
         HSSFCellStyle cs2 = wb.createCellStyle();
         HSSFCellStyle cs3 = wb.createCellStyle();
         HSSFDataFormat df = wb.createDataFormat();
         HSSFFont f = wb.createFont();
         HSSFFont f2 = wb.createFont();
         f.setFontHeightInPoints((short) 12);
         f2.setFontHeightInPoints((short) 10);
         cs1.setFont(f);
         cs1.setDataFormat(df.getFormat("#,##0.0"));
         cs2.setFont(f2);
         cell.setCellValue(1);
         row.createCell((short)1).setCellValue(1.2);
         row.createCell((short)2).setCellValue("This is a string");
         row.createCell((short)3).setCellValue(true);
    //     HttpServletResponse res = request.getServletResponse(true);
    //     res.setContentType("application/vnd.ms-excel");
    //     wb.write(res.getOutputStream());
         wb.write(fileOut);
         fileOut.close();
    thanks and regards,
    Sudheer

    Hi ,
    Modified your code .
    public void generate(IPortalComponentRequest request) throws Exception {
    HSSFWorkbook wb = new HSSFWorkbook();
    HSSFSheet sheet = wb.createSheet();
    HSSFRow row = sheet.createRow(3);
    HSSFCell cell = row.createCell((short)0);
    HSSFCellStyle cs1 = wb.createCellStyle();
    HSSFCellStyle cs2 = wb.createCellStyle();
    HSSFCellStyle cs3 = wb.createCellStyle();
    HSSFDataFormat df = wb.createDataFormat();
    HSSFFont f = wb.createFont();
    HSSFFont f2 = wb.createFont();
    f.setFontHeightInPoints((short) 12);
    f2.setFontHeightInPoints((short) 10);
    cs1.setFont(f);
    cs1.setDataFormat(df.getFormat("#,##0.0"));
    cs2.setFont(f2);
    cell.setCellValue(1);
    row.createCell((short)1).setCellValue(1.2);
    row.createCell((short)2).setCellValue("This is a string");
    row.createCell((short)3).setCellValue(true);
    HttpServletResponse res = request.getServletResponse(true);
    try {
    res.setContentType("application/vnd.ms-excel");
    wb.write(res.getOutputStream());
    }catch(Exception e) {}
    Check this blog for more
    Create an excel file from JAVA using HSSF api

  • Create Indesign book from paths in an excel sheet

    Hello All
    I have started to learn some scripting, and want to know if it is possible to read information from Excel sheet? In this case it is paths to Ind files.
    Today we are working with several documents which we compile into a book, this to create custom-made manuals for our customers. The script I'm looking for or will try to create will use these paths from the excel sheet to compile an Indesign book.
    Any tips where I can find information about similar tasks.
    Please respond

    Thanks for your advices.
    So if I understood it right it is impossible for Java or VB through Indesign to access information located within sheets in an Excel document. That is too bad.
    We don't have the possibility to convert the .xls to for example .csv, becouse of .csv does not support more than one sheet. An SQL database could be a possible solution, but this shouldn’t either work?
    What I don’t really understand is why you can merge information from an excel sheet into an Indesign page, but not collect strings from an excel sheet when running a script.

  • Japanese unicodes/characer are not displayed properly  in excel sheet

    hi
    all
    can any one help me How to display Japanese character in excel sheet when i am exporting a excel page from a jsp
    please help me
    thanks in advance

    Hi Pankaj,
    Refer the below code, you will get it:
    REPORT ZSBK_DOWNLOAD_IT_TO_XL_FILE.
    PARAMETERS: p_file LIKE rlgrap-filename DEFAULT 'c:\tmp\test.xls'.
    DATA: t100_Lines TYPE STANDARD TABLE OF t001 WITH DEFAULT KEY.
    SELECT * FROM t001 INTO TABLE t100_Lines.
    CALL FUNCTION 'SAP_CONVERT_TO_XLS_FORMAT'
    EXPORTING
    i_filename = p_file
    TABLES
    i_tab_sap_data = t100_Lines.
    Thanks.
    Note:Reward points if u find useful.

Maybe you are looking for

  • File does not exist portal oa_html appslogin r12

    Hi Team, I am unable to getting log in page after change apps,system and sys passwd .Could you please help me ... Error:  file does not exist portal oa_html appslogin r12 due to above error am not able to getting EBS login page.. db version:11.2.0.3

  • Payment Run (F110) error for MT103 - BFIBL02-303 - Bank Data is incomplete

    Hi, I'm trying to do a foreign vendor payment run in F110. We have a payment method type Z for these vendors, and FBPZ I have this payment type set to use the Payment Medium Workbench (PMW) with MT103 format. When I run the proposal I receve the erro

  • Shortcut Type in Bi 4.1

    Hi All,           We have lots of reports in public folders. Since we dont want the users to view the actual reports, we have made shortcuts to them and have re-named to resemble as the actual reports. In XIR2, the renamed shortcut reports would inde

  • How to address Cash payment, ACH & Wire Transfer to Customers in SAP

    Hi Experts, I have requirement where customers make payments thru cash, ACH & Wire Transfer, could somebody let me know how to address this in SAP and what payments methods needs to be configured and how to use these payment methods and the entire pr

  • How to Edit or Delete a message

    while monitoring how to Edit or Delete messages.