Searching for a possibility to send data of an itab vial email

Hello,
i want to send data from an itab to an external emailadress. Does anybody know a FM or something other?
Thanks for your help

Below is the sample code for sending and email, just concatenate all the field line into one and pass that table to
CONTENTS_BIN as attachment.
DATA:
    L_DATE(10).
DATA:
  LI_RECLIST         LIKE SOMLRECI1  OCCURS 5  WITH HEADER LINE,
  LI_OBJTXT          LIKE SOLISTI1   OCCURS 10 WITH HEADER LINE,
  LI_OBJECT_CONT     LIKE SOLI       OCCURS 20 WITH HEADER LINE,
  LI_OBJPACK         LIKE SOPCKLSTI1 OCCURS 2  WITH HEADER LINE,
  LI_OBJHEAD         LIKE SOLISTI1   OCCURS 1  WITH HEADER LINE,
  LS_DOC_CHNG        LIKE SODOCCHGI1,
  LV_LINES           TYPE I,
  GI_OUTPUT          LIKE SOLISTI1   OCCURS 5  WITH HEADER LINE.
DO 10 TIMES.
  GI_OUTPUT-LINE = 'Answerthink'.
  APPEND GI_OUTPUT.
ENDDO.
WRITE SY-DATUM TO L_DATE.
LS_DOC_CHNG-OBJ_NAME  = 'ANGEBOT'.
CONCATENATE 'ZMBIBC_CCMS_LOAD Error Report u2013'
            L_DATE
       INTO LS_DOC_CHNG-OBJ_DESCR.
LI_OBJTXT = 'Please find the attached document'.
APPEND LI_OBJTXT.
CLEAR  LI_OBJTXT.
DESCRIBE TABLE LI_OBJTXT LINES LV_LINES.
READ TABLE LI_OBJTXT INDEX LV_LINES.
LS_DOC_CHNG-DOC_SIZE = ( LV_LINES - 1 ) * 255 + STRLEN( LI_OBJTXT ).
* Creation of the entry for the compressed document - body text
CLEAR LI_OBJPACK-TRANSF_BIN.
LI_OBJPACK-HEAD_START = 1.
LI_OBJPACK-HEAD_NUM   = 0.
LI_OBJPACK-BODY_START = 1.
LI_OBJPACK-BODY_NUM   = LV_LINES.
LI_OBJPACK-DOC_TYPE   = 'RAW'.
APPEND LI_OBJPACK.
DESCRIBE TABLE GI_OUTPUT LINES LV_LINES.
LI_OBJHEAD = 'OUTPUT'.
APPEND LI_OBJHEAD.
LI_OBJPACK-TRANSF_BIN = 'X'.
LI_OBJPACK-HEAD_START = 1.
LI_OBJPACK-HEAD_NUM   = 1.
LI_OBJPACK-BODY_START = 1.
LI_OBJPACK-BODY_NUM   = LV_LINES.
LI_OBJPACK-DOC_TYPE   = 'RAW'.
LI_OBJPACK-OBJ_NAME   = 'ANLAGE'.
LI_OBJPACK-OBJ_DESCR  = 'Output List'.
LI_OBJPACK-DOC_SIZE   = LV_LINES * 255.
APPEND LI_OBJPACK.
LI_RECLIST-RECEIVER = 'give email address.
LI_RECLIST-REC_TYPE = 'U'.
LI_RECLIST-EXPRESS  = 'X'.
APPEND LI_RECLIST.
CLEAR LI_RECLIST.
CALL FUNCTION 'SO_NEW_DOCUMENT_ATT_SEND_API1'
  EXPORTING
    DOCUMENT_DATA              = LS_DOC_CHNG
    PUT_IN_OUTBOX              = 'X'
  TABLES
    PACKING_LIST               = LI_OBJPACK
    OBJECT_HEADER              = LI_OBJHEAD
    CONTENTS_BIN               = GI_OUTPUT
    CONTENTS_TXT               = LI_OBJTXT
    RECEIVERS                  = LI_RECLIST
  EXCEPTIONS
    TOO_MANY_RECEIVERS         = 1
    DOCUMENT_NOT_SENT          = 2
    OPERATION_NO_AUTHORIZATION = 4
    OTHERS                     = 99.
