Documentation on the BEx classes

Hello All,
is there some documentation on the BEx Excel classes (BExExcelApplication, BexItems, etc.).
I have found some examples using this classes on SDN, but no complete documentation on them?
Many thanks in advance,
Kirill

Hello Syam,
thanks for your quick answer!
This how to paper is really useful, but there is no information on the classes that i need...
I wonder if SAP really does not describe the classes that are valuable to create the complex planning applications.
On the other side this classes are used in some "How to's" from SAP.
Regards,
Kirill

Similar Messages

  • Documentation of the Navigator Class, Picklist,  & Wizard Class

    Documentation of the Navigator Class, Picklist, & Wizard Class
    May I have a copy of the oracles documentation on how to create a navigato, picklist and the wizards class based on the stnd20**.olb
    i will appreciate it much.
    thank you.
    [email protected]

    I don't think there is a documentation on this.
    Just download the demos from OTN and look at the source for the fmb's that use those.
    (By the way it is good enough to send your question once :-)

  • Documentation of the HashMap class

    Is it me or is the documentation of the HashMap class missing the very important sentence "classes used as keys _must_ implement the equals and hashCode methods".
    This sentence is present in the Hashtable documentation.
    Best regards
    Torben Hoffmann

    Well, its described in the Map interface. So maybe
    that's why they didn't bother to describe it in the
    HashMap class.I have look at the documentation of the Map interface and it does not say anything regarding a hashCode requirement on the keys as far as I can see (do you have an URL to where you found your info?).
    I would consider it to be correct to leave out any talk of hashCode in the Map interface since that has nothing to do with that interface.
    Cheers,
    /Torben

  • How to generate the documentation of nested private class?

    When I generate the documentation with the flag -private (the less restrictive), I get only the javadoc class block comment for the nested classes, is there any way to see the information about fields, operations, constructors, etc.
    I am using jdk 1.3.1._04
    Thanks in advance,
    David

    This might be a bug in javadoc. When using -private, all
    program elements should be documented. There should be nothing
    special that you need to do to document the members of nested
    classes.
    However, we haven't done a lot of testing with -private.
    If you would please submit an example of the source code that
    reproduces this error, we can take a look at it. Please follow
    the bug submission procedure at:
    http://java.sun.com/j2se/javadoc/faq/index.html#submitbugs
    It's also possible this has been fixed in 1.4.x.
    -Doug Kramer
    Javadoc team

  • Documentation of the class CL_WD_ADOBE_SERVICES

    Hi Team,
    Is there a documentation available on this class in English? Would also appriciate if they are any examples based on it. Tried the where used list but was not very helpful.
    - Thanks and best regards,
    Harish.
    SAP ERP

    Oops. I wonder why this class has been documented (probably due to the CL_WD_* name). Actually, despite of what the prefix suggests this class is not released for public usage. Major (necessary) enhancements have been made to this class starting from SP10 to SP12. Due to its internal nature it's not part of any public package interface as well. So please don't use it.
    Best regards,
    Thomas
    P.S.: Although the naming of this class is an error it cannot be changed anymore without causing collateral damage. Alas....

  • Need to find the documentation for the Class used in E-recruiting

    Hi all,
         Can anyone please tell me where can i ge the documentation for all HRRCF classes?.
    Thanks
    Senthil

    Found the answer.  :-)

  • Help : documentation The Robot Class

    hi,
    is there somone who know about the robot class either the documentation of the API, some internet web site ..
    thanks

    What are you wanting to know?? I helped create the Robot class. This class was purposely kept extremely minimal, and the javadoc for it is pretty good. If you want a more complete tool, you can try Jemmy (http://jemmy.netbeans.org/), though I should warn you that the documentation there is skimpy. Jemmy builds on top of Robot and provides lots of flexibility.
    - David

  • Where are the BEx variable stored

    Hi All,
    I have couple of doubts. I would appreciate, if some one can through some light on these.
    1. Where does all the BEx variables stored, if they are stored in BW, then in which transparent tables these are stored.
    2. Where does the properties of the BEx InfoObject in the BEX Query are stored, if they are stored in BW, then in which transparent tables these are stored.
    Thanks in advance,
    CK

    Hi Sudheer,
    Are you ready for have some fun?!? 
    With BW Analyzer loaded and one of your BW workbooks open in Excel do the following:
    First, launch the Visual Basic Editor.  You do this either on the Excel Menu Bar (Tools >> Macro >> Visual Basic Editor); or, by pressing Alt + F11.
    Be sure that the Project Explorer Window is visible.  If not, on the VB Editor toolbar select View >> Project Explorer; or, press Ctrl + R.
    Projects are listed alphabetically.  Probably the first object you see in the Project list is SAPBEX(sapbex.xla).  This is the BW Analyzer.  You can't open it, but you can explore it using the VB Editor Object Browser.  More about that later.
    For now, locate your workbook.  It will probably be named VBAProject(name of workbook.xls).  If there is a "+" to the left of the project name, click on the + to expand it.
    You will see at least two types of objects:
    + Microsoft Excel Objects
    + Modules
    Expand them both.
    Among the Microsoft Excel Objects, you will see worksheets, maybe charts, and the object for the workbook itself (ThisWorkbook).
    Each sheet has two names.  The first is the codename.  The second is the name you see on the tabs when you are in Excel.
    Notice that there are two more worksheets here than you see in Excel.  One of these has a "tab name" of SAPBEXqueries; the other is named SAPBEXfilters.
    There is nothing you can do in Excel to make these sheets visible.  They are not ordinary hidden worksheets. 
    There are two ways you can make them visible:
    1.  using the Properties Window
    2.  using Visual Basic code
    If the Properties Window is not visible, on the VB Editor toolbar select View >> Properties Window; or, press F4.  Double-click on the worksheet object to select it.  Then, change the Visible Property to Visible.
    Or, use this line of code (for example):
    Sheets("SAPBEXqueries").Visible = True
    to return it to its original condition, the VBA command is:
    Sheets("SAPBEXqueries").visible = xlSheetVeryHidden
    Now I must tell you that anything you do from this point on is not covered by your warranty.  Don't worry, you can't break BW.  But, you can create a beautiful report that stops working with the next system patch that gets installed.
    Now that you are looking at these sheets, you probably would like to have a guide as to what they contain.  I posted some of that a few months ago.  I can't locate the posting right now.  You can do a search on my name to find it.  Or, if you wait, I'll find it and post the link to this thread.
    But ... there is a better way than reading my old posting.  Try this ... refresh a query in Excel.  Then, come back to the Visual Basic Editor.  Select the BW Analyzer Object ...  SAPBEX(sapbex.xla).  Then, on the VB Editor menu, select Run >> Run Macro (F5); scroll down to sapbexDebugPrint and run that macro.  It will create an amazing workbook that tells you everything you could ever want to know about the query you just refreshed. (Including a complete list of valid OLAP fire commands.)
    By comparing the various worksheets in this amazing workbook with the tables in the very-hidden SAPBEXqueries worksheet, you can learn what just about every one of those tables is all about.
    But ... before you get too carried away with making changes to the values on those sheets ... I have found that I can do almost everything I need to do without ever needing to touch those very-hidden worksheets.
    What I use mostly are the API functions.  Some of these are listed in the BW documentation.  But, there are about as many API functions that are NOT documented.  To find the API functions ... in the VB Editor, select the BW Analyzer object ... SAPBEX(sapbex.xla).  Then, select on the VE Editor menu bar, select View >> Object Browser (F2).  Change the Library to SAPBEX (this does not work unless you have already selected the SAPBEX oject).  In the Classes column, scroll down to xBEXapi.  You will now see listed all of the API functions and subroutines.
    The Object Browser tells you ALMOST everything you need to know.  Most people need a few examples to get them started.  You can look at my postings here to find examples.  Or, just do a search on "SAPBEX".  Almost every hit will lead to a discussion and/or example of these API functions.
    When you have more questions, write back.
    - Pete

  • How do you use the JSObject class?

    Hello everyone,
    So, I am trying to make a java applet call a java script function and I am having some problems.... I began by looking at the JSObject class.... Does the JSObject class come standard with an installation of java? or do I have to find it separately? Also, does it make a difference as to what operating system I'm compiling my applet one? I have been developing in mac, and I cant get my applet to compile, it claims that the netscape.javascript package can't be found..... Any suggestions on this? I'm kinda new to Java web development, as I have only been doing it for a month or so, so please keep any answers simple. Also, any other suggestions by which an applet can call a javascript function are greatly appreciated. Thanks beforehand.

    >
    So, I am trying to make a java applet call a java script function and I am having some problems.... I began by looking at the JSObject class.... Does the JSObject class come standard with an installation of java? or do I have to find it separately? >It is included in the JRE, but 'well hidden'.
    >
    Also, does it make a difference as to what operating system I'm compiling my applet one? >Quite possibly. The Win version puts the main classes into rt.jar, but the netscape classes are in plugin.jar. These are both in the general path ${java.home}/lib/.
    >
    ..I have been developing in mac, and I cant get my applet to compile, it claims that the netscape.javascript package can't be found..... Any suggestions on this? >Add the classes (once you locate them), onto the compile time classpath. I could give you links to documentation on how to do that for either *nix or Windows, but I am not sure how Mac does it.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

  • Warning :: Derived class hides the base class virtual function

    We are porting from CC5.3 to CC5.8 compiler with Sun Studio one compiler. After plenty of hurdles we are in the final stage of removing the warning messages... Amoung the plenty the following one is very common and in different files. Why am I getting this error in 5.8 and not in 5.3 compiler....
    Warning: derived_Object::markRead Hides the virtual function base_Object::markRead(ut_SourceCodeLocation&) const in a virtual base
    From this it is easily understandable that the base class mark read was hidden by derived class markRead... when we drive and override the derived class function.... It is all over the place....
    Thank you,
    Saravanan Kannan
    //public: using xx_Object :: markRead;
    virtual void markRead() const;

    The Sun C++ FAQ discusses the warning message:
    http://developers.sun.com/prodtech/cc/documentation/ss11/mr/READMEs/c++_faq.html#Coding1
    Notice that warnings are not necessarily errors. But I applaud your desire to fix the code so that it generates no warnings. I wish more of our customers could be persuaded to do the same. :-)
    C++ 5.3 issues this warning, by the way. Example:
    struct B { virtual int foo(int); };
    struct D : B { virtual int foo(double); }; // line 2
    D d;
    line 2: Warning: D::foo hides the virtual function B::foo(int).
    If for your particular code you do not see a warning with C++ 5.3, it would be due to a bug in C++ 5.3 that was later fixed.

  • Adding new customized column in the Bex Report

    Hi Experts,
    I have an existing column (say A ) in Bex and I want to add one more column (say B) based on the values that I have in column A.
    For e.g.,
    A          B  
    5          5   (=A1)
    8          3   (=A2 - A1)
    15        7   (=A3 - A2)
    I am able to create a new column B and bring the values based on above formula to get the expected results. Though the results are correct and also I saved the report as workbook, when I try to refresh the query again and open the workbook, the new column 'B' is getting disappeared.
    Could someone please help me on this?
    Thanks in advance for your help.
    Bregards,
    Krish

    Hi Pavel
    I'm hitch-hiking on this thread.
    Can you please explain what do you mean by "the grid becomes static" when you use "Convert to Formula"?
    I'm studying Excel integration in the BEx Analyser and it seems to me that when you select Convert to Formula and save the query, then you load new records into the Cube, when you open the query again it's no longer refreshed (even if you select "Refresh Workbook on Open". Is it what you mean?
    I'd appreciate more detailed explanation. I'd appreciate too this documentation about BExGetData.
    Thanks
    César Menezes

  • Can not start WebLogic in Eclipse. Error: "Could not find the main class."

    I have installed Eclipse 2.0 and WebLogic Server 6.1. and the WebLogc plug in from GENUITEC (and jdk1.3.1_04, on Win2K Server). After I have done the configuration, the WebLogic start/stop buttons are integried into the Eclipse Toolbar, but when I click on the start button to start Weblogic, it pops up a dialog box "Java Virtual Machine Launcher" with message: "Could not find the main class. Program will exit!"
    Starting WebLogc Server from the Start panel works fine.
    Does any one have seen this before or have a suggestion what I should do?
    Many many thanks in advance.
    Huan

    Weblogic must be started with a full JDK; otherwise
    JSPs and dynamic EJB stubs could not be deployed. The
    error message
    indicates you are attempting to use a JRE. Configure
    Eclipse JRE to point to a JDK. The product
    documentation will help you with this process. It does not work for me. :-(
    I have tried JDK 1.3.1 and 1.4.1: same result: I get a "Could not find the main class: Program will exit"
    For free expert support please consider contacting
    Genuitec at [email protected] If just want any
    answer ask a newsgroup.
    WayneI'll try the support at '[email protected]' :)
    Michel
    Michel Szybist
    [email protected]
    Fax: +33 (0)173729897
    SMS: http://www.szybist.net/

  • Documentation of the interaction of components in ABAP - applications

    Hello,
    I am developing on an ERP    6.0 system with ABAP   , ABAP-OO, business objects, workflow.
    Now there are a lot of different components used, i.e. function modules, classes, business objects, dynpros.
    I am looking for a way to document how all these components interact.
    Ok, you can use PowerPoint to draw charts or use excel-tables, but these means aren't integrated into SAP.
    So it is only a matter of time when the documents will be old and no longer up to date.
    How do you make such documentation, is the visual composer a possible tool?
    Best would be a tool, that offers the possibility to model the interactions in advance.
    Has anyone an idea?
    thanks in advance,
    Dirk

    Hello Dirk
    At the SDN day prior to the TechEd 2008 in Berlin I asked the people from SAP in the closing session "Latest and Greatest in ABAP" about round-trip engineering (ABAP class -> UML -> ABAP class).
    They are about to integrate UML diagram generation from ABAP classes into NetWeaver (perhaps in 7.20).
    For anything else you may have a look at package SEST, e.g.
    - report SAPRSEUH (call fm RS_SOURCE_STRUCTURE)
    - fm RS_CALL_HIERARCHY
    - fm RS_PROGRAM_TABLES
    Regards
      Uwe

  • WSIF Invocation (Schemac tool alternative to generate the facade class)

    Hi,
    I am trying to create a BPEL Project which supposed to invokes an EJB using WSIF call,
    I have created the EJB wsif using JDeveloper for the following method signature,
    public void handleMessage(Message inMessage) {
    The Parameter Message is an Complex object and having a byte[] array.
    when i trying to create facade class for the WSDL file
    <oracle_home>\bpel\bin schemac Mywsdl.wsdl
    It says the following:
    warn: The W3C datatype 'base64Binary' is not currently supported by Collaxa sche
    mac.
    warn: The W3C datatype 'base64Binary' is not currently supported by Collaxa sche
    mac.
    warn: The W3C datatype 'hexBinary' is not currently supported by Collaxa schemac
    warn: The W3C datatype 'time' is not currently supported by Collaxa schemac.
    schemac>WARNING: schemac tool has been deprecated, please use jaxb compliant com
    piler (e.g. oracle jaxb) to generate java classes from xml schema.
    schemac> generating XML business document ...
    schemac> compiling XML business documents ...
    and finally the SCHEMAC Failed Message.
    ------------------------------>
    I tried using the orajaxb suggested by above message :
    <oracle_home>/bin/>orajaxb -schema Mywsdl.wsdl
    Mywsdl
    file:/D:/product/10.1.3.1/OracleAS_1/bin/Mywsdl<Line 14, Co
    lumn 6>: XML-24534: (Error) Element 'definitions' not expected.
    file:/D:/product/10.1.3.1/OracleAS_1/bin/Mywsdl<Line 14, Co
    lumn 6>: XML-24526: (Error) Invalid attribute 'name' in element 'element'
    file:/D:/product/10.1.3.1/OracleAS_1/bin/Mywsdl<Line 14, Co
    lumn 6>: XML-24530: (Error) Element 'schema' has invalid namespace: 'http://sche
    mas.xmlsoap.org/wsdl/'
    file:/D:/product/10.1.3.1/OracleAS_1/bin/Mywsdl<Line 14, Co
    lumn 6>: XML-24527: (Error) Invalid element 'types' in 'schema'
    file:/D:/product/10.1.3.1/OracleAS_1/bin/Mywsdl<Line 14, Co
    lumn 6>: XML-24527: (Error) Invalid element 'message' in 'schema'
    file:/D:/product/10.1.3.1/OracleAS_1/bin/Mywsdl<Line 14, Co
    lumn 6>: XML-24527: (Error) Invalid element 'message' in 'schema'
    file:/D:/product/10.1.3.1/OracleAS_1/bin/Mywsdl<Line 14, Co
    lumn 6>: XML-24527: (Error) Invalid element 'portType' in 'schema'
    file:/D:/product/10.1.3.1/OracleAS_1/bin/Mywsdl<Line 14, Co
    lumn 6>: XML-24527: (Error) Invalid element 'binding' in 'schema'
    file:/D:/product/10.1.3.1/OracleAS_1/bin/Mywsdl<Line 14, Co
    lumn 6>: XML-24527: (Error) Invalid element 'service' in 'schema'
    and failed last.
    -------------------------->
    The Wsdl files has the binding as follows,
    <format:typeMap typeName="tns1:handleMessageElement" formatType="com.MyExample.HandleMessageElement"/>
    so my BPEL throws an run time Exception Missing classs HandleMessageElement:
    Please help me out in creating the facade classe using jaxb compliant com
    piler (e.g. oracle jaxb) for my wsdl,so that i could keep the classes in the bpel/system/classes
    Thank you
    Sivakumar

    Hello,
    Yes you are correct this is the way to create a service and client, at lease for SOAP....
    A Service, in OracleAS Web Service stack must at least have one SOAP (1.1 or 1.2) binding, you cannot in the current release have only WSIF.
    The warning, is not in this context an issue, you can ignore it.
    Also, the Application Server Control, does not currently expose any information about WSIF binding. The only way to see it would be to access the WSDL file a take a look to the bindings, you should see the WSIF one.
    About the client generation, currently the GenProxy command is only used to create SOAP clients, to create a WSIF client you must use the steps documenting in the advanced developer guide: Writing WSIF Client.
    Regards
    Tugdual Grall

  • Information about the ExternalConnection class inFramework.

    There has been a lot of email asking about this class lately so here is
    the latest on the status of the ExternalConnection class.
    Currently the feature is in Beta. However it MAY be productized in 2F.
    After a successful period of beta testing for the ExternalConnection
    feature, we decided to widen the distribution of it. So we will provide
    the example and documentation to any customer that asks for it.
    You can get the documentation either from your Forte rep or Technical
    Support. The example can also be emailed to you.
    There is one outstanding bug in 2E, but it will only occur if you try
    and write while reads are still outstanding on the same connection.
    Hope this answers some questions.
    kathy
    Katherine A. Brown
    Technical Support Team Manager
    Forte Customer Services
    =================================
    (ph) 510.869.3439
    (fax) 510.869.2010
    (email) [email protected]
    (hotline) 510.451.5400
    =================================
    From a Chinese fortune cookie: Customers are the precious things
    Goods are only grass.
    =================================

    Hi Julien,
    The main reason is portability. It's true that in many J2EE implementations it is possible to access an EJB's Home object without going through the component context (java:comp/env), but all such approaches are NOT portable. In the J2EE programming model, all resource access is made via the private component namespace. Using this level of indirection allows the bean developer to code the application without having to know which physical resource will be used at runtime. Each J2EE implementation can use a different scheme to identity physical resources, so by sticking to logical references in your code, you guarantee portability. Finally, you have the advantage that you can change which physical resource is mapped at deployment time without having to change your code.
    So, the bottom line is, whenever you have any J2EE component (ejb, servlet, jsp, Application Client) that looks up an ejb, data source, queue, connection factory, etc., always use the environment reference type that J2EE defines for it and look it up via java:comp/env.
    --ken
    Kenneth Saks
    J2EE SDK Team
    SUN Microsystems

Maybe you are looking for

  • Elements 9 runtime error

    I keep getting a runtime error on Elements 9. I am over it. I have searched the forums and no body is getting a solution from what I can see. I did nothing to my computer, it just started giving me an error one day and has never worked since then.

  • Starting Reports Server

    I installed 9iAS Release 2 on Win2k a few weeks ago, and only went to start Reports today. I noticed that the status of the reports server is listed as 'unknown' in Enterprise Manager - when I try to start it, it simply remains stopped. I followed th

  • Mac OSX 10.4.11

    Bonjour J'ai un ordinateur portable iBook Mac OsX 10.4.11et je voudrai savoir si on peut mettre le système exploitation en 10.5 ? iBook : processeur : 1.33GHz PowerPC G4 et le mémoire : 1.25 GB DDR SDRAM. merci de votre aide

  • Using flex created swc file in CS4

    Hi, I have a bunch of AS3 code that is in a Flex 3 SWC project. I would like to use some of these libraries in a Flash CS4 project. is this possible? If so how?

  • WebLogic 10. MP1 AssertionError

    We are migrating from WebLogic 8.1 to 10. Eveyrthing works well, when we use WebLogic 10/JDK 1.5 (provided by WL) on Windows XP however when same setup is executed on Solaris X86, we get below exception after the server comes up and running. Can anyo