Service call to have duplicate function

Hi All,
I was trying to duplicate a Service Call, but the function is not available under Data Menu. Any idea why this function is missing from Service Call screen?
Regards,
MH

Raise the case to helpdesk.

Similar Messages

  • Why Service Call and why not call Function module Directly in WD ABAP

    Hi,
    I have created a Webdynpro applications and the logic requires calling avrious Function modules.
    Do I need to create Service Call for each Function module or call them directly.
    It would be great if you can suggest me under what cases I need to opt for Service call
    For example, if I use 'RP_CALC_DATE_IN_INTERVAL', do I need to use Service call or call function module directly.
    Note: I have searched forums but could not get the correct answer which I want
    Thanks!

    The Service Call is really meant to be a wizard/time saver.  It has the advantage that it can generate matching context nodes/attributes for the interface of the Function Module you are calling. However everything that the service call does can also be created by hand.
    Personally I'm not a fan of what the service call wizard generates.  Its good as a time saver or for beginners, but I find I prefer to touch up the code it generates anyway. I much prefer to create a nice reusable model class with its own unit test and then consume this model class (with the service call wizard) from WD.  This model class might contain one or more function module calls depending upon what logic I need to access.

  • Service call to function module not fetching data

    Hello Experts,
    Today, I have started facing one more weird issue of the similar kind, I faced few weeks back.
    Once my web dynpro application is loaded, on the click of button I make a service call to function module which brings me some data and that is being shown on the UI.
    After doing few more service calls on the click of other buttons, when I click on the button initially clicked, service call is being made but no data is being returned.
    I already debugged the code, made sure the parameters is being passed correctly to function module.
    Regards,
    Harsh

    Hello Katrice,
    I debugged to the hilt and found that standard function module 'ME_REL_ACTIVE' was returning sy-subrc non zero.
    I cleared one variable after identifying it. Below is the code snippet:
        ld_read_t16fg = '(SAPLEBNF)READ_T16FG'.
        ASSIGN (ld_read_t16fg) TO <lst_read_t16fg>.
        IF <lst_read_t16fg> IS ASSIGNED AND <lst_read_t16fg> IS NOT INITIAL.
          CLEAR <lst_read_t16fg>.
        ENDIF.
        UNASSIGN <lst_read_t16fg>.
    Regards,
    Harsh

  • Service Call or CALL FUNCTION

    Hi everyone,
    what's the difference between invoking a Service Call or Call Function directly from within a WebDynpro ABAP component to execute a BAPI/Function module?
    Thank you.

    Hi
    Both works same, creating and using service call is easy, just create and call execute method of component controller from view. your FM will works.
    Using call function you have to write some coding, check example..
    You can use FM in WD and loops as well. Check below example code, it is working fine.
    DATA : HUKEY TYPE BAPIHUKEY-HU_EXID,
    wa_hukey TYPE BAPIHUKEY-HU_EXID.
    loop at lt_pack_mat into ls_pack_mat.
    wa_hukey = ls_pack_mat-HANDLING_UNIT.
    MOVE wa_hukey TO hukey.
    endloop.
    CALL FUNCTION 'BAPI_HU_DELETE_FROM_DEL'
    EXPORTING
    DELIVERY = del
    HUKEY = HUKEY
    TABLES
    RETURN = Return1.
    CALL FUNCTION 'BAPI_TRANSACTION_COMMIT' .
    Cheers,
    Kris.

  • Thanks this was very useful.. I have a brand new iphone 4s unlocked version from singapore and I am having the same problem constant network fluctuations, no service, call failed, invalid sim, sim failure, bars fluctuating from 5 - 3 - 2 - 1, no signal/ba

    I have a brand new iphone 4s unlocked version from singapore and I am experiencing constant network fluctuations on my iphone , no service, call failed, invalid sim, sim failure, bars fluctuating from 5 - 3 - 2 - 1, no signal/bars searching etc... Ifeel miserable after trying out all the options changed multiple sims, tried multiple carriers, restored the phone back and have set-up as new device but the problem does not get solved... its is so frustrating that after investing on a world's most expensive phone you cannot enjoy the calling features which the phone offers which is the main thing you own the phone for.. Rest of the things are working.. The funniest part I am not able to make calls or receive calls but can access the internet..  I have tried every possible thing and really very frustrated with this iphone of mine...I hope the problem gets solved.. would anyone have any solutions to this problem.. Does it mean one should never update software as I hear that after updating to IOS.5.1 the problem has started coming and same has been with there.... Apple says its a hardware failure which is very difficult to digest as sometimes I get 5 bars and able to make and receive calls but 95% of the time I am unable to. If anyone has any solution I will be very happy if he or share can share the same. Many thanks. its so disgusting to experience this on top of this apple does not support global warranty for the phone as you need to go to the country from where you bought the phone for replacement.. Truly sad state of affairs.. very very very dissappointing.

    Have a look at this it might help
    http://support.apple.com/kb/TS4148

  • My iphone 4 is getting horrible service in Mendota, IL. I drop every single call and have to call back 3 or 4 times just to finish a conversation. How can i fix this?

    my iphone 4 is getting horrible service in Mendota, IL. I drop every single call and have to call back people 3 or 4 times just to finish a conversation. How can i fix this? Its getting really annoying and I cant upgrade to an iphone 5 until January.

        Hi KL04!
    Let's see what's causing the problem! Current zip code? When did the issue begin? Are you experiencing the issue in or outdoors?
    Thanks,
    AyaniB_VZW
    Follow us on Twitter @VZWSupport

  • How to pass select option value to function module while using service call

    Hi,
    I have select-option in my WD application. To collect data based on user input im using service call. How to pass this select option values to my RFC.
    rgds
    sudhanshu

    Hi,
    Thank s for your reply. In fact im doing similar with following variation:
    i) collected range values using get_range* method.
    ii) separate low and high values as: 
    read table <field2> index 1 into wa_range.
    vert2_low = wa_range-low.
    vert2_high = wa_range-high.
    (Please note that in RFC I have taken two importing parameter as s_vert_lo and s_vert_hi)
    iii) Now setting these RFC attribute as:
    lo_el_importing->set_attribute(
        EXPORTING
          name =  `S_VERT_LO`
          value = vert2_low ).
    and
    lo_el_importing->set_attribute(
        EXPORTING
          name =  `S_VERT_HI`
          value = vert2_high ).
    iv) In RFC im having my query as :
    select <fld list> from BUT000 into table itab where vertical in r_vert.
    Here, r_vert is a range defined as:
    ranges r_vert for <fld refrence>
    r_vert-sign = 'I'.
    r_vert-option = 'BT'.
    r_vert-low = S_VERT_LO.
    r_vert-high = S_VERT_HI.
    append r_vert.
    Issue here is with ranges. if im passing both low and high values it is fine but if only low value being passed it is not giving me any record.
    Please suggest.
    Rgds
    Sudhanshu

  • Had my Nikon D600 recently in for the updated service call. Camera works fine but Photoshop says it cannot open my RAW (NEF) files now? It worked fine before and I have done all my updates.

    Had my Nikon D600 recently in for the updated service call. Camera works fine but Photoshop says it cannot open my RAW (NEF) files now? It worked fine before and I have done all my updates.

    The only thing I can think of is if you got a replacement D610 as rumored here:
    http://nikonrumors.com/2014/01/27/nikon-is-replacing-some-d600-cameras-with-new-d610-model s.aspx/
    In that case, you would need the new version of Camera RAW or DNG converter as per Camera Raw plug-in | Supported cameras .
    The other thing to check is if the files open in the Nikon native ViewNX software. If they don't it's time to call the service center.

  • HT4993 I'm trying to place a phone call and when I do the 3G icon goes away and the phone just says connecting but never does. I have almost full service and only have had my new iPhone 5 for two days. Can anyone help because I can't call Sprint at the mo

    I'm trying to place a phone call and when I do the 3G icon goes away and the phone just says connecting but never does. I have almost full service and only have had my new iPhone 5 for two days. Can anyone help because I can't call Sprint at the moment???

    Settings > General > Reset > Reset Network Settings

  • HT2905 I do not have the so called "display exact duplicate" option... what do I do? I just updated itunes the other day. Yeah, I'm not happy!

    I do not have the, so called, "display exact duplicate" option... what do I do now? I just dowloaded the new version of itunes the other day... yeah, I'm not happy!

    Option + View > Show Exact Duplicates

  • My iphone 4 Carrier signal is very weak just shows one bar and often shows No Service followed by searching and again one signal bar I have had a lot of drop calls, I have tested the sim card on my Samsung Ace which shows full Signal strength I am on the

    My iphone 4 Carrier signal is very weak just shows one bar and often shows No Service followed by searching and again one signal bar I have had a lot of drop calls, I have tested the sim card on my Samsung Ace which shows full Signal strength I am on the latest iphone firmware 5.1.1 with 4.12.01 baseband I have tried resetting the iphone did o full restore twice. I guess there is something wrong with the iphone hardware? Has anyone had similar issues and how they fixed it?

    Take the device to Apple or an Apple authorized service center and let them check it out.

  • Can I use SOAP calls to remotely access functions on a SOAP server?

    Hi,
    I've used JavaScript and SOAP with "regular Acrobat" (e.g. Acroforms) to connect to a SOAP server, followed by Acrobat automatically setting up functions that I can call from JavaScript that, courtesy of SOAP, are relayed to the SOAP server for execution.  For example, a SOAP server that implements a Temperature function.  After doing the Net.SOAP.connect, my JavaScript magically has access to the Temperature() function, which is then executed remotely on the SOAP server courtesy of SOAP protocol.
    My question is: With Livecycle Designer and it's XFA-based forms, do I have the same ability to programmatically connect to a SOAP server and automatically have JavaScript functions set up that I can call on the server?  From what I've read, there are LC Submit and Execute operations which interact (e.g. exchange data) with a specified SOAP server, but it isn't clear that LC provides the ability to end up with a set of functions that I can call from my JavaScript that are then executed on the SOAP server.
    Stated more simply: Does LiveCycle Designer have the ability to connect to a SOAP server and automatically set up JavaScript functions that I can call (that then get relayed to the SOAP server for execution, followed by the return of data to my XFA-based program)?
    Thanks.
    Dave

    Hi Varma_LC and pguerett,
    First, thank you both for your quick responses!  It sounds like I shouldn't have any trouble using XFA forms and SOAP together.
    Let me ask a related question (not about LiveCycle & SOAP, but just about SOAP).  I'm trying to return two values from one SOAP call.  http://www.avoka.com/blog/?p=998&cpage=1#comment-1692 describes how to do this.  Unfortunately, it's not working for me.
    I'm able to retrieve single values from my SOAP server just fine.  When I try to return two values, the Acrobat JavaScript debugger says both values are "UNDEFINED".  The key part of my code is:
       var IntValue =   // define an int
         soapType: "xsd:int",
         soapValue: "1"
       var NValue =
           n1: IntValue  // n1 is the parameter my SOAP server expects
       var GetTheData = service.GetAllData(NValue);  // Go get the data and populate the GetTheData object
       console.println("GetTheData = " + GetTheData.CmdError + GetTheData.CmdResults);
       Param_1V.value = GetTheData.CmdError;     // This is a text box to display the returned value
       Param_2V.value = GetTheData.CmdResults; // This is also a text box to display the returned value
    Both the console.println & the two text boxes (beginning with Param) print out the same results, namely "UNDEFINED".
    I ran my SOAP client and SOAP server on two different computers, and then used WireShark to look at the SOAP protocol.  The SOAP protocol looks fine, and contains CmdError and CmdResults XML opening/closing tags around the actual data I'm trying to read from the SOAP server. Plus there are GetAllDataResponse and GetAllDataResult XML opening/closing tags around the data XML tags.
    I'm using Acrobat 9 and I developed my SOAP server using Windows Communication Foundation (WCF) 3.5.  The same JavaScript program that is unable to retrieve two values returns one value just fine (a different service... call, of course).  In other words, it's being done in one program, not two separate programs.  So, my singular Net.SOAP.connect call seems to be working fine.
    When I do the Net.SOAP.connect, I display the returned services, and GetAllData is listed, so Acrobat JavaScript knows about this particular service.
    BTW, the WCF built-in client works fine in retrieving/displaying the two returned values, correctly detecting and displaying both returned values.  Of course, the WCF client may have different "rules" than Acrobat has in terms of processing SOAP messages.  I've seen differences before between the WCF client and Acrobat.
    Any insights either of you have or anyone else has would be *greatly* appreciated. I've never used try/catch to trap JavaScript errors, if there is some type of error I should logically be looking for, I would be interested in information on that as well.
    Thanks!
    Dave

  • How can I use web service call for edit a report with SSRS in Java Struts2 web application

    Hello im new in SSRS technologie and I would like make web service call at my SSRS server. Is sombody can help me ?
    - What API should I import in my project ? I use Maven can I found this API on Maven repository ?
    - I would like have an sample of code which initialize the ReportingService, do the call and process result.
    We use the SQL Server ReportingService 2008 R2 and currently we made HTTP call like this : http://<ssr_server>/ReportServer/Pages/ReportViewer.aspx?%2fSSRS_OMB%2fMyReport&rs:Command=Render&MyParam=<value>
    Regards

    Hi ombinte,
    SQL Server Reporting Services provides access to the full functionality of the report server through the Report Server Web service. Because the Report Server Web service is an XML Web service which uses Simple Object Access Protocol (SOAP) over Hypertext Transfer
    Protocol (HTTP), any SOAP-aware application or development tool can communicate with the SSRS web service.
    There are three primary ways to develop Reporting Services applications based on the Web service, please see:
    Develop applications using Microsoft Visual Studio and the Microsoft .NET Framework SDK.
    Develop applications using the rs utility (RS.exe), the Reporting Services script environment.
    Develop applications using any SOAP-enabled set of development tools.
    For more information about Report Server Web Service, you can refer to the following document:
    http://technet.microsoft.com/en-us/library/ms152787.aspx
    Hope this helps.
    Thanks,
    Katherine Xiong
    Katherine Xiong
    TechNet Community Support

  • Why do i have duplicate calendars?

    I noticed this morning that I have duplicate calendars showing duplicate events on all of my devices: iMac 2011, MacBook Pro Retina 2014, iPad Air and iPhone 4S. All with latest system updates. Only the calendar for my school events (which I use most actively) shows as duplicated, others remain normal. I followed the instructions on Apple's troubleshooting page: I checked that all relevant services were shown green on their system status page. Then I went to iCloud.com and checked whether on not the calendars and/or events were shown twice there as well. I saw two calendars for my school events by the same name, one with purple color that I remember choosing, and another with blue color that I think is the default color for new calendars, and that which I had not chosen. But check this: The events on iCloud calendars were NOT duplicated, but randomly shared by these two calendars. Meaning some of my school events were purple, some were blue. I have always used only one calendar for my school, the purple one.
    Let me recap:
    On all my devices: Two school calendars with duplicated events, purple and blue.
    On iCloud: Two calendars, purple and blue, but no overlapping school events! Both purple and blue events with no apparent logic afaict.
    Now the next step on Apple's page was to contact the telephone support. I submitted a contact request, and after a short while an american lady called me and we started trying to sort things out. I tried my best to explain to her my situation, but perhaps because things were quite complicated, and English not being my native language she might not had understood everything. She asked me if I had tried to delete one of the duplicates. No I had not, because even though on my devices the events were shown twice, on iCloud they WEREN'T, and I didn't want to take the risk of losing anything. I think it was at the moment I was explaining this to her when the line dropped, and she never called back.
    Having given up on tech support I decided to try fix this on my on and went back to iCloud. I thought if I change all blue events to purple and then delete the blue calendar, I might not lose any events. So I double-click on a blue event, change the calendar back to the original purple and hit ok. I get an error saying "Couldn't save changes to [event's name]. Your changes to this event couldn't be saved because of a server error. Please try again." I report and hit ok. The event is still blue. I double-click it and try to change the event's calendar again. This time I get an error "Couldn't save changes to [event's name]. Your changes to this event couldn't be saved because it was just deleted by another device." I hit ok, and NOW I see two of the same event, one in blue and one in purple. Well at least the event is now supposedly where it should be. I repeat this annoying procedure to all blue events. Then I try to delete the wicked blue calendar, praying I won't lose anything important. Of course I get an error: "Couldn't save changes to [calendar's name]. Your changes to this calendar couldn't be saved because it was just updated by another device." So I go and try again, it worked for the events. And this time the calendar is gone!
    But wait. The events of the purple calendar are now duplicated. So I only got rid of the calendar clone, but I still have events shown twice.
    I'm getting way too tired to work on this any futher. Why is iCloud acting like this?

    Highlight a song. Press command+r to reveal the song in Finder. Do that for the duplicate. Are they in the same location? You can also check this by getting info on a file and checking its location in the summary info, then check for the other file.
    If you have a file in a folder that itunes doesn't control and then add the file to itunes it will place a cpy in the itunes folder when you add the file, leaving the original. Not sure how you ended up with two in itunes but I'd need to know the details of your preference settings.
    I don't know about the rest. I have never bought music from ITMS.

  • Error while calling SPML web service call in OIM 11g

    Hi,
    While testing the SPML web service call, I am getting the "failure in security check" errors.
    And I have attached the request and responce .
    Request:
    <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
    <soap:Header xmlns:ns1="urn:names:spml:ws:header">
    <ns1:ServiceHeader>
    <ns1:serviceId/>
    </ns1:ServiceHeader>
    <wsse:Security soap:mustUnderstand="1" xmlns:wsse="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd">
    <wsse:UsernameToken>
    <wsse:Username>xelsysadm</wsse:Username>
    <wsse:Password Type="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-username-token-profile-1.0#PasswordText">XXXXXXXX</wsse:Password>
    </wsse:UsernameToken>
    </wsse:Security>
    </soap:Header>
    <soap:Body xmlns:ns2="http://xmlns.oracle.com/idm/identity/spmlv2custom/Username">
    <ns2:validateUsernameRequest xmlns:ns3="urn:oasis:names:tc:SPML:2:0" requestID="12345" executionMode="synchronous" locale="en" policyURI="http://www.sample.com/string/string">
    <ns2:capabilityData mustUnderstand="true" capabilityURI="urn:oasis:names:tc:SPML:2:0:reference"/>
    <ns2:username>TCS1000</ns2:username>
    </ns2:validateUsernameRequest>
    </soap:Body>
    </soap:Envelope
    Response:
    <env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/">
    <env:Header/>
    <env:Body>
    <env:Fault xmlns:ns0="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd">
    <faultcode>ns0:FailedCheck</faultcode>
    <faultstring>FailedCheck : failure in security check</faultstring>
    <faultactor/>
    </env:Fault>
    </env:Body>
    </env:Envelope>
    I have attached the log file from OIM
    ####<Apr 26, 2012 10:27:13 AM EDT> <Error> <oracle.wsm.resources.enforcement> <corwloimhd01> <dev-oim_oim_server01> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<anonymous>> <> <214014dca901f288:-460ab67b:136eeab0662:-7ffd-0000000000000838> <1335450433058> <WSM-07501> <Failure in Oracle WSM Agent processRequest, category=security, function=agent.function.service, application=spml-xsd, composite=null, modelObj=SPMLService, policy=oracle/wss11_saml_or_username_token_with_message_protection_service_policy, policyVersion=1, assertionName={http://schemas.oracle.com/ws/2006/01/securitypolicy}wss11-username-with-certificates.>
    ####<Apr 26, 2012 10:27:13 AM EDT> <Notice> <Stdout> <corwloimhd01> <dev-oim_oim_server01> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <214014dca901f288:-460ab67b:136eeab0662:-7ffd-000000000000083d> <1335450433058> <BEA-000000> <<Apr 26, 2012 10:27:13 AM EDT> <Error> <oracle.wsm.resources.enforcement> <WSM-07501> <Failure in Oracle WSM Agent processRequest, category=security, function=agent.function.service, application=spml-xsd, composite=null, modelObj=SPMLService, policy=oracle/wss11_saml_or_username_token_with_message_protection_service_policy, policyVersion=1, assertionName={http://schemas.oracle.com/ws/2006/01/securitypolicy}wss11-username-with-certificates.>>
    Please help me how to solve this issue.
    Thanks in advance
    Siva

    Your business logic has to be implemented by using OIM APIS. oimclient.jar..
    you can then expose these business functions accordingly using a webservice or rest ...
    for business logic refer:-
    http://docs.oracle.com/cd/E27559_01/dev.1112/e27150/apis.htm#OMDEV734
    You will basicsally have to deal with UserManager class for managing users.
    java API:
    http://docs.oracle.com/cd/E27559_01/apirefs.1112/e28159/toc.htm

Maybe you are looking for

  • Applet java file not refreshing in browser

    I have an applet that I am updating and I am not seeing the corresponding update when I open the web page. I can manually download the java class file and look inside it and it definitely is the updated file. I have deleted the browser history. (I am

  • How to download past purchases on new hard drive on Mac

    My daughter's hard drive died last year (locked within Filevault from ages past) on her Desktop Mac. As a consequence, she has lost several years worth of purchased music from the iTunes store. Is there anyway to re-download her lost music without ha

  • Itunes says there's an update but doesn't appear in app store

    Anybody else get this?  I have been getting this for a while with iTunes updates...  There will be updates available but they never appear in the App Store....

  • Bean Builder - no juggler

    Hello, I've just installed Bean Builder. In the run.bat file, I changed USE_JAVA=c:\jdk1.4 to USE_JAVA=c:\j2sdk1.4.1_05 which meant I finally got the thing started!... But there's no sign of juggler bean anywhere - as described in the on-line tutoria

  • Usage corruption in self written Step Type

    Hi,     we've developed some step types and after copying them all in a new computer we've found that the usage of them it's not OK and some modification in NI Step Types are requested. When we create the step type we always add the substep EDIT and