Business Object for Change doc object 'ADRESSE' Change or Create

Hi all,
  I try to find the business object for ADRESSE when I change address of customer. I can trigger workflow when customer is created or change with change object DEBI and business object KNA1.
  The problem is when user change street 2 or e-mail, DEBI won't be trigger. Only ADRESSE will be trigger. Any idea on how to link this or business object for ADRESSE? Is there any standard or I have to create customized one?
  Point will be rewards for useful answer.
Thanks,
Tony

Hi Chai,
Can you help me on this?
Regards
Vinay

Similar Messages

  • Suitable technique for delegating the business object  - copy or subtype ?

    Hello !
            I want to know the which of the following technique  is suitable for delegating standard business object :
           1.copying the standard business object and delegating
           2.creating a subtype of the standard business object and then delegating.
            I will be grateful for your answers.
    Thanks and regards,
    S.Suresh

    Hello Gautam Maini and NabheetMadan !
                 I agree with both of you.
                 Even SAP recommends to delegate by creating subtype.
                 In my previous workflow developments, I have delegated the copy and not the subtypes.It too have worked well.
                 In my understanding, No need to delegate the copy.Because, delegated copy will behave as non-delegated copy.
                We should delegate only subtypes.
                 As Gautam Maini have rightly stated, if the existing workflow should not have enhanced functionality, copying the standard business object is a perfect solution.
                 Thanks a lot for making me to understand the afore-mentioned fact.   
    Thanks and regards,
    S.Suresh

  • In business object what is the use of Interface

    hi ppl,
             In each business object there is a interface what can we do with that. When i used wizards like dynamic parallel processing it asked for wizards what is the actual use of interfaces.

    Hi Dheepak,
    I have an overview on interfaces. Someone pls correct me if i am wrong here.
    Interfaces are generally used to group a set of attributes and methods that can be used across different business objects. You can create your own interfaces in SWO1 and when you include these interfaces in business objects you get all these attributes and methods in the business objects (Inheritance). Its basically for re-usability of the code(Reusability). Apart from that if required you can implement your own code for the methods thus maintaining the same name with a different logic for your BO (Polymorphism).
    For example assume that you have a "Display" method and a few attributes in an interface. The "Display" method is used to display a particular transaction. Now you can include this interface in any BO and all these attributes and methods will be available in that BO with their respective implementation code. Now if you want the method to form a different action in any particular BO you can go ahead and redefine this code in that BO. This redefinition will not affect other BO's that had implemeted this same interface. All other BOs which had implemented this interface will continue to function as per the implementation code defined in the interface. This makes sure that the same method works in different ways in different BO's (Polymorphism)
    Supertype<-->Subtype delegation will allow us to inherit the supertype/subtype methods/attributes but it does not allow us to change the underlying code in individual BOs. Hence polymorphism cant be acheived here
    Thanks,
    Prasath N
    BO - Business Object

  • Error Workflow not assigned to business object

    Hi Team,
        I am working on CRM 7.0 system
         I have a Z business object ,and I have created a new workflow and called one of the method of the z business object.
    And I am trying to trigger this workflow through a action definition based on status.while creating the action definition with respect to workflow I am getting the error "assigned BOR object type is not used in any workflows"  no F4 values
          I have debugged and found that the entry in the table SWDSCNTIDX is not correct.
    Kindly request you to guide me how to assign workflow to business object or how can I refer the workflow what I have created in action definition.
    Regards,
    Poornima

    Hi,
    You have to go the workflow change container element of that BOR e.g. "BUS2010030" and on tab "properties" check the checkbox "IMPORT" and "MANDATORY".
    Doing the above BOR will be available in the F4 help of actions profile wizard or conditions.

  • Problem in business object event linkage

    Hi all,
    When ever a material is created or extended via MM01 i can see business object A00MARA with event created/changed in event trace transaction SWEL but i cannot see the business object 'A00MARA' in business object repository swo1.
    please help......
    Regards,
    N

    Tty Trace off  and trace on , then create material and check that business object coming again. normally it should never come..

  • Attributes Problem in Business Object

    Hi,
    We had a requirement of creating a new Business Object with a couple of attributes(both Database and Virtual Attributes)
    So, as per the requirement, I created my Business Object with all the required attributes. And I have coded the required Business Logic for my Virtual Attributes.
    Now, I created my Business Object's method's using these attributes(OBJECT-ATTRIBUTE_NAME) in my methods wherever required.
    Finally, I tested the Business Object in SWO1(Business Object Builder), here are my observations...
    1) The Database attributes is getting created properly and I can see the values for the required
    2) The Virtual Attributes are getting created as per the Business Logic and I can see the desired result for this also.
    3) The methods are giving desired results.
    Now, my doubt is, when I trigger one of this Business Object's method from workflow, the attribute values(OBJECT-ATTRIBUTE_VALUE) are not visible inside the method. But if I test the same BO using SWO1, I can see all the Attribute values(OBJECT-KEYFIELDS).
    I can only see the KEY FIELDS of the Business Object in Debug mode, I mean, I can view OBJECT-KEY-KEYFIELD value, but not the OBJECT-ATTRIBUTENAME inside the BO'S method in Debug mode-when triggered from Workflow.
    Well, I am triggering the Workflow using the SWUD transaction and infact I am creating the required Instances in the first screen of SWUD.
    Can anyone make me clear why this is happening?
    Regards,
    <i><b>Raja Sekhar</b></i>

    Hi people,
    Thanks for immediate reply.
    Well, I think I didnt explain my problem clearly...
    Well, here is my clear explanation.
    I created a new Business Object named ZOBJECT say...
    It has 3 key fields...
    PERNR(Employee Number),BEGDA(Start Date) and ENDDA(End Date)
    It has 2 attributes...
    One is a Databsase Attribute - ENAME which gets populated from database PA0001.
    Another is a Virtual Attribute - EMAILID which gets populated from some Business Logic.
    And it has one Event...ZEVENT
    It has one method...
    SENDMAIL - Which sends the email to the EMAILID Attribute.So my coding looks something like this...
    METHOD SENDMAIL.
      DATA : W_FROMEMAIL TYPE PA0105-USRID_LONG,
             W_TOEMAIL TYPE PA0105-USRID_LONG,
             W_SUBJECT(100),
            IT_TEXT TYPE STANDARD TABLE OF SOLI.
      W_FROMEMAIL = '[email protected]'.
      W_TOEMAIL = OBJECT-EMAILID.
      W_SUBJECT = 'Test Mail'.
    Populate the mail content into IT_TEXT Internal table
      call function 'YHSENDEMAIL'
          EXPORTING
            FROMEMAIL = W_FROMEMAIL
            TOEMAIL   = W_TOEMAIL
            SUBJECT   = W_SUBJECT
          TABLES
            IT_TEXT   = IT_TEXT.
    ENDMETHOD.
    So as shown above I designed my Business Object.
    And I tested this Business Object from SWO1(Business Object Builder) Transaction itself. I am able to get the desired result. Everything seems perfect till now.
    Now, I created my workflow with ZOBJECT-ZEVENT as the Start Event.
    I created one Standard Task to send EMail which in turn calls up my ZOBJECT-SENDEMAIL Method.
    So when I called this method, I found that OBJECT-EMAIL inside the method is not populated, ultimately, no mail is going.
    I dont understand why the attribute values are not populated when I call the same method from workflow.
    When I checked the workflow log, I can see my attribute values for the ZOBJECT. But in the Method, I cant access the attribute values as such...But I am able to access the Key fields of the method...
    Can anybody explain me the reason for this behavior?
    I checked the BINDING, Everthing seems perfect from this side...So I dont think it's a binding problem.
    Regards,
    <i><b>Raja Sekhar</b></i>
    Message was edited by: Raja Sekhar

  • User Exit for Changing ATP Checking group

    Hi All
    I am new to this area. I have a requirement to change the ATP Checking Group  and ATP: Product availability check to new value.I was looking out if theres any specific user exit for this .Any pointers would be highly appreciated.
    Thanks
    Amruta

    Hello, still I do not have clearcut idea of business process for changing ATP group?
    However i have understood that u want to influence selection of ATP group in the process.
    In case u want to retain it for longer period, then u may use EXIt in cif which is called during transfer of Product master. With this u can have predefined value of ATP group as per your requirement.
    Else you may change the ATP group  in R/3 prior to ATP calls to APO.  U may use exit "EXIT_SAPLATPC_001" in program  " AVAILABILITY_CHECK_CONTROLLER". I am not sure which all prameters u can change in this exit
    Please test in detial before finalizing the design
    Regards
    Mangesh A. Kulkarni

  • Question about "BUSINESS PACKAGE FOR COMMUNICATION"

    We want to configure "BUSINESS PACKAGE FOR COMMUNICATION_50_4_5" for EP 6.0 SP2. We have imported mentioned package in our EP 6.0. There are no errors in logfile.
    In document "Transfer Collaboration Rooms from EP 5.0 to EP 6.0" (item 3.8) is described how we can create and configure systems for "Communication Framework", "Address Book Component", "Java Mail Connector" and "Mail Server", that was mentioned in documentation to "BUSINESS PACKAGE FOR COMMUNICATION_50_4_5".
    But we can't create those systems because portal's archives: "com.sapportals.pct.comm.systems" and "com.sapportals.pct.col.sync.systems" are absent in our system (System Administration > System Configuration > System > Portal Content. Right click on directory and select "New From Portal Archive").
    What we can do in this situation?

    Hi Slava,
    the Communication Package has been discontinued, it it not supported with EP6.
    For the Coll.Rooms you have to configure the Groupware Connector according to the Admin Guide.
    Hope this helps.
    Bye
    Christoph Schulz
    Freudenberg IT

  • Performa invoice for delivery Doc

    Hi,
    I want to know the steps to create performa invoice for delivery doc.
    Regards,
    Supriya.

    hi ,
    create with billing document with reference to delivery document and the billing type here it is F8 ( Proforma inv.f Dlv).
    Regards,
    Praveen

  • Is there a Business Object for Sales Order Create and Change VA01 and VA02

    Hi experts -
    I am looking for a business object for Sales order create and change VA01 and VA02 respectively?
    Thanks,
    Mark

    Hi Mark,
    I think this question is best answered in [SAP Solutions|/community [original link is broken]; Forums.
    - Subhodeep
    Edited by: Subhodeep on Aug 29, 2009 11:14 AM

  • Activate Change pointers for TREX classification search for Business Objects

    Hey all...
    Does anyone out here has any idea on how to activate the change pointers for TREX classification search for business objects: - for me I am specifically doing it for Materials and Customers.
    Okay, let me explain the issue: -
    For TREX search, we need to schedule a background job for Delta Indexing. But Alas! Delta indexing does not capture the changes to Classification data of the business object.
    For this we activated the change documents for the particular class in the customizing. But to my surprise, change documents and change pointers for TREX are entrirely different.
    How do I know:
    Change ID of CDHDR does not correspond to Change pointer in table COM_SE_CPOINTER. Now by activating the change documents I am getting entry in CDHDR and CDPOS but the mentioned change pointer table still does not get the entry.
    I searched for BTEs and I got the below: -
    Now to me the very obvious one was 4003, but it is not called while changing the classification data for materials. Ofcourse I activated the Product and the function module.
    and now I am stuck!!
    Any pointers for the Change pointers would be really appreciated??
    Please share your knowledge even if you don't know the exact answer . I am new to TREX so possibly vague conversations could provide me a hint .
    Thanks,
    Best Regards,
    Shreya

    Hi Guys,
    This issue was solved by implementing the BTE 4005 (OPEN_FI_PERFORM_00004005_E). This particular event is triggered in the update task for saving changes to business object. So In my function module (corresponding to BTE), I have explicitly called the method to write an entry in COM_SE_CPOINTER, because we just need the reference of business object for which classification data is changed.
    Please refer the below code for more clarity.
    BTE position: -
    method called in FM to write change pointer.
    Thanks anyways, for all the responses.
    Cheers,
    Shreya

  • Changing the Data source in Business Objects XI

    Hi,
      Is it possible to change the data source(not universe) in runtime to generate business objects reports. I am using BOXI 3.1.
    Below is the code I am using to change the universe in runtime. I would like to change this so that i can change the data source instead of changing the universe. My intention is to generate report from multipple database using same universe. Right now I am using multipple universes connected to multiple datasources to achieve this. I am using Report Engine SDK(Java).
               if("Webi".equals(mDocKind))
                   // Added for multiple database support
                   DataProviders dataProvs = documentInstance.getDataProviders();
                try{
                    //To support multiple queries in BO reports
                 for(int count=0;count<dataProvs.getCount(); count++){
                   DataProvider dp=dataProvs.getItem(count);
                   DataSource ds= dp.getDataSource();
                   infoUniverseObjects = getUniverseObject(infoStore,NewUniverseName);
                   infoUniverseObject = (IInfoObject)infoUniverseObjects.get(0);
                   String newDsCuid = infoUniverseObject.getCUID();
                   dataProvs.changeDataSource(ds.getID(), "UnivCUID=" + newDsCuid, true);
                   if(dataProvs.mustFillChangeDataSourceMapping())
                        // Re-map data source to target Universe objects
                        ChangeDataSourceMapping mapping = dataProvs.getChangeDataSourceMapping();
                        ChangeDataSourceObjectMapping[] maps = mapping.getAllMappings();
                        dataProvs.setChangeDataSourceMapping();
                    }//for dataProvs.getCount()
                }catch(Exception e)
                      mLogger.info("BOReportObject","createReport","Inside multiple data providers loop"+e.getMessage());
    Thanks in advance
    Shameer
    Edited by: Shameertaj on May 20, 2009 3:08 AM

    Hi Shameer,
    I think this is only possible with the Universe Designer SDK (which is only available in COM).
    Please kindly refer to the API reference for the Universe Designer SDK for more details:
    http://help.sap.com/businessobject/product_guides/boexir31/en/bodessdk.chm
    Also, please note that changing the universe connection when viewing a document on-demand is not recommended because this could lead to possible issues.
    For example:
    Two users trying to view documents that uses the same universe at approximately the same time.
    But user A wants to use connection X and user B wants to use connection Y.
    This could lead to an error while openning the document or while refreshing/retrieving the the data.
    Hope this helps.
    Regards,
    Dan

  • Changes in SAPBW system to connect Business object system

    hi,
       Do we need change any settings in SAPBW  System  in order to connect Business Objects system
    for example: do we add any transports...
    Thanks

    Hi Hari,
    please also try this post in the dedicated [SAP connection |BusinessObjects Integration Kits;forum.
    Falk

  • How to Set / change the attribute of Business Object

    Hi all,
    Say I have a Z Business Object -> ZBO
    Inside the BO, I have an attribute -> ZA1
    And one method -> ZM1
    Is there any way in which  i can set / update the attribute ZA1 (for any particular instance) outside the Business Object (I mean without writing any code in the program of the Business object)?
    Thanks,
    Deb

    >
    Debidutta Mohanty wrote:
    > But Inside the class -> Can be assigned or changed -> Using Method -> Correct ?
    >
    > That means, inside the Business Object aslo, we can have one method to assign or change attribute. Is there any Macro to change the attribute ?
    Yes.
    BOR attribuites are a piece of code. You can see this by hilighting an attribute and clicking on the "Program" button. That code returns the attribute value, usually something from a DB table, something calculated, or a private attribute.
    To change what the attribute returns, you need to change the underlying data. How you do it depends on what your attribute code does in first place. This is why we can't give you an exact answer. If your attribute retrieves a value from a table entry then you need to change the table entry. If it is a calculated value then you need to change the data used in the calculation to make your attribute return something else. If it returns a private attribute value then you need to update this via a method.

  • To change the program attributes of a business object

    Hi All,
    How can i change the program attibutes of a business object

    SWO1 is the tcode for business objects.Once you enter the object name navigate to the program by clicking on Program button present at the top.
    Now from the menu choose Goto-->Basic Data.You will get a screen with tab strips like change data,general , transport data, where you can give package ,description etc.
    Hope it helps.
    Regards,
    Lakshman.

Maybe you are looking for

  • Is it possible to to parse data from a log file and dump to an evt or evtx

    Have a need to query a set of servers and look for a particular event code. I need to dump the identified events to an .evt or evtx format so it can be read by windows event viewer as well as be read by splunk. This is the bit I have setup for runnin

  • FEATURE REQUEST - looping record of selected region (ADR)

    I need Audition to have a better, more professional workflow for ADR and Foley. It can either be a looping "record" with preroll and postroll or a pop-up tool that accepts regions, in to out timecode, or markers to control what section of the video t

  • Can't connect via Airport using D-Link

    Hello to everyone, I recently brought a MBP and I'm not able to connect to my wireless connection (Modem D-Link DWL-2000AP+), the laptop detects the network but when selected I receive a "Connection Timeout". The Airport has the last update. I have t

  • Red X light comes on for printing or copying...​says to load paper. Paper is in tray.

    no problem printing today.  This evening, when trying to print,  as soon as I request the print mode, the printer shows a red X and it trys to print, but message is to load paper.  I had loaded the paper, numerous times and it will not work. I tried

  • How do I fix safari error on my iPad, please?

    Safari shows an error on it's debug console when I try to access a website that always worked before. It says that an HTML tag, <h1>tag doesn't have an end tag. I have cleared the history and the cookies and even the cache and have turned off the iPa