Sending pdf attachments via e-mail in BSP

Hi all,
i have written a code for sending email to a given mailid with some text but
can anyone tell me step to step procedure for sending pdf attchments to mailid.
Thanks and Regards,
Sneha Puppala.

Hi ravikiran,
This is my code for sending email with attach:
<%@page language="abap" %>
<%@extension name="htmlb" prefix="htmlb" %>
<%@extension name="bsp"   prefix="bsp"%>
<htmlb:content id="content" design="classicdesign2002design2003" controlRendering="sap"
               rtlAutoSwitch    = "true">
  <htmlb:page title = "BSP Extension: HTMLB / Element: fileUpload">
    <htmlb:form method = "post" encodingType = "multipart/form-data">
<head>
    <link rel="stylesheet" href="../../sap/public/bc/bsp/styles/sapbsp.css">
    <title>mail to </title>
  </head>
    <bsp:testSuite id="testSuite" name = "<fileUpload>" key = "<%=content->design%>">
        <% IF NOT %_testSuite->id_list IS INITIAL.%>
        <bsp:testCase nr="DATA" text = "Data Handling"/>
        <table border="1px" cellpadding="1px" cellspacing="0px" style="font:normal 10pt Arial">
          <tr> <th>id</th> <th>File Name</th> <th>Content Type</th> <th>Length</th> </tr>
          <%-- Notice: It's recommended to do input processing in onInputProcessing
            event block, not in onLayout block like in this case. --%>
            <% DO.
                DATA: fu        TYPE REF TO CL_HTMLB_FILEUPLOAD,
                    next_id   TYPE STRING.
               next_id = %_testSuite->next_restore_id( ).
               IF next_id IS INITIAL. EXIT. ENDIF.
                fu ?= CL_HTMLB_MANAGER=>GET_DATA( request = request id = next_id name = 'fileUpload' ).
          %>
            <tr>
                <td><%=next_id%></td>
                <td><%= cl_http_utility=>escape_html( fu->file_name ) %> </td>
                <td><%=fu->file_content_type%> </td>
                <td><%=fu->file_length%></td>
            </tr>
          <% ENDDO. %>
        </table>
      <% ENDIF. %>
      <%----
%>
      <%
         DATA: event            TYPE REF TO if_htmlb_data,
               fileUpload_event TYPE REF TO CL_HTMLB_FILEUPLOAD.
         event = cl_htmlb_manager=>get_event_ex( request ).
         IF event IS NOT INITIAL AND event->event_name = htmlb_events=>fileupload.
           fileUpload_event ?= event.
      %>
          <table border="1px" cellpadding="1px" cellspacing="0px" style="font:normal 10pt Arial">
            <tr> <td>Event-Class</td>              <td><%= event->event_class%>                  </td> </tr>
            <tr> <td>Event-ID</td>                 <td><%= event->event_id%>                     </td> </tr>
            <tr> <td>Event-Name</td>               <td><%= event->event_name%>                   </td> </tr>
            <tr> <td>Event-Type</td>               <td><%= event->event_type%>                   </td> </tr>
            <tr> <td>Event-Server Name</td>        <td><%= event->event_server_name%>            </td> </tr>
            <tr> <td>Event-Defined</td>            <td><%= event->event_defined%>                </td> </tr>
            <tr> <td>FileUpload-Name</td>          <td><%= fileUpload_event->file_name%>         </td> </tr>
            <tr> <td>FileUpload-Content_Type</td>  <td><%= fileUpload_event->file_content_type%> </td> </tr>
            <tr> <td>FileUpload-Length</td>        <td><%= fileUpload_event->file_length%>       </td> </tr>
          </table>
      <%
         ENDIF.
      %>
      <%----
%>
      <bsp:testCase text = "upload attachment" />
      <htmlb:fileUpload id       = "<%= %_testSuite->seq_nr( )%>" />
      <htmlb:button     id       = "submitButton"
                        text     = "Upload"
                        onClick  = "HandleUpload" />
      <%----