BREAK PANAKAPALLY.
SUBMIT RSCONN01 WITH MODE   EQ 'INT'
                WITH OUTPUT EQ SPACE
                 AND RETURN.
COMMIT WORK AND WAIT.
CASE SY-SUBRC.
  WHEN 0.
    LOOP AT LI_RECLIST.
      IF LI_RECLIST-RETRN_CODE = 0.
        MESSAGE S000(Z1) WITH 'The document was sent'.
      ELSE.
        MESSAGE S000(Z1) WITH 'The document could not be sent'.
      ENDIF.
    ENDLOOP.
  WHEN 1.
    MESSAGE S000(Z1) WITH 'No authorization for sending'
                          'to the specified number'
                         'of recipients'.
  WHEN 2.
    MESSAGE S000(Z1) WITH 'Document could not be'
                           'sent to any recipient'.
  WHEN 4.
    MESSAGE S000(Z1) WITH 'No send authorization'.
  WHEN OTHERS.
    MESSAGE S000(Z1) WITH 'Error occurred while sending'.
ENDCASE.

Similar Messages

  • Is it possible to search for a specific term or data in Numbers for iOS?

    I looked for similar questions, but all of the similar questions did not specify if they were talking about the Mac version or the iOS.  So I apologize if the question has been asked.
    Is there a way to search for a specific term or criteria in Numbers for iOS?
    My father owns a small business and has a large inventory of parts.  He wants a simple way to search his inventory for a particular part number and see how many of a the specific part number he has in his inventory, while not in the shop or having to call in.  He wants to take an iPad along with him.
    My first thought was to create an spreadsheet.  I have a basic knowledge of how spreadsheets work, and I don't think my father would like anything more complicated.
    I was thinking about making the 1st column list the part number, 2nd column list the quantity in the shop, 3rd column list the quantity in the truck.
    If Numbers for iOS is not able to do this, suggestions for alternatives are welcome.
    Thanks in advance

    Hi j4nitor
    Would the "Find" option in the "Tools" menu do the job?
    If you search for the part number, it will be highlightet, and with your outline for a setup, I guess that would give you the overview you are talking about.
    Hope it helps.
    Best regards
    Ole

  • Is it possible to send data from a webcam to a server via flash?

    I've been reading about the Flash CS3 Camera class and can't
    seem to find out if there is any way I can grab a frame or two off
    the camera and send it to a web server. Is this possible?

    sure. you can create a bitmap from the video stream and then
    you can upload it to your server (with some server-side scripting).
    you can search for help on those two topics to accomplish your
    task.

  • Search for coding possible thru Toad, but not thru Forms Builder

    Hi all,
    I am searching for a particular word 'instalment' which is used in forms. when I search using 'Find and Replace PL/SQL' there are no matches. But in Toad, when i search in 'Find in Files', its displaying the code containing the above word in a particular .fmb file. why this is happening?? I am in urgent need of that code.
    Pls help me.. its urgent!!
    Edited by: user13106173 on Dec 6, 2010 3:05 AM

    When I open that file in Quick view from ToadWhich file are you referring too when you say "that file"? I assume you mean the Forms Module (.fmb), but I hate to assume things so could you please confirm this for me? ;-)
    How can we see attached library details?There is no way to view the PL/SQL code of an attached library except by opening the library in the Forms Builder. If your form has an attached library, the Object List Report will indicate there are attached libraries in the "Attached PL/SQL Libraries" section of the report.
    * Attached PL/SQL Libraries                        
       * Name                                            MY_LIB_NAME
       - Comments                                       
       * PL/SQL Library Location                         MY_LIB_NAME
       * Name                                            RP2RRO
       - Comments                                       
       * PL/SQL Library Location                         rp2rro
    But through forms builder, I cant see the below details. Don't quote me on this, but believe TOAD's quick view displays all of the code in the .fmb, even the code of an attached library, whereas Forms Builder will allow you to see the signature of the program units in the attached library, but not the code.
    Also the ct_message display item used here is not created in this particular form. It is in some other form. How this happens?Is the CT_MESSAGE display item a Subclassed item? Meaning, it was included in your form file through an Object Library or by copying the item to the form and choosing to subclass (create a reference to) the item rather than copy of the item in your form. Oracle Forms implements inheritence through the use of subclasses. By subclassing an item (be it a Visual widget [like a button] or a Program Unit) Forms stores a refernce to the object rather than the actual object. This allows you to share and reuse code and objects.
    Check the Object List Report of your form and see if there are any attached libraries. If there are attached libraries, open these libraries in Forms Builder to find your code. It is also also possible to subclass objects in your form file through the use of Object Libraries. Check your Object List Report to see if there is an Object Groups sections:
    * Object Groups                                    
       * Name                                            CALENDAR
       - Subclass Information                           
       - Comments                                       
       * Object Group Children                          
         * Name                                          WHEN-NEW-FORM-INSTANCE
         - Subclass Information                         
         * Real Object Pointed to by the Object Group Child
         * Name                                          WHEN-WINDOW-ACTIVATED
         - Subclass Information                         
         * Real Object Pointed to by the Object Group Child
    .....If the CT_MESSAGE item was added to your form thorugh an object library, it will be listed in this section of the object list report.
    Hope this helps,
    Craig B-)
    If someone's response is helpful or correct, please mark it accordingly.

  • Where to search for a specific Dimention related data

    Hi,
    I guess, hyperion planning store the dimention related data( parent, child, uda,attributes, consolidation operator, data storage etc) in some relational tables of that planning application. Can anybody help me understand where & how those data is stored and what are the table name I should look for a particular dimention related data?
    Actually I need to look into the planning RDBMS table to get the membernames of one particular dimention and search another huge Oracle database to search for those and retrieve the relevant data writing a query. I am using Planning ver9.3.1
    Please revert back for any clarification.
    Regards.

    Hi,
    Take a look at below tables in your application repository schema (db), they are all linked through id fields and they include dimensional infromation.
    HSP_OBJECT
    HSP_OBJECT_TYPE
    HSP_DIMENSION
    HSP_MEMBER
    HSP_ALIAS
    You get detail information from HSP_OBJECT. HSP_OBJECT keeps entire details for entire metadata. Other tables will help you understand the relations, positions etc.
    Cheers,
    Alp

  • Trying to set up an apple id for friend.  it says email is already in use but when i search for apple id it says no id associated with this email address.

    trying to set up an apple id for a friend.  it says email is already in use.  but when i search for the id using this email it says no apple id associated with this email address.

    Hello, Wyseup. 
    Thank you for visiting Apple Support Communities.
    Most likely this email address has been attempted to be setup as an Apple ID at some point.  You can reset your Apple ID password via the steps in the first article below.  If you do not have access to the email account, need assistance or are not receiving the password reset link, see the second article.
    Apple ID: If you forget your password
    http://support.apple.com/kb/ht5787
    Apple ID: Contacting Apple for help with Apple ID account security
    http://support.apple.com/kb/HT5699
    Cheers,
    Jason H.

  • Is it possible to send data to ITS via POST?

    Hi guys!
    I need to call SAP transaction via thin client and I need to make a call via POST, cos' I need to send there some data to process. Is it possible?
    Thanx, Peter

    Hi Peter,
    First some information about parameter transfer with ITS in general.
    http://server:port/scripts/wgate/<service name>/!?transaction=<transaction_name>&<inputfieldname1>=<value1>&<inputfieldname2>=<value2>&okcode=<okcode>
    The parameters can als be transferred as POST parameters. For this you need a form e.g.
    <form name="<form name>" method="post" action="`wgateURL() ...
    You might get some ideas by studying the login.html in the templast folder system of your ITS instance.
    Thanks and regards,
    Dieter

  • Search for User by last logon date no longer works after upgrading to SPS18

    We used to be able to Search by last logon date under User Administration as a quick way to find out who logged on for a particular date.  It worked well, but only for a single date range.  We were on EP 6.0 SPS13 at the time.  Since we have upgraded to SPS18, it no longer works.  All we get back now is no user found no matter what date we enter. 
    Has anyone else experienced this problem?  I've been searching and haven't found anything.  I wanted to try and get more information before I create an OSS message.
    Thank you,
    Kathy

    it's since SP16, to be correct: http://help.sap.com/saphelp_nw04/helpdata/en/43/bc6b9202454dece10000000a422035/frameset.htm
    kr, achim

  • Search for file based on file date

    I have an application that performs testing and I calculate and record several metrics into datalog files.  For certain metrics, I create a new datalog file for each day of testing.
    What I want to be able to do for one metric in particular is to recall historic data from previous files programatically. In other words, I want to display the previous day's data or week old data as a comparison to the current day's data without any user intervention.
    My file naming convention is to use an identifier for the type of data stored and then include the date the file was created (one file per day) ie.  FPY_09-19-12.dl  (FPY = First Pass Yield btw)
    I could probably take the current day's file path\name and go through some routine to change the date info but this seems kludgy and would have to account for weekends, holidays and what not.
    My prefrence would be to automatically search the data file path or folder (all files for a given metric are stored in a single network folder) and find the most recent file that is older than the current date or perhaps a weeks worth of files so I can average data across multiple days.
    Any thoughts on an approach to this would be appreciated.
    Doug
    "My only wish is that I am capable of learning each and every day until my last breath."

    The List Folder function will return to you a list of files as an array of strings. You could then search this string. If you want to deal with timestamps (perhaps some of your searching may be easier if you have a timestamp datatype), then you can simply convert each string in the array. Something like this:
    Attachments:
    parse file names into timestamps.png ‏20 KB

  • Search for list items by Created Date using caml

    Hi all,
    I'm trying to find list items with specific attributes using caml.
    I created a caml query that uses Last_x0020_Modified and File_x0020_Size for searching items.
    then i tried adding Created and Created_x0020_Date both either as Lookup or as DateTime to the caml.
    But since i added Created/Created_x0020_Date my query fails with 500 Internal Server Error.
    Can someone tell me what I'm doing wrong?
    here is my complete Entity I'm sending to SharePoint 2013:
    {'query' : { '__metadata': { 'type': 'SP.CamlQuery' }, 'ViewXml': '<View Scope="Recursive">
    <Query>
    <Where>
    <And>
    <Leq>
    <FieldRef Name="Last_x0020_Modified" />
    <Value Type="Lookup">2015-02-25T10:10:03</Value>
    </Leq>
    <Geq>
    <FieldRef Name="File_x0020_Size" />
    <Value Type="Lookup">1</Value>
    </Geq>
    <Leq>
    <FieldRef Name="Created" />
    <Value Type="DateTime">2015-02-25T10:10:03</Value>
    </Leq>
    <Eq>
    <FieldRef Name="FileDirRef" />
    <Value Type="Text">/sites/DennisDevSite/alib/Ordner1</Value>
    </Eq>
    </And>
    </Where>
    </Query>
    </View>' } }
    Thx in advance
    Dennis

    Try appending "Z" to DateTime. Change 
    <Value Type="DateTime">2015-02-25T10:10:03</Value>to <Value Type="DateTime">2015-02-25T10:10:03Z</Value>
    Blog | SharePoint Learnings CodePlex Tools |
    Export Version History To Excel |
    Autocomplete Lookup Field

  • I search for something on google and i am looking at what i searched for, but then it send me off to a different site without me clicking on anything. How do I stop it?

    For example, I searched water fashion pics for art research, when i clicked on the bar to look at the pics it normally shows the pictures without any problems but now i try clicking to see the pictures and it shoots me to other random sites. Is there a way to stop this?

    Short answer:
    Click Hide Song(s), it is what you wanted to do...
    Long answer:
    iTunes in the Cloud is a feature of your iTunes store account that allows you to redownload or stream your past purchases. When you delete a purchased track that is downloaded to your computer (like the first one shown here) you are asked if you also want to hide the song from iCloud. This would remove it from the computer and also stop it showing up with the iCloud symbol as the other tracks from that album (which are not downloaded) do.
    If a track shows with the cloud symbol you can play (stream) it by double-clicking the title, or click the cloud symbol to download a local copy to your library. If you try to delete one of these tracks you get a slightly different message confirming that you want to hide the track. Clicking hide will remove the listing from the library and any other device that shows your past purchases.
    Should you want to retrieve any item hidden in this way at a later date use Store > View My Account > iTunes in the Cloud > Hidden Purchases > Manage.
    To hide all your previous purchases that are not downloaded to your computer use Edit > Preferences > Store and untick Show iTunes in the Cloud purchases.
    tt2

  • Know an extension that searches for the file "last modified" date?

    I am working on a site with 80,000 pages and need to find an
    extension that will search all files within the site and populate
    the date each file was last modified. Know of an extension that
    will assist in this situation? Any ideas will help, thanks in
    advance!

    Ahh, so now your requirements are changing. You do not want a
    simple
    text file output after all, but instead a sortable list. So
    perhaps
    output as a csv that could be sorted within a spreadsheet.
    Altho 80000
    rows?
    It is a bit hard to believe that an organization with an
    80000 page
    website does not have inhouse gurus who could do this in a
    heart beat.
    E. Michael Brandt
    www.divaHTML.com
    divaGPS | divaFAQ
    www.valleywebdesigns.com
    JustSo PictureWindow
    mercuryfenix wrote:
    > I just finished the first scan and was not impressed.
    PageList creates an ugly
    > and nearly useless list of file name, title, path from
    page root, a link to the
    > file, last modified date and time, and some meta
    garbage. To top it all off,
    > you cannot sort it by any of these categories because it
    puts all the data into
    > a lousy html table- useless.
    > I could probably get buy with this, but it would be
    horrible....80,000 pages
    > to scan! O yeah, i forgot to mention it has a very low
    limit to how many files
    > it can scan in one scan!
    >
    > I still am in need of a better extension. Please keep
    helping.
    >

  • Is it possible to send data from an external application to a plug-in that executes a menu item?

    I want to pass some parameters from an external appliaction  to my own plug-in. The plug-in creates a menu item for adding electronic signature. The menu item is executed from my external application using MenuItemExecute("mymenutem").

    Since you control the application AND the plugin - you can define ANY method of communication you want.  Shared files, shared memory, IPC, named pipes, etc.

  • How to send data back to publishing stream

    Hi,
    Environment: ActionScript3.0, FMS, Flash Project created in Flash Develop
    How to send data back to publishing stream? I need to send data back to publishing stream.
    Using NetStream.send() we can send data to subscribers but is it possible to send data from subscriber back to publisher using any NetStream method.
    One other solution to this is remoteSharedObject, but if it is possible with NetStream class then let me know.
    Thanks

    There are a number of ways to extract data from CRM On Demand including:
    * Export - manual process, generate CSV file containing CRM On Demand data
    * List/Analytics - manual process, export the contents of a report of list to a CSV
    * Web Services - programmatic, develop an application that queries for data within CRMOD
    * Integration Events - programmatic, use workflow to trigger event creation and then poll for events to know when an operation occurs on a record (i.e. Insert of new Account record)
    As for getting that data into another system, that will depend on the system and the methods available for inserting data that it makes available.
    Hope this helps.
    Thanks,
    Sean

  • Sending Data to BAM via web service

    Is it possible to send data to BAM data objects via web service / http soap ? I know we can call extenal web service from BAM, but I was thinking of doing a real time from source application to BAM via http-soap web service.

    Hi,
    I hope it es not too late for an answer ...
    Yes you can do that .... have a look to this example
    procedure UpSert_DO (do_name VARCHAR2, do_key VARCHAR2, xmlload VARCHAR2) is
    begin
    --'&lt;_NAME>HZ.01.10&lt;/_NAME>&lt;/_WS>
    http_post(
    'http://localhost/OracleBAM/Services/DataObject/DataObjectOperations.asmx',
    '<?xml version = ''1.0'' encoding = ''UTF-8''?><env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:ns0="http://xmlns.oracle.com/integration/bam">
    <env:Body><ns0:Upsert><ns0:dataObject>' || do_name || '</ns0:dataObject><ns0:keyCSV>do_key</ns0:keyCSV><ns0:xmlPayload>' || do_key ||
    xmlload ||
    '</ns0:xmlPayload></ns0:Upsert></env:Body></env:Envelope>',
    'text/xml; charset=UTF-8',
    null,
    null,
    'USER_NAME',
    'PASS_WORD',
    '"http://xmlns.oracle.com/integration/bam/Upsert"'
    end;

Maybe you are looking for