How Can We Read Incoming SMS by using Application

In My Application  i am able to Send SMS Programatically to a Perticular Mobile Number When the User Clicks Submit Button.
then there is a responce message from that Mobile Number Now I want to Read that Message and Populate that SMS text in to my Application.
I Searched for this and found that this is not possible in iOS.
My Question is There any Possibility Accessing Inbox SMS With User Permissions?

hi,
If you want to record for two transations then you will use same method as one transation.For example if you want to execute two transations like VA01(sales order) and VL01N(delivery).Here first you can record for both transactions seperately and in the function module calling you will call BDC_INSERT two times
First function module contains Tcode as VA01 and Bdcdata table as data for the va01 transaction and second table contains tcode as VL01N and Bdcdata table conatins data which contains the record data of the delivery recorded data.
PERFORM open_batch_session USING p_sessa.
  LOOP AT ltcap_int
    WHERE NOT tot_inc IS initial.
    ltcap_int-adj = ltcap_int-adj * -1.
    CONCATENATE ltcap_int-fund '/' ltcap_int-cfc INTO zuonr.
    PERFORM fill_bdc_header.
    PERFORM fill_bdc_lines.
    PERFORM post_entries.
    PERFORM insert_batch_session USING 'FB01'.
    ltcap_int-adj = ltcap_int-adj * -1.
  ENDLOOP.
  PERFORM close_batch_session.
perform start_batch_session using p_sessa.
Budgets
  WRITE p_fy TO c_fy.
  PERFORM open_batch_session USING p_sessb.
  LOOP AT ltcap_int
    WHERE NOT tot_inc IS initial.
    PERFORM rollup_header.
    PERFORM rollup_line.
    PERFORM rollup_save.
    PERFORM insert_batch_session USING 'FR21'.
    IF NOT ltcap_int-gsef_amt IS INITIAL.
      PERFORM rollup_header_gsef.
      PERFORM rollup_line_gsef.
      PERFORM rollup_save.
      PERFORM insert_batch_session USING 'FR21'.
    ENDIF.
  ENDLOOP.
  PERFORM close_batch_session.
perform start_batch_session using p_sessb.
We can process more than 1 transactions in session method.
For this we will create the internal tables equilant to transactions and
Between BDC_open_group and BDC_close_group we will call the BDC_Insert the no.of transactions times and populate the internal tables which contains the data pertaining to diffrent transactions.

