CSXS standardized event list documentation?

Hi guys
In this article
http://blogs.adobe.com/cssdk/2010/12/watching-the-detections.html
Olav mentions
"Because CS extensions are built on top of CSXS (Adobe’s Creative Suite Extensible Services framework), they can make use of CSXS “standardized” events. - See more at: http://blogs.adobe.com/cssdk/2010/12/watching-the-detections.html#sthash.MH4MhcYc.dpuf"
And lists a few events like "documentAfterActivate" etc
Does anyone know where is the documentation for these events?
Are there any other events except those he lists? like "documentBeforeSave" or "documentBeforeDeactivate"?
Thanks

Hi BaconOppenheim,
If you're using Extension Builder version 2.x, you can go to the CS Extension Builder Start Page, then click Docs and API Reference. You might have to do this several times--there seems to be something wrong, somewhere (I'm not at Adobe any more, so I have no idea). Once you get the documentation page opened, take a look at Adobe Creative Suite Extension Builder>References>CSXS Library Reference>com.adobe.csxs.core>CS Extension and scroll down to the Events section. It's a bit scanty, but it's better than nothing. There are a few other event topics in the CSXS Library Reference section, such as com.adobe.csxs.events.
The applications themselves have different set of events--take a look at the CSHA Library API Reference for more on application-specific events.
All of this changes, of course, with Extension Builder 3. If you're using that version, it's probably easiest just to root around in the CSInterface-4.0.0.js file. There's not much in the way of documentation or samples around for that version yet. I have not yet figured out how to connect to an application-specific event in that version, but I haven't tried very hard to figure it out.
Thanks,
Ole

Similar Messages

  • List of Standard events raised by KM Repository?

    Hi ,
    I am looking for list of Standard Events raised by a KM Repository Framework.
    I could able to get Event ids for moving, deleting , renaming and opening.
    Actually I need to catch the event of new post in KM Repository.
    If some body can direct me to a document which gives me the list of all events  
    and Event ids I would be thankful.
    Thanks & Regards
    Mrutyunjay

    The javadoc for ResourceEvent is located at: <a href="https://media.sdn.sap.com/javadocs/NW04s/SPS7/km/com/sapportals/wcm/repository/manager/ResourceEvent.html">https://media.sdn.sap.com/javadocs/NW04s/SPS7/km/com/sapportals/wcm/repository/manager/ResourceEvent.html</a>.

  • We can figure this standard access list

    We can figure this standard access list that's important remember that we use a standard access list  want to block all traffic or permit all traffic from a particular
    source or destination let's take a look at this machine right here   that  is IP address say
    640-554 we want to stop him from going into the Ethernet interface I'm the ad man he made me midsummer block callers traffic he can get out anymore maybe this is even the internet out
    here we know people like their Internet access so to get back at them I'm a block it what I can do is I can use deny statement in my access list access list
    one did not .
    http://640-554cisco.com/

    Hi Suresh,
    ad 1) according to the documentation ( http://docs.oracle.com/cd/E28280_01/doc.1111/e26692/securityacls.htm#BEIIHJAH )
    "At least one of the following must be true for a user to be granted a particular permission:
    The user's name appears in the xClbraUserList metadata field with the appropriate permission.
    The user belongs to a group that appears in the xClbraAliasList metadata field with the appropriate permission.
    The user is part of an Enterprise role that appears in the xClbraRoleList metadata field with the appropriate permission."
    meaning that OOTB a user will be granted both Read permission as per user-granted permissions and RWD as per group-granted permissions (resulting into RWD because at the same level a union operation is used).
    I'd say that conceptually, the group assignment should not be used in your use-case, because you don't want to assign permissions to group's users, do you? You could create new groups, or use assignment of permissions per user.
    ad 2) check this: http://docs.oracle.com/cd/E28280_01/doc.1111/e26692/securityacls.htm#BEIIDCGD
    Using ACLs, regardless User or Group Access Lists, always impacts the performance. And, it is difficult to maintain. From the information at the link you may understand how it is implemented - basically, the execution of the query will be affected by: a) how many items have to be evaluated b) the length of strings (xClbraUserList, xClbraAliasList) to be evaluated.

  • Events List

    Hi all,
    Can anyone provide me all event's name with its description in ABAP                   ( ALV,Classical And Selection-screen's event) ?
    Thanks in advance......

    Hi,
        Events: Initialization
    at selection-screen
    at selection-screen on value request.
    start-of-selection
    top-of-page
    end-of-page
    at user-command
    at line-selection
    Order:
    1. Initialization
    2. at selection-screen
    3. at selection-screen on value request
    4. start of selection.
    when WRITE statement is triggered
    top-of page.
    end-of-page.
    end-of selection.
    at user-command.
    at line-selection
    Go through the following
    This is the order of execution in Classical/Interactive Report Events
    Classical Reports
    Reports which are properly formatted (header, footer, page numbers etc.,) with the help of one or more external events like top-of-page,end-of-page etc., are called as CLASSICAL REPORTS.
    Standard list.
    Output of Report program is nothing but Standard list. It consists of one continuous page of 60,000 lines.
    To restrict number of lines per page.
    Report Zxxxxx line-count 25.
    OR
    Report Zxxxxx line-count 25(3).
    ( In this case 3 lines are reserved for footer)
    To restrict Output width.
    Report Zxxxx line-size 125.
    To suppress standard page heading.
    Report Zxxxx no standard page heading
    Above all at a time:
    Report Zxxxx line-count 25(3)
    line-size 125
    no standard page heading.
    Screen Events List Events
    Initialization. Start-of-selection
    At selection-screen. Top-of-page.
    At selection-screen on <field>. End-of-page.
    End-of-selection.
    We can initialize the selection-screen with calculated default values under this event.
    Initialization.
    s_date-high = sy-datum.
    s_date-low = sy-datum - 15.
    Append s_date.
    We can validate all the inputs on selection screen fields under this event.
    At selection-screen.
    If s_carrid-low is initial or
    s_connid-low is initial or
    s_date is initial.
    < ... code for validation... >.
    Endif.
    We can validate a particular field input on selection screen under this event.
    At selection-screen on s_carrid.
    If s_carrid-low < > ‘LH’.
    <… code for validation…>
    Endif.
    If any of the other event comes before
    ‘Select…Endselect.’ statements, then to break
    that event, we require this S-O-S event.
    Start-of-selection.
    Select * from ……
    Endselect.
    If we need some portion of the output (like
    column headings) to appear in all the pages,
    then we use this event.
    Top-of-page.
    Write:/ ‘Carrier’,10 ‘Connection’ 20 ‘Date’.
    If there is no external output statement before
    ‘Top-of-page’ event, then this event will not
    work.
    Once the cursor reaches the last line of the
    page, automatically this event will be triggered.
    Report Zxxx line-count 25(3).
    In this case line numbers 23, 24 and 25 are
    reserved for footer.
    Once the cursor reaches 23rd line, this event
    will be triggered.
    End-of-page.
    Write:/ sy-uline(75).
    Write:/ ‘This is end of page:’,sy-pagno.
    Write:/ sy-uline(75).
    This event is used for concluding part of List.
    End-of-selection.
    Write:/ ‘This is end of the Report’.
    Interactive Report
    A simple report or even a classical report displays a clustered list with all the requested output at one go.
    What ever it is displayed, it is final. That means, the user can not interact with with that list.
    A simple report or even a classical report displays a clustered list with all the requested output at one go.
    What ever it is displayed, it is final. That means, the user can not interact with with that list.
    In the interactive reports, we can create as many as 21 lists.
    The first list is called ‘Basic list’ and all the successive lists are called ‘Secondary lists’. Each list is again an interactive.
    The Basic list is not deleted when secondary list is created.
    A secondary list may either overlay the basic list or appear in an additional dialog window on the same screen.
    The system variable associated with list number is ‘SY-LSIND’.
    For basic list SY-LSIND = 0 and for secondary lists, SY-LSIND varies from 1 to 20.
    User can interact with the list by the following ways.
    Double clicking or single click and pressing F2 (function key) or single click with ‘hotspot on’.
    OR
    Selecting from menu bar or from application tool bar.
    All the events used in classical reports can be used in Basic List.
    The event ‘End-of-page’ can be used in Secondary Lists also.(the other six events can not be used in secondary lists)
    You can not place ‘select-options’ in secondary lists.
    The following additional events are
    applicable to secondary lists.
    Top-of-page during line-selection.
    At line-selection.
    At user-command.
    When you double click on any field in the basic list, you will be navigating to secondary list with detailed information pertaining to clicked field.
    As such we need to store the clicked field information at some variable.
    ‘Hide’ temporarily stores the content of clicked field for later use.
    The default title of the out put is the text what we enter during creation of program.
    This title can be changed using:
    SET TITLEBAR ‘AAA’.
    GUI status includes:
    Menu bar
    Application tool bar and
    Activating standard tool bar
    GUI status can be created using
    SET PF-STATUS ‘BBB’.
    You can have 8 menus ( out of which, 2 menus are reserved for ‘System’ and ‘Help’).
    Each menu can have 15 menu items.
    Each menu item can have 3 levels of submenus.
    You can create 35 items in application tool bar.
    <i>ALV EVENTS</i>
    check these important events ...
    1.SLIS_PRINT_ALV.
    2. SLIS_T_LISTHEADER.
    3. SLIS_T_EVENT.
    4. SLIS_T_SORTINFO_ALV.
    5. SLIS_T_LAYOUT_ALV.
    6. SLIS_T_FIELDCAT_ALV.
    for more details ..check this link..
    http://www.sap-basis-abap.com/abap/events-in-alv-and-their-fm.htm
    <b>Reward points</b>
    Regards

  • Calendar Software & Updating Events List

    Alright guys I am building a website for my school and right
    now we have the calendar in .pdf form. What I would like to do is
    make an interactive calendar like Easy PHP Calendar found here:
    http://www.easyphpcalendar.com/freeDownload.php.
    That one looks pretty clean and I think it can accomplish the
    other tasks I would like it to. Those tasks are categorizing the
    events like "administration", "sports", "community", etc. Once I
    categorize the events I would like to put something on say the
    baseball homepage so it will grab the next 3-4 events under the
    "baseball" category and display them on the page. I would like to
    be able to do this with each sport and put an overall events list
    that shows the next 5-10 events on the homepage.
    Thanks for any help or input!

    http://demo.mediachurch.com
    check that baby out! hehehe, I've actually had
    some fun playing with it, though it certainly has given me
    fits.
    Additionally, due to the heavy Zend use, it's been pretty
    hard to tie in
    calendar templates with my site templates (pretty hard as in
    I still have no
    clue how I'm goign to do that aside from a directory copy).
    1. Agree on upgrade
    2. Check those links out - the CSS maps are really
    invaluable. Actually,
    what I did most of the time was rip out all the stuff they
    had in there
    (their CSS design was lacking in 8 ways) and just replace it
    with mine.
    3. I don't want to promise this, but I think we were able to
    talk to them
    about bulk purchasing. The only problem was that they have a
    policy that
    bulk applies to purchases at the same time - so if you buy 50
    one day and 50
    the next, you only get bulk for 50.
    I'm working on the multipiple users thing. I saw a post on
    the board where
    somebody had figured it out. I'm struggling - the input form
    is a nightmare
    of javascript, and I haven't messed with it for ages. I'm
    hoping I can just
    upload it to my table in my main database, and then export it
    to the other
    database upon approval. Blech! :O)
    Jon
    "Mad Dog" <[email protected]> wrote in message
    news:[email protected]...
    >I haven't had need for multiple users, so that hasn't
    been a problem for
    >me. I've customized it a bit using the CSS, which wasn't
    bad, but I didn't
    >need to do as much customization as you have. I had some
    problems
    >integrating it into a WordPress sidebar, but with Brian's
    help and Google
    >searches, I got it figured out and it works like a charm.
    I even outlined
    >it and Brian posted it as a sticky in the forum for
    Wordpress integration
    >guidelines. My main needs now are:
    >
    > - A better upgrade process
    > - Cleaner, easier to understand, better documented CSS
    would be nice
    > - Bulk purchasing discounts!
    >
    > MD
    >
    > crash wrote:
    >> It's a pretty good package, and looks to be getting
    even better. There
    >> are some warnings, though.
    >>
    >> You need to look at their specs and make sure the
    way it's setup is
    >> going to accommodate you. They are working on a much
    more robust
    >> version, due out in Q3, and I highly recommend that.
    (You should be
    >> able to buy now and upgrade for a nominal fee).
    >>
    >> What I needed but wasn't quite there:
    >>
    >> 1. Different users being able to have different
    categories available
    >> to them. As it is now (from everything I've read)
    this isn't really
    >> possible to do.
    >>
    >> 2. The ability to show multiple events under one day
    heading
    >>
    >> 3. Customizing the calendar templates is a bit
    limited, and is not at
    >> all intuitive. For example, you can customize parts
    of the css
    >> through one section (for templates) but that does
    not apply to other
    >> sections. You can add additional information to the
    headers via an
    >> include file, but must edit the actual images to
    change the header
    >> graphic, as the graphic reference is embedded in
    Zend programmed code.
    >>
    >> Now, the great thing like MadDog mentioned is the
    forums. Thanks to
    >> them and help from one of their members, I was able
    to fix number two
    >> - but it did take some time. The dates were
    especially hard for me
    >> to get a handle on, and that might have been the
    biggest part of why
    >> I found customizing the application so difficult.
    >>
    >> Overall, there's definitely no better value I found
    than this
    >> calendar. It is great if you're working in an
    environment where you
    >> have a small, trusted editing team. The new version
    looks to be
    >> suited well for a larger environment, with
    additional administrative
    >> levels and controls. It can be customized, and
    there's a large group
    >> of people doing this.
    >> Additionally, don't forget to bookmark/download this
    if you're goign
    >> to be working with the calendar. It's a god-send.
    >>
    >>
    http://www.epctutorials.com/index.php?option=com_content&task=view&id=13&Itemid=26
    >>
    >> And it looks like he's got one up for the pop-up as
    well. This
    >> gentleman was one of the posters that really has
    helped me customize
    >> the calendar.
    >>
    http://www.epctutorials.com/index.php?option=com_content&task=view&id=16&Itemid=26
    >>
    >> Good luck!
    >>
    >> Jon
    >
    >

  • Event List view in iCal?

    I would love to have an Event List view in iCal like I do on the calendar on my iPhone. Is there such a thing? The particular reason for wanting it (this time) is that one of the calendars in the ON MY MAC list has a number in a oval to the right.
    I believe this is trying to tell me that there is a new event that I need to do something about. Problem is, I don't know where to find it.

    ecernek,
    There is no event list option on iCal like the one on the iPhone.
    That number means that you have an event invitation. Use iCal>View>Show Notifications to choose what to do with the notification.

  • Event listing shortened in iCal

    When I enter some events in iCal they do not appear in their entirety in the calendar. Some events use two or three lines, some cut off in only one line. The only solution I have found is to keep changing the 'name' of the event until I hit on one that does not cut off. Surely there is another solution! Any ideas?

    ecernek,
    There is no event list option on iCal like the one on the iPhone.
    That number means that you have an event invitation. Use iCal>View>Show Notifications to choose what to do with the notification.

  • Sales order creation, standard event trigger is taking long time .

    We have a requirement where we are sending data to CRM system using RFC function module. This data is sent while sales order creation or change. We have used standard event BUS2032.CREATED to trigger CRM FM in sales order creation mode. In sales order change mode, we are using custom event. In production system, our custom change event is getting triggered fine and data is sent to CRM system with small time lag of around 1 minute. But, while sales order creation, standard event trigger is taking long time ( sometimes about 20 minutes) in production system.
    We tried triggering same custom event at the time of sales order creation using FM u2018SWE_EVENT_CREATE_IN_UPD_TASKu2019 as well but, still we are not able to improve performance of the event trigger at sales order creation.
    Regards,
    Sushee Joshi

    HI,
    we have written SWE_EVENT_CREATE in update task
    I think instead of calling in update task simply call to function module CALL FUNCTION "SWE_EVENT_CREATE" might trigger the event immediately.. Did you try to check in this way..
    OR
    And I also suggest you to check the entry in SWE2 txn with respect to your workflow tempalte, may be you have enable the option ENABLE EVENT QUEUE, this could be one of the reasons.. If it is enabled please disable it (uncheck)
    Please check..
    Regards
    Pavan

  • Old   How to find total number of events in an event list?

    Hi,
    I am developing a j2me application. i Want to find the total number of events in an event list.(ie, If it contains 15 events then it should return length as 15).
    Not the length of EVENT LISTS i want to find the Length of EVENTS.
    Thanks,
    kumar

    Hi,
    you can find the number of columns and their order using
    the <b>'REUSE_ALV_FIELDCATALOG_MERGE'</b>
    call function 'REUSE_ALV_FIELDCATALOG_MERGE'
    EXPORTING
       I_PROGRAM_NAME               = sy-repid
       I_INTERNAL_TABNAME           = 'ITAB'
       I_INCLNAME                   = sy-repid
      changing
        ct_fieldcat                  = IT_FIELDCAT
    EXCEPTIONS
       INCONSISTENT_INTERFACE       = 1
       PROGRAM_ERROR                = 2
       OTHERS                       = 3
    if sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
             WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    endif
    now describe your fieldcat . and find no of columns.
    and their order also..
    regards
    vijay

  • Training and event management: Book Attendee List for Business Event List

    Dear all,
        I know this:
        PV07: book attendee list for business event
        PV08: book attendee for business event list
       Is there a tcode to book an attendee list for a business event list
    Thanks a lot in advance!

    Hi Federico,
    I think.., no. Below are the tcodes available to book attendee,
    PV00 Book attendee for business event
    PV01 Rebook attendee for business event
    PV02 Prebook
    PV03 Replace
    PV04 Cancel
    PV07 Book attendee for list  for Business event
    PV08 Book attendee for business event list.
    Let me know if you found tcode for your requirement.
    Thanks,
    Karunakar

  • Adding fields 2 standard payment list program  (RFZALI20)  in F110 t-code

    hi frnds,
    it is a standard progrm using the logical database pfy. to retrive data.
    i have to add 5 more fileds  along with footer approved by and page break(shown below) to the output list.
    please help me with ur inputs.
    Header Data:
    *Note:
    Keep the header data same as standard payment list.
    Summary Data:
    *Note:
    Following fields are only those needs to be added in customized program. For the rest, please refer to the standard program  
    ·     Vendor Chinese Name
    ·     Check/TT No.
    ·     PO No.
    ·     Purchasing Group
    ·     Reference
    ·     Due Date
    Footer Data:
    *Note:
    The Footer Data need to be display at the bottom of each page:
    ·     Review By
    ·     Prepared By:
    Breaking:
    ·     Page break when information overflow
    ZH Name     C     20     As standard     As standard     ADRC- NAME1NAME2     Display vendor Chinese name:Select NAME1NAME2 from ADRCWHERE ADRC-ADDRNUMBER=REGUH- ADRNRAND ADRC-NATION = ‘C’If no data can be retrieved, leave the field as blank.Wrap if the name exceed the limit. Insert the field under Vendor English Name in payment list.Refer to the attached for layout, Highlighted is place should be inserted to : 
    Check/TT No.     C     8     As standard     As standard     PAYR-CHECT     Display Check/TT number of this payment documentSelect CHECT from PAYRWhere PAYR-LAUFD = REGUH-LAUFDAnd PAYR-LAUFI= REGUH-LAUFIAnd PAYR-VBLNR= REGUH-VBLNR which is displayed in current payment listInsert the field in header line 1 of layout pop-up.
    PO No.     C     10     As standard     As standard     BSEG-EBELN     Display the PO number of invoice documentSelect EBELN from BSEG Where BSEG-BELNR=REGUP-BELNRBSEG-GJAHR=REGUP-GJAHRAnd BSEG-BUZEI= REGUP-BUZEIInsert the field in position line 1 of layout pop-up. 
    Purchasing Group     C     4     As standard     As standard     EKKO-EKGRP     Display purchasing group in order to identify the buyer in charge of related POSelect EKKO-EKGRP from EKKO where EKKO-EBELN =BSEG-EBELN  Where BSEG-BELNR=REGUP-BELNRBSEG-GJAHR=REGUP-GJAHR  And BSEG-BUZEI= REGUP-BUZEIInsert the field in position line 1 of layout pop-up.
    Reference     C     10     As standard     As standard     BKPF-XBLNR     Display physical invoice number of each invoice document in SAPSelect XBLNR from BKPF Where BKPF-BELNR=REGUP-BELNRBKPF-GJAHR=REGUP-GJAHRInsert the field in position line 1 of layout pop-up.
    Due Date     C     10     As standard     As standard     Calculated     Display due date for the invoice document.Refer to the calculated logic of the field RFPOSXEXT-FAEDT in program SAPLKKBL (T-Code:FBL1N)Insert the field in position line 1 of layout pop-up.

    Hi Sridhar,
    Please can you help me. I got the same problem to add the fields to the Payment run Program (RFZALI20). Can You please suggest me how can i solve this problem. I need to add LIFNR, XBLNR & EBELN fields from REGUP table.
    Can you please help me ASAP.
    Thanks & Regards
    Rajendra
    Message was edited by:
            Rajendra Prasad

  • ABAP Mapping - Message shown in Standard Change List Process Log

    Hi
    I am working with ABAP Mapping program. I had created ABAP class using ABAP workbench. Before this, in exchangeProfile..data was provided for com.sap.aii.repository.mapping.additionaltypes ==>> as " R3_ABAP|Abap-class;R3_XSLT|XSL (ABAP Engine) " and 'Saved'.
    In Interface Mapping, after providing the Class Name under 'Mapping Program' and activated. After activation (Standard Change List), it is showing the following messages under 'Processing Log'.
    --> Standard Change List - Process Log message
    Activation of the change list canceled Check result for Interface Mapping IM_ABAP_MAPPING | http://ABAP_Mapping_SREE:  Type R3_ABAP of
    program ZSREETEST is invalid because it is not registered in the exchange profile . Check the values for the exchange profile parameter
    IntegrationBuilder.Repository.com.sap.aii.repository.mapping.additionaltypes
    --> End of Log message
    Can some one please guide me in resolving the ABAP mapping issue.
    Thanks in advance.
    ..Sree

    Sree,
    The log says that there is ABAP mapping included in your exchange profile. Do the things what michal have told and also check your mapping program whether working fine or not in SXI_MAPPING transaction.
    You can see this weblog for reference:
    /people/sameer.shadab/blog/2005/09/29/testing-abap-mapping
    ---Satish

  • How to copy standard SAP list edit tcode IW28 , IW29 to our Z transtions...

    Hi friends,
    Can any one help me on this plz.
    Need two reports for Notifications List Edit, one for change mode and one for display mode.
    These reports need to be copied from the standard SAP list edit transactions IW28 and IW29.
    I. The selection and display variants for the customized notification list edit (ZIW28 & ZIW29) need to include the following custom fields:
    a) SONGS custom Notification attributes include:
    •     Significance level
    •     MRule code
    •     ARC
    •     “Feedback Required? “ checkbox
    b) PPD custom Notification attributes include:
    •     Outage Issue checkbox
    •     “Feedback Required? “ checkbox
    c) Order attributes to be included:
    •     Order Type
    •     Order system statuses
    •     Order users statuses
    •     Order Maint activity type
    •     Order Revision code
    d) Non-Energy Notification custom field attributes include:
    •     Circuit ID
    •     Caller Name
    •     Caller SAP Personnel No
    •     Caller Pax
    •     Caller Alt Phone
    •     Caller email
    •     Caller Company
    •     Caller Bus Unit
    •     Caller Dept
    •     Contact Name
    •     Contact SAP PERNR
    •     Contact PAX
    •     Contact Alt Phone
    •     Contact email
    •     Peregrine #
    •     Created by
    •     Closed by
    e) EAM Notification custom field attributes include:
    •     Location
    •     Elevation
    •     Room
    •     Column
    II. These fields need to be available on both selection and display variant screens. They will be grouped together on the Selection screen (as given in the layout). Also, these fields need to be variant configurable (include/exclude) on the Display screen. Report should make use of the ABAP List Viewer (ALV) functionality to permit standard SAP display results sorting, filtering, etc.
    III. The above requirement specifies that the identified custom fields need to be added to the Custom List Edit Display Variant. In addition, the Order Header Short Text (CAUFVD-KTEXT) and Order Delay Code (WA_COCI_AUFK-ZZDCODES) should only be added to the Custom List Edit Display Variant.
    IV. Delete the standard SAP section for "Selection Using IS-U Objects" and Display Variant fields from the custom list edit report.
    Thanks and regards,
    Ankitha.

    Hi,
    Copy RIQMEL20 program to your Z Program, and insert your custom fields.
    But i think it will be very difficult since it has many enhancement point and it's not recommended. And it also will give you much trouble in upgrading time.
    May be you can find screen exit for this program and add your custom fields, or just create your new z program.
    Regards,

  • Standard Item List in WAD

    Hi
    We just upgraded to BW 3.5 (Level 11) with Content 3.5.3 (Level 2) and i now wanted to use the new Master Web Item "Web Template". The problem i now have is, that this item is not on the list when starting WAD.
    I checked R3-system.
    Class CL_RSR_WWW_ITEM_TEMPLATE (active, looks good)
    Table RSRRENDERER (entry CL_RSR_WWW_ITEM_TEMPLATE looks good)
    Table RSRRENDERERATR (entries for CL_RSR_WWW_ITEM_TEMPLATE look good)
    What i tried in WAD is to manually code the html-block with refering to this object:
    <object>
             <param name="OWNER" value="SAP_BW"/>
             <param name="CMD" value="GET_ITEM"/>
             <param name="NAME" value="TEMPLATE_1"/>
             <param name="ITEM_CLASS" value="CL_RSR_WWW_ITEM_TEMPLATE"/>
             ITEM: TEMPLATE_1
    </object>
    Changing back to Layout-View shows the preview-icon of this web item. But still, it's not in the list. I also tried to save this coded object which i can see in the layout in a library (context-menu "save in library"). No error-message, but no sign of this object in the newly created library.
    Has anyone an idea, where this Standard Item list is coming from? What is missing?
    The following items new to BW 3.5 are available:
    - Query View Selection
    - Broadcaster
    - Key Figure Overview
    The following items new to BW 3.5 are NOT available:
    - Web Template (as described)
    - Data Provider - Information (XML)
    - Object Catalog of the Web Application (XML)
    Thanks for any hint or help.
    Michael

    there is an OSS note , remember the note number.
    This is what you need to do.
    <b>just switch on the Expert Mode and restart WAD</b>
    <u><b>Note details:</b></u>
    Long text                                                                               
    Symptom                                                                  
    Some Web items do not appear in the item selection of the BW Web         
    Application Designer.                                                    
    Other terms                                                              
    Web Application Designer, renderer, CL_RSR_WWW_ITEM_TEMPLATE,            
    CL_RSR_WWW_ITEM_XML_CATALOG, CL_RSR_WWW_ITEM_XML_QUERYVIEW, object       
    catalog item, XML item, template item, template in template, template    
    name item, data provider XML item                                        
    Reason and Prerequisites                                                 
    You are using BW Front End 3.5.                                          
    Solution                                                                 
    Interactive users:                                                                               
    You can set the "Expert features" checkbox in the settings dialog box.   
    The items are displayed the next time you start the WAD.                                                                               
    Administrators:                                                          
    The ExpertFeatures are stored in the following Registry Key.             
    [HKEY_CURRENT_USER\Software\SAP\BEx\wdbpWPub] "ExpertFeatures"="True"    
    Regards
    Raja

  • Standard event at end of report

    Hi guys,
    This is a really complex question and my manager expects me to know the answer to this just 'cause I'm certified, but I think this is very expert knowledge. The question is: Is there a standard event triggered at the end of EVERY ABAP report run in the system? The system debugging didn't help me much on this and I didn't discover anything with it. The functionality he's looking for is similar to the one in job scheduling, which allows you to schedule a job after the end of a previous job. So, in some way, we would like to catch the report's end an immediatly execute another on and so on.
    Let me know your thoughts,
    George

    >
    George Ardeleanu wrote:
    > OK, so now I heard about it. We want a standard event or what have you that gets triggered when EVERY report in the system ends. We don't wanna change our custom report for that. I was asking about a general event (standard) that will also give us the report name. Is there such a possibility?
    Hello,
    Never heard of one. I dont think that SAP will provide something of this sort, else it would not have kept space for user-defined events.
    Cheers,
    Suhas

Maybe you are looking for