Overview of all GOS-elements for an Object

Hi,
is there any FM or class to find all GOS elements for an Object
f. Ex. EQUI or BUS2080?
thanks for Help.
Regards, Dieter

sorry no clue. the following is the test program i wrote and it works fine in my case
REPORT YBDSCONNECTIONS
       NO STANDARD PAGE HEADING.
Data: LOGICAL_SYSTEM LIKE  BAPIBDS01-LOG_SYSTEM ,
CLASSNAME LIKE  BAPIBDS01-CLASSNAME ,
CLASSTYPE LIKE  BAPIBDS01-CLASSTYPE ,
CLIENT LIKE  SY-MANDT ,
ALL LIKE  BAPIBDS01-X  .
data: all_con like BDN_CON occurs 0 with header line .
CALL FUNCTION 'OWN_LOGICAL_SYSTEM_GET'
    IMPORTING
      OWN_LOGICAL_SYSTEM = LOGICAL_SYSTEM.
  CALL FUNCTION 'BDS_ALL_CONNECTIONS_GET'
    EXPORTING
      LOGICAL_SYSTEM   = LOGICAL_SYSTEM
      CLASSNAME        = 'BUS0012'
      CLASSTYPE        = 'BO'
      ALL              = 'X'
      NO_GOS_DOCS      = ' '
      CLIENT           = SY-MANDT
    TABLES
      ALL_CONNECTIONS  = ALL_CON
    EXCEPTIONS
      NO_OBJECTS_FOUND = 1
      ERROR_KPRO       = 2
      INTERNAL_ERROR   = 3
      NOT_AUTHORIZED   = 4
      OTHERS           = 5.
  LOOP AT ALL_CON. WRITE: / ALL_CON. ENDLOOP.
Regards
Raja

