'BAPI_BUPA_CENTRAL_GETDETAIL

hi gurus
i have to use 'BAPI_BUPA_CENTRAL_GETDETAIL
in which the imort parameter is busines partner
can any one help me know that
1) what is this business partner
2) and from where i can get the it.
please help me as soon as possible it urgent.
piont will be surely awarded
thanks in advance
anuj

pls check this link.
http://translate.google.com/translate?hl=en&sl=de&u=http://www.one-click-easy.de/ibs2bo/help/topic/contactgrabber/html/cgr_de/pref_sapCRM.htm&sa=X&oi=translate&resnum=7&ct=result&prev=/search%3Fq%3DBAPI_BUPA_CENTRAL_GETDETAIL,SAP%26hl%3Den%26sa%3DG
Reward points..

Similar Messages

  • Action Condition

    Hi I have created an action which needs to send an email in case a transaction of certain type has been created in CRMD_ORDER. the BO for Activity is: BUS2000126
    Now I need to write a Schedule and Start Condition:
    1) Check that Customer (Activity Partner) has Business Partner Role = BUP001 (Contact Peron).
    2) Check that Employee Responsible <> Created by (User who created the Activity). So in here as i understand we either have to get a BP ID for a Created By User OR get a Username for a Employee Responsible ID. However, in BO BUS2000126 Function Module BP_CENTRALPERSON_GET (it convert username - bp id and vice versa) is not available. There is only BAPI_BUPA_CENTRAL_GETDETAIL which doesnt serve the purpose.
    Question:
    1) Is there a way to actually write custom logics that will trigger my action? Method etc? or if its not possible->
    2) How can I write this condition using a BO BUS2000126?
    Thanx!

    Hi,
    This can be done in 2 ways.
    First way: You can enhance the BO BUS2000126 to bring the partner data of your activity and create the condition in action.
    Second Way: You can do the condtions(if partenerrole = 'BUP001') in action code and retrive the data using FM CRM_ORDER_READ.
      CALL FUNCTION 'CRM_CONTEXT_GET_ACTUALGUID_OW'
        IMPORTING
          ev_ref_guid = lc_guid.
        APPEND lc_guid TO t_header_guid.
        CALL FUNCTION 'CRM_ORDER_READ'
          EXPORTING
            it_header_guid       = t_header_guid
            it_requested_objects = t_req_obj
          IMPORTING
            et_doc_flow          = t_doc_flow
            et_status            = et_status_read
          EXCEPTIONS
            document_not_found   = 1
            error_occurred       = 2
            document_locked      = 3
            no_change_authority  = 4
            no_display_authority = 5
            no_change_allowed    = 6
            OTHERS               = 7.
        IF sy-subrc <> 0.
          rp_status = 2.
          EXIT.
        ENDIF.
    Best regards,
    Caíque Escaler

  • Unable to retrieve parameters from RFC Function Module

    Hi All,
    I have created a model for the RFC Enabled function module BAPI_BUPA_CENTRAL_GETDETAIL within my webdynpro program. I am passing parameters to the function module BAPI_BUPA_CENTRAL_GETDETAIL and I have validated that this is being passed correctly by displaying the passed value from the node of the input parameters.
    Code used to pass input parameters -
      IWDMessageManager manager = wdComponentAPI.getMessageManager();
       try
          wdContext.currentBapi_Bupa_Central_Getdetail_InputElement().modelObject().execute();
          size = wdContext.nodeCentraldataperson().size();     
          wdComponentAPI.getMessageManager().reportSuccess(Integer.toString(size));
          wdContext.nodeOutput().invalidate();
       catch(WDDynamicRFCExecuteException e)
          manager.reportException(e.getMessage(), false);
    I also see that it returns 1 record by using the code below:
    IWDMessageManager manager = wdComponentAPI.getMessageManager();
       try
          wdContext.currentBapi_Bupa_Central_Getdetail_InputElement().modelObject().execute();
          size = wdContext.nodeCentraldataperson().size();     
          wdComponentAPI.getMessageManager().reportSuccess(Integer.toString(size));
          wdContext.nodeOutput().invalidate();
       catch(WDDynamicRFCExecuteException e)
          manager.reportException(e.getMessage(), false);
    But, when I try to retrieve the value returned it does not fetch that value -
       Bapi_Bupa_Central_Getdetail_Output getdata = wdContext.nodeBapi_Bupa_Central_Getdetail_Input().nodeOutput().currentOutputElement().modelObject();
       Bapibus1006_Central_Person[] getres = new Bapibus1006_Central_Person[size];
       for(int i=0; i<size; i++){
            wdComponentAPI.getMessageManager().reportSuccess(Integer.toString(i));
            getres<i> = getdata.getCentraldataperson();
              //String fullname = wdContext.nodeBapi_Bupa_Central_Getdetail_Input().nodeOutput().nodeCentraldataperson().getElementAt(i).getAttributeValue("Fullname").toString();
            String fullname = getres<i>.getFullname();
           fullname += Integer.toString(i);
            wdContext.currentContextElement().setFullname(fullname);
            wdComponentAPI.getMessageManager().reportSuccess("fullname:" + fullname);
    It always returns 0 or null. Can someone please help me with this issue. The BAPI returns values in structure format and not internal table and hence I dont see the issue there as well.
    What can be the problem?
    Thanks for all your help in advance.
    Best regards,
    Divya

    Nikhil / Srihari,
    I changed my code and it now looks like -  I am trying get the return value into the context fullname but i still cant get the value although the size of nodeCentraldataperson() is thrown as 1 and the input is being passed correctly as i have validated this in this line of code [wdContext.nodeBapi_Bupa_Central_Getdetail_Input().currentBapi_Bupa_Central_Getdetail_InputElement().getBusinesspartner();]
    IWDMessageManager manager = wdComponentAPI.getMessageManager();
       try
          wdContext.currentBapi_Bupa_Central_Getdetail_InputElement().modelObject().execute();
          size = wdContext.nodeCentraldataperson().size();     
          wdComponentAPI.getMessageManager().reportSuccess(Integer.toString(size));
          wdContext.nodeCentraldataperson().invalidate();
       catch(WDDynamicRFCExecuteException e)
          manager.reportException(e.getMessage(), false);
         for(int i=0; i <size; i++){
              String name = "FullName: ";
              wdContext.nodeBapi_Bupa_Central_Getdetail_Input().nodeOutput().nodeCentraldataperson().setLeadSelection(i);
              name += wdContext.nodeBapi_Bupa_Central_Getdetail_Input().currentBapi_Bupa_Central_Getdetail_InputElement().getBusinesspartner();
              name += wdContext.nodeBapi_Bupa_Central_Getdetail_Input().nodeOutput().nodeCentraldataperson().currentCentraldatapersonElement().getFullname();
              wdContext.currentContextElement().setFullname(name);     
    Any idea what could be wrong?
    Thanks,
    Divya

  • BP Communication Data ( telephone , email )

    Hello Friends,
    We have a BP, and when I go to tranasction bp, search of this business patner then, I found one record, so under communication TAB the telefone no and email of bp is mainted. Now I call the bapi BAPI_BUPA_CENTRAL_GETDETAIL to retrieve the tele no and email, but in table TELEFONDATANONADDRESS and E_MAILDATANONADDRESS, there is no telefon no or email ?
    Does any one know how and which bapi I can call to retrieve the telefone no & email of the bp.
    Kind Regards,

    Hi!
    You might try the following Function modules:
    BKK_BUPA_PARTNER_GET_ADDR
    ADDR_SELECT_ADRC_SINGLE
    Or you can read directly the table ADRC for address data.
    You might search in function modules which one is using the table ADRC, for this, use the SE11 transaction.
    Regards
    Tamá

  • Function module for getting the partner details and Classifications

    Hi,
    Can any one tell me FMs for getting the Partner Details and for getting the characteristics associated with an equipment??
    Thanks

    Hi Anu,
    are you talking about the SAP Business Partner???
    Well, if yes, then just check the FM 'BAPI_BUPA_CENTRAL_GETDETAIL'.
    Or just search for oher FMs with BAPI_BUPA*.
    Hope this helps...
    Ciao Bernhard

  • How to determine category of business partner with BAPI?

    Hello guys,
    I want to read the partnercategory from a businesspartner using JCo to access the BAPI. I tried to use BAPI_BUPA_CENTRAL_GETDETAIL, but I cannot find a category field in the export parameters/tables. (Like the partnercategory field in the BAPI_BUPA_CREATE_FROM_DATA for example).
    How do I determine the category of a business partner (person, organization, group) ?
    Thanks

    In BUPA_CENTRAL_GET_DETAIL the exporting parameter Ev_CATEGORY holds the value.
    Its a remote enabled fm.

  • Want to retrieve values from TB028 and TB009

    Hi Experts ,
    I wanted to retrieve value of TB028-BEZ30 ( Description for occupation) depending upon field JOBGR in BUT000 , similarly in Table  TB009-TEXTSHORT(Short name for Address type) wanted to get the value depeding upon ADR_KIND in BUT021.
    But I am not able to retriev this value. I tried using some FMs too but they dont return either of these fields in their o/p parameters
    FM used :
    For retriving TB028 fields
                BAPI_BUPA_CENTRAL_GETDETAIL
    For retiving TB009 fields :
              FSBP_READ_ADDRESS_DATA
              BUP_TB009_SELECT_ALL
              BUPA_ADDRESSES_READ_ALL
    None of these returns the fields I want. Am I missing something here??
    Regards,
    Neel

    Hello Anitha,
    Since u have declared it as global variable there is no need to declare inside the routine.
    If useful award the points.
    Regards,
    Vasanth

  • EMAIL address on Business partner

    Hi all
    Is there some standard FM or any FM which i can use to find that whether there is any Email ID at the BP.
    Thanks In Advance
    Jaideep.

    try this function module instead:
      CALL FUNCTION 'BAPI_BUPA_CENTRAL_GETDETAIL'
        EXPORTING
          businesspartner              = i_partner
        TABLES
          pagaddressdatanonaddress     = lt_paginfo
          e_maildatanonaddress         = lt_mailinfo
          return                       = lt_return.

  • ALE partner profile setup for diff. IDOC extension

    Hi,
    We have three extensions of IDOC type HRMD_A06 and message type HRMD_A. In one of the extensions segment IT0002 is extended.
    In the partner profile extension is not specified. Due to this when the IDOC is generated Custom segment is not getting picked up.
    I pu the extension in the partner profile then it woks fine.
    But I do not want disturb the existing profile setup. Is there any option in WE20 where we can define two profiles with one message type, basic type and different extensions.
    Also if we define the custom message type then distribution model and the partner profile needs to be generated for the new custom message type.
    Appriciate quick response.
    Regards,
    Sonali

    Hi,
    just check the FM 'BAPI_BUPA_CENTRAL_GETDETAIL'.
    Or just search for oher FMs with BAPI_BUPA*.
    Hope this helps...
    vasanth

  • ABAP interfacing to CRM

    Hi CRM Tech guys,
       plz tell me what are the reuirements in ABAP interfacing to CRM.  i want some function modules , bapis,  and needed middleware concepts.
    plz answer me.
    regards
    ram.

    Hi Ram Krishna,
    Some of the FM in CRM:
    GUID_CREATE     Create GUID for a Business Transaction
    BAPI_BUSPROCESSND_CREATEMULTI     Bapi to create Service Contracts programmatically. Pass the inputfields to be created in the contract.
    Note: BAPI_BUSPROCESSND_SAVE must be called after this function call to save the Service Contract.
    BAPI_BUSPROCESSND_SAVE     Bapi to save the Service Contracts.
    BAPI_ECRMISUTO_INIT     Initialize the creation of Ibase in CRM
    BAPI_ECRMISUTO_CREATEMULTIPLE     Create the Installed Base and its components.
    Note:
             Always call the function module 
             ‘BAPI_TRANSACTION_COMMIT’
             after call to any Bapi
    CRM_IBASE_INITIALIZE     Initialize the changes to be done in Ibase in CRM
    CRM_IBASE_SAVE     Call this FM to save the changes in the Ibase
    BAPI_BUPA_FRG0130_CREATE     Bapi to create Business Agreement for a customer
    BAPI_BUPA_ADDRESS_ADD      Add invoice address for business partner. Pass the address type as 'rechnung' to add invoice address
    BAPI_BUPA_BANKDETAIL_ADD        Add bank details for the business partner
    BAPI_BUPA_CREATE_FROM_DATA        BAPI for business partner creation as Organization, Person or Group in general role. Same BAPI can be used to create Contact Person for the Business Partner
    BAPI_BUPR_RELATIONSHIP_CREATE     Function module to establish the Business Partner and Contact Person
    Relationship. Pass the Relationship Category as ‘BUR001’
    BAPI_BUPA_ROLE_ADD        Add Role to Business Partner for e.g. Sold to Party ‘CRM001’, Contact Person ‘BUP001’
    BAPI_BUPA_TAX_ADD     BAPI Add Tax Number for the existing Business Partner
    BAPI_BUPA_FRG0040_CREATE     Create Classification Data for a Business Partner
    BAPI_BUPA_FRG0130_CREATE     Create Business Agreement
    BAPI_BUSPROCESSND_CREATEMULTI     BAPI to create Contract. Populate the Header and Line Item Details before calling the BAPI
    BAPI_BUPA_ADDRESSES_GET      Determine All Addresses
    BAPI_BUPA_ADDRESS_GETDETAIL        Read Address
    BAPI_BUPA_ADDRESS_GET_NUMBERS        Read Address Numbers
    BAPI_BUPA_BANKDETAILS_GET        Determine All Bank Details
    BAPI_BUPA_BANKDETAIL_GETDETAIL        Read Bank Details
    BAPI_BUPA_BANKDETAIL_NUMBERS        Read Bank Details Numbers
    BAPI_BUPA_CENTRAL_GETDETAIL        Read Central Data
    BAPI_BUPA_EXISTENCE_CHECK        Check Existence of Business Partner
    BAPI_BUPA_GET_NUMBERS        Read Business Partner Numbers
    BAPI_BUPA_RELATIONSHIPS_GET        Determine All BP Relationships
    BAPI_BUPA_ROLES_GET        Determine All Roles
    BAPI_BUPA_ROLE_EXISTENCE_CHECK        Check Existence of Role
    BAPI_BUPA_SEARCH        Search Business Partner for Telephone, E-Mail, Address
    BAPI_BUPA_STATUS_GETDETAIL      Business Partner: Read Status
    BAPI_BUPR_ACTIVITYP_EXISTCHECK      Check Existence of Contact Partner Relationship
    BAPI_BUPR_CONTP_ADDRESSES_GET        Read Contact Person Relationship Addresses
    BAPI_BUPR_CONTP_ADDR_GETDETAIL        Read Contact Person Relationship Addresses
    BAPI_BUPR_CONTP_GETDETAIL        Read Contact Person Relationship
    BAPI_BUPR_EMPLO_ADDRESSES_GET        Read Contact Person Relationship Addresses
    BAPI_BUPR_EMPLO_ADDR_GETDETAIL        Read Employee Relationship Address
    BAPI_BUPR_EMPLO_GETDETAIL        Read Employee Relationship
    BAPI_BUPR_RELATIONSHIP_GET        Read General Relationship
    BAPI_BUPR_RELSHIP_CHECKEXIST        Check Existence of General Relationship
    BAPI_BUPR_RELSHIP_GET_DETAIL        Read General Relationship
    BAPI_BUPR_RESP_EMPLO_CHEKEXIST        Read Relationship of Employee Responsible
    BUPA_PARTNER_CONTACT_SEARCH      Searches business partners for telephone, E-Mail, address
    ECRM_ISU_COMP_BY_ADDRESS     Check for Existence of Ibase
    CRM_ORDER_GET_HEADER_GUID     Get Header GUID for Item GUID pass ref_kind as b
    CRM_ORDERADM_H_READ_OW     Read the Header Details for a Business Transaction. Pass the Header guid.
    CRM_ORDERADM_I_READ_OW     Read the Line Item Details for a line item. Pass the line item guid.
    CRM_ORDER_READ     Get all the Service Contract details.
    Note: Pass the requested objects to fetch only the required details.
    This can also be used to get the details of activities/leads/opportunities etc.
    CRM_ORDER_GETSTATUS     Get status of the Service Contract
    Note: CRM_ORDER_READ Function Module
    1.     CRM_ORDER_READ is a function module which can be used to get the details of any business transaction based on the Header GUID, Item GUID or both.
    2.     Always pass the IT_REQUESTED_OBJECTS structure to this function module to fetch the required details only.
    3.     This function module can not be executed directly instead SAP has provided a report CRM_ORDER_READ for the same for testing purpose. We can pass Business Transaction Number (Object ID), Header GUID or Item GUID to this report to get the required details.
    For other Details: just go through : http://help.sap.com/saphelp_crm50/helpdata/en/1a/023d63b8387c4a8dfea6592f3a23a7/frameset.htm
    Hope it will help
    Regards,
    Arjun
    <b>Reward points if it helps</b>

  • ABAP Code + API

    Hello Friends,
    I have to write a method in ABAP equivelent to java method, here is the jave source code.
    private String constructID(String id)
        StringBuffer str = new StringBuffer("0000000000");
        str.append(id);
        return str.substring(id.length());
    (Just explain shortly what it is doing!)
    I am trying to call the BAPI (BAPI_BUPA_CENTRAL_GETDETAIL), and in oder to call this BAPI I have to export the BUSINESSPARTNER parameter. This parameter has been stored in DB with 10 char e.g 0000000001 . As I am developing web interface so the user can enter BUSINESSPARTNER No = 1, and this java code will map the user enter 1 to 0000000001.
    I want to ask, is there online API avaiable for ABAP which helps me to write this equivelent code or is there any method like append() or subString() in ABAP ( as I am very new to ABAP so please excuse me if I bothers you )
    Many thanks!
    Marek.

    If I understand correctly, you need to make "1" look like "0000000001" using ABAP code.   Try the following code.  This should work for you.
    Regards,
    Rich Heilman
    report zrich_0004 .
    data: char(10) type c value '1'.
    data: numc(10) type n.
    numc = char.
    write:/ char.
    write:/ numc.

  • Retreive email id during BP creation, before saving BP

    hi,
    I need the email ID that the user enters while creating a new BP. How do i get it? Is there any FM ?
    thanks,
    Shan.

    Hi,
    You can use below function Modules;
    BUPA_PARTNER_CONTACT_SEARCH :Searches business partners for telephone, E-Mail, address.
    BAPI_BUPA_SEARCH  :      Search Business Partner for Telephone, E-Mail, Address.
    *BAPI_BUPA_CENTRAL_GETDETAIL        *Read Central Data
    Regards,
    Amol Tambe
    SAP CRM Technical Consultant.

  • Function Module Required for fetching contact details from BUT000

    Hi Everybody.
    I have created a contact using transaction BP.
    these details according to me will get saved in standard table BUT000.
    Now i need standard FM used for fetching all these Contact details.
    Help me i am new to CRM.

    Hi Amit,
    Please check the following:
    Data Retrieval Function Modules:
    Name                                                             Description
    BAPI_BUPA_ADDRESSES_GET              Determine All Addresses
    BAPI_BUPA_ADDRESS_GETDETAIL                Read Address
    BAPI_BUPA_ADDRESS_GET_NUMBERS          Read Address Numbers
    BAPI_BUPA_BANKDETAILS_GET                Determine All Bank Details
    BAPI_BUPA_BANKDETAIL_GETDETAIL            Read Bank Details
    BAPI_BUPA_BANKDETAIL_NUMBERS               Read Bank Details Numbers
    BAPI_BUPA_CENTRAL_GETDETAIL               Read Central Data
    BAPI_BUPA_EXISTENCE_CHECK              Check Existence of Business Partner
    BAPI_BUPA_GET_NUMBERS                               Read Business Partner Numbers
    BAPI_BUPA_RELATIONSHIPS_GET               Determine All BP Relationships
    BAPI_BUPA_ROLES_GET                               Determine All Roles
    BAPI_BUPA_ROLE_EXISTENCE_CHECK          Check Existence of Role
    BAPI_BUPA_SEARCH                              Search Business Partner for Telephone, E-Mail, Address
    BAPI_BUPA_STATUS_GETDETAIL             Business Partner: Read Status
    BAPI_BUPR_ACTIVITYP_EXISTCHECK              Check Existence of Contact Partner Relationship
    BAPI_BUPR_CONTP_ADDRESSES_GET          Read Contact Person Relationship Addresses
    BAPI_BUPR_CONTP_ADDR_GETDETAIL          Read Contact Person Relationship Addresses
    BAPI_BUPR_CONTP_GETDETAIL              Read Contact Person Relationship
    BAPI_BUPR_EMPLO_ADDRESSES_GET        Read Contact Person Relationship Addresses
    BAPI_BUPR_EMPLO_ADDR_GETDETAIL        Read Employee Relationship Address
    BAPI_BUPR_EMPLO_GETDETAIL             Read Employee Relationship
    BAPI_BUPR_RELATIONSHIP_GET              Read General Relationship
    BAPI_BUPR_RELSHIP_CHECKEXIST             Check Existence of General Relationship
    BAPI_BUPR_RELSHIP_GET_DETAIL             Read General Relationship
    BAPI_BUPR_RESP_EMPLO_CHEKEXIST        Read Relationship of Employee Responsible
    BUPA_PARTNER_CONTACT_SEARCH           Searches business partners for telephone, E-Mail, address
    CRM_ORDER_READ                     Get all the Service Contract details.
    Hope this helps!
    Regards,
    Saumya

  • NoClassDefFoundError when deploying webservice calling BAPI

    Hi,
    I need to develop a java webservice which is calling a BAPI. I use DCs for that. One DC contains the JARs (JCO, ...) the other one my class which calls the BAPI (I generated the proxy classes in the same DC).
    Everything looks fine but when I deploy my webservice I always get a NoClassDefFoundError for BAPI_..._Input. Can you tell me why it's not working and what is a solution for it? Honestly I don't understand why I get this error, as the BAPI_...Input is in the same DC.
    Thanks a lot in advance.
    Kind regards,
    Timo

    Hi Suresh,
    there's not really a error stack trace as the error occurs when i'm testing the webservice using the testpage.
    When testing the webservice I get the following response:
    HTTP/1.1 500 Internal Server Error
    Connection: close
    Server: SAP J2EE Engine/7.00
    Content-Type: text/xml; charset=UTF-8
    Set-Cookie: <value is hidden>
    Date: Fri, 20 Oct 2006 11:46:21 GMT
    <SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" ><SOAP-ENV:Body><SOAP-ENV:Fault><faultcode>SOAP-ENV:Server</faultcode><faultstring>bapi_bupa_central_getdetail/Bapi_Bupa_Central_Getdetail_Input</faultstring><detail><ns1:java.lang.NoClassDefFoundError xmlns:ns1='http://sap-j2ee-engine/error'>bapi_bupa_central_getdetail/Bapi_Bupa_Central_Getdetail_Input</ns1:java.lang.NoClassDefFoundError></detail></SOAP-ENV:Fault></SOAP-ENV:Body></SOAP-ENV:Envelope>
    So, it looks like it's the bapi_bupa_central_getdetail/Bapi_Bupa_Central_Getdetail_Input which is missing.
    Kind regards,
    Timo

  • Flex2 call SAP Web Service

    Hello all Experts
    I create a web service from sap function. I test the web service with wsadmin and the service runs well. I'd like to use Flex2 to consume the web service for test. But I met compile error in Flex2. In my Flex application, I use <mx:WebService> component. Follow is my flex code.
    <?xml version="1.0" encoding="utf-8"?>
    <mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute"
              creationComplete="sapwebservice.BAPI_BUPA_CENTRAL_GETDETAIL.send()">
         <mx:WebService id="sapwebservice"
              wsdl="http://myhost:8011/sap/bc/srt/rfc/sap/ZWS_BUPA_CENTRAL_GETDETAIL?sap-client=600&wsdl=1.1&mode=sap_wsdl&style=rpc"
              useProxy="true">
              <mx:operation name="BAPI_BUPA_CENTRAL_GETDETAIL">
                   <mx:request>
                        <Businesspartner>0000000111</Businesspartner>
                        <ValidDate>2006-08-09</ValidDate>
                   </mx:request>
              </mx:operation>
         </mx:WebService>
         <mx:Panel x="20" y="20" width="480" height="400" layout="absolute"
              title="{sapwebservice.BAPI_BUPA_CENTRAL_GETDETAIL.CENTRALDATAPERSON.FIRSTNAME}">
         </mx:Panel>
    </mx:Application>
    When I try to compile the code, there is error called "wsdl"  must end with the ';' delimiter. Does anybody know how to call sap web service in Flex?
    Many Thanks

    <?xml version="1.0" encoding="utf-8"?>
    <mx:Application xmlns:mx="http://www.adobe.com/2006/mxml"
    creationComplete="sapwebservice.BupaCentralGetdetail.send();">
    <mx:Script>
         <![CDATA[          
              import mx.rpc.soap.WebService;
              import mx.collections.ArrayCollection;
              import mx.rpc.events.ResultEvent;
              import mx.rpc.events.FaultEvent;
              [Bindable]
              public var AAddr : String = "http://epmtest.dongbuchem.com:8000/sap/bc/srt/rfc/sap/BUPA_WSD?sap-client=100&wsdl=1.1&style=rpc";
    <mx:WebService id="sapwebservice" wsdl=""
         result="sendHandler(event)" fault="faultHandler(event)">
    Message was edited by: jinhyoung park

Maybe you are looking for

  • Printing reports issue (Word/PDF/Excel...)

    Hello Apex masters, Here's the deal: I have a page in which I have 1. report - "sql query" type: "select * from dual", Print Attributes: Enable Report Printing=Yes, Output format=PDF (default options) 2. button item: "Apply filter", Button Request=Fi

  • Album Art not showing up?

    Has anyone else had a problem with their album art not showing up in coverflip? These are all CD's that I own and ripped onto my computer with iTunes, and if I look at them in iTunes I can see the cover art. But when I turn my ipod sideways to flip t

  • Need to change the date of joining of employee

    Hi All, I have gone through some threads similar to this subject an also tried to do changes from PA41 but i am facing some problems during the procedure. We have transferred some employees to sap system with their original date of joining and payrol

  • All my sent items and inbox gone please help.

    I have an iphone 5 and my entire email inbox and sent items are gone!!! I have it set to never delete but they are gone.... Please Help

  • Problem after CMOS clearing

    hi, I have MSI K7turbo2 MOBO.  I wanted to clear my CMOS to revert to the default BIOS. (Because when I was underclocking my CPU to x9 instead of x11, I had no post) And now I have a bigger problem, after clearing the CMOS MOBO gets no power at all,