Similar Messages

  • How can I read a pdf file using an ALC process

    I have a pdf form with a schema, I want to read the pdf form in to an xml with same schema so that i can process the data  that i get from the pdf file.
    I have tried the following
         I have created an input document variable (where i ll give my pdf form as input)
    I have created an output xml variable with the same schema as the input pdf document.
    I have created a process with set value service which assign the input pdf into the xml variable(so that i ll get the data from the pdf in to xml)
    Is the above approch is correct ..
    If any one knows, please suggest an approch to read my pdf.
    Thank You

    The fact that you have used a schema merely meand that the submission of the form data will be in the format defined by the schema. Generally when you submit the form you associate an XML variable in the user step to recieve that data (this assumes that your form is setup to submit xdp data). If you associate your schema with that XML variable you will be able to expand and see teh structure of your schema when using SetValue services etc. If you are merely interested in getting what was submitted (say to validate the data against the schema) you will have to assign the inbound data to another variable and remove the outer nodes that were added for our internal purposes (xfa.datasets.data). This is done in a setValue where you woudl use an XPath expresion of xfa/datasets/data/* (meaning that all nodes below the data norde are copied to the named variable.
    Hope that helps
    Paul

  • How can I read something from keyboard using i/o operations?

    I wrote the following code in java using *"oracle Jdeveloper 11g release 2"* platform and i think it's correct, but I have a little problem when I try to execute him, it asks me to introduce a number, and this it's correct, but I don't know how to introduce that number. If i want to write the same code in c or c++ using Visual Studio it's very easy when i want to introduce a number i must run the code and then a console window will appear and then i introduce the number.
    Could someone to give me a link at a tutorial about how to use *"oracle Jdeveloper 11g release 2"* when I have to use i/o operations or something useful.
    package instante;
    import java.io.*;
    public class Read_from_keyboard {
    public static void main(String[] args) {
    BufferedReader keyboard = new BufferedReader(new InputStreamReader(System.in), 1);
    double number_read = 0.0;
    String line = "";
    try {
    System.out.flush();
    System.out.println("Give a number: ");
    line = keyboard.readLine();
    Double tmpDouble = Double.valueOf(line);
    number_read = tmpDouble.doubleValue();
    System.out.println("The number is: " + number_read);
    } catch (IOException e) {
    System.out.println(" Input from keyboard " + e.toString());
    System.exit(1);
    Thank you!
    Edited by: Iosif on Nov 9, 2012 5:06 AM

    Its a command line application. Perhaps JDeveloper has support built in to be able to do that in the IDE, but generally you'd just want to run a command line application on the command line / shell. How to do that is described in any Java book, in the Oracle Java tutorials and in just about a couple hundred/thousand articles you can find through Google.
    Other than that, the JDeveloper forum is here:
    JDeveloper and ADF

  • How can I read a serial port using XCode?

    Hello,
    I'm using an iMac 2009 with Mac OS X 10.6.7. I have a USB to Serial cable and I want to connect a hardware I made using a microprocessor Microchip PIC to my mac. I'd like to read values from the serial port and also write values to it. I'm already able to do this using the Terminal with the following command:
    screen /dev/tty.usbserial 9600
    I'd like to build my own application now. Does anyone could send me any sample code?
    I'm using XCode 3.2.5 and I'm a beginner on XCode.

    I looked at Dev Center for sample code, and I found this link:
    http://developer.apple.com/library/mac/#samplecode/SerialPortSample/Introduction /Intro.html%23//apple_ref/doc/uid/DTS10000454-Intro-DontLinkElementID_2
    I downloaded the sample Xcode project and, when I click on "Build and Run" button, it generates an error with the following message:
    "GCC 4.2 is not compatible with the Mac OS X 10.4 SDK (file SerialPortSample.c)"
    Maybe, it occurs because the code is too old (2005). I didn't find any newer sample.
    Could you help me?
    Thank you.

  • How can i send an sms to any mobile without using gsm modem or mobile using

    how can i send an sms to any mobile without using gsm modem or mobile using oracle . note again. without using gsm mobile or modem. again note. i want to send sms 100% free sms. :) is it posible ?

    Hi,
    Check this one.
    http://www.oracle.com/technology/products/ias/portal/point/sms/installation.html
    regards,
    Dipankar.

  • How I can lock  undesired incoming SMS on iPhone 5 ?

    How I can lock  undesired incoming SMS on iPhone 5?

    Unfortunately, they're evading their responsibility and blowing smoke. No iPhone (and darn few phones per se) has ever offered and supported call blocking. That is inevitably the domain of who's forwarding the call: the carrier. The near-monopoly status that some have in some places does NOT help in prodding them to fulfull their duties.
    So, in summary, it would appear you are
    <Edited By Host>

  • How can i reject incoming calls in lock screen , without using ON/OFF key ??? (in iOS 7.0.2)

    how can i reject incoming calls in lock screen , without using ON/OFF key ??? (in iOS 7.0.2)

    You can't. Either tap the Sleep/Wake button or just let the call to continue to ring.

  • How can one  read a Excel File and Upload into Table using Pl/SQL Code.

    How can one read a Excel File and Upload into Table using Pl/SQL Code.
    1. Excel File is on My PC.
    2. And I want to write a Stored Procedure or Package to do that.
    3. DataBase is on Other Server. Client-Server Environment.
    4. I am Using Toad or PlSql developer tool.

    If you would like to create a package/procedure in order to solve this problem consider using the UTL_FILE in built package, here are a few steps to get you going:
    1. Get your DBA to create directory object in oracle using the following command:
    create directory TEST_DIR as ‘directory_path’;
    Note: This directory is on the server.
    2. Grant read,write on directory directory_object_name to username;
    You can find out the directory_object_name value from dba_directories view if you are using the system user account.
    3. Logon as the user as mentioned above.
    Sample code read plain text file code, you can modify this code to suit your need (i.e. read a csv file)
    function getData(p_filename in varchar2,
    p_filepath in varchar2
    ) RETURN VARCHAR2 is
    input_file utl_file.file_type;
    --declare a buffer to read text data
    input_buffer varchar2(4000);
    begin
    --using the UTL_FILE in built package
    input_file := utl_file.fopen(p_filepath, p_filename, 'R');
    utl_file.get_line(input_file, input_buffer);
    --debug
    --dbms_output.put_line(input_buffer);
    utl_file.fclose(input_file);
    --return data
    return input_buffer;
    end;
    Hope this helps.

  • How can I read a file with ASCII Special Character into a SQL table using SSIS 2008?

    I've tried everything to read this file and am getting no where.   Help how can I read this file and load a SQL table?
    RS - AscII - 30  (Record Separator)
    GS - AscII - 29 (Group Separator)
    Thank you for your assistance - Covi
    Mark Covian

    We can use script component as source/transformation to read the text file and assign the contains to a string. Split the string by chr(30)  i.e RS and finally stored into an array or write to the output buffer of the script component.
    For example on how to use script component refer this link
    http://social.technet.microsoft.com/Forums/en-US/6ff2007d-d246-4107-b77c-624781baab38/how-to-use-substring-in-derived-column-in-ssis?forum=sqlintegrationservices
    Regards, RSingh

  • How can I read a form using session in javaServerlet?(thanks)

    How can I read a form using session in javaServerlet?(thanks)

    you can not. You get the form entries through the request object.

  • Using Lab view ver 6,How can I read a cell of excel file right after I write to it

    How can I read a specif cell of an Excel file using Labview VI.

    Hi,
    Attached is a LV6.1 VI which will read a cell.
    It will be looking for a sub VI found in the example C:\Program Files\National Instruments\LabVIEW\examples\comm\ExcelExamples.ll​b.
    The returned value is a string value but there is no reason why it couldn't be a number. Just connect a numeric to the type connector of the Variant to Data function.
    Hope this helps.
    Regards
    Ray Farmer
    Regards
    Ray Farmer
    Attachments:
    Get_Cell_Value.vi ‏41 KB
    Write_Table_To_XL.vi ‏101 KB

  • How can I read mail attachment for making it to the payload?

    Hi everybody,
    in the following my scenario:
    I have an incoming message with attachment by the mail sender adapter using PayloadSwapBean (because of other messages I have to use the bean). I want to send this attachment by using the mail receiver adapter to fix E-mail-address keeping the FromMailAddress, the MailSubject and the FileName
    without the metadata as additional attachment.
    I have found a thread where it is explained how to handle "payload as mail attachment and dynamic filename" by java-mapping. So far so good. My question is: How can I make my attachment to be the payload? How can I read the attachment by java-mapping?
    Thanks for help.
    Reagrds,
    Sebastian Linke

    USe payloadSwapBean for this to swap your payload and attachment
    /people/michal.krawczyk2/blog/2005/12/18/xi-sender-mail-adapter--payloadswapbean--step-by-step
    Rajesh
    Edited by: Rajesh on Feb 5, 2009 5:29 PM

  • HT4907 how can i get my sms on my imac instead of phone

    my phone broke , how can i receive my sms using my imac?

    You cannot since it's not a phone.

  • How can I read email from my aol account from my iphone and keep it as uread on my computer at home.  It automatically goes to read mail on my computer.  On my computer if I want to keep an email to answer later I can mark it "Keep as New".

    How can I read my email from my aol account from my iphone and keep it as "unread" on my computer at home?  At home I can read an email and if I want to get back to it at a later date I can mark it as "keep as new".  I tend to forget it if it goes to "read" mail.   Right now, when I read an email from my phone it goes automatically to "read" mail.

    On the iPad, using the mail app, there is no way to do what you are asking without tapping the flag icon and marking the item as unread. Have you tried the OWA app for the iPad? It may have that functionality, but I haven't tested it as you need an Office 365 subscription with Exchange support to use the app.

  • How can I change excel column header using Labile.

    Dear Experts,
                          How can i change excel column header using LabVIEW.
    Thanks for any and all help!
    M.S.Sivaraj.
    Sivaraj M.S
    CLD

    As I said in my previous post, column headers in Excel are merely row 1 cells. May be I missing something here, so please be more explicit with your question.
    I guess you are using the Excel Report tools, and you want to modify an existing sheet. From my limited experience with the Excel Report tools, it is not possible to open an existing woorkbook (except as template...), so the answer to your question should be "Forget it"...
    The work around is to use the example I pointed for you before, and either to write the whole new colum headers as a string array, starting in A1, or to write a single string to a given cell in row 1.
    Hope this helps 
    Chilly Charly    (aka CC)
             E-List Master - Kudos glutton - Press the yellow button on the left...        

Maybe you are looking for