%>
<html>
<body class="bspBody1">
  <H1 class="bspH1"> Consultation-Service </H1>
    <form method = "post" action="<%=page->get_page_url( )%>">
      <table class="bspTbvStd" cellpadding="4">
        <tr>
        <td class="bspTbvHdrStd" colspan="2" align="center"><font size="4">Address</font></td>
        </tr>
        <tr class="bspTbvCellStd">
          <td>Name</td>
          <td><input type="text" name="name"
                     value="<% page->write( value = name ). %>" size="40" ></td>
        </tr>
                <tr class="bspTbvCellStd">
          <td>Mail address1</td>
          <td><input type="text" name="mail_address1"
                     value="<% page->write( value = mail_address1 ). %>" size="40"></td>
        </tr>
        <tr class="bspTbvCellStd">
          <td>Mail address2</td>
          <td><input type="text" name="mail_address2"
                     value="<% page->write( value = mail_address2 ). %>" size="40"></td>
        </tr>
      </table>
      </bsp:testSuite>
    </htmlb:form>
    </htmlb:page>
</htmlb:content>
    </form>
  </body>
</html>
On Input Processing:
if page->messages->num_messages( ) eq 0.
  if mail_address1 is not initial and mail_address2 is not initial.
      call method application->send
        exporting mail_address = mail_address1
        changing  messages     = page->messages .
    call method application->send
        exporting mail_address = mail_address2
        changing  messages     = page->messages .
    if page->messages->num_messages( ) eq 0.
      data text type string.
      text = application->get_text( ).
      navigation->set_parameter( name = 'mailtext' value = text ).
      navigation->next_page( 'show' ).
    endif.
  else.
    navigation->next_page( 'no_address' ).
  endif.
endif.
"method send in defined class":
method SEND.
CLASS cl_bcs DEFINITION LOAD.
DATA:
lo_send_request TYPE REF TO cl_bcs VALUE IS INITIAL.
lo_send_request = cl_bcs=>create_persistent( ).
Message body and subject
DATA:
lt_message_body TYPE bcsy_text VALUE IS INITIAL,
lt_att_content_hex type solix_tab,
lo_document TYPE REF TO cl_document_bcs VALUE IS INITIAL.
APPEND 'Dear Vendor,' TO lt_message_body.
append ' ' to lt_message_body.
APPEND 'Please find the attached report.'
TO lt_message_body.
append ' ' to lt_message_body.
APPEND 'Thank You,' TO lt_message_body.
lo_document = cl_document_bcs=>create_document(
i_type = 'RAW'
i_text = lt_message_body
i_subject = 'Visit report' ).
data: data_tab type solix_tab,
      p_data type XSTRING.
  call function 'SCMS_XSTRING_TO_BINARY'
    EXPORTING
      buffer     = p_data
    TABLES
      binary_tab = data_tab.
DATA: lx_document_bcs TYPE REF TO cx_document_bcs VALUE IS INITIAL.
TRY.
lo_document->add_attachment(
EXPORTING
i_attachment_type = 'PDF'
i_attachment_subject = 'Visit Report'
I_ATTACHMENT_SIZE =
I_ATTACHMENT_LANGUAGE = SPACE
I_ATT_CONTENT_TEXT =
I_ATTACHMENT_HEADER =
i_att_content_hex = data_tab ).
CATCH cx_document_bcs INTO lx_document_bcs.
ENDTRY.
Add attachment
Pass the document to send request
lo_send_request->set_document( lo_document ).
Create sender
DATA:
lo_sender TYPE REF TO if_sender_bcs VALUE IS INITIAL,
l_send type ADR6-SMTP_ADDR value '[email protected]'.
lo_sender = cl_cam_address_bcs=>create_internet_address( l_send ).
Set sender
lo_send_request->set_sender(
EXPORTING
i_sender = lo_sender ).
Create recipient
DATA:
lo_recipient TYPE REF TO if_recipient_bcs VALUE IS INITIAL.
lo_recipient = cl_sapuser_bcs=>create( sy-uname ).
Set recipient
lo_send_request->add_recipient(
EXPORTING
i_recipient = lo_recipient
i_express = 'X' ).
lo_send_request->add_recipient(
EXPORTING
i_recipient = lo_recipient
i_express = 'X' ).
Send email
DATA: lv_sent_to_all(1) TYPE c VALUE IS INITIAL.
lo_send_request->send(
EXPORTING
i_with_error_screen = 'X'
RECEIVING
result = lv_sent_to_all ).
COMMIT WORK.
message 'The visit report has been sent' type 'I'.
Thanks and Regards,
Sneha Puppala.

