Own report type (RRI) is not visible in Ta. RSBBS

Hallo all,
when I try to implement the BAdI RS_BBS_BADI in the ERP target system according to help http://help.sap.com/saphelp_nw70/helpdata/en/45/e6caeadaf96976e10000000a1553f6/frameset.htm , the then created "Own report type" isn't shown in the appropriate drop down box in BW Ta. RSBBS . We want to realize with it a RRI to SAP-GUI via method IF_RS_BBS_BADI_HANDLER~CALL_SAPGUI under BW 7.3.
I wonder if the implemtation of inteface IF_RS_BBS_BADI_HANDLER has to be replicated from ERP to BW?
Any hints are welcome!
Best regards, Martin

Hi. I tried it, but it did not help. :(
It is strange. Before I had the error in log:
Unable to rename '/appl/ucm_cluster/server/weblayout/resources/schema.work' to '/appl/ucm_cluster/server/weblayout/resources/schema' while publishing schema.
When I looked into the 'schema' dir there was old doctypes in js file
In 'shcema.work' which was supposed to be renamed to 'schema' there was my correct document type in js file.
Now in /server/weblayout/resources/schema/views/doctypes/all.js file there is only my correct document type but i still have in gui the old wrong doctypes! :(

Similar Messages

  • Type OracleCallableStatement is not visible

    Hi!
    I've installed weblogic server 10.3.3.0, and deployed my webapp in it.
    When I run it, I get the error
    Compilation of JSP File '/my_file.jsp' failed:
    my_file.jsp:23:7: The type OracleCallableStatement is not visible
    my_file.jsp:30:37: The type OracleTypes is not visible
    My webapp worked fine in OAS 10g 10.1.2.0.2 Java Edition...
    Any clue? anybody?
    Thanks!

    Solved.
    Instead of importing "oracle.jdbc.driver.*", I import"oracle.jdbc.*" and works fine.
    Thanks anyway.

  • Type AbstractStringBuilder is not visible

    Dear All
    I'm making a web dynpro application and getting the error "type AbstractStringBuilder is not visible".
    Can anybody expalin me why it is coming?
    Latest JDK version is installed on my system.
    From where does the NWDS checks the version of JAVA?
    What should i do to remove this error?
    Request your support.
    Regards
    Vineet Vikram

    Hi Armin
    Problem is solved after i changed my work space for NWDS.
    There was some problem with the .meta file.
    Thanks for your response.
    I have awarded points to you.
    Thanks again
    Vineet

  • Getting an error  "type AbstractStringBuilder is not visible"

    Hi frndz..
    Am developing an Web dynpro application in this am using "StringBuffer" and am writing the code like this
                          StringBuffer strBf = new StringBuffer();
                          strBf .append("<?xml version='1.0' encoding='UTF-8' standalone='no'?>\n");
                          strBf .append("<").append(entriesName).append(">\n");
    and in the secound line of code itz show an error like
    "type AbstractStringBuilder is not visible "
    how to reslove this.
    Thanks in Advance
    Regards
    Rajesh

    Hi
    resolve the higher version of Java and reinstall the  java 1.4.2_09 .
    see this thread
    Urgent "Entity Service Build Failed"
    the type AbstractStringBuilder is not visible ----- Please Help
    Thanks

  • Step type section is not visible in workflow builder.

    Hello Friends,
                        Step type section is not visible in workflow builder even though I am in change mode. How to make it visible.
    Cheers,
    Senthil

    Hi,
         I in workflow builder ucan see three dropdown box in the left side of your screen. In that the third listbox you click to get the Step Types..
    thank You.

  • The method clone() from the type Object is not visible

    Hi,
    This is my 1st post here for a few years, i have just returned to java.
    I am working through a java gaming book, and the "The method clone() from the type Object is not visible" appears, preventing the program from running. I understand "clone" as making a new copy of an object, allowing multiple different copies to be made.
    The error occurs here
    public Object clone() {
            // use reflection to create the correct subclass
            Constructor constructor = getClass().getConstructors()[0];
            try {
                return constructor.newInstance(new Object[] {
                    (Animation)left.clone(),
                    (Animation)right.clone(),
                    (Animation)deadLeft.clone(),
                    (Animation)deadRight.clone()
            catch (Exception ex) {
                // should never happen
                ex.printStackTrace();
                return null;
        }The whole code for this class is here
    package tilegame.sprites;
    import java.lang.reflect.Constructor;
    import graphics.*;
        A Creature is a Sprite that is affected by gravity and can
        die. It has four Animations: moving left, moving right,
        dying on the left, and dying on the right.
    public abstract class Creature extends Sprite {
            Amount of time to go from STATE_DYING to STATE_DEAD.
        private static final int DIE_TIME = 1000;
        public static final int STATE_NORMAL = 0;
        public static final int STATE_DYING = 1;
        public static final int STATE_DEAD = 2;
        private Animation left;
        private Animation right;
        private Animation deadLeft;
        private Animation deadRight;
        private int state;
        private long stateTime;
            Creates a new Creature with the specified Animations.
        public Creature(Animation left, Animation right,
            Animation deadLeft, Animation deadRight)
            super(right);
            this.left = left;
            this.right = right;
            this.deadLeft = deadLeft;
            this.deadRight = deadRight;
            state = STATE_NORMAL;
        public Object clone() {
            // use reflection to create the correct subclass
            Constructor constructor = getClass().getConstructors()[0];
            try {
                return constructor.newInstance(new Object[] {
                    (Animation)left.clone(),
                    (Animation)right.clone(),
                    (Animation)deadLeft.clone(),
                    (Animation)deadRight.clone()
            catch (Exception ex) {
                // should never happen
                ex.printStackTrace();
                return null;
            Gets the maximum speed of this Creature.
        public float getMaxSpeed() {
            return 0;
            Wakes up the creature when the Creature first appears
            on screen. Normally, the creature starts moving left.
        public void wakeUp() {
            if (getState() == STATE_NORMAL && getVelocityX() == 0) {
                setVelocityX(-getMaxSpeed());
            Gets the state of this Creature. The state is either
            STATE_NORMAL, STATE_DYING, or STATE_DEAD.
        public int getState() {
            return state;
            Sets the state of this Creature to STATE_NORMAL,
            STATE_DYING, or STATE_DEAD.
        public void setState(int state) {
            if (this.state != state) {
                this.state = state;
                stateTime = 0;
                if (state == STATE_DYING) {
                    setVelocityX(0);
                    setVelocityY(0);
            Checks if this creature is alive.
        public boolean isAlive() {
            return (state == STATE_NORMAL);
            Checks if this creature is flying.
        public boolean isFlying() {
            return false;
            Called before update() if the creature collided with a
            tile horizontally.
        public void collideHorizontal() {
            setVelocityX(-getVelocityX());
            Called before update() if the creature collided with a
            tile vertically.
        public void collideVertical() {
            setVelocityY(0);
            Updates the animaton for this creature.
        public void update(long elapsedTime) {
            // select the correct Animation
            Animation newAnim = anim;
            if (getVelocityX() < 0) {
                newAnim = left;
            else if (getVelocityX() > 0) {
                newAnim = right;
            if (state == STATE_DYING && newAnim == left) {
                newAnim = deadLeft;
            else if (state == STATE_DYING && newAnim == right) {
                newAnim = deadRight;
            // update the Animation
            if (anim != newAnim) {
                anim = newAnim;
                anim.start();
            else {
                anim.update(elapsedTime);
            // update to "dead" state
            stateTime += elapsedTime;
            if (state == STATE_DYING && stateTime >= DIE_TIME) {
                setState(STATE_DEAD);
    }Any advice? Is it "protected"? Is the code out-of-date?
    thankyou,
    Lance 28

    Lance28 wrote:
    Any advice? Is it "protected"? Is the code out-of-date?Welcome to the wonderful world of Cloneable. In answer to your first question: Object's clone() method is protected.
    A quote from Josh Bloch's "Effective Java" (Item 10):
    "A class that implements Cloneable is expected to provide a properly functioning public clone() method. It is not, in general, possible to do so unless +all+ of the class's superclasses provide a well-behaved clone implementation, whether public or protected."
    One way to check that would be to see if super.clone() works. Their method uses reflection to try and construct a valid Creature, but it relies on Animation's clone() method, which itself may be faulty. Bloch suggests the following pattern:public Object clone() throws CloneNotSupportedException {
       ThisClass copy = (ThisClass) super.clone();
       // do any additional initialization required...
       return copy
    if that doesn't work, you +may+ be out of luck.
    Another thing to note is that Object's clone() method returns a +shallow+ copy of the original object. If it contains any data structures (eg, Collections or arrays) that point to other objects, you may find that your cloned object is now sharing those with the original.
    Good luck.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

  • Report Definition - SQL literals not visible

    RDBMS Version:: 8.1.7.3.0 64bit
    Operating System and Version:: HP-UX 11.00
    Product (Oracle Enterprise Manager
    Product Version:: 9.0.1.0.0
    OEM Console Operating System and Version:: HP-UX 11.00
    Report Definition - SQL literals not visible
    When I create or edit a report, under the tab "Parameters" I key into the SQL box. As I key the code is visible except for any literal that I enter. Only when I hold the Shift key over the line of code is the literal visible and even then it is not possible to edit.
    Any ideas, suggestions welcome
    Steve

    RDBMS Version:: 8.1.7.3.0 64bit
    Operating System and Version:: HP-UX 11.00
    Product (Oracle Enterprise Manager
    Product Version:: 9.0.1.0.0
    OEM Console Operating System and Version:: HP-UX 11.00
    Report Definition - SQL literals not visible
    When I create or edit a report, under the tab "Parameters" I key into the SQL box. As I key the code is visible except for any literal that I enter. Only when I hold the Shift key over the line of code is the literal visible and even then it is not possible to edit.
    Any ideas, suggestions welcome
    Steve

  • Changed content type (DDOCTYPE) is not visible in GUI

    Hi,
    I have strange problem. I made configuration import from other UCM machine (content types, metadata, security groups and so..). After import I checked it - I have my security groups there, I have my metadata there, but I DO NOT HAVE there my content type (in drop down box there are only couple of preinstalled content types - Acme xxx Department...). I have checked in the admin applets -> configuration manager and my added content type was there (among the 'Acme ....' preinstalled content types). I even deleted those 'Acme....' content types to be sure that only my one is there. But in the search gui there is still drop down box with 'Acme...' types and my own is missing there.
    Strange because I do not know why it shows content types which have been deleted and are not in database anymore. I checked the database and in the table DOCTYPES there is only my own content type.
    Can anybody give me som hint? I tried restarting servers, clearing browser's cache, but still without success.

    Hi. I tried it, but it did not help. :(
    It is strange. Before I had the error in log:
    Unable to rename '/appl/ucm_cluster/server/weblayout/resources/schema.work' to '/appl/ucm_cluster/server/weblayout/resources/schema' while publishing schema.
    When I looked into the 'schema' dir there was old doctypes in js file
    In 'shcema.work' which was supposed to be renamed to 'schema' there was my correct document type in js file.
    Now in /server/weblayout/resources/schema/views/doctypes/all.js file there is only my correct document type but i still have in gui the old wrong doctypes! :(

  • My own Google Map icons are not visible in Firefox 8

    I have many Google Maps on my website and they contain both default Google icons and my own icons, each with their own URLs. They work correctly in all other browsers, and Firefox 7. However, yesterday I loaded Firefox 8. In Firefox 8 the Google default icons are still visible but my own icons are now invisible, but their placeholders are still there. They are still visible in other browsers. Also, if I now try and add one of my icons to a map, the process seems to work correctly, including a placemark name appearing, but the icon is invisible. The invisible icon is definitely there because you can click the placemark and be taken to the correct position on the map for editing, but the icon is not visible.

    Same problem with my maps. You posted that this issue is solved at http://forums.mozillazine.org/viewforum.php?f=25 but it is NOT SOLVED!!!!! I'm not a web developer, so I don't want a solution where I have write code or be a developer to figure it out. It works in every other browser & in FF7, so why can't you just figure it out & fix it, instead of making us have to write code or use our own developers to figure it out??

  • Type Tool Lettering Not Visible

    I have Photoshop Elements 9 on a Mac, just upgraded to Yosemite. I am unable to get the type tool to show my lettering. It creates a layer but the lettering is just not there.

    Check all the setting in the tool option bar make sure there a good size and color the will show. That you not doing white on white. Check the character panel as well and try resetting your Photoshop tools and preferences if all setting look good.. Also check over in the Element s forum
    Re: OSX yosemite

  • HT1918 On payment type,none is not visible to be selected.

    Please fix this.

    We are fellow users, you are not talking to iTunes Support or Apple here.
    Are you trying to create a new account or remove your card from your existing account ?
    If a new account, then unless you followed the instructions on this page when you created it then you will need to give payment details before you will be able to use it : http://support.apple.com/kb/HT2534

  • Data Type Enhancement not visible in SPROXY

    Hi All,
    We are implementing SRM 7.0 with PI 7.1.
    We have a reuiquirement of adding custom fields in the standard message DespatchedDeliveryNotification_Out which is sent from SRM SUS. I have created the data type enhancement in the ESR in the namespace http://sap.com/xi/SRM/SupplierEnablement/Global
    for the data type DespatchedDeliveryNotification. But the Data Type Enhancement is not visible in transaction SPROXY in the SRM server.
    Is this the way to do it? Or there is some different method to be followed?
    Please advise.
    Regards,
    Karen Pereira

    Is this thread still valid? If not, please close the thread.
    If so, as no response has been submitted, please rephrase your question and/or provide further information to describe your requirement.
    Thanks
    Jason
    SDN SRM Moderator Team

  • Public method not visible

    I'm new to Java and am having trouble with a "method not visible" error when trying to use a package by another person (which works in its own context.) As far as I can tell all the relevant classes and methods should be public and accessible.
    Here is the basic form of the code I'm trying to make use of:
    package org.p2c2e.zag;
    public final class Zag {
         public void start() {
    }And here is my stripped down code. The z.start() line produces the error message "The method start() from the type Zag is not visible."
    import org.p2c2e.zag.*;
    public class BasicTest {
      public static boolean simpleOpen(File fi) {
         Zag z = new Zag(fi, iStart);
         z.start();
    }The Zag class and the start() method within it are both public. Am I missing a general concept here or is something up with the rest of the code?
    Thanks in advance,
    --Aaron                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

    Based on what you've posted, the only thing I can think of is that you've got an older version of Zag in which start() was not public. Might be a classpath issue, might just be that you didn't recompile Zag.

  • Which Table will have 'Report to Report Interface (RRI)' Details?

    Hi all,
      Which table will have 'Report to Report Interface (RRI)' Details after creating them with RSBBS Tcode, PLEASE.
    Thanks in advance.

    Hi,
    Serach in these tables
    RSBBSCUBE
    RSBBSCUBEDIR
    RSBBSQUERYDIR
    Cheers..
    Krishna

  • New objects not visible in report objectpicker

    Hi, I'm new to SCOM so please forgive me if I say something wrong.
    We are using SCOM 2007 R2.
    In Operations Console I've created 2 new Web Applications in Authoring view.
    In Reporting view I open  Availability report from Microsoft Generic Report Library
    Click Add Object
    Search for Web Application I've created and get nothing
    For some reason I see only old objects when search or view all available in report. I tried to use old Management Package and created my own (I thought the problem was in sealed MP, but my new is unsealed). Found similar problem in "Missing Objects
    in Report Objectpicke" question,  but we have less than 100 monitoring agents.
    So I have no idea why objects are not visible, could you please help?

    Verify from Group {contain all computers that you want} that using in Reporting.
    You also check below link, it's similar issue
    http://social.technet.microsoft.com/Forums/systemcenter/en-US/5cb0fb12-73c5-4553-987f-ea415babd876/missing-objects-in-report-objectpicker?forum=operationsmanagerreporting
    Please remember, if you see a post that helped you please click "Vote As Helpful" and if it answered your question, please click "Mark As Answer"

Maybe you are looking for