Names of the classes used in BW

Hi BW guru
I would like to know name of the class to do following two things
1) To read request status of cube/DSO
2) To read delta queue from source system
I found two function modules as follows --
1) RSSM_ICUBE_REQUESTS_GET
2) TRFC_QOUT_STATE
But none of these are released for customer by SAP. They are available in the system however I want to see if I can use classes in my code.
Any help would be rewarded
Thanks
AGON

DTP Status on BW
Class: CL_RSBK_DTP
Method: IF_RSPC_GET_STATUS~GET_STATUS
I'm not aware of any class/method to view the source system delta queue.

Similar Messages

  • How to get the name of the class which is currently in use

    Hi all,
    I have two classes Mother and Child, and I use this code to print the name of the class in use
      DATA m TYPE REF TO zmother.
      DATA class_name type string VALUE 'CHILD'.
      CREATE OBJECT m TYPE (class_name).
      CALL METHOD m->PrintName .
    So, what is the source code that I have to put in the PrintName methode?
    Thanks.

    Ok, but how can I get the name of the object class that calls the methode!
    REPORT  ztest_method.
    *       CLASS c1 DEFINITION
    CLASS c1 DEFINITION.
      PUBLIC SECTION.
        METHODS: get_data.
    ENDCLASS.                    "c1 DEFINITION
    *       CLASS c1 IMPLEMENTATION
    CLASS c1 IMPLEMENTATION.
      METHOD get_data.
    ****** What is the code to put here to know the name of this Class?*
      ENDMETHOD.                    "get_data
    ENDCLASS.                    "c1 IMPLEMENTATION
    DATA oref TYPE REF TO object.
    DATA: method TYPE string.
    DATA: cla_name(20).
    START-OF-SELECTION.
      cla_name = 'C1'.
      CREATE OBJECT oref TYPE (cla_name).
      BREAK-POINT.
      CALL METHOD oref->(method).

  • What are the classes used for bropdownListBox in BSP and purpose and how

    what are the classes used for bropdownListBox in BSP and purpose and how
    thank you,
    Regards.
    Jagrut BharatKumar Shukla

    Benje001,
    Right-click on the CWAI control on your form. Choose Properties. The first tab is the Channels tab. After you choose your device from the drop down box on the right, you can type in the Channels box which channel you want to use.
    If you want to see a CWAI control that is already configured, all of the shipping examples will have this already done.
    Also, if you have questions about any item on the CWAI (or any other NI ActiveX control) you can click the ? icon in the right corner of the properties page and then click on the item in the dialog that you need help with. This "What's this" help will describe that particular control on the dialog.
    Hope that helps!
    Regards,
    Shannon R.
    Applications Engineer
    National Instruments

  • How to get the name of the currently used display variant

    Dear all,
    I found the user-exit EXIT_SAPLGRAP_001 for programming download authorization.
    With us no standard user is allowd to download data from R/3. With the user-exit it would be possible to allow certain downloads. one problem i solved already.
    For programming the second authorization i need the name of the currently used display variant in RKPEP000. Where can i get the name. I tried user-exits for RKPEP000, but i didn't find the name. I didn't find it in SYST either.
    Thanks and reargs
    Monika

    First you need to enter those names. Right-click the songs (Windows) or go to File>Get Info (All Platforms), then go to the second tab from the left to insert the information.

  • Query to get the name of the tables used in a View?

    Hi,
    Could you please help me in getting the name of the tables used in a perticular view?
    Please help me out...
    thnx in advance.
    Thnx,
    Bits
    Edited by: Bits on Sep 14, 2009 2:15 PM

    There is no data dictionary table that stores this directly.
    - You could get the DDL used to create the view and parse that SQL. Depending on how complex the view might be, this could be relatively easy or highly complex.
    - You could get a recursive list of the objects that the view depends on (from ALL_/USER_/DBA_DEPENDENCIES) and trace those dependencies back to all the tables that the view depends on. If your view calls functions, however, this may or may not be what you're looking for. If you are selecting from just one table in the FROM clause but you are calling a function that references a dozen tables, do you want one row? Or thirteen? What about tables referenced in a correlated subquery in the WHERE clause?
    Justin

  • What is the significance of the blue, green and grey highlighted names in the directory used to text or iMessage? This is not about the messaging themselves, but the names to select to text or iMessage.

    What is the significance of the blue, green and grey highlighted names in the directory used to text or iMessage? This is not about the messaging themselves, but the names to select to text or iMessage.

    The entries in blue are people you've recently exchanged iMessages with, the ones in green are people with whom you've recently exchanged SMS messages and the ones in grey are people with whom you have not recently exchanged any messages.

  • Receiving emails about a newly set up itunes account that does not belong to me (although has my name). The address used in connection with it seems to be in California and the person likes Justin Bieber - what's going on here?

    Hi. I am receiving emails about a newly set up itunes account that does not belong to me (although has my name). The address used in connection with it seems to be in California and the person likes Justin Bieber (as I now have a receipt for that purchase). It states that it is billed to store credit. (a) I don't want to receive this person's information and (b) I certainly don't want to somehow be charged for it (although it appears, thus far, that I have not been). What's going on?

    i didn't read a lot of your 2nd paragraph, but it seems like the password is the issue, right?
    do a true clean install
    reboot your machine and hold down command+option+r, you should see a spinning globe - if you don't see the globe or anything that reads internet recovery, shut down and try again
    at menu, chose disk utility and once there, find your HD on the left side, select the physical name and erase it as mac journaled
    exit disk utlity
    at menu, choose install OSX
    this time, when it asks for a password just hit continue, it will let you complete without a password
    you should be able to get into your laptop, now figure out what password you'll be able to use with your kb issue

  • Name of the class

    hello all
    I have an object named obj.
    I wnat to know to which class it belongs, say name of the class.
    Anyone there.
    Thanx

    obj.getClass().getName();

  • Reading the Interfaces name which the class is implementing in a COM dll is implementing.

    Hi All,
    I'm using .NET Reflection to read a COM dll. I'm able to fetch the classes that are present in the dll. But I would like to know interface name which this class is implementing.
    For a .NET dll we can know the name of class's implementing interface name using the <classname>.BaseType.Name property.
    How can I know the interface name which this class is implementing (if any).
    Please let me know how to do this for a COM dll.
    Thanks in advance,Satish
    Thanks, Satish Bommideni "Success usually comes to those who are too busy to be looking for it."

    Hi,
    Thanks for the reply.
    I'm reading the COM assembly using the methods available in oleaut32.dll.
    Also I've imported the namespaces
    System.Runtime.InteropServices.ComTypes;
    System.Runtime.InteropServices;
    to use its respective methods and thus I'm able to read it's classes.But donot know what property to check for this class's interface.
    Kindly let me know if you need any further information.
    Thanks, Satish Bommideni "Success usually comes to those who are too busy to be looking for it."

  • Getting the name of the column using MDM API

    Hi I want to know the Column name from fieldId, can any one help me on this. I am using the following code to get the data but i nedd column name to which the data is refering
    ArrayList mdmData=new ArrayList();
    RecordResultSet rs=(RecordResultSet)obj;
    FieldId field[];
    for(int i=0;i<rs.getRecords().length;i++)
           field=rs.getRecords()<i>.getFields();
                for(int j=0;j<field.length;j++)
                    mdmData.add(rs.getRecords()<i>.getFieldValue(field[j]));
    Regards,
    Sandeep

    Hi Sandeep,
    When you fetched the FieldID from FieldProperties object. There is one more method to this class named FieldProp.getName(). This returns you the Name of the Field. You can store that too if you need it later.
    Thanks
    Namrata

  • Need to know how to find the name of the classes for ABAP Objects

    Hi Experts,
    I am new in ABAP Objects. I do not now the best way to find the class which I want to use. Shall I search it using F4 search help, but many of the classes does not have a description with them.
    I want to create a text field on my splitter container. Can anybody please tell me the class-name for the text field.
    Regards,
    Saurabh A. Buksh

    Hi,
    Thank you for the helping me. But, I actually want something which we call a Text Box. I do not require a Text Edit Control.
    Please tell me if you know any classes related to it and the parameters that I need to pass into it.
    Thanks & Regards,
    Saurabh A. Buksh

  • How can i find name of the variable used in the program and assign to a str

    double width= .333;
            int i;
            for (i = 0; i <=2; i ++){
                segment[i] = i+1;
            }is a bit of code...Is there anyway using which I can find out the variable names and assign them to string variables so that i can match them with another table ....
    That is I want the "width", "segment[0]", "segment[1]" and "segment[2]"...
    pls help...

    I am trying to find out the variable names in the program so that they can be matched against a given table for availability. I want to do that so that i can send the name, its type and value as a data packet to another node...I am not familiar with this...pls..would you give me a sample code

  • Does illustrator list the images used in a particular file. I want to know the file names of the images used.

    Does illustrator CS5 list the images used in a particular document.
    By this I mean does it tell you the name of the actual images.

    But if the file has been embedded, the file name is lost.

  • Extract the war/ear and search the method names in the classes

    Hi,
    I have implemented search function for methods in the class files in the physical path presented jars,
    using url classloader am loading class and getting class object then using reflection API am getting declared methods.
    but when i try to search more jars am getting stack over flow error.
    since am using recursive function.
    example code
    ArrayList l_alClassNames = new ArrayList ();
    RuleITClassLoader classLoader = new RuleITClassLoader();
    Map l_mapMethodDetails = new HashMap();
    m_mapPackageInformation = new HashMap();
    ArrayList l_alMethodnames = new ArrayList();
    boolean flage = false;
    JarInputStream l_objJarInputStream= null;
    try{
    l_objJarInputStream = new JarInputStream(new FileInputStream (p_sJarpath));
    JarEntry l_objJarEntry;
    while(true) {
    l_objJarEntry=l_objJarInputStream.getNextJarEntry ();
    if(l_objJarEntry == null){
    break;
    String l_sPackagename ="";
    if (l_objJarEntry.getName ().endsWith (IServiceAdministratorConstants.FILE_TYPE_CLASS)) {
    String l_sClassName = l_objJarEntry.getName().replaceAll("/", "\\.");
    l_sClassName = l_sClassName.substring(0, l_sClassName.length()-6);
    Class l_objClass = classLoader.loadClass(p_sJarpath,l_sClassName);
    if(l_objClass!=null){
    l_sPackagename= l_objClass.getPackage().getName();
    l_sPackagename = l_sPackagename.replaceAll("\\." , "/");
    Method[] l_arrayMethods = null;
    try{
    l_arrayMethods = l_objClass.getDeclaredMethods();
    }catch(NoClassDefFoundError exException){
    /*m_objLogger.log(ILoggerConstants.SERVICEADMIN_WEBAPP, CLASS_NAME,
    "getClasseNamesInPackage", "Error occured while l_arrayMethods ",
    exException, ILoggerConstants.SEVERITY_WARN);*/
    }catch(StackOverflowError StackOverflowError) {
    l_sClassName = l_sClassName.substring(l_sClassName.lastIndexOf("."));
    l_sClassName = l_sClassName.substring(1, l_sClassName.length());
    l_alMethodnames = new ArrayList();
    if(l_arrayMethods !=null && l_arrayMethods.length>;0){
    for (int b_MethodsIndex = 0; b_MethodsIndex < l_arrayMethods.length; b_MethodsIndex++) {
    MethodManagementDTO l_objMethods = new MethodManagementDTO();
    String l_sMethodName = l_arrayMethods[b_MethodsIndex].getName();
    l_sPackagename = l_objClass.getPackage().getName();
    if(l_sMethodName.equalsIgnoreCase(p_sServiceName)){
    Class[] l_objParameterTypes = l_arrayMethods[b_MethodsIndex].getParameterTypes();
    int l_iArgumentsNumber = new Integer(l_objParameterTypes.length);
    String l_sSearchKey = l_sPackagename+IServiceAdministratorConstants.SEARCH_KEY_CONCATENATION_SYMBOL+l_sClassName+IServiceAdministratorConstants.SEARCH_KEY_CONCATENATION_SYMBOL+l_sMethodName+IServiceAdministratorConstants.SEARCH_KEY_CONCATENATION_SYMBOL+l_iArgumentsNumber;
    ArrayList<ArgumentDTO> l_alArguments = new ArrayList<ArgumentDTO>();
    ArrayList<String> l_alArgumentsType = new ArrayList<String>();
    for (int argCnt = 0; argCnt < l_objParameterTypes.length; argCnt++) {
    ArgumentDTO l_objArguments = new ArgumentDTO();
    l_objArguments.setArgumentType(l_objParameterTypes[argCnt].getName());
    // set the arguments order.
    l_objArguments.setArgumentOrder(new Integer(argCnt));
    String l_sArgumentName = IServiceAdministratorConstants.ARGUMENT_LABEL+ (argCnt + 1);
    l_objArguments.setArgumentName(l_sArgumentName);
    l_alArguments.add(l_objArguments);
    l_alArgumentsType.add(argCnt,l_objParameterTypes[argCnt].getName());
    String l_sMethodAliasName = constructMethodAliasName(l_alArguments, l_arrayMethods[b_MethodsIndex].getName());
    if(l_alRegisteredServiceDetails.size()>0){
    for(ServiceRegistratrionDTO b_objServiceregistration :l_alRegisteredServiceDetails){
    StringBuffer l_sbSearchKey = new StringBuffer();
    l_sbSearchKey.append(b_objServiceregistration.getComponentname());
    l_sbSearchKey.append(IServiceAdministratorConstants.SEARCH_KEY_CONCATENATION_SYMBOL);
    l_sbSearchKey.append(b_objServiceregistration.getClasstname());
    l_sbSearchKey.append(IServiceAdministratorConstants.SEARCH_KEY_CONCATENATION_SYMBOL);
    l_sbSearchKey.append(b_objServiceregistration.getMethodname());
    l_sbSearchKey.append(IServiceAdministratorConstants.SEARCH_KEY_CONCATENATION_SYMBOL);
    l_sbSearchKey.append(b_objServiceregistration.getArgumentNumber());
    if(l_sbSearchKey.toString().equalsIgnoreCase(l_sSearchKey)){
    l_objMethods.setMethodDescription(checkEmpty(b_objServiceregistration.getDescription()));
    l_objMethods.setStatus(IServiceAdministratorConstants.REGISTERED_STATUS);
    l_objMethods.setAliasName(checkEmpty(b_objServiceregistration.getAliasname()));
    break;
    }else{
    l_objMethods.setAliasName(l_sMethodAliasName);
    l_objMethods.setStatus("");
    l_objMethods.setMethodDescription("");
    }else{
    l_objMethods.setAliasName(l_sMethodAliasName);
    l_objMethods.setStatus("");
    l_objMethods.setMethodDescription("");
    l_objMethods.setArgumentsNumber(l_iArgumentsNumber);
    l_objMethods.setArgumentsList(l_alArgumentsType);
    l_objMethods.setMethodName(l_sMethodName);
    if (l_arrayMethods[b_MethodsIndex].getModifiers() == Modifier.STATIC) {
    l_objMethods.setMethodInvocationType(IServiceAdministratorConstants.METHOD_INVOCATIONTYPE_STATIC);
    } else {
    l_objMethods.setMethodInvocationType(IServiceAdministratorConstants.METHOD_INVOCATIONTYPE_DYNAMIC);
    if (l_arrayMethods[b_MethodsIndex].getReturnType().getName()
    .equals(IServiceAdministratorConstants.METHOD_RETURN_TYPE)) {
    l_objMethods.setReturnType(IServiceAdministratorConstants.METHOD_RETURN_TYPE_LOGIC);
    } else {
    l_objMethods.setReturnType(IServiceAdministratorConstants.METHOD_RETURN_TYPE_NONLOGIC);
    /*l_objMethods.setServiceUuid("0");
    l_objMethods.setHidden("yes");
    l_objMethods.setInfinite("no");*/
    flage =true;
    l_alMethodnames.add(l_objMethods);
    if(l_alMethodnames.size()>0){
    l_mapMethodDetails.put(l_sClassName, l_alMethodnames);
    l_alMethodnames = new ArrayList();
    if(l_mapMethodDetails.size()>0 && flage){
    l_alClassNames.add(l_mapMethodDetails);
    l_mapMethodDetails = new HashMap();
    if(l_alClassNames.size()>0 && flage)
    m_mapPackageInformation.put(l_sPackagename, l_alClassNames);
    l_alClassNames = new ArrayList();
    I need some solution to fix.
    I need implemete the search methodsnames for war files and ear files.
    kindly help to implement on this

    Hi,
    Is it possible to send across the .ear file across as an attachment, so that I can test it out at my end ASAIC and let you know the results.
    Thanks & Regards
    Ganesh .R
    Developer Technical Support
    Sun Microsystems
    http://www.sun.com/developers/support
    [email protected]

  • Unity cluster with one node using name and the other using iP

    Hey Guys,
    I have two unity connection boxes setup in a cluster, one is know by name and the other by IP address. I'd like to change so that both are using the IP address. The node in the cluster that is using the node name is the publisher. Can I simply go into the cluster settings and change that to an IP address or will that cause big issues.
    Thanks,
    BR

    Hi Brent,
    Is there any specific reason why you would want to do this kind of configuration? (Just Curious to know)
    I tried doing the same on my Unity Connection cluster (version 8.5(1) SU2 ) in lab.
    After making the change in the cluster settings page for the Pub , I did the following :
    1)Switch the Primary Role back and forth between the Pub and the Sub :  SUCCESS
    2)Checked the service status on the pub and sub using "utils service list" : ALL GOOD
    3)Rebooted the Pub followed by the Sub and performed test 1 and 2 again : SUCCESS
    4)Checked the output of "show cuc cluster status" on the Pub and Sub again: SUCCESS
    However, I could not find any document that says this change is really required under any circumstances.
    I hope that helps!!!
    Regards,
    Saurabh Agnihotri

Maybe you are looking for

  • Is there a way that I can order online and have it arrive at a set date and time?

    Hello there Apple community, I am looking at buying an iPod Touch 5 gen but I'm not sure if I will be at home when it arrives. Is there a way for me to set it to arrive at a time like 4:30 Tuesday? And also, does apple deliver on labour day? This Mon

  • [PLEASE] Prob with instead of Trigger  [URGENT !]

    Hi, I have an INSTEAD OF TRIGGER on a view which update 2 based tables. Each time the user update information,the system processes the update operation and insert a new row into the base tables.None of the based tables has any trigger. Why this inser

  • Generic Object Services u2013 GOS

    Hi Gurus I am not familiar with this in SAP and would appreciate some help please. With transaction CV04n we need to create an attachment on the document via the menu: GOS icon, Create, Create Attachment. The requirement is to delete the file from th

  • T400 WiFi: Lenovo immediately connects, but Microsoft takes 60 seconds longer

    I'm running Win 7 on a T400 with an Intel 5300 card.  When I boot-up, the Lenovo Access Connections immediately connects to the WiFi network. However, the Microsoft wireless indicator in the notification panel indicates that I am not connected to the

  • C3-01 screen bar

    I've bought today a Nokia C3-01 and on bottom bar of screen where it should be "Names" on my phone is "Web" and I want to know how I can change it. Attachments: c3_warm_grey_front_604x604.png ‏169 KB