Similar Messages

  • Get error message when sending PDF link via e-mail

    I have Acrobat 9.5.5 since the upgrade I can't open a PDF file and when I do I can't send it directly to e-mail and get an error message.

    When you upgraded what Acrobat? Reader? Your OS? What email program using what OS? Please give us the explicit error message.

  • Sending smartforms as PDF attachement via e mail

    Hello all:
    I have configured PPF actions to send smartforms as PDF attchment via e mail it works fine in one client.
    But when I copied the transport to another client, the entries in field 'Recipient' in the configuration step 'Define Conditions and Output Parameters for Comm. of Cust.Shipm. & Cust.Dcl'  are not copied to the new client. I had maintained the name of the inbox folder that has e mail addresses in this field. Any one has a similar issue ? Or is this similar to the number ranges and not transportable and we have to maintain them in every client. Any insight into this very much appreciated.

    Hello:
    If you want to send the smartform as a PDF attachment, configure your PPF action as described below:
    Step 1: Define Techn. Medium for Msgs (PPF Actions) f. Cust. Shipm. and Cust. Decl.
                In the action definition, choose processing type as 'External Communication'
                                                             form type:  'Smart Forms'
                                                             format: /SAPSLL/FORM_PROC
                                                             personalization type: 2 object specific....
                Make this action definition partner function dependent and create a Z partner function. Maintain that  
                partner function in this definition.
    Step 2: Define Conditions and Output Parameters for Comm. of Cust.Shipm. & Cust.Dcl
                Select Communication Method: Internet Mail
                          Mail Settings: send status: 3
    Configure the reamaining PFF actions as usual.
    This will work if that configured partner function is maintained in the customs declaration. And for that business partner, maintain the e mail address in the address dependent section via txn BP.

  • How to send smartforms as pdf attachments with e mail

    hi experts,
    how to send smartforms as pdf attachments with e mail???
    nitin

    Hi
    In the FORM Interface put proper parameter. Hope this helps.

  • Some pdf attachments missing in mail 5.2

    I fail to receive pdf attachments intermittently using Mail 5.2 running OS X 10.7.3 (Lion).  When the attachments do not arrive, I see no paperclip in the attachments column.  On a recent occasion, a colleague sent me three consecutive emails, each with 1-2 pdf files attached.  The middle one (containing one pdf), shows no attachment in Mail.  However, I know the attachment is there, because if I open it on my iPhone, I see the attachment.  What's more, if I forward the email to myself from the iPhone, I can now see the attachment again.  This has happened several times in the past as well.  Any ideas?

    I have the same problem, failing to receive pdf attachments intermittently using Mail 5.2 running OS X 10.7.3 (Lion), and not being counted among the attachments
    Two times where I'm aware it happened, the sender had replied and included the attachments I had sent in my original message, and I'm wondering if those attachments somehow led to their own attachments not displaying and not even being counted in the e-mail window.  "3 Attachments, 317 KB" displayed, but those were my three; clicking the "Save" drop-down menu listed only those 3 attachments of mine.  In one case, I had them resend their attachments as a new e-mail, and that worked.  Their 2 attachments totalled 941 KB, so Mail missed rather a lot by displaying just 317 KB.

  • How to send purchase order via e-mail.

    Please could someone let me know how to send purchase order via e-mail.
    I am an BC.
    e-mailing is functionning however I am not very familiar in settings for MM

    No, you do not need to touch ME_PRINT_PO. You need to put code before and after ME_PRINT_PO in the print program.
    Step 1 - Copy the standard print program SAPFM06P to make a Z version, lets call it ZSAPFM06P
    Step 2 - Copy include FM06PE02 to make a Z version, lets call that ZFM06PE02.
    Step 3 - ZSAPFM06P change the statement "Include FM06PE02" to read "Include ZFM06PE02".
    Step 4 - In include ZFM06PE02 you will find a subroutine called "ENTRY_NEU". In this subroutine you will see it first calls ME_READ_PO_FOR_PRINTING then calls ME_PRINT_PO. Before it calls ME_PRINT_PO just put:
    l_nast-nacha = 1.
    CLEAR l_nast-dimme.
    This means that ME_PRINT_PO will not e-mail, it will create a spool request.
    Step 5 - Still in ZFM06PE02, after ME_PRINT_PO has been called, add new code. First check that ent_retco EQ 0. If it does not then exit.
    Step 6 - Get the spool ID created by ME_PRINT_PO by either moving sy-msgv1 to a variable or select from NAST.
    Step 7 - Call function CONVERT_OTFSPOOLJOB_2_PDF using the spool ID from step 6, and put the result from table PDF into an internal table you can use later. ALso store the export variable pdf_bytecount, you will need it later.
    Step 8 - Call function SX_TABLE_LINE_WIDTH_CHANGE using the table from step 7 as content_in and put the results from content_out into a new internal table.
    Step 9 - Add some text into a internal table of type solisti1, this will be the body text of the e-mail.
    Step 10 - Add whatever receivers you want into an internal table of type somlreci1. If you just want it to go to the address that the PO would have gone to anyway, select the e-mail address from ADR6 where the address number = l_doc-xekko-adrnr, that is the data from the PO.
    Step 11 - Populate an internal table of type sopcklsti1 with data relevant to your PDF table from step 8 and the text table from step 9. You will have to put the size of the PDF from step 7 (pdf_bytecount) on the PDF line and the size of the text will be the number of lines of text * 255.
    Step 12 - Add info to a structure of type sodocchgi1. You can add the e-mail title in here, field obj_descr. Also add the size of the PDF and the size of the text from step 12 into doc_size, and give the doc a name in field obj_name. This can be anything, ZPDFPO for example.
    Step 13 - Call SO_DOCUMENT_SEND_API1 using the tables from steps 8, 9, 10 and 11 and the structure from step 12. You can amend the sending e-mail also. Set commit_work to space.
    Step 14 - That is all you need, but I actually call function RSPO_R_RDELETE_SPOOLREQ to delete the spool request created in step 4, then call NAST_PROTOCOL_UPDATE to add some more messages to the processing log of the PO.
    That is all.

  • How to send a file via e-mail with director

    Is it even possible to have a button in a free-standing
    projector that would send a file via e-mail, or open up an e-mail
    program and have the file attached and addressed? Or is it possible
    to put a file on a server? Of course, both of these methods would
    alert the user and ask for their permission.

    To just open the user's email program, you can use the
    standard lingo:
    goToNetPage(mailto:[email protected])
    That approach is kind of annoying because it actually opens
    an empty
    browser window then the user's email program. I don't think
    you can use
    that approach to send attachments though.
    A much better way is the fabulous DirectEmail xtra from
    DirectXtras.
    Check out their site:
    http://www.directxtras.com/demail_home.asp?UUID=1217348
    DirectEmail can do everything you are asking for (and more).
    It is
    cross-platform, shockwave safe, can handle text or HTML
    email, can do
    attachments, can use a mail server or not, and is really easy
    to use.
    The same company makes DirectFTP which you can get from:
    http://www.directxtras.com/DFTP_home.asp?UUID=1217348
    DirectFTP can put files onto an FTP site with a minimum of
    fuss. I have
    used both on quite a few occasions and they rock. You can
    actually
    write a full-fledged email or ftp program with those xtras
    and Director.

  • Sending PDF attachement via OUTLOOK

    Hello All,
    I am sending the output of a sales order as a PDF attachment via outlook mail.
    It wokrs fine. but only worry is the Chinese characters are appearing strange and not the characters what we need. The function module used to convert OTF to PDF is CONVERT_OTF.
    If I print / preview the output in SAP it shows the Chinese characters correctly.
    What can be the reason ? Please help.
    Thanks.

    pdf download software correctly multi language supports

  • Help! Trying to print emails w/PDF attachments via bluetooth from 8300 to HP OfficeJet8470

    Trying to print emails w/PDF attachments via bluetooth from 8300 to HP OfficeJet8470.
    My boss shopped for and picked this phone based on the store staff.  He wants to be able to have our service tech be able to receive work orders via email, in the form of a pdf attachment, and be able to print using the bluetooth enabled HP Office Jet 8470, hardware that was sold to him in another store with the statements that it would work with his application.
    Everything I have seen on this site, and the lack of information elsewhere, leads me to question if we have the correct applications/hardware at all...
    If so, I need to be able to explain clearly to my boss any options that we have, and why or why not it won't work. 
    Any ideas at all?  Thanks in advance~    Reagan

    Your BlackBerry alone won't connect to a Bluetooth printer. Whoever told him that it would should be questioned.
    However, there is an application called BeamSuite, that offers a printing solution specifically for PDF documens that you should explore...
    Print Documents to a Bluetooth Enabled Printer 
    http://www.slgmobile.com/beamsuite.html
    BeamSuite is much more than a document viewer though. You can also print your documents directly from your BlackBerry to any Bluetooth enabled printer. Simply pair your BlackBerry device with the printer and print your documents.
    If your printer is not Bluetooth enabled, you can still print your documents to it by connecting a Bluetooth printer adapter to your printer that connects to the printer’s USB port. A key differentiator of our solution is that it allows you to easily and transparently print to over 1500 compatible printers from virtually any BlackBerry device, not just the latest and the most powerful BlackBerry.
    1. If any post helps you please click the below the post(s) that helped you.
    2. Please resolve your thread by marking the post "Solution?" which solved it for you!
    3. Install free BlackBerry Protect today for backups of contacts and data.
    4. Guide to Unlocking your BlackBerry & Unlock Codes
    Join our BBM Channels (Beta)
    BlackBerry Support Forums Channel
    PIN: C0001B7B4   Display/Scan Bar Code
    Knowledge Base Updates
    PIN: C0005A9AA   Display/Scan Bar Code

  • How to send a report via e-mail

    Hello All,
               I want to send a report via e-mail.
               What should I do for that?
                Please help me out...
    Regards,
    Ravi Khattar.

    Hi,
      Please check the below code....
    data: t_objpack    like sopcklsti1 occurs 1 with header line,
            t_objhead    like solisti1   occurs 1 with header line,
            t_objtxt     like solisti1   occurs 0 with header line,
            t_objbin     like solisti1   occurs 1 with header line,
            t_reclist    like somlreci1  occurs 1 with header line,
            t_lobj       like abaplist   occurs 0 with header line,
            t_listobj    like abaplist   occurs 1 with header line.
      data: v_tab_line1  type i,
            v_tab_line2  type i,
            v_docsize    type i,
            v_len        type i,
            v_line(1250) type c,
            v_subj(132)  type c,
            v_cr(1)      type x value '0D',
            v_linefd(2)  type x value '0D0A',
            v_docdata    like sodocchgi1.
      clear: t_objpack[], t_objhead[], t_objtxt[], t_reclist[], t_listobj[].
      concatenate 'This email is generated from a SAP' sy-sysid '-'
         sy-mandt '- batch environment.' into t_objtxt separated by ' '.
      append t_objtxt.
      t_objtxt = 'Please do not respond to this email.'. append t_objtxt.
      v_docdata-obj_name = 'SAMPLE_TEST'.
      concatenate 'Sales Order Status Attachment -' sy-datum '-' sy-uzeit
             into v_subj separated by ' '.
      v_docdata-obj_descr = v_subj.
      describe table t_objtxt lines v_tab_line1.
      read table t_objtxt index v_tab_line1.
      v_docdata-doc_size   = ( v_tab_line1 - 1 ) * 255 + strlen( t_objtxt ).
      t_objpack-head_start = 1.
      t_objpack-head_num   = 1.
      t_objpack-body_start = 1.
      t_objpack-body_num   = v_tab_line1.
      t_objpack-doc_type   = 'RAW'.
      append t_objpack.
      clear v_line.
      if p_type = '1'.
        loop at t_list.
          concatenate v_line t_list v_linefd into v_line.
          v_len = strlen( v_line ).
          do 4 times.
            if v_len ge 255.
              if v_line+254(1) = v_cr.
                v_line255     = v_line254.
                v_line+254(1)  = ' '.
              endif.
              t_objtxt = v_line(255).
              v_line   = v_line+255.
              v_len    = v_len - 255.
              append t_objtxt.
            else.
              exit.
            endif.
          enddo.
        endloop.
        if v_line ne ' '.
          t_objtxt = v_line(255).
          append t_objtxt.
        endif.
        describe table t_objtxt lines v_tab_line2.
        t_objpack-doc_size   = ( v_tab_line2 - v_tab_line1 ) * 255.
        t_objpack-body_start = v_tab_line1 + 1.
        t_objpack-transf_bin = ' '.
        t_objpack-doc_type   = 'TXT'.
      else.
        t_objbin[] = html[].
        describe table t_objbin lines v_tab_line2.
        t_objpack-doc_size   = v_tab_line2 * 255.
        t_objpack-body_start = 1.
        t_objpack-transf_bin = 'X'.
        t_objpack-doc_type   = 'HTM'.
      endif.
      t_objpack-head_start = 1.
      t_objpack-head_num   = 1.
      t_objpack-body_num   = v_tab_line2.
      t_objpack-obj_name   = 'SAMPLE_TEST'.
      t_objpack-obj_descr  = 'Test'.
      append t_objpack.
      loop at s_email.
        t_reclist-receiver = s_email-low.
        t_reclist-rec_type = 'U'.
        append t_reclist.
      endloop.
      t_reclist-receiver   = sy-uname.
      t_reclist-rec_type   = 'B'.
      append t_reclist.
      call function 'SO_NEW_DOCUMENT_ATT_SEND_API1'
           EXPORTING
                document_data = v_docdata
                put_in_outbox = ' '
           TABLES
                packing_list  = t_objpack
                object_header = t_objhead
                contents_bin  = t_objbin
                contents_txt  = t_objtxt
                receivers     = t_reclist.
      if sy-subrc = 0.
       endif.
    Cheers,
    Bujji

  • Opening Large PDF attachments in e-mail?

    m trying to open large PDF attachments from e-mail (10-30mb) and either ipad says it can't open them "too large to read" or acts as though it will open but then doesn't open.  Any tips on how to make this work?

    I can open a 100mb pdf with iBooks.
    Try a reset; Hold the Powerbutton and the Homebutton pressed at the same time untill the Apple logo turns up on your screen.

  • Trying to send a photo via e-mail from iPhoto.  But it says my e-mail and password are wrong and won't send and I don't know how to correct it.  Where do I go?

    Trying to send a photo via e-mail from iPhoto.  But it says my e-mail and password are wrong and won't send and I don't know how to correct it.  Where do I go?

    In the iPhoto preferences ==> accounts delete the account and re-enter it
    LN

  • Pdf extension changes to .dat when send a file via e-mail from adobe acrobat 9

    to convert a file from microsoft word 2007 to PDF and send as an attachment via e-mail from adobe 9, the file is received with the extension changed to. dat, so recipients can not open it.
    Can anyone help me with this.

    What is the OS of the sending computer?
    What mail client?
    I receive plenty of files on my PC as .dat files, which come from Mac user(s), rename the extension to what I think they ought to be and have no further problem. (I cannot change the senders email settings where the problem originates)
    If the receiver knows it is a pdf file, they can drag it into Acrobat, but renaming the extension serves future use.

  • How to send the two PDF attachments into one mail

    Hi Team,
    I need one requirement...I have two forms ,one is cover sheet and another one is form data. These two forms are converted into two PDF documents and sent to vendor as mail attachments...
    Please suggest me,  how to send the two attachments through one mail .....
    Thanks & Regards,
    Samantula.

    Please SEARCH in SCN before posting. There are lots of threads related to send mail with multiple attachments.

  • How can we send multiple attachments in a mail from iPad 2

    Hi,
    I am using a ipad2. I want to know how we can send multiple attachments through mail from iPad. I did not find any option of doing this. Is there a way to do this.
    Regards,
    Satyabrat

    You can't do it natively on the iPad (unless you just want to send up to 5 photos from the Photos app). I use the GoodReader app which supports quite a few document/file types (e.g. PDF, Excel, Word, pictures), and from that I can select multiple files (including different types) and attach them to the same email.

