BPS Object inventory display

I need to map objects in BW and BPS for upgrade preparation and documentation.  BW is easy in that there is the metadata repository, is there any equivalent way of looking up BPS objects?
I suspect that there isn't, is there any other way, tables I can look up to give me BPS object descriptions (technical and non-technical)?
Thanks in advance.

You will see BPS metadata in tables.
Try all tables with string UPC*
Ravi Thothadri

Similar Messages

  • Duplicate Resource Objects  are displayed while provisioning the resource

    Duplicate Resource Objects are displayed while provisioning the resource to organization after creating a new workflow through export and import process.
    A workfolw already exists in the environment and I am trying to replicate the work flow with a different name . So i import all the components related to provisioning workflow rename the names of the components and make the necessary changes and import it back. after this I am getting Duplicate Resource Objects being displayed while provisioning the resource to organization .plz help.its urgent

    I have tried this process thrice not able to solve this problem ......unchecking allow multiple ..i don t think matters as this is provisioning to org ...n what i am telling is the list from which u select the resources to be provisioned --that list shows duplicate resource object names at a time..Each time I import an xml the number of same resource object names being displayed in the list increases ...So If I have imported three workflows then (say Resorce Object AD) appears thrice in the list. I have not given the resource objects same name in all the workflows for this to happen
    Sahana

  • My anchored objects dont display after CS5 upgrade - help?

    Hi,
    We've just upgraded to CS5 from CS3.
    I publish educational books, which contain a lot of object styles and anchored objects.
    I have just opend a book im working on in CS5 and have had problems with both anchored objects not displaying and object styles changing. The first is more pressing.
    The problem arises where I have an anchored object inside another anchored object, and they use custom positioning.
    For example. I have a pullout box that contains text and an image. The image is anchored inside the pullout box and the pullout box is anchored to the main body of text.
    The images are no longer displaying. I can select their frames, and if i change the image positioning to inline the images display fine, but when it is set to custom (which they need to be) I can no longer see the image.
    Is anyone able to help with this, its a major problem as i am woking with hundreds of images here.
    Thanks

    My usual advice is that with a project this large, it's best to finish it in the same version it was started in. Even a small change in the text engine can effect things like this and there were changes from CS3 to CS4 and again to CS5, but I'm not really sure what's happening in your case.
    Bob

  • How to get a count of BPS objects?

    Hi All,
    While upgrading from BW 3.5 to BI 7.0., We need a count of BPS objects in the existing system.
    Any pointers to how this can be done.?
    Are there any system tables with which we can get this?
    Thanks in advance

    Hi,
    UPC_AREA table gives how many planning areas are present in the system.
    Some more tables
    UPC_PLEVEL
    UPC_PROFILE
    UPC_VARIABLE  etc.
    Bindu

  • Help Please - Objects to Display

    Hey how can i get my objects to display? In my class i have a function that creates objects and they fall randomly in rows but only 1 is displaying. And i used trace(); to test how many on stage and it said 4 but only 1 starting falling.
    I think there is something wrong with the method i am using to create the objects in rows.
    Heres the code:
    package
        import flash.display.MovieClip;
        import flash.events.Event;
        import flash.events.MouseEvent;
        import flash.events.TimerEvent;
        import flash.utils.Timer;
        public class Main extends MovieClip
            public var enemyA:Array = [];
            public var birdA:Array = [];
            public var rowNum:int = 1;
            private var gap:int = 100;
            private var obj_no = 2;
            public var timer:int = 0;
            public var time_limit = 10;
            public var TimerSpeed:uint = 1000;
            public var MyTimer:Timer = new Timer(TimerSpeed);
            public var enemy1:mychar = new mychar();
            public var TheBird:BirdChar = new BirdChar();
            public function Main()
                // Constructor Code
            public function activateGameControls()
                createEnemyF();
                createBirdF();
                this.addEventListener(Event.ENTER_FRAME,loopF);
                MyTimer.addEventListener(TimerEvent.TIMER, TimerHandler);
                MyTimer.start();
            public function deactivateGameControls()
                addChild(TheBird);
                addChild(enemy1);
                removeChild(TheBird);
                removeChild(enemy1);
            public function createEnemyF()
                for (var i:int = 0; i < rowNum; i++)
                    for (var j:int = 0; j < obj_no; j++)
                        enemy1.x = Math.random() * stage.stageWidth - enemy1.width;
                        enemy1.y =  -  i * (gap + enemy1.height) - 30.65;
                        enemyA.push(enemy1);
                        addChild(enemy1);
                        trace(enemy1.x, enemy1.y);
            public function createBirdF()
                TheBird.x = 270.95;
                TheBird.y = 350.95;
                birdA.push(TheBird);
                addChild(TheBird);
            public function loopF(event:Event)
                updateEnemyPositionsF();
                updateBirdPositionsF();
                hitTestF();
            public function updateEnemyPositionsF()
                enemy1.y +=  2;
            public function updateBirdPositionsF()
                TheBird.x = mouseX;
            public function hitTestF()
                if (TheBird.hitTestObject(enemy1))
                    gotoAndPlay(5);
                    deactivateGameControls();
                    trace('The Bird Hit Enemy 1');
            function TimerHandler(event:TimerEvent)
                timer +=  1;
                if (timer == 50)
                    MyTimer.removeEventListener(TimerEvent.TIMER, TimerHandler);
                    MyTimer.stop();
                    gotoAndPlay(4);
                else if (timer == time_limit)
                    gotoAndPlay(5);
                    deactivateGameControls();

    Sorry, but i don't get your method on how to do this Here is my code, please give me some steps on exactly what to do and comments on why you are doing it please ..
    package
        import flash.display.MovieClip;
        import flash.events.Event;
        import flash.events.MouseEvent;
        import flash.events.TimerEvent;
        import flash.utils.Timer;
        import flash.display.DisplayObject;
        public class Main extends MovieClip
            public var enemyA:Array = [];
            public var birdA:Array = [];
            private var gap:int = 100;
            public var timer:int = 0;
            public var time_limit = 10;
            public var TimerSpeed:uint = 1000;
            public var MyTimer:Timer = new Timer(TimerSpeed);
            public var enemy1:mychar = new mychar;
            public var TheBird:BirdChar = new BirdChar;
            public function Main()
                // Constructor Code
            public function activateGameControls()
                createEnemyF();
                createBirdF();
                this.addEventListener(Event.ENTER_FRAME,loopF);
                MyTimer.addEventListener(TimerEvent.TIMER,TimerHandler);
                MyTimer.start();
            public function deactivateGameControls()
                addChild(TheBird);
                addChild(enemy1);
                removeChild(TheBird);
                removeChild(enemy1);
    //here is the function i need fixed! I want enemy1 added randomly into rows with the gap.
            public function createEnemyF()
                for (var i:int = 0; i < 10; i++)
                    enemy1.x = Math.random() * stage.stageWidth - enemy1.width;
                    enemy1.y =  -  i * (gap + enemy1.height) - 30.65;
                    enemyA.push(enemy1);
                    addChild(enemy1);
                    trace(enemy1.x, enemy1.y);
            public function createBirdF()
                TheBird.x = 270.95;
                TheBird.y = 350.95;
                birdA.push(TheBird);
                addChild(TheBird);
            public function loopF(event:Event)
                updateEnemyPositionsF();
                updateBirdPositionsF();
                hitTestF();
            public function updateEnemyPositionsF()
                enemy1.y +=  2;
            public function updateBirdPositionsF()
                TheBird.x = mouseX;
            public function hitTestF()
                if (TheBird.hitTestObject(enemy1))
                    gotoAndPlay(5);
                    deactivateGameControls();
                    trace('The Bird Hit Enemy 1');
            function TimerHandler(event:TimerEvent)
                timer +=  1;
                if ((timer == 50))
                    MyTimer.removeEventListener(TimerEvent.TIMER,TimerHandler);
                    MyTimer.stop();
                    gotoAndPlay(4);
                else if ((timer == time_limit))
                    gotoAndPlay(5);
                    deactivateGameControls();
    I really want to finish this so i can finish my game, you are a good help so far!

  • Limiting Inventory Display of Storage Types within LX02

    Hello All,
    We are using SAP WM and have a situation where we are contracting with a 3rd party warehouse to hold some raw materials for us.  We will have a captive user account that will only permit the employee at the 3rd party warehouse to perform certain restricted transaction codes.  In one of the transaction codes that displays WM-based inventory, we want to only have transaction code LX02 - STOCK LIST display only the storage type that represents the inventory at that facility.  We have a single WM warehouse that has multiple storage types and have allocated one storage type to represent that 3rd party warehouse location (which really is just an extension of the manufacturing plant).   For example, if I have storage types A, B, C, and D within a single WM warehouse, and I have made the decision that C represents the 3rd party location, then I only want to setup SAP security to restrict the 3rd party warehouse employee to be able to only see storage type C and not the others.   Can this be done with the proper assignment of security authorizations to allow this?  If so, what is the authorization object that controls this?
    BTW, we do not want to use a separate WM warehouse or plant to control this as that results in solving the above problem but introduces many other issues and problems.
    Thanks!!

    Hi,
    I checked that report and it uses logical database S1L. If you display documentation for this logical DB in SE36 you will find this section
    Authorization checks for the warehouse number take place in the database.
    Warehouse number
    So it does not seem that tit will work for you. What you can try to do is to enhance LX02 to perform additional authorization check. Using implicit enhancement points you can add code to the beginning of any routine. In this case you could enhance routine call_alv.
    Cheers

  • How to retrieve rows in view object and display on UI

    Hi All,
    I am new to ADF. i am using jdeveloper11.1.1.5.0 . Here is my scenario.
    In my AM i have a view object say EmployeeVo. on empVo i am performing setRangeStart and setRangeSize.
    empVo .setRangeStart(2);
    empVo .setRangeSize(2);
    Rows[] rows=empVo .getAllRowsInRange();
    so from the above statement will get two rows from the empVo object. Now i have to display these rows in UI in the form of af:table.
    Can anyone suggest how to acheive this.
    Thanks in advance.

    <af:table value="#{Bean.listValue}" var="row" />
    //refer rows like
    <af:column>
    <af:inputText value="#{row.description}" />
    </af:column>
    List listValue = new ArrayList();
    //getter setter of listValue
    //bean constructor
    retrieve the rows from the AM methodthe above step is very crude hope you understand the steps

  • Flash objects not displaying in Firefox (but works fine in Chrome and IE)

    Well, I'm trying to embed a Shockwave Flash object into a website I'm building. It displays in Chrome and IE, but it doesn't show up at all in Firefox. It's just white space. Ive tried it on two machines, so it's presumably the code. Both the machines have Adobe Flash enabled... I'm not sure what the problem is. I've not worked with embedding Flash objects in HTML before, so, it's probably something really obvious. I just used the insert command on dreamweaver and it wrote the code that I'm using. If anyone can help me, it would be much appreciated. Here's my code:
    <pre><nowiki><object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="99%" height="600" id="FlashID">
    <param name="movie" value="The file path" />
    <param name="quality" value="high" />
    <param name="wmode" value="opaque" />
    <param name="swfversion" value="10.1.0.0" />
    <!-- This param tag prompts users with Flash Player 6.0 r65 and higher to download the latest version of Flash Player. Delete it if you don’t want users to see the prompt. -->
    <param name="expressinstall" value="../Scripts/expressInstall.swf" />
    <!-- Next object tag is for non-IE browsers. So hide it from IE using IECC. -->
    <!--[if !IE]>-->
    <object type="application/x-shockwave-flash" data="the file path" width="99%" height="76.5%">
    <!--<![endif]-->
    <param name="quality" value="high" />
    <param name="wmode" value="opaque" />
    <param name="swfversion" value="10.1.0.0" />
    <param name="expressinstall" value="../Scripts/expressInstall.swf" />
    <!-- The browser displays the following alternative content for users with Flash Player 6.0 and older. -->
    <div>
    <h4>Content on this page requires a newer version of Adobe Flash Player.</h4>
    <p><a href="http://www.adobe.com/go/getflashplayer"><img src="http://www.adobe.com/images/shared/download_buttons/get_flash_player.gif" alt="Get Adobe Flash player" width="112" height="33" /></a></p>
    </div>
    <!--[if !IE]>-->
    </object>
    <!--<![endif]--></nowiki></pre>

    If you can't post an address for a page demonstrating the problem, could you check the Web Console (Ctrl+Shift+k) and Browser Console (Ctrl+Shift+j) for any messages related to the Flash media? For example, does either console show that Firefox is requesting the SWF file? Does either show an error in content type or any kind of security message?

  • Authorization object to display table field names in english text in SE17

    Hi,
    One of users have issues with the filed name getting displayed in technical format instead of english text while browsing table information in SE17. Normally we can set this in through Settings->User Parameters. But here for this user, user parameter option is greyed out and he doesn't have access to SE16.
    Is there any other way to change user specific parameters, instead of granting him accesss to SE16 or enabling user parameters in SE17?
    Thanks,
    Mano

    Hi,
    I made him run SU53 on SE17 transaction the log is showing that authorization check failed for S_ALV_LAYO with value 23.
    Actually i have access SE16 and for me also, user parameter option is greyed out in SE17. I ran SU53 on SE17 in my session i also got same log.
    One more observation is, the user's colleague also doesn't have access to SE16 and user parameter option is greyed out in SE17 but he can view the table field names in english. So we are wondering if some authorization object is missing here.
    We do not want user to make any changes through GUI.
    Thanks,
    Mano.

  • Java Label object not displaying ascii chars (128-159)

    I am having a problem getting ASCII characters between 128 and 159 to show up in a Label object which is inside a Panel which is in turn inside a Frame. There is other code in a different class that uses a Graphics object and drawString and Paint methods to display the same text, and that works. However, simply passing the text containing the above mentioned ascii characters like so:
    lb = new Label("€‚ƒ„…†‡");
    results in mostly empty boxes being displayed (there is other code that eventually displays the label in the Frame). The Euro sign comes through, as does the integral sign. Some others come through, and they are mostly modifed letters of some sort.
    I've tried coding a mock up simple Frame with a few labels. I've passed in literal strings, String objects derived from hex and integer byte arrays and a String object with the Cp1252 encoding passed in. None display the characters in question. However, in the same code, I pass a title string containing these characters into the Frame's constructor, and it appears with no problems.
    I just want to be able to handle all characters that may be entered into this application, and that may include these Cp1252 characters. Is there any way of using Label objects and getting these characters to display correctly?
    [Windows-1252 Chart|http://upload.wikimedia.org/wikipedia/commons/e/e7/Windows-1252.svg]

    I am having a problem getting ASCII characters between 128 and 159 to show up in a Label object which is inside a Panel which is in turn inside a Frame. There is other code in a different class that uses a Graphics object and drawString and Paint methods to display the same text, and that works. However, simply passing the text containing the above mentioned ascii characters like so:
    lb = new Label("€‚ƒ„…†‡");
    results in mostly empty boxes being displayed (there is other code that eventually displays the label in the Frame). The Euro sign comes through, as does the integral sign. Some others come through, and they are mostly modifed letters of some sort.
    I've tried coding a mock up simple Frame with a few labels. I've passed in literal strings, String objects derived from hex and integer byte arrays and a String object with the Cp1252 encoding passed in. None display the characters in question. However, in the same code, I pass a title string containing these characters into the Frame's constructor, and it appears with no problems.
    I just want to be able to handle all characters that may be entered into this application, and that may include these Cp1252 characters. Is there any way of using Label objects and getting these characters to display correctly?
    [Windows-1252 Chart|http://upload.wikimedia.org/wikipedia/commons/e/e7/Windows-1252.svg]

  • BPS Log to find deleted BPS objects

    Hello Experts,
    Somebody might deleted few planning layouts and functions from production environment but we can see those objects in test and quality environment. Our aim is to know  who, what and when deleted those objects. Could somebody let me know where BPS save these information as a log or in a table.
    After getting these information how we can solve this issue?
    This is a bit urgent issue.
    Points will be awarded to everybody.
    Thanks,
    Harry

    Hello experts,
    where I can trace the deleted objects in BPS. somebody deleted some BPS layouts and functions from prod env and we want to trace who,when and what?
    Thanks,
    Harry

  • Use view objects to display muti lines graph

    I need to create multiple lines on a line graph using data from view objects. I did see the demo that allows to add series but the data seems from tabular data.
    http://jdevadf.oracle.com/adf-richclient-demo/faces/feature/index.jspx?_afrLoop=39644483771460039#%2Ffeature%2Fgraph%2Fanimation.jspx%40
    Using Jdev 11.1.1.3
    I understand that each line is a series. I was able to show multiple lines but for supporting data while in reality need to show for different data such as for the stock market lines for Dow, nasdaq, S&P. I used order_lines tables and placed creation_date as x_axis and for lines/y-axis used three columns (product_value, product_id, linesCount)
    Might need to create some complex view or is there a way bind multiple views or view objects can't be used for this case?
    Thanks

    Thanks Shay. What I did was on the right track and is similar what you suggested.
    I was somewhat trying to validate what I did to display multi lines i.e. by placing in the Line field during graph configuration the attributes for each of lines/series.
    If need to display sale total for 5 departments over a year. The view object will have attributes as: sale_date, dept1_sale, dept2_sale, dept3_sale, dept4_sale, dept5_sale
    Then can chart it with sale_date as x-axis and ALL 5 dept sales on line/y-axis.
    By this had the correct structure and was able to generate the 5 lines correctly.
    Thanks

  • Business Objects SSO displays incorrectly

    I am in the middle of setting of Business Objects SSO to automatically sign in using the tomcat connector.  We can successfully logon using our AD when we go to server:8080/InfoViewApp/logon.jsp with no display issue but when we log to  server/InfoViewApp/logon.jsp it successfully logs us in but shows the entire Business Object window inside of the center of the Logon Screen window.
    Not sure where the error is since it looks fine when we bypass the auto login connector by going straight to 8080 and by passing IIS.  I attached a screenshot of the misshown window.
    http://y-wing.net:8080/bobj.jpg

    I'm not sure why you would use trusted auth IIS when we have AD SSO built into tomcat offering a much more secure, better performance, and all round more stable choice that is 100% supported by SAP. If it's because your CMS's are on unix we have written another solution to setup SSO with tomcat only in Kb KB 1537480 (as the configuration changed slightly in SP3 this document should only be used for XI 3,1 SP3) It can be applied to earlier versions to 3.1 by changing the vintela steps and possibly that url.
    Regards,
    Tim

  • Action script objects not displayed

    Hi,
    I am creating an air application using Flex 4.5 compiler. The problem i am facing currently is that i have extended shape class to my custom class movingObject. in this class i have defined a function "drawcircleObj" in this class and calling this class function to display my customized circle on the stage.
    But it is not behaving as desired. i.e. no object is being displayed

    Adding my code snippets
    The as file code
    package secondPackage
        import flash.display.*;
        public class movingObject extends Shape
            private var xPos:Number;
            private var yPos:Number;
            private var radius:Number;
            private var color:uint;
            public function movingObject()
            {// currently a stub will use it later
            public function drawcircleObj(xInput:Number,
                                          yInput:Number,
                                          radInput:Number,
                                          colorInput:uint): void
                xPos = xInput;
                yPos = yInput;
                radius = radInput;
                color = colorInput ;
                this.graphics.beginFill(color);
                this.graphics.drawCircle(xPos,yPos,radius);
    The mxml file code
    <s:WindowedApplication xmlns:fx="http://ns.adobe.com/mxml/2009"
                           xmlns:s="library://ns.adobe.com/flex/spark"
                           xmlns:mx="library://ns.adobe.com/flex/mx"
                           creationComplete="initApp()">
        <fx:Script>
            <![CDATA[
                import secondPackage.movingObject;
                import flash.display.*;
                private var myMoving:movingObject = new movingObject();
                public function initApp():void
                    //show the string
                    myMoving.drawcircleObj(500,500,30,0xFF0000);
                    mainText.text = myMoving.letsStart();
            ]]>
        </fx:Script>
        <s:TextArea id="mainText" x="390" width="50" y="133"/>
        <s:Button  id="button1" x="804" y="227" label="Button" width="45"/>
    </s:WindowedApplication>
    The problem which i suspect is that there should be a stage object holding the same object or circle created and then display it.
    A faster reply will be highly appreciated. Thank you.

  • Where can I find little arrows and objects to display using an alerter?

    I need a little arrow to turn red or green depending on a value.  I can make the alerter work but not find a convenient way to put the find little arrow to put in the cell to display.

    Hi Roguefem,
    You need to have images stored in boimg directory (normally C:\Program Files\Business Objects\BusinessObjects Enterprise 12.0\images).
    You can put it in image from url section on the format section. So for an up and down image your will need 2 separate images.
    Regards
    Alan

Maybe you are looking for

  • Error when saving custom Datasource on R/3

    Hi, I'm creating a transaction datasource using Extraction by Function Module. I've created & activated the required extract struct (using Tcode: SE11) and the function module. However after populating these 2 fields in the datasource screen, when i

  • Are these ram blocks compatible with MBP?

    Link: http://www.newegg.com/Product/Product.aspx?Item=N82E16820104103 Specs is the same as standard ones BUT, im simply curious if they might be a "size-problem" with that blue heatsink on? Of what i've seen its a little tight in the ram "place" on M

  • Acrobat X "view previous" no longer works

    This is really frustrating! I used to be able to go back and forth from document to document with the "view previous" button in Acrobat Pro X. Now, all of a sudden, the "view previous" buttons are grayed out and only work to go to previous views with

  • Can't import photo...tool bar is greyed out

    can't import photo in imovie...tool bar is greyed out

  • 5320 XM firmware 4.13 report

    Hello, I would like to report a feedback for the 4.13 version of the 5320 firmware. I noticed that the option "Nothing" for the screen saver was deleted (but if I set the screen saver to last for 30 second, it's quite useless to display the time for