Business Object Creation for OBN:

Hi
I am a very new user of the SAP EP.
I believe i have EP 6.0 on my machine.(How do i find out which release of EP I am using ?)
As part of my first step towards learning OBN, I tried to create a folder under "Business Objects". But, I do not get any screen/message, when I right click on the Business Objects and say New Folder.
What authorizations / permissions are required for the same ?
Thanks for the help.
Best Regards
Prasad

Hi Prasad,
To see the version of portal click on
System administration->support->version.In Version you can see the portal version ,J2ee details and KM details.
<b>Plz don forget points, if it helped.</b>
Thanks,
Harish.

Similar Messages

  • Business object type for parked invoices

    Hi,
    We are using documentum to store documents that have been attached to business object types in SAP. The business object types are configured in transaction OAC3 to point to a pre-configured content repository.
    Having this configuration allows the object type to use the "services for objects" option, enabling it to store attachments.
    The business object types for invoices have been configured and we are able to store attachments. However this does not seem to work for "Parked invoices". The configuration in the "services for objects" component is not there and the feature to store the attachment is disabled.
    As the configuration needs to be done for all object types that need to be able to store attachments, maybe someone here can indicate what the object type is for parked invoices. Alternatively, maybe there is a way to look up the various business object types.
    Any help you can provide is appreciated.
    Thanks.
    Kind Regards,
    Giwan

    Hi ,
    Thank You for your reply.
    I created inquiry . it takes BUS2031.But BUS2031 is used for quotation.But that inquiry is open in VA12(Change Inquiry) Transaction,not open in VA22(Change Quotation).
    Is there any setting for BOR object types to Document Types.
    Please give me a reply as early as possible.It's very urgent.
    Thanks,
    Saritha

  • Need Business Object (BUS) for sample order request in CRM 5.0

    Hello Friends,
    Path: Sales-> Maintain Sales transactions ->Sample Order Request
    I want to create workflow for below scenario.
    When i create Sample order request in CRM, that time workflow should be triggered and notification mail go to a concerned person.
    now for that i need Business Object for Sample Order Request.
    So please can you suggest me a Business Object (BUS) for this sales transaction of sample order request.
    Thanking you,
    Marmik Shah

    Hi,
    if you activate the technical names in the menu, you'll see that transction for maintaining sales transactions is called:
    crmd_bus2000115
    So there you have it, it's BO BUS2000115
    regards, Rob Dielemans

  • SAP Business Objects Analysis for Office 1.4 on Microfost Office 64-Bit Version

    Hello,
    Has anyone installed SAP Business Objects Analysis for Office 1.4 SP6 on Microsoft Office (Excel) 64-Bit Version. I am getting message "The launcher was not able to connect Analysis Add-In. Make sure that Analysis Add-In is not disabled by Office Application".
    When I activated the Analysis Add-In, I am getting below Error: "Excel experienced a serious problem with the 'analysis' add-in." and it is forcing to disable the add-in and asking to check for if any update is available. It was working fine on 32-bit Excel version.
    Thanks,
    Ram

    Hi Tammy,
    Thanks for the response. It is working fine on 32-bit Office version (with OS 64-bit). I checked the compatibility (OSS 1466118 ) and it supports Microsoft 64-bit office version. Just wanted to see if anyone had successful installation.
    Thanks,
    Ram

  • Business Object Types for Z-tables

    hi
    could anyone please guide me how to create business-object-types for Z-tables?
    thanks in advance
    regards
    pavan

    Hi,
    Business objects (SWO1) are representations of business entities.
    So it is impossible to ask I need to create a business object for a z-table, because that's not business specific.
    Normally when you're faced with a BO issue, you first search for useable existing BO's. In there you also search if SAP has already provided the wanted functional requirement. If this is not present, you then search for a BO which is closest to the Functional requirement and then create a subtype of that BO en extend it to suit your needs (attributes, methods, events etc.) via delegation you can then also se it in sap standard.
    for more infor check the SAP Business Workflow

  • Unable to Save more than 1 Business-object-provider for the Connector.

    I m using MEP 1.0 Platform.
    My Ecbo Connector "BankDb" had initially "Account" Object Provider which i was able to save successfully via the MEP console.Later on i added the "Statement" Object Provider to the same connector. But i get this Exception
    java.lang.IllegalArgumentException: Object:
    {[[email protected]f,
    [email protected]55,
    [email protected]f,
    [email protected]c,
    [email protected]2,
    [email protected]d,
    [email protected]9]} is not a known entity type.
    I shut down my Server & then restarted it.i removed the AccountObject Provider & Added StatementObject Provider instead & clicked save & it saved my Connector Successfully But when i tried to add the AccountProvider too i get the same exception.In short i am unable to save both providers at the same time in the console.
    I googled later on & found something Similar on java.net
    https://glassfish.dev.java.net/issues/show_bug.cgi?id=3235
    I am not sure about all of this as i am just a beginner.
    Please Help
    Thx in Advance
    Alex.

    Hello, thanks for your interest in the GlassFish Mobility Platform. The ECBO architecture supports exactly one business-object-provider per connector. You could combine your account and statement data into a single composite business object. You could also upgrade to MEP 1.1 and use the dynamic data feature (JerseyME) on the client to retrieve dynamic data such as the statement report and use the business-object-provider for the synchronized data, ie. the account activity. For more information see the [Sun GlassFish Mobility Platform 1.1 Developer's Guide for Enterprise Connectors|http://docs.sun.com/app/docs/doc/820-7207] .
    regards,
    Hans

  • Is it possible to restrict the object creation for stateless session beans

    Hi,
    Is it possible to restrict/fix the ejb object creation for stateless session beans in application server?
    For example, i want to configure the application server ( am using JBOSS ) to create maximum of 10 session bean objects. and if any requests for the stateless session bean come, as application server has created 10 objects, the requests should be blocked.
    Thanks in advance,
    nvseenu

    You can keep a counter in the application code. A static var won't work, but an entity and a consistent id should. This version would affect performance, but it would be portable to other app servers.
    // ConstrainedBean.java
    package unq.ejb;
    import javax.ejb.Stateless;
    import javax.ejb.CreateException;
    import javax.annotation.PostConstruct;
    import javax.annotation.PreDestroy;
    import javax.persistence.PersistenceContext;
    import javax.persistence.EntityManager;
    @Stateless
    public class ConstrainedBean implements Constrained {
        final static int DEFAULT_COUNTERID = 1;
        @PersistenceContext EntityManager em;
        @PostConstruct
        protected void init() throws CreateException {
         ConstrainedBeanCounter counter =
             em.find(ConstrainedBeanCounter.class, DEFAULT_COUNTERID);
         if( counter == null ) {
             counter = new ConstrainedBeanCounter();
             counter.counterId = 1;
             counter.counterValue = 0;
             em.persist(counter);
         if( counter.atMaximum() ) {
             throw new CreateException("error attempting to create > 10 beans");
         else {
             counter.increment();
        @PreDestroy
        protected void destroy() {
         ConstrainedBeanCounter counter = em.find(ConstrainedBeanCounter.class,
                                   DEFAULT_COUNTERID);
         counter.decrement();
        public void doSomething() { System.out.println("doSomething()"); }
    // ConstrainedBeanCounter.java
    package unq.ejb;
    import javax.persistence.Entity;
    import javax.persistence.Id;
    @Entity
    public class ConstrainedBeanCounter implements java.io.Serializable
        @Id public int counterId;
        public int counterValue = 0;
        public void increment() {
         counterValue++;
        public void decrement() {
         counterValue--;
        public boolean atMaximum() {
         return counterValue > 9;
    }

  • Business Object Template for SALES ORDER

    hi all,
              how to get the business object template for sales order..iam able to get template for business partners but unable to get for sales order.... i have tried all the codings given, by still iam getting a error like
    <?xml version="1.0" encoding="utf-8" ?>
    - <env:Envelope xmlns:env="http://www.w3.org/2003/05/soap-envelope">
    - <env:Body>
    - <env:Fault>
    - <env:Code>
      <env:Value>env:Receiver</env:Value>
    - <env:Subcode>
      <env:Value>-1</env:Value>
      </env:Subcode>
      </env:Code>
    - <env:Reason>
      <env:Text xml:lang="en">General Error</env:Text>
      </env:Reason>
    - <env:Detail>
      <Command>GetBusinessObjectTemplate</Command>
      <SessionID>DC703486-75R0-AD4D-97D1-0E80D8195155</SessionID>
      </env:Detail>
      </env:Fault>
      </env:Body>
      </env:Envelope>
    my coding for getting business object template for sales order is
    <WebMethod()> Public Function GetBusinessObjectTemplate(ByVal SessionID As String) As Xml.XmlDocument
            Dim n As SBODI_Server.Node
            Dim s, strXML As String
            Dim d As Xml.XmlDocument
            d = New Xml.XmlDocument
            n = New SBODI_Server.Node
            strXML = "<?xml version=""1.0"" encoding=""UTF-16""?>" & _
            "<env:Envelope xmlns:env=""http://schemas.xmlsoap.org/soap/envelope/"">" & _
            "<env:Header>" & _
            "<SessionID>" & CStr(SessionID) & "</SessionID>" & _
            "</env:Header><env:Body><dis:GetBusinessObjectTemplate xmlns:dis=""http://www.sap.com/SBO/DIS"">" & _
            "<Object>oOrders</Object>" & _
            "</dis:GetBusinessObjectTemplate></env:Body></env:Envelope>"
             s = n.Interact(strXML)
            d.LoadXml(s)
            Return (RemoveEnv(d))
        End Function

    Hi,
    I need to pass object key or object type to a function module 'SAP_WAPI_WORKITEMS_TO_OBJECT'. This function module returns the worklist details(workflow inbox). In worklist details i need to use the field for workitem id.
    Regards,
    Gautham

  • Business Objects Integration for SAP

    Is there something you have to install, or is every integration with BW or ERP possible out of the box?
    If not, are there licence costs?

    HI,
    looks like a duplicate to this entry:
    Business Objects Integration for SAP
    Ingo

  • FSCM-COL Business Partner Creation for Existing Customers

    Experts-
    After using MDS_LOAD_COCKPIT to create the initial load of Business Partners, there are a few Customers which are still missing Business Partners. Automatic Creation of Business Partners is set up and fully functioning for any new Customers created, however when attempting to use MDS_LOAD_COCKPIT for the existing Customers which are missing Business Partners the error message 'No transfer of interval for object BU_PARTNER' (Message no. NR028) is received.
    If the Automatic Creation of Business Partners is working correctly at the time of Customer Master creation, what would prevent the Business Partner from being created after the Customer already exists?
    Please let me know if further clarification is needed on what is outlined above.
    Thanks and Regards,
    Corey

    In case someone runs into a similar issue in the future, the resolution to this issue is provided below:
    In the case I've highlighted the customer had been created, yet the Business Partner failed to be created in the Automatic Business Partner Creation functionality initially due to a missed Tax Number Category configuration. Once this configuration was complete the BP still failed to create via XD02 or MDS_LOAD_COCKPIT. MDS_PPO2 gave the initial error message as 'Business partner ##1 does not exist' (Message no. R1201).
    Although the Customer to BP synchronization setting were set up for an external number range, the presence of contact persons in the Customer Master record were causing SAP to look for grouping data. Since no grouping data was present SAP was attempting to create BPs contact persons using the internal number range, which was already set at its limit.
    By removing the contact persons from the customer master via XD02 and then re-executing the MDS_LOAD_COCKPIT, the requested Business Partner was created. After that the contact persons were then re-maintained in the customer master.

  • Business Partner creation for Customer Master creation

    Hi
    We have customized our system in order to trigger the creation of Business Partner whenever a Customer Master is created.
    I created some customers for which the Business Partner creation was not triggered due to some reason.. In order to manage the same, i created a Business Partner manually and tried to link the same to my customer through T Code FLBPD2, but system returned with a message "The business partner could not be linked to the customer selected"  Message Number CVIC_UI023.
    Can anyone suggest something.
    Thanx in advance
    Pankaj

    Hi Pankaj,
    Please check wether you configured all required node under Master Data Synchronization..In SPRO..I am referring to below node.
    Active Synchroniztion Options
    Set BP role Category for customer Integration
    Define BP Role for direction customer to BP
    Field Assignment for customer Integration
    Thanks
    Veman.

  • Bussiness Object creation for workflow

    Hi Experts,
    I am new in workflow and want to make the workflow for addition of two numbers.
    Please can anyone guide me the steps which i have to follow.
    I want to make my own BO , But there  several options like supertype,object type ..etc.
    Please explain the BO and other steps to follow .
    Rgds,
    Premraj

    Hi,
    U want to add two no. using BO.
    For this u have to create 'z' Object .
    Inside that create 'z'Method.
    Now after that u can write ur functionality of adding two no. in that method.
    this u can use in ur WF.
    Or u can use delegation also.
    Take selfitem as a supertype for BO.
    Or there is one step-conatiner operation...
    u can directly use that for addition of two numbers.
    details:
    Each business object has the following properties:
    a.     Object Type ID u2013 It is used for internal identification of the business object.
    b.     Object Name u2013 It is used for external identification of the business object.
                    Using this property external system can interact with SAP system.
    c.     Super Type u2013 It is the parent object from which all the components of the BO are inherited.
    d.     Name u2013 It is a descriptive name of the BO.
    e.     Description u2013 It is a brief description of the business object type.
    f.     Application - The application component to which the BO belongs to.
    g.     Program - Program that will contain the ABAP code of the BO.
    hope it helps u!
    Regards,
    Mamta

  • SAP TM / Business object creation

    Hi,
    this my first posting, so please excuse that I am still searching for the right place to put my message ...
    I hope this is the right group.
    I have some questions concerning SAP Transportation management; I haven't seen a special group for that, so I am here now.
    In SAP TM there are some business objects like shipment requests, shipment orders and so on. Is there any documentation available how to program with these objects?
    I have found some ways to access them by going through the SAP source code, but that's sometimes very hard, and I couldn't find yet the place where the node ids for the nodes pf the object are created.
    Best regards
    Martin

    Hi Keerthi,
    thanks for your answer. I think that there is something different in the case of TM business objects. I can't see them in SWO1, and have not found any BAPI to handle the objects.
    There is a transaction /TMSF/CONF_UI to display and change the business objects in SAP TM; and there are some menu items to create dictionary elements, access classes and wrapper classes, but they don't work (and I am not sure if this is the right way). In SAP TM source code, there are some general classes and interfaces that are used to access the TM business objects (like /SCMTMS/IF_LCP_FACADE), but they are all TM specific, so perhaps there is really a big difference between TM objects and other business objects. Maybe SAP has only chosen the same name for them.
    SAP TM is still in an early phase of development, so I could imagine that there are still some missing things inside. But at least I managed to do some object access using the same methods as SAP did.
    Best regards
    Martin

  • Business Object creation error: The service mapping is missing

    Hi developers,
    In my CAF 7.1, I have my business object "maintenanceRequest" with several attributes.
    Persistency is remote. Permission check is disabled.
    Create operation is mapped to the external service (enterprise service) createMaintenanceRequest.
    The input fields are mapped, output fields are not mapped since create operation doesn't have any.
    All the other operations are not mapped.
    I have exposed as web service the operation "create",
    I have generated, built and deployed the app.
    When I try to run it from wsnavigator I get an error in the SOAP response:
    com.sap.caf.rt.exception.CAFCreateException: The service mapping is missing
    Please note that the ES works ok (e.g. from Visual Compose 7.1).
    The ES was imported in NWDS 7.1 from service registry.
    Can anyone please help?
    Thanks, regards
    Vincenzo

    Hi Sampath, thanks for your helpful reply.
    I followed the steps from saphelp, but I get errors.
    I mapped my external service destination (an R/3-based Enterprise Service published in service registry) to:
    - UDDI_DESTINATION (error: objectNotExist) [but the ES is correctly published in service registry]
    - wsdl address in backend R/3 system (error: Deserializing WSDL stream failed)
    how should the logical destination be configured?
    Thanks a lot
    Vincenzo

  • Business Objects support for international web standards

    The NZ government has defined web standards ([Standards web-site|http://webstandards.govt.nz/index.php/Home_page]) for delivery of content over the web.  I am working with a government organisation who wants to know how/if Business Objects supports international web standards and if so which and in what manner.  This is really around BOE and WebIntelligence primarily.  Any help greatly appreciated.
    Many thanks
    Carl

    Hi Carl,
    I just quickly took a look these standards you are refering to. They seem to be more in line for web site development - i.e content of nature like most internet web sites.
    BOE is an BI applcation delivering BI content is a specilaised environment. I would say it would be difficult to place the default application and capability under the general banner of compliance. However, you would need to map the guidelines to BOE to sus out compliance, but I don't feel it really necessary as you are using an application delivered over the web, not building a website.
    Nevertheless, should you prefer, BOE is fully supported by an SDK, so you could develop you own custom interface to meet all those nice compliance issues.
    Regards
    Jacques

Maybe you are looking for

  • Error in getting APO in goods receipt

    Hi Guys,    I was trying to get Automatic Purchase order in Goods Receipt with transaction code OMJJ    in OMJJ I try to copy 101 to my own desired Movement type 222  and then I created info record using    ME11.In next process when i do MB01 transac

  • 10.7.5 update does not let me use bluetooth

    I have the 10.7.5 update and my logitech mouse and keyboard are both bluetooth and just do not connect. It was working fine and it just tuned out the bluetooth a couple of days ago but started to work again after a hour but not i have restared my com

  • Lines on moving objects

    When I export DV clips from FCE I get lines appear on moving objects, (HDTV). When I export the same clip using iMovie08 it all looks smooth. I've tried the de-interlace, it made it worse. How can I get rid of the lines in FCE?

  • Type error while calling function module with in FOX formula

    Hi, I am getting following error while calling function module from FOX Formula: "Types of parameter DAY_IN () and variable J_CALDAY(D) are inconsistent" Following is the code: DATA    I_CALDAY       TYPE  0CALDAY. DATA    N_CALDAY       TYPE  0CALDA

  • Develop Mode 2nd Monitor not showing edit adjustments

    I am using Lightroom 4.1 RC2 on a Windows 7 64 bit system with dual monitors. When I am in the develop mode and make edit adjustments on any setting the 2nd monitor does not update. If I move to another image then come back the image is updated but i