Maybe you are looking for

  • Open and Close Popup With Javascript

    Using Apex 3.2 I have probably done this loads of times in my old job, but do not have access to the code and today I just can't get it to work properly. I have opened a pop up window with javascript Now I need to close it and refresh the calling pag

  • OB52 AND OB08 transactions not working in QAS

    Hi All, My client is upgrading from 4.7 to ECC 6.0 Due to not modifiable status two transaction could't be done in the new QUALITY System. This is IMG activity under the following. 1. OB52 :- Open and Close Posting periods (FA -> FA Global Setting ->

  • Problem while sending the o/p of payslip report through mail

    Hi ,          I am trying to mail the output of ZHINACALC0 (copy of standard program HINCALC0 for payslip display)         In the report code of ZHINCALC0, there is a form named xform which contanis the o/p of the employee's payslip. CALL FUNCTION 'H

  • Code insight

    hi there can anyone tell me why in all java IDEs it is impossible to let the Code editor to invoke the code insight list whenever any char is typed. this disability exist in all java IDEs. I use netbeans and eclipse and they both never allow you to e

  • JAXB: How to unmarshal from xml contains two schemas?

    Hi, all. My question is in subject. Ex.) schema1.xsd: (snip)... <xsd:element name="xxx"> <xsd:complexType> <xsd:sequence> <xsd:any namespace="##other" minOccurs="0" maxOccurs="unbounded" processContents="lax"/> </xsd:sequence> </xsd:complexType> </xs