Similar Messages

  • BAPI to get all user lists for input object,authorizations, and profiles

    Hi Experts,
    BAPI to get all user lists for input specific object, authorizations, profiles and values?
    Any useful answer will be rewarded with suitable points.
    Thanks,
    Rohan

    Hi
    use the fun module/Bapi's
    BAPI_USER_GET_DETAIL
    BAPI_USER_LOCPROFILES_ASSIGN
    BAPI_USER_LOCPROFILES_DELETE
    BAPI_USER_LOCPROFILES_READ
    BAPI_USER_PROFILES_ASSIGN
    BAPI_USER_PROFILES_DELETE
    SUSR_BAPI_USER_PROFILES_ASSIGN
    SUSR_BAPI_USER_PROFILES_DELETE
    also you can use the tables UST12 for user based authorizations
    AGR_USERS   -roles assignment for users
    AGR_PROF  - Profile data for roles
    AGR_DEFINE - Auth Profiles for users
    See the AGR_* and US* tables further
    Reward points if useful
    Regards
    Anji
    Message was edited by:
            Anji Reddy Vangala

  • Alert like behaviour (disabling all other elements) for custom components

    Hey guys,
    I'm trying to get a CustomComponent to work like an Alert box. I want to lock all items on stage but the component.
    Is there a way to achieve this? Or would it be better to style an Alert to look like my CustomComponent?
    Thanks for reading

    Hi,
    you can Popup any component you want. To disable all other items set it modal.
    PopUpManager.createPopUp(parent, className, true)
    Hope this helpful.

  • Transaction for overview of all custom (Z) programs in ERP.

    Dear gurus,
    I am looking for a transaction/report which gives me an overview of all custom programs/elements build in a system. I used to know this transaction but I cannot find it anymore (searched throughout Google and SDN ).
    Can anyone help me out?
    Thanks in advance!
    Rob
    PS the overview is needed to show a customer an overview of all used Z-elements in their system (and I do not want to use TADIR or SE93 ).

    Hi Sandra,
    Unfortunately this is not the one. It was a transaction which provided me some input options and which I then could run and which gave me an overview on all Z-elements in the system. A fantastic report! I hope someone can help me out with this report/trx.
    Thanks!
    Rob

  • Need help for finding objects impacted by size change for an infoobject

    hi all,
    need help for finding objects impacted by size change
    for xxx infoobject, due to some requirements, the size to be changed from
    char(4) to char(10), in the source database tables as well as adjustment
    to be done in BI side.
    this infoobject xxx is nav attribute of YYY as well as for WWW
    infoobjects. and xxx is loaded from infopkg for www infoobject load.
    now that i have to prepare an impact analysis doc for BI side.
    pls help me with what all could be impacted and what to be done as a
    solution to implement the size change.
    FYI:
    where used list for xxx infoobject - relveals these object types :
    infocubes,
    infosources,
    tranfer rules,
    DSO.
    attribute of characteristic,
    nav attribute,
    ref infoobject,
    in queries,
    in variables

    Hi Swetha,
    You will have to manually make the table adjustments in all the systems using SE14 trans since the changes done using SE14 cannot be collected in any TR.
    How to adjust tables :
    Enter the table name in SE14. For ex for any Z master data(Say ZABCD), master data table name would be /BIC/PZABCD, text table would be /BIC/TZABCD. Similarly any DSO(say ZXYZ) table name would be /BIC/AZXYZ00 etc.
    Just enter the table name in SE14 trans --> Edit --> Select the radio button "Save Data" --> Click on Activate & adjust database table.
    NOTE : Be very careful in using SE14 trans since there is possibility that the backend table could be deleted.
    How to collect the changes in TR:
    You can collect only the changes made to the IO --> When you activate, it will ask you for the TR --> Enter the correct package name & create a new TR. If it doesn't prompt you for TR, just goto Extras --> Write transport request from the IO properties Menu screen. Once these IO changes are moved successfully, then the above proceduce can be followed using SE14 trans.
    Hope it helps!
    Regards,
    Pavan

  • Domains for Oracle object types

    When I create a domain for a certain Oracle object type there is no way to create some kind of inheritance tree (and there is no discriminator support it seems). On the database level I have several object types that extend a certain base object type. I want to do the same at the BC4J level. But unfortunately this doesn't seem possible. Is there a work-around for it? I don't mind to write a little extra code, any hints or help are appreciated.
    Regards,
    Peter
    P.S.
    It seems the object type / domain support in JDeveloper 9.0.3(.1) isn't quite up there with entities and view objects. It's not even possible to change an attribute name at the Java side using the domain dialog (it's only possible by manually editing the XML and Java files). Will JDeveloper 9.0.4 have broader support for object types / domains?

    I've found a way to implement the inheritance myself, at least a start. I've noticed all custom domains for oracle object types have the static method "getCustomerDatumFactory". In this method (in the base domain class) normally an instance of the base type is returned. I've modified this method so that it returns instances of the different subtypes depending on the value of a certain column. To make this work I first have to edit the Java files of the subtypes and let them extend the base type instead of the Struct class. The factory method looks like this:
    public static CustomDatumFactory getCustomDatumFactory()
        if (fac == null)
          class facClass implements CustomDatumFactory
            public CustomDatum create(Datum d, int sql_type_code) throws SQLException
              if (d != null)
                BaseType b = new BaseType(d);
                if ("subtype1".equals(b.getType())) b = new SubType1(d);
                else if ("subtype2".equals(p.getType())) b = new SubType2(d);
                else System.err.println("Unknown subtype: " + b.getType());
                return b;
              return null;
          fac = new facClass();
        return fac;
      }I also tried to save several of the subtypes in the database in the attribute field (which is of the base type) using setAttribute, this seems to work out-of-the-box. It seems for now I only get this to work if the object type is saved in a column of a certain table, I can't get it to work (yet) for object type tables (see the other recent topic of mine).
    Is this the correct way to implement what I want? Or is there a better way?
    Regards,
    Peter

  • In oracle Open Script (OATS) OracleEBS/Forms project all the elements or fields are being identified as web objects.

    In oracle Open Script (OATS), we have created an OracleEBS/Forms project. But when we try to record the script all the elements or fields are being identified as web objects. Due to this we are unable to use the functions like getText. Hence, please help.
    Example: The below line when executed gives an error " Failed to connect to the Oracle Forms applet after 90 seconds. Verify that the applet launching page opens, and that the Forms Startup Timeout setting is high enough for this site."
    forms.textField("/web:window[@index='0' or @title='Person']/web:document[@index='7' or @name='tabPage']/web:input_text[@id='PER_ID' or @name='PER_ID' or @index='0']").getText();
    We have already set the event timeouts in OpenScript Preferences -> Playback -> OracleEBS/Forms Functional as
    Forms startup time out = 90Sec
    Forms Action timeout = 120Sec
    Forms Response Timeout = 120 Sec.
    OpenScript
    Version: 12.4.0.1 Build 139

    If it is a name resolution I would try either replacing the server name in the script with the IP address or making an entry in the local host file of the machine trying to play back the script
    If you try one or both of those approaches does the script play back?

  • How to redefine GOS toolbar function "SEND OBJECT WITH NOTE" for deliveries

    Hello Abapers,
    for inbound and outbound deliveries (tcodes VL01N, VL02N, VL03N, VL31N, VL32N, VL33N) I have to replace the GOS toolbar function SEND OBJECT WITH NOTE with a redefined function matching the following specifications:
    - Title field needs a different content
    - Text (note content) should be filled by default, maybe with standard text, but can be overwritten
    - All attachments in the attachment list of the object should be included by default or be selectable thru an additional button
    Also possible could be an addiitonal toolbar function SEND ATTACHMENTS WITH NOTE as a copy of SEND OBJECT WITH NOTE.
    Although I checked the SDN forums for a matching solution, I couldn't find one in tons of GOS threads.
    Perhaps someone had solved a similar problem to send obejct with notes from GOS toolbar with several of the object's attachments.
    Maybe some GOS classes have to be redefined for that, but this should only be available for deliveries, not for the other BOR types.
    I'm waiting for your ideas.
    Best regards,
    Klaus
    Edited by: Klaus Babl on Feb 16, 2012 10:13 AM

    No the list of steps done to solve the issue:
    1. Copy of class CL_GOS_SRV_SEND_OBJECT to new class /SIE/IS_BSD_GOS_SRV_SEND_ATT.
    2. SM30 for table SGOSATTR: New entry for new service ZSO_SENDATT for the new class.
    3. Copy of methods ON_SERVICE_SUCCEEDED, CHECK_STATUS, CREATE_ROOT_ITEM and ON_LINK_CREATED from class CL_GOS_SRV_ATTACHMENT_LIST to the new class.
    4. New code added to the top of method CHECK_STATUS to show the service for deliveries only:
    IF  is_lporb-typeid  NE  'BUS2015'
    AND is_lporb-typeid  NE  'LIKP'.  
        ep_status = mp_status_invisible.
        EXIT.
    ENDIF.
    5. Copy of function group SAPLSGOS_OUTBOX and function module SGOS_SEND_OBJECT_WITH_NOTE to own copies.
    6. Before calling cl_bcs=>short_message  there are several steps to do:
    - CALL METHOD cl_binary_relation=>read_links
    - CALL FUNCTION 'SO_DOCUMENT_READ_API1' for all links
    - cl_document_bcs=>create_document for all those documents (we are using types ATTA, NOTE and URL)
    - APPEND those created documents to the attachment table and pass it to i_attachments of cl_bcs=>short_message
    Solved issue!
    COMMENT: This SDN wiki document is outdated and doesn't work any more:
    http://wiki.sdn.sap.com/wiki/display/Snippets/ABAP-SendingGOSattachmentstoanemailaddress
    Best regards,
    Klaus

  • BI content report - overview of all objects created in Integrated Planner

    Hi.....we need to create a report containing an overview of all objects used in Integrated Planner. Do we have any standard BI content query or WAB application that meets our requirement? Please let me know whether any multiproviders exists for the same which i can use to create reports.
    Some of the tables involved are:
    RSPLS_ALVL
    RSPLS_ALVL_IOBJ
    RSPLS_ALVLT
    RSPLS_CR_STEPS
    RSPLS_SEQUENCE
    RSPLS_SEQUENCE_S
    RSPLS_SEQUENCET
    RSZELTDIR
    RSRREPDIR
    RSZCOMPDIR
    RSZELTTXT
    thanks,
    Lokesh Nandula

    hi.. try dragging in the currency field corresponding to the amount also in row/column

  • I have just installed Photoshop Elements for a MAC. MY photos were in iPhoto, I have 47,000 pictures and my drive on my Mac laptop is not large enough. I store my photos in iPhoto on an external drive. Can I store all my photos on an external drive when u

    I have just installed Photoshop Elements for a MAC. MY photos were in iPhoto, I have 47,000 pictures and my drive on my Mac laptop is not large enough. I store my photos in iPhoto on an external drive. Can I store all my photos on an external drive when using Photoshop Elements? If so, in what format should they be stored in? I do I move them from iPhoto to the new storage location? How do I call them up in organizer? And how do I call them up to Edit? I do not want to store any pictures on my Apple Mac laptop. I want to store pictures on several external devices.

    Yes you can store images on an external hard dive and have them referenced in Organizer. It’s best to export copies to separate folders/subfolders and that will ensure iPhoto does not get corrupted.
    Alternatively you could continue to use iPhoto with the Elements Editor set up in the iPhoto prefs as your external editing app. Then there is no need to use Organizer and no need to duplicate your images.
    You can then call up photos directly from iPhoto as normal with the additional option e.g.
    Double-click on a thumbnail to edit in iPhoto editor.
    Control (right) - click on a thumbnail to edit in the elements app.
    http://helpx.adobe.com/photoshop-elements/kb/photoshop-elements-iphoto-mac-os.html

  • Do i need to install all 3 disks for photoshop elements 10 ?

    do i need to install all 3 disks for photoshop elements 10 ?

    Look for the DVD description iin the below mentioned link
    http://kb2.adobe.com/cps/863/cpsid_86374.html

  • Transition stiyes for ALL muse elements and widgets

    Hi,
    When are you planning on introducing "Transition Styles" for ALL muse elements?
    By these I mean (at least): fade, vertical (top & bottom) and horizontal (left & right)
    Having them available for only some elements like slideshows keeps us designers from being as creative as possible, and it's 2014, we CAN'T have "dead" looking elements on our websites.
    By "Transition Styles" I mean:
    Page Transitions
    Button Transitions (regular and for menu widgets of course)
    PSD Button Transitions
    Target and TRIGGER transitions for compositions (this is important)
    Footer Transitions
    THIS WILL MAKE BOTH YOUR PRODUCT AND OUR FINAL DESIGNS LOOK LIVE AND CONTEMPORARY
    IMO transitions are an essential thing which gives a new dimension to every website. Without being able to control this, our designs will look static and "dead".
    P.S. I'm at the end of my trial and this is something of the highest importance to me (at least to know if it's coming in the near future) which will tip the balance for me to buy the 1yr subscription. I've thoroughly tested muse for the last 20 days and have came up with the conclusion that this is the only thing missing for me to be able to create website designs which can stand shoulder to shoulder with award winning website designs. Having Transition Styles available for ALL elements will give us designers such power and creative freedom to do things some of which even you couldn't anticipate.

    Hi Brad,
    Check out this website http://www.quazarwebdesign.com/
    You can see the site has won awards, was nominated for more and so on.
    Well, I've managet to re-create it from scratch in muse (without edge animate). I only found myself limited without the ability to assign transitions to ALL elements in muse. For instance, on the landing page you can see the Costa Rica Mobile Web Design section (with the astronaut etc.) And you can notice "WE INNOVATE", "WE PREPARE" and "WE LAUNCH" sections and how when you click on each of them, the content changes but the buttons also have a shape coming from above (vertical transition). I created that using Lightbox or Blank composition (can't remember ATM), used triggers (with inserted images) to act as "WE INNOVATE" etc. and light box areas to act as content with images and text. I then assigned vertical transition to the content and RIGHT THERE, all I needed to make it perfect was to be able to assign "Vertical Transition" to the TRIGGER. I hope you understand what I'm getting at.
    So, giving TRIGGERS their own transition styles, not just targets, doubles the dynamic effect possibilities of the website. And That's what made me come to conclusion that ALL muse elements should have a transition style option. It would let designers be comfortable and rely on that option always being there and would remove disadvantages of certain widgets and elements. For instance, I bet we all are craving for a menu bar with smoothly fading buttons and for pages swiping from the side or fading.
    Give us this, and I'll give you a worthy match to this CSS award winning website, but created entirely in muse and NO CODE WAS WRITTEN THAT DAY

  • How to creat extractor for element of an object nested within an ArrayList

    I have the following issue I want to create an extractor for property of a object that is contained within an ArrayList. I am using JAXB to marshal/unmarshal XML into java objects such that the following XML Code below results in the repeating <system> elements to be rolled up into an ArrayList. The issue is that for each object that Coherence returns to my class that implements the ValueExtractor interface (which is represented by the XML snippet below) I can only return one of the values represented by the multiple <system> elements. Is there a way to do this?
    <?xml version="1.0" encoding="UTF-8"?>
    <sc:scorecard xmlns:sc="http://dtds.pearsoncmg.com/ctg/Scorecard/data/v1" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://dtds.pearsoncmg.com/ctg/Scorecard/data/v1 Scorecard.xsd ">
    <sc:transactionId>1234567890-03072012</sc:transactionId>
    <sc:recipients>
    <sc:system>
    <sc:providerName>portal</sc:providerName>
    <sc:status>processing</sc:status>
    <sc:responseCode></sc:responseCode>
    <sc:flowTrace>
    <sc:flowLocation>
    <sc:serviceName>doReg</sc:serviceName>
    <sc:operationName>RegABC</sc:operationName>
    </sc:flowLocation>
    <sc:updateDate>2012-03-01T12:03:00.003</sc:updateDate>
    </sc:flowTrace>
    <sc:flowTrace>
    <sc:flowLocation>
    <sc:serviceName>doReg</sc:serviceName>
    <sc:operationName>RegXYZ</sc:operationName>
    </sc:flowLocation>
    <sc:updateDate>2012-03-01T12:03:05.016</sc:updateDate>
    </sc:flowTrace>
    </sc:system>
    <sc:system>
    <sc:providerName>gradebook</sc:providerName>
    <sc:status>dispatched</sc:status>
    <sc:responseCode></sc:responseCode>
    <sc:flowTrace>
    <sc:flowLocation>
    <sc:serviceName>getRegDetails</sc:serviceName>
    <sc:operationName>processABC</sc:operationName>
    </sc:flowLocation>
    <sc:updateDate>2012-03-01T12:03:00.051</sc:updateDate>
    </sc:flowTrace>
    </sc:system>
    <sc:system>
    <sc:providerName>sms</sc:providerName>
    <sc:status>NA</sc:status>
    <sc:responseCode></sc:responseCode>
    </sc:system>
    </sc:recipients>
    </sc:scorecard>
    Edited by: user7953523 on Apr 27, 2012 11:00 AM

    Hi
    I posted something on this a long time ago here POF Extractor and Collections (review my code)
    The code could probably be made a bit more efficient but it should give you a starting point
    JK

  • New Profiles for list Object Overview of COOIS

    Dear guru ,
    i run COOIS for list PPIOA000 (Object Overview)  Profile 000000000001 (Standard Profile)
    for production orders.
    In object selection view the system purpose for every object (operations , components ..) a profile  000001.
    I have tried in customizing but I haven’t found where can I add new profile for this list.
    Thanks in advance.

    Dear Cristiano
    Go to transaction COIS double click the Overall profile 000000000001     Standard profile
    Order infromation system: Overall profile detail screen appears
    Double click the Profile 000001agianst order headers
    Order infromation system:Object profiles Overviewl screen appears
    Add new entries to appear in the object selection screen.
    Note : If you even drill down you can change the fields to display respectively.
    Regards
    Soundararajan M,

  • Overview through all Components for ContentServer?

    Is there any address or thread where i can get an overview through all packages for the contentserver?
    Perhaps also some short description?
    Would be nice if someone can help.

    Wow. Tall order but a good idea. The documentation library is a good place to start but it will take you some time to review/read all that information. Is there something specific you were wondering about or did you want something akin to a deck with one slide per add/on?
    Documentation library is here:
    http://download-west.oracle.com/docs/cd/E10316_01/ouc.htm

Maybe you are looking for

  • Safari crashes every time I try to open.

    I have had some major problems that started this morning. I am a new Mac user and would appreciate any help that can be given. In addition to this problem when I started my computer this morning all of my user preferences were wiped out. Background c

  • Rotating Monitors short cut

    We just installed 10 mac mini's with 24" samsung monitors that rotate to portrait mode for page layout. If we restart the mac, the restart will freeze with the gear. I then restart with safe boot, rotate monitor to landscape. Restart again, then rota

  • Removal of workitems from Inbox for specific user

    Hi, Can anyone tell how to delete mass workitems from a specific user's inbox. For example if there are some 4000 workitems in a user's inbox, how can we delete all the workitems by not seleting one by one and deleting. Thanks&Regards, Pavan

  • User-specific output device for WE01

    Hello, for message WE01 I want to maintain each user individual default printer (from SU3). Do I need to maintain a condition record? With which user (I don't want to use the windows LOCL). Thanks, Sebastian

  • Can I get a refund on an album after 90 days?

    I purchased an album that had 50 songs from hit movies. I listened to about 2 of those songs and they were the originals. Unfotunately, most of the songs on the album did were cheap knock offs of the classic songs. I was told I could get a refund and