Create SAP Service into the same solution.

Hi Experts,
Need help for creation SAP service which is always in running mode like a Alert management.
Right now i am going to develop new AddOn for SMS Integration.
In that i need active service which is runing in back end and when i am going to place any transaction then that time automatically
send message to that customer.
I am confused where to write service code in my solution.
If any one have any idea please suggest me.
Thank you Experts
Pradeep Khodke

Yes, Johan you are r8, when purchase/sales/production/inventory any transaction at the time of adding or update I need to get same data out of the B1 database, build a message, and send that message to that vender which is present in same transaction record.
For Example -
I am going to enter 1 sale order for Mike of Rs 10,000 , and after sale order placed i have to send sms msg immediately  to mike(msg -Your Order totalling INR.10,000 was proccessed. )
for that what can i do?????
Thanks and Regard
Pradeep

Similar Messages

  • Problem: Project can't connect to WCF RESTful service in the same solution

    I followed the instruction in "Consuming
    a RESTful web service with jQuery and Ajax" on the blog of Dedra L. Welch and created in my solution a WFC Web Application (RestService)
    and a ASP.NET Empty Website (TestClient), but the client website couldn't connect to the service. I'm not sure did the jQuery function even run at all.

    Hi blue_lightning,
    >>but the client website couldn't connect to the service. I'm not sure did the jQuery function even run at all.
    First please try to follow the blog step by step to see if it works.
    Then please try to use the fiddler to help you detect if the service is run or not. Or you can just use a Get method in your web service to test if you can broswer it in the broswer. If you can get the right value with the Get method, then it means
    that your service should run.
    #Fiddler:
    http://www.telerik.com/fiddler .
    Best Regards,
    Amy Peng
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Two RAC services of the same name in a GI cluster

    Grid Version : 11.2.0.3
    Platform : RHEL 5.4
    In our 11.2.0.3 GI cluster , we have DBs of version 11.2.0.3 and 11.2.0.2 running.
    Only today I've realized that you can create two services of the same name in a cluster.
    ORCL      db is of version 11.2.0.3
    NATSUP db is of version 11.2.0.2
    I managed to create a service named DNP_TST_02 on both DBs.
    --- After env variables for 11.2.0.3 db Home
    --- Creating DNP_TST_02 service in 11.2.0.3 DB
    srvctl add service -d ORCL -s DNP_TST_02 -r ORCL1 -a ORCL2
    srvctl start service -d ORCL -s DNP_TST_02
    srvctl status service -d ORCL -s DNP_TST_02
    -- Tested connectivity using
    sqlplus tst_for_drop/[email protected]:1628/DNP_TST_02.hk.standardchartered.com
    --- Creating DNP_TST_02 service in 11.2.0.2 DB
    srvctl add service -d NATSUP -s DNP_TST_02 -r NATSUP1 -a NATSUP2
    srvctl status service -d NATSUP -s DNP_TST_02
    srvctl start service -d NATSUP -s DNP_TST_02
    srvctl status service -d NATSUP -s DNP_TST_02
    -- Tested connectivity
    sqlplus tst_for_drop/[email protected]:1628/DNP_TST_02.hk.standardchartered.com
    ---But, wouldn't a service of the same name confuse the listener ?
    If the user you are trying to connect exist in both DBs, should the listener/CRS will be more confused. Right ?
    If the users exist in both DBs and have the same password, then it will be worse . Right ?
    So, should be CRS be allowing two service of the same name in two DBs in one GI cluster ?

    Hello, Garry - you can get exactly the same effect in a single instance environment. I've run this in two separate databases that happen to be on the same machine:SQL>  alter system set service_names=dup scope=memory;
    System altered.
    SQL> alter system register
      2  ;
    System altered.
    SQL> exit
    Disconnected from Oracle Database 11g Enterprise Edition Release 11.2.0.3.0 - Production
    With the Partitioning, OLAP, Data Mining and Real Application Testing options
    oracle@domU-12-31-39-0E-D5-A2:[/home/oracle]
    $ lsnrctl status
    LSNRCTL for Linux: Version 11.2.0.3.0 - Production on 08-JAN-2013 07:18:53
    Copyright (c) 1991, 2011, Oracle.  All rights reserved.
    Connecting to (DESCRIPTION=(ADDRESS=(PROTOCOL=IPC)(KEY=EXTPROC1521)))
    STATUS of the LISTENER
    Alias                     LISTENER
    Version                   TNSLSNR for Linux: Version 11.2.0.3.0 - Production
    Start Date                07-JAN-2013 09:24:30
    Uptime                    0 days 21 hr. 54 min. 23 sec
    Trace Level               off
    Security                  ON: Local OS Authentication
    SNMP                      OFF
    Listener Parameter File   /u01/app/oracle/product/11.2.0/db_2/network/admin/listener.ora
    Listener Log File         /u01/app/oracle/diag/tnslsnr/domU-12-31-39-0E-D5-A2/listener/alert/log.xml
    Listening Endpoints Summary...
      (DESCRIPTION=(ADDRESS=(PROTOCOL=ipc)(KEY=EXTPROC1521)))
      (DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=domU-12-31-39-0E-D5-A2.compute-1.internal)(PORT=1521)))
      (DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=domU-12-31-39-0E-D5-A2.compute-1.internal)(PORT=8080))(Presentation=HTTP)(Session=RAW))
    Services Summary...
    Service "DUP" has 2 instance(s).
      Instance "class", status READY, has 1 handler(s) for this service...
      Instance "orcl", status READY, has 1 handler(s) for this service...And yes, you get connected randonly through the usual connect time load balancing:$ sqlplus scott/tiger@domU-12-31-39-0E-D5-A2:1521/DUP
    SQL*Plus: Release 11.2.0.3.0 Production on Tue Jan 8 07:28:50 2013
    Copyright (c) 1982, 2011, Oracle.  All rights reserved.
    Connected to:
    Oracle Database 11g Enterprise Edition Release 11.2.0.3.0 - Production
    With the Partitioning, OLAP, Data Mining and Real Application Testing options
    SQL> select name from v$database;
    NAME
    ORCL
    SQL> !sqlplus scott/tiger@domU-12-31-39-0E-D5-A2:1521/DUP
    SQL*Plus: Release 11.2.0.3.0 Production on Tue Jan 8 07:29:09 2013
    Copyright (c) 1982, 2011, Oracle.  All rights reserved.
    Connected to:
    Oracle Database 11g Enterprise Edition Release 11.2.0.1.0 - Production
    With the Partitioning, OLAP, Data Mining and Real Application Testing options
    SQL> select name from v$database;
    NAME
    CLASSI can see how it would be unavoidable in a single instance environment, but clusterware really shouldn't permit it. I think it is almost a bug, service names should be unique within a cluster.

  • Different Service Desks in different clients in the same Solution Manager?

    Hi
    Is it possible to place different Service Desks in different clients in the same Solution Manager?
    Concrete we plan the following  scenario:
    - Division 1
      -- System 1,2,3, etc.
      -- Service Desk  in client 100
      -- Monitoring for the whole trust in client 050 (still exists)
    - Division 2
      -- System 4,5,6, etc.
      -- Service Desk in client 200
      -- Monitoring for the whole trust in client 050 (still exists)
    Is it possible to realize this scenario or are there any restrictions?
    Thanks & Regards
    Andreas
    Edited by: Andreas Städler on Mar 19, 2008 5:52 PM
    Edited by: Andreas Städler on Mar 19, 2008 5:54 PM

    hi Neil
           did u solve the problem still Struck  let me know
         we can access the same iview  n no of  clients. let me know any do u have any queries and other infomation
    bvr
    Edited by: bvr on Dec 2, 2008 6:32 AM

  • Japanese characters alone are not passing correctly (passing like ??? or some unreadable characters) to Adobe application when we create input variable as XML data type. The same solution works fine if we change input variable data type to document type a

    Dear Team,
    Japanese characters alone are not passing correctly (passing like ??? or some unreadable characters) to Adobe application when we create input variable as XML data type. The same solution works fine if we change input variable data type to document type. Could you please do needful. Thank you

    Hello,
    most recent patches for IGS and kernel installed. Now it works.

  • ITune has created several folders for the same album title.  How do I consolidate those folders into 1?

    iTune has created several folders for the same album title.  How do I consolidate those folders into 1 without consolidating all albums?

    I don't think you want to combine all of the HTML into one file. That doesn't make too much senese. If you wanted to, then just copy everything from all 3 files between <body></body> and paste into one html file between <body></body>. I think what you're trying to do is create seperate static pages. I would read/youtube how to setup a blogger website. This website also might help you out - http://www.wikihow.com/Add-a-Page-to-Blogger. This video will show to how to create a navigation - http://www.youtube.com/watch?v=8KD3vF8ofgw

  • I want to create a mail merge for address labels into a table, but when I fill a table with merge fields, it ends up creating multiple entries for the same address, rather than one table full of each address.

    ...but when I fill a table with merge fields, it ends up creating multiple entries for the same address, rather than one table full of each address. Please help.
    Thanks!

    That is a quirk of Pagesthat  it applies only one record per page.
    There is a way around this:
    http://www.freeforum101.com/iworktipsntrick/viewtopic.php?t=245&highlight=labels &mforum=iworktipsntrick
    Peter

  • Can we create two POs for the same 3rd party Sales Order?

    Hi MM experts,
    Issue: Can we create two POs for the same 3rd party Sales Order
    In Third party purchase process, first sales order created with a spl. item category  and it creates the PR automatically with the Sales order material and Qty and this PR converted PO.
    They got a pur.req. for sale order on same item for same delevery date. They did not get any warning msg. saying that a PO was prviously placed against this sale order.
    How it is possible that we were able to place another PO? concern is that second PO was palced against SO which was already used & completed. they were able to place 2 POs for the same customer same delevery date. How it is possible?
    If anyone face the same issue, please let me know if you have any answer to this questions.
    Thanks in advance.
    Suresh.

    Suresh,
    It is hard for me to give you a definitive answer since you have created a customized solution.
    How it is possible that we were able to place another PO? concern is that second PO was palced against SO which was already used & completed. they were able to place 2 POs for the same customer same delevery date. How it is possible?
    Normally, the system will not do this.  A third party PR or PO will be 'account assigned' to the Sales order.  SAP standard 3rd party will not create additional purchase reqs unless there has been manual intervention.  Try searching for changes in the Sales order and changes in the original purchase order.  They may give you a clue.
    I believe the normal Item category for third party SO is TAS (I am working from memory here, I am not in front of a system).  I don't know what ZTAG does.  I confess I am not an SD expert.  You might also want to post your question in an SD forum.
    You mention two custom applications, ZMMPLAN and ZSTPMP.  These somehow have functionality that is used to help you convert your PRs to POs.  If I were in your position, I believe I would also look at these applications for clues to how they might be contributing to your problem.  And please don't send me details about these apps.  I will not comment on custom code in this forum.
    Sorry I can't be of more help.
    Rgds,
    DB49

  • Implementing differents web services in the same composite

    hi everybody,
    what are the bests practises to implement differents web services in the same composite:
    - creating one WSDL with differents portTypes and expose one web service for each portype
    - creating differents WSDL for each web services
    Thanks,

    Hi
    I would prefer different WebServices for each set of Operations. Please note that you can have multiple operations with different input and output xsd parametes. So its like One WebService -> One Port -> Multiple Operations. Only draw back is, you have to deploy all these webservices as multiple WAR files. Or one big EAR that has all these WAR Files.
    I tried once One WebService -> 2 Ports -> Each Port with its own set of operations. I ran into problem when I tried to generate client for this webservice. The JAXB generated classes was odd and this did not work.
    There may be some other option also. Hopefully someone can share their thoughts.
    Thanks
    Ravi Jegga

  • HT3819 Home Share issue: I have a Mac and Apple TV. Both are log into the same Wifi network and the same iTunes account (I can view purchased movies on AppleTV). Home Sharing shows 'ON' for both devices. BUT...AppleTV shows no computers. Itunes sidebar-no

    Has anyone else found solution to Apple devices not 'seeing' each other on Home Share?  I have a Macbook Air (new Nov'12) and Apple TV (new Dec'12). Software updated on both. Both are logged into the same Wifi network and the same iTunes account (I can view movies purchased from iTunes on my AppleTV). Home Sharing shows 'ON' for both devices. BUT...AppleTV shows no computers... and ... Itunes sidebar does not have a 'Shared' area at all.  Help please as without this functionality, my Apple TV only provides portal to purchased (i.e. Netflix,...) content which I can get from Wii or Xbox.
    I have already tried the following without success:
    1. Homeshare DID work the first day after I setup Apple TV... but the next day it has not worked since then.
    2. Powered off 30 sec then re-started (Apple TV & Macbook & iTunes login)
    3. Checked Firewall settings per Home Sharing troubleshooting guide (correct settings)
    4. Turning on Photostream in iPhoto and selecting iPhoto within iTunes and then checking to see if Photostream shows anything on AppleTV (it shows 'on' for my iTunes account but 'Zero' pictures found ... despite the >3,000 pictures showing avail in iTunes).
    I also have 'Remote" app on my iPhone 4, with Home Sharing turned on (same Wifi network)... it has a very similar message as the Apple TV and same result that despite all devices having HomeShare 'on' they cannot see each other:  "Remote will automatically find the iTunes libraries and Apple TVs that have Home Sharing turned on using the account xxxx (it lists my correct itunes account name)."

    I solved this by reset of the Wifi (unplug cable and power to both modem and wifi ... wait 60 sec ... plug in modem cable and power ... plug in wifi power and LAN to modem ... restart AppleTV and Mac ... Turn Home Share 'OFF' in iTunes then back "ON" ... it took ~60 sec for the AppleTV to pick up my Mac in computers.

  • How can I using tpcall from one service to another service in the same server

    When I using tpforward between two services in one server, it's working ok. However,
    when I using tpcall from one service to another service, it's failed?
    anybody can tell me why?
    thanks
    george

    "george" <[email protected]> wrote:
    >
    When I using tpforward between two services in one server, it's working
    ok. However,
    when I using tpcall from one service to another service, it's failed?
    anybody can tell me why?Basically, tpcall:ing another service in the same server is a no-no, unless you
    a) are running a multi-threaded server (requires TUXEDO 7 or newer + compilation
    options) or
    b) use tpacall() instead of tpcall() and specify the flag TPNOREPLY. This is probably
    not what you want to accomplish, though.
    The reason is that TUXEDO servers by default (and always in versions before 7)
    are single-threaded. If service A and B both reside in server X, server X will
    be busy taking care of the call to A. If A makes a call to B, the call will be
    put on the queue to X, but X will not look at the queue until it is done with
    A, which won't happen until B returns... deadlock!
    You can play tricks with starting multiple instances of X, but in the end you
    will always face a risk (something lika a race-condition) for a dead-lock.
    Solution: Move service B to another server (usually quite easy) OR switch to multi-threading,
    if that's possible. Just make sure all code your service calls is MT-safe as well...
    thanks
    georgeHope this helps you,
    /Per

  • Itunes or icolud created a ton of the same playlist and now its on all my devices (iphone, my pc itunes, and i pad) how to i get ride of the efficiently?

    While on vacation I tried to create one new playlist, but for some reason my ipad decided to create thousand(s) of the same one, and since I have icloud they created were on my iphone, ipad, and my itunes library on my pc,  now have and so many of the same playlist that I cant even count how many there are, but my best estimate in in the thousands. The worst part is now all of my devices with itunes are running slow, and if I click on the playlist it will run slow, and eventually works but not like it used to.
    I've tried deleting them on my iphone or ipad, but to delete one takes about 10-15 seconds and it would take me about a month to do it this way. I tried deleting them from itunes on my PC but it is even worse doing it that way, it just freezes and since the names are all the same I can't even tell if there being deleted.
    I have tried selecting more then one of the same playlist in itunes but it doesnt work.
    Has anyone else ran into anything like this? I know it might sound kind of minor but I used my playlist all the time and now I'm scared to even click on them because it just starts this long, annoying waiting game.
    Help!

    See this thread...
    tt2

  • How to put material and service in the same order

    I want to put the material and service in the same order. How do it input different taxes. and also migo for one material item and other service item.

    HI,
    In your scenario create material and service PO using T-code ME21N as follows.
    1) Select PO document type, vendor and PO date
    2) PO first line item account assignment 'N' if project and give input data material code,plant,storage location,qty,rate,delivery date and tax code.
    3) PO second line item account assignment 'K', item category 'D',material short text for service, plant,storage location,material group data's are input given and press enter it will open 'Service Tab' in Item Detail Menu.
    4) In item Detail Menu - Service tab you will give Service no.,qty,gross price for the above  service material activity and service tax code in Invoice TAB and then check PO and SAVE.
    5) After getting PO approved by top management.
    6) PO first line item, you will do MIGO and PO second line item you will do ML81N service entry sheet.
    7) On the vendor bill, you will mention material document number (GRN no.) & Service sheet number and given to accounts dept.. They will book vendor bill and give payment.
    Hope, it is useful for you and solve your requirement.
    Regards,
    K.Rajendran

  • How do we deploy several Web Services under the same Root Context?

    We have several webservices, each in their own WAR file, running on OC4J 10.1.3. They each have their own Root Context and Oracle Welcome Servlet. This works well, and since they are all separate we can easily hot-deploy updated versions.
    The drawback is separate URL's like :
    .../RootContext1/WebService1
    .../RootContext2/WebService2
    .../RootContext3/WebService3
    How do we assemble our Web Services to share a single Root Context? We are hoping to achieve URL's like this :
    .../WebServices/WebService1
    .../WebServices/WebService2
    .../WebServices/WebService3
    Do we have to bundle them all into the same WAR/EAR (and loose the power of individual deployment) or is there another way?
    Thanks in advance!

    If each one is a separate WAR file, then at the OC4J level each one will need a separate root context as it gets bound into the default-web-app.
    I guess the corollary question here is if there is someway to combine multiple webservice endpoints into one WAR file -- which can then be mapped to a single root context.
    I'll try and get someone more WS savvy than myself to take a look at this for you.
    And Clever Apache is a viable option.
    cheers
    -steve-

  • I need to sync an ipad mini with a regular ipad. If I were to open them plug them both into the same computers itunes, would they have identical information?

    I need to sync an ipad mini with a regular ipad. If I were to open them plug them both into the same computers itunes, would they have identical information?

    You will need to choose one as the "master", back that unit up to iTunes, then restore the other unit from that backup and then sync all the same content and apps. That's the only way they'd have identical data. If you need to keep then synched on an ongoing basis, you'll probably need to use some sort of cloud-based service such as iCloud or Dropbox to hold the data, which of course will require that your apps support that service for storage of documents.
    Regards.

Maybe you are looking for

  • TS2972 some of my episodes are not showing up on my ipod HELP!!!!

    i connect with my ipod and some episodes are not showing up HELP!!!

  • Sync iCal - iPhone - Exchange 2007 broken after MobileMe Calendar upgrade

    I need to keep contacts and calendars in sync between my work pc (XP, Outlook 2003, Exchange Server 2010), my home Mac (10.6.6) and my iPhone (3GS, iOS 4.3). Until recently, that worked fine by the following (roundabout) way: PC syncs with Plaxo onli

  • Problem in external XML reading

    Hi, I am trying to develop a birthday application.The aim of the application is to populate all the birthday dates in datechooser and display the appropriate photograph of the person when the highlighted date is clicked. When I am trying to access {x

  • I Cloud help please

    Good morning - I am trying to set up ICloud on my up to date MAC laptop and it does not offer me the Icloud under settings.  It has Mobile Me on the cloud icon and that will not let me in.  Help???. 

  • UDF update field using Query

    Hi All, I have a udf field in OITM which we use to flag whether an item is obsolete or not, so Y or N is populated in all item records. I am trying to copy this field and its contents to be displayed in the Stock Data Tab (OITW) using a UDF but canno