IB53 - WEB UI - Get Partners assigned to equipment

Hello all,
I need to download info from the Installation structure in IB53. However the Web UI has different ways than SAP GUI of showing fields.
In the last levels of structure are assigned Equipments (0401)  - and these have a Partner Schema assigned, that I found, but I don't know how to get the actual assigned Partners for every Equipment in structure.
Its difficult because only Web UI shows this details ..in IB53 no info present about partners at all.
Any help would be greatly appreciated.
Thanks,
Alin.

>Its difficult because only Web UI shows this details ..in IB53 no info present about partners at all.
Go to Menu ->Goto ->Partner

Similar Messages

  • Webi documents get corrupted

    Hi all,
    I'll try to explain the situation and hope anyone can help on it.
    I am at a customer with verson 3.1. Thery are using liveoffice and xcelsius and they call webi documents from xcelsius. The strange thing is that after a while the webi document get corrupted, the universe assigned to the document seems to be missing and all the documents give up working. If you copy the universe and reassing the universe to the document it works again.
    The errors we are getting are WIS 30270 processDPcommands and also with the API getblob. I have been looking but did not find any solution.
    Has anyone faced something like this?
    Thanks a lot

    Hi Jaun,
    Following information might help you to resolve the issue.
    1.Business Objects Enterprise provides thresholds to protect the Web Intelligence report server and the Web Application servers from processing large chunks of binary and character data and avoid crashing.
    Maximum Binary File Size: Maximum size of a binary file (for example: PDF, XLSu2026) that can be generated by the Report Server. If a binary file generated from a Web Intelligence document is greater than this limit, the generation is stopped to protect the server and an error is returned. Increase this limit if the server has to generate large binary files (for example, if Info View users view large documents in *.PDF format).
    Maximum Character File Size: Maximum size of a text stream (for example: HTML, XML) that will be transferred to the application server. If a text stream sent to the application server is greater than this limit, the generation is stopped to protect the server and an error is returned.
    In CMC, under Servers>Web Intelligence Report server, you can possibly set both the above values to 50MB, but you have to ensure that the application server can handle the increased load multiplied by the number of simultaneous connections. If not, it can crash and block all access to applications.
    2. Ensure that the Web Application servers have enough memory available to process incoming requests. Usually the -Xmx value for java process is set at 256Mb, which is recommended to be at least 1024Mb or more depending on your Export requirements and application server limitations.
    Regards,
    Sarbhjeet Kaur

  • All graphics / vector in Save for Web are getting blurry / unsharp from Illustrator

    All graphics / vector in Save for Web are getting blurry / unsharp from Illustrator. Same problem with save for web in Photoshop. Frustrating to be working as a designer and not be able to create sharp logos for mail sign, word templates, PPT templates etc etc.  I purchased this Adobe Creative Cloud package in Sept, and are working on my Mac HD, OSX, Vers 10.9.4. I have been using the same programs on a PC for years and never had this same problem. Its frustrating!! What to do??

    gif, jpg and png are pixel formats, so please clarify what the problem is supposed to be.
    Screenshots or posted files might help.

  • When i do file, save for web, i get an error that says " the operation could not be completed. The system cannot find the path specified." What can fix this?

    when i finish a file and try to "save for web", i get an error box saying The operation cannot be completed. The system cannot find the path Specified.
    What can i do or where do i look?

    ELEMENTS 12 AND ELEMENTS 13
    Upgraded to 13 Thinking might resolve the issue.
    Was working fine up until we had "Tech" come in the office and "up grade some stuff"
    then all of a sudden i started getting this message, something happened but i don't have a clue what.

  • Tables for Documents&doc. type assigned to Equipment master

    Hi
    I need a table for Documents&d oc. type assigned to Equipment master .I have tried in ITOB, EQUI, DRAW. i could not find this
    Thanks
    Seenu

    hi
    yes you can use object key, it  is the one which relates with the equipment ( object key <b>EQUI</b>)
    regards
    thyagarajan

  • HT6181 my web pages get loaded but does not appear in safari 7.0.3. how do i get rid of that?

    i have problem in safari 7.0.3. web pages get loaded but dont appear on screen. how do i get rid of that?

    Do you have any extensions or other add ons configured within Safari?  If so, please remove or disable all of those, restart Safari, and try accessing the web page again.

  • I have one problem and I think it is a settings issue. When I google the web I get results. Now, when I visit some website and I return to my search results I don't have any markers (diffrent link colour for visited sites in IE).

    Question
    I have one problem and I think it is a settings issue. When I google the web I get results. Now, I visited some website and then I want to return to my search results and pick another search result. And there is a problem: I don't have any markers (diffrent link colour for visited sites in IE) that would help me to distinguish visited and not visited sites.

    Why start a new and very similar thread to your other one which you have not responded to (have you read the replies?)
    I suggest that no response is made to this duplicate thread. 

  • How to get current assigned participant id?

    Hi mates,
    This might be a basic questions, but useful for me :)
    How to get current assigned participant id from screenflow? Or How to pass it as an argument from interactive activity?
    Below is what I tried.
    Participant.id or Instance.participant.id - returns login user id
    Thanks

    Hi,
    Please correct me if I understood wrong.
    You want to know whether an instance is assigned or not and if assigned then you want to fetch the assigned participant id.
    If this is your requirement then please find the code below and make the necessary changes into it.
    Write the following code in screen flow automatic activity but before that you need to pass the instanceid as argument to the screen flow.
    In the process as well as screen flow layer make an instance variable instanceid as Int.
    Then make an argument variable instanceidArg as Int in both the screenflow and process layer and map accordingly so that it will take the instanceid from process layer to the screen flow layer.
    Assign instanceid = id.number; in process layer automatic activity but before the global interactive activity where you have maped the screen flow.
    Write the following code in screen flow automatic activity.
    logMessage("============= instanceid ==============" + instanceid); //instanceid is the id of the instance that you have passed from process layer.
    ProcessService ps;
    InstanceFilter instF = InstanceFilter();
    ps.connectTo(url : Fuego.Server.directoryURL, user : "<userid>", password : "<password>"); //In studio the userid and password will be same
    logMessage("Connected");
    instF.create(processService : ps);
    instF.searchScope = SearchScope(participantScope : ParticipantScope.ALL, statusScope : StatusScope.ONLY_INPROCESS);
    //<ProessId Name> is the id of the process where you want to know the assighed participant id
    instF.addAttributeTo(variable : VarDefinition.processid, comparator : Comparison.CONTAINS, value : "/" + "<ProessId>");
    instF.addAttributeTo(variable : VarDefinition.INSTANCE_NUMBER, comparator : Comparison.IS, value : Int(instanceid));
    Fuego.Papi.Instance[] instances = getInstancesByFilter(ps, filter : instF);
    foreach (instance in instances) {
    logMessage("Assigned ?: " + instance.participantId.empty);
    logMessage("instance.participantId: " + instance.participantId);
    ps.disconnectFrom();
    Bibhu

  • When printing off the web, I get very wide margins. a 2-page article, will print in 46 pages!

    When printing off the web, I get very wide margins. a 2-page article, will print in 46 pages!

    Try resetting your printer margins in '''about:config'''.
    Type '''about:config''' in the URL bar and hit Enter. <br />
    ''If you see the warning, you can confirm that you want to access that page.''
    Filter = '''print_margin'''
    Right-click and select '''Reset''' for both '''''margin_left''''' and '''''margin_right''''' for that particular printer, and then restart Firefox. If you have ever used other "printers" in that Firefox Profile, you'll have separate groups of preferences listed for each printer.

  • CAML query to get task assigned to current logged in user

    I want to know the CAML query to get tasks assigned to the currently logged in user
    Nour

    Hi,
    This is the query that worked for me
    <Where>
    <And>
    <Or>
    <Membership Type=’CurrentUserGroups’>
    <FieldRef Name=’AssignedTo’ />
    </Membership>
    <Eq>
    <FieldRef Name=’AssignedTo’  LookupId=’TRUE’ />
    <Value Type=’Lookup’>123</Value>
    </Eq>
    </Or>
    <Neq>
    <FieldRef Name=’Status’ />
    <Value Type=’Text’>Completed</Value>
    </Neq>
    </And>
    </Where>
    Regards,
    Nishant Rana
    http://nishantrana.wordpress.com https://twitter.com/#!/nishantranacrm

  • What the IP address does the Web Server get?

    Hi all,
    We have a scenario like this:
    Client——>Proxy(like squid)—........—>Web Server( 6.1 SP7)——>Application
    We know that the Web Server will get the remote IP address, and set as proxy-ip in HTTP Header.
    But, what the exact remote IP address does the Web Server get? The IP of the Proxy? or The IP of the original client?
    If we want to get the original client IP in the Application, what do we need to do?
    Thanks!
    Shen

    Look at the documentation for customized logging
    http://docs.sun.com/app/docs/doc/821-1497/gdsxf?l=en&a=view
    Basically, you configure a custom log file format in SJSWS
    And instead of using the variable: %Ses->client.ip%
    you will use something like the variable: %Req->headers.X-Forwarded-For%

  • How to get the assigned sequnce number?

    Hello,
    In the code below, I'm trying to get the assigned sequence number but it's returning null, how do i get the sequence number cause I need this as a parameter to another method???
    ( (UnitOfWork) handle).assignSequenceNumber(obj);
    paymentId = obj.getPaymentId();
    Thanks a lot...

    I'll spare you a long diatribe about why you shouldn't possibly need the sequence number in your application code, and that such database specific knowledge can be isolated to make maintenance of the app easier moving forward. I'll assume you have a really good exscuse... :)
    You are using the correct API, so there must be something else wrong. Has obj been registered in the unit of work before you try to assign the sequence numbers? And have you setup sequencing in the Mapping Workbench for this project? (Sequencing needs to be setup both at the project level (native or sequence table setup) and at the descriptor level (sequence name, column use, etc).
    - Don

  • I hooked up mine and finally got it to work but every once in a while my web browser get stuck.  how di fix this?

    i hooked up mine airport and finally got it to work but every once in a while my web browser gets stuck.  how di fi?

    Wow that was really quick, thank you so much.  Im not sure at all which version it was because i said it was around 4 years ago he bought it.  I know it isn't under his username, since he's a PC person (ugh) so i know its probably registered to one of our actual names.  isn't there some way to look it up since we did register it, because I'm not even sure where the disks are from when we bought it (we've moved a lot and also have two storage lockers, i know i would have kept it with other disks) but my cd rom drive is actually broken on my computer as well ( i think it got stepped on and is now squished and won't eject or run disks.)
    So is there anyway they can look up that its registered to one of our names since we did register it when we bought and installed it, or do i really have to find the disk with some sort of proof of purchase (i know there would be no receipt after all this time)
    either way, ill do what you suggested to the best of my abilities and thank you so much for answering my questions, i can't even open the program as its incompatible and find out the info from that) so I'm in a bit of a pickle and your response was so thorough and it didn't seem to be posted long enough to even write a well researched response, thanks, all the best,
    sarucia

  • Is there any FM to get plants assigned to a material

    Hi,
    Is there any FM to get plants assigned to a material .
    Regards,
    Ratheesh BS

    Hi ,
    u can check table MARC.
    regards
    Prabhu

  • Anywhere on the web to get pre-made templates?

    I'm starting to do some drum tracking and I'm wondering if there is anywhere on the web to get logic express templates - obviously different from the ones that come with Logic. Specifically, I'd really like a nice drum template with some compression and reverb already set up. Anyone know if there are any available?

    logicprohelp.com have templates, presets and channel strip settings for download.
    JG

Maybe you are looking for