How to get rounded corners for Grid in flex 3.0

Hi All,
I was trying to make rounded corners for ‘Advanced Datagrid’ and ‘Datagrid’ components of Flex 3.0. But was unable to do so.
Also  tried searching the net for some solution but didn’t get much help for the problem.
I tried making a skin and applying it , but still wasn’t successful.
Can you please guide me in making the corners rounded for the 2 components.
Thanks
RSI
e.g of my code
<mx:AdvancedDataGrid id="myADG"
headerBackgroundSkin="com.coresecurity.ui.view.skin.RoundImageSkin"  dataProvider="{dpFlat}"
        width="100%" height="100%">
        <mx:Columns>
            <mx:AdvancedDataGridColumn headerText= “1” dataField="1"/>
            <mx:AdvancedDataGridColumn headerText = “ 2” dataField="2"/>
            <mx:AdvancedDataGridColumn dataField="3"
                headerText="3"/>
        </mx:Columns>
   </mx:AdvancedDataGrid>
RoundImageSkin.as
public class RoundImageSkin extends RectangularBorder
public RoundImageSkin(){
super();
override protected function updateDisplayList(unscaledWidth:Number, unscaledHeight:Number):void
var cls:Object = getStyle("backgroundImage");
var bmp:Bitmap = new cls();
graphics.clear();
graphics.beginBitmapFill(bmp.bitmapData);
graphics.drawRoundRect(0, 0, unscaledWidth, unscaledHeight,5);

You aren't likely to get any of your questions answered for the reasons you already identified, and I imagine you would not find a tutorial for something as complex as what you are prusuong..  You need to learn how to design with Flash, and a forum is not a place where you are going to get that kind of help.  If you have code and/or a design issue that you need help with then that's where a forum might be of use to you.

Similar Messages

  • How to get rounding diffrence for agreement?

    I am passing 3 parameters to this function
    1.Agreemnt number
    2.Start date
    3.End date
    I want to calculate Rounding difference for the each agreement.
    Here Problem is, when executing this function; I am getting correct value first time.
    While executing second time it thing, it shows different value as result.
    Can anybody solve this?
    Or give me another idea to get rounding difference instead of using this function?
    FUNCTION ysdf_rebate_settlement_amount.
    ""Local Interface:
    *"  IMPORTING
    *"     VALUE(IV_AGREEMENT) TYPE  KNUMA
    *"     VALUE(IV_FROM_DATE) TYPE  DATUM
    *"     VALUE(IV_TO_DATE) TYPE  DATUM
    *"  EXPORTING
    *"     REFERENCE(EV_ACCRUED_AMOUNT) TYPE  KWERT
    *"     REFERENCE(EV_SETTLED_AMOUNT) TYPE  KWERT
    *"     REFERENCE(EV_ACCR_REV_AMOUNT) TYPE  KWERT
    *"  EXCEPTIONS
    *"      NO_AGREEMENT
    *"      NOT_SALES_VOL_DEPENDENT
    *"      OTHER_ERRORS
      DATA:
             lv_accrued_amt   TYPE kwert,
             lv_settled_amt   TYPE kwert,
             lv_reversal_amt  TYPE kwert,
             lv_kawrt         TYPE kawrt,
             lv_kbetr         TYPE kbetr,
             lv_kstbs         TYPE kstbs,
             lv_kwert         TYPE kwert,
             lv_datab         TYPE datum,   "Start date
             lv_datbi         TYPE datum,   "End date
             lw_kona          TYPE kona,
             lw_t6b1          TYPE t6b1,
             lw_konp          TYPE konpdb,
             lw_s060          TYPE s060,
             lt_konp          TYPE STANDARD TABLE OF konpdb,
            lt_s060          TYPE STANDARD TABLE OF s060,
             lt_scales        TYPE STANDARD TABLE OF condscale,
             lt_xvakes        TYPE STANDARD TABLE OF vakevb.
      CLEAR :
        ev_accrued_amount,
        ev_settled_amount,
        ev_accr_rev_amount.
    Validate agreement number and get agreement details.
      SELECT SINGLE *
          INTO lw_kona
          FROM kona
          WHERE knuma = iv_agreement
          AND   abtyp = c_abtyp_a.  "Rebate Agreement
      IF sy-subrc NE 0.
    Rebate agreement & does not exist!
        MESSAGE e061(yfr2sd) WITH iv_agreement
            RAISING no_agreement.
      ENDIF.
      SELECT SINGLE * FROM t001
          WHERE bukrs = lw_kona-bukrs.
    Start date = later of the requested start date
    and the agreement start date.
      IF iv_to_date > lw_kona-datbi.
        lv_datbi = lw_kona-datbi.
      ELSE.
        lv_datbi = iv_to_date.
      ENDIF.
    End date = earlier of the requested end date
    and the agreement end date.
      IF iv_from_date < lw_kona-datab.
        lv_datab = lw_kona-datab.
      ELSE.
        lv_datab = iv_from_date.
      ENDIF.
    Retrieve configuration data once and keep in global variables
    for better performance when repeated calls are made.
      IF r_kobog_excl[] IS INITIAL.
        PERFORM get_global_data.
      ENDIF.
    Agreement must be completely dependent on sales volume.
      IF lw_kona-kobog IN r_kobog_excl.
        MESSAGE e062(yfr2sd) WITH iv_agreement
            RAISING not_sales_vol_dependent.
      ENDIF.
    Get a list of condition record numbers for the given agreement
      PERFORM get_condition_numbers USING lw_kona iv_from_date iv_to_date.
    Read condition records and scales.
      CALL FUNCTION 'SD_KONP_SELECT'
        EXPORTING
          scale_read       = 'X'
        TABLES
          condition_item   = lt_konp
          condition_number = r_knumh
          condition_scale  = lt_scales.
    Accrual amount calculation for all conditions.
      LOOP AT lt_konp INTO lw_konp.
        konp = lw_konp.
        CLEAR lw_s060.
    Determine the turnover for rebate
        CALL FUNCTION 'SD_BONUS_TURN_OVER'
          EXPORTING
            agreement_waers  = lw_kona-waers
            condition_krech  = lw_konp-krech
            condition_item   = lw_konp-kopos
            condition_number = lw_konp-knumh
            period_datab     = lv_datab
            period_datbi     = lv_datbi
            agreement_knuma  = lw_kona-knuma
          IMPORTING
            turn_over        = lw_s060.
    Errors?
        IF NOT lw_s060 IS INITIAL AND
               lw_s060-krech IS INITIAL.
          MESSAGE e779(vk) RAISING other_errors.
        ENDIF.
    If condition is active (not logically deleted).
        IF lw_konp-loevm_ko = space.
    record found?
          IF lw_s060-knumh IS INITIAL.
            lv_kstbs   = 0.
            lv_kawrt   = 0.
          ELSE.
            lv_kawrt   = lw_s060-kawrt_k.
            lv_kstbs   = lw_s060-kstbs.
          ENDIF.
          IF lw_konp-stfkz = 'D'.
    Tiered scales calculation
            CALL FUNCTION 'SD_GRADUATED_SCALE_EVALUATION'
              EXPORTING
                i_arrangement      = lw_kona
                i_condition_record = konp
                i_scale_base       = lv_kstbs
                i_condition_base   = lv_kawrt
                i_bukrs            = lw_kona-bukrs
                i_currency_date    = lv_datbi
                i_value_rounding   = c_yes
                i_t001             = t001
              IMPORTING
                e_arrang_value     = lv_kwert
              TABLES
                t_condition_scale  = lt_scales
              EXCEPTIONS
                error_message      = 1.
          ELSE.
    Determine condition rate (non-tiered calculation)
            CALL FUNCTION 'SD_BONUS_RATE_FROM_SCALE'
              EXPORTING
                condition_record = konp
                scale_base       = lv_kstbs
              IMPORTING
                bonus_rate       = lv_kbetr
              TABLES
                condition_scale  = lt_scales.
    Determine rebate amount for the condition
            CALL FUNCTION 'SD_BONUS_VALUE_CALCULATION'
              EXPORTING
                calculation_rule   = lw_konp-krech
                condition_base     = lv_kawrt
                condition_type     = lw_konp-kschl
                currency           = lw_kona-waers
                currency_date      = lw_kona-datbi
                price_currency     = lw_konp-konwa
                price_unit         = lw_konp-kpein
                price_uom          = lw_konp-kmein
                cumul_currency     = lw_konp-kwaeh
                rate               = lv_kbetr
                sales_organization = lw_kona-vkorg
              IMPORTING
                bonus_value        = lv_kwert
              EXCEPTIONS
                error_message      = 01.
          ENDIF.
          IF sy-subrc <> 0.
    Error?
            MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
                       WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4
                       RAISING other_errors.
          ENDIF.
    Percentage?
          lv_accrued_amt = lv_accrued_amt + lv_kwert.
          clear lv_kwert.
          IF lw_s060-krech NE c_krech_a.
            lv_reversal_amt = lv_reversal_amt + lw_s060-rrwrt.
          ENDIF.
        ELSE.
    Clear the values
          CLEAR: lv_kawrt, lv_kstbs, lv_kwert, lv_kbetr.
        ENDIF.
      ENDLOOP.
      SELECT SUM( vbap~netwr )
          INTO lv_settled_amt
          FROM vbak
          INNER JOIN vbap
              ON  vbapvbeln EQ vbakvbeln
          INNER JOIN vbkd
              ON vbkdvbeln  EQ vbakvbeln
          WHERE vbak~knuma = lw_kona-knuma
          AND   vbak~auart IN (c_auart_b1,c_auart_b3)
          AND   vbap~abgru EQ space
          AND   vbkd~fbuda BETWEEN iv_from_date
                           AND     iv_to_date
      ev_accrued_amount     = - lv_accrued_amt.
      ev_settled_amount     = lv_settled_amt.
      ev_accr_rev_amount    = lv_reversal_amt.
    ENDFUNCTION.
    Regards,
    Ronn

    Can you provide more details that's a very vague question.  You research industry vendors such as MobileIron, Zenprise, AirWatch, BoxTone, etc. or configure your own server and push configuration profiles.  Apple themselves do not offer any services of their own that they resell.

  • How to create rounded corners for web site

    I am interested in any help with creating rounded header and
    rounded columns like at adobe home page. Whats the best way to go
    about creating a page with rounded text boxes, rounded nav bars,
    rounded logo box, etc..
    Thanks,
    Dennis

    Rounded corners in Web pages now can be done best with CSS3. A lot of contemporary browsers support them -- Firefox, Opera, Chrome, Safari. IE doesn't support rounded corners (not yet), but this will happen somewhere in the future...
    CSS3 rounded corners: a basic how-to:
    http://www.css3.info/preview/rounded-border/
    Of course, you can also use rounded corners in a Fireworks image, then apply the corners to the HTML elements via CSS; this will work in all browsers, including IE. There are a lot of tutorials over the Web which cover this topic, too

  • How do i get rounded corners on a table?

    How do I get rounded corners on a table in Robobhelp9 for WebHelp output?

    Hi there
    Personally, I'd be tempted to just use a background image to produce the rounded corners. Then overlay that with the cell data.
    Just thinking out loud... Rick
    Helpful and Handy Links
    RoboHelp Wish Form/Bug Reporting Form
    Begin learning RoboHelp HTML 7, 8 or 9 within the day!
    Adobe Certified RoboHelp HTML Training
    SorcerStone Blog
    RoboHelp eBooks

  • Rounded Corners in Grid View

    Seriously someone please tell me how to get rid of these rounded corners in grid view. I can handle a subtle curve on the corners but these are 32x32 pixel curves on every corners. Any bigger and I'll be browsing album artwork circles in grid view. The white background is annoying enough but this is about to make me ditch the program.

    What I propose is the bottom of each thumbnail. Because the size of the thumbnail is variable mixed, possibly, with a 3 or 4 line word wrap this space would be more then enough for many users. Alternately, a new grid view with one photo on the left side coupled with extensive metadata on the right would enable quick views of keywords/metadata. Other programs such as acdsee pro have implemented similar functionality which I have found extremely valuable. The ability, at quick glance, to see how photos have been tag will greatly increase the efficiency of tagging. I agree that many users may find the function limiting, but they dont have to use it.

  • My iOS remains the same as whats inside my iPhone I bought it 18months ago, which is version 4.2.1, I am told by an Apple shop that its too old to do a proper update, unless all my data will have to be erased !! is this true ?  if so, how to get round it

    my iOS remains the same as whats inside my iPhone I bought it 18months ago, which is version 4.2.1, I am told by an Apple shop that its too old to do a proper update, unless all my data will have to be erased !! is this true ?  if so, how to get round it ?    Chuck

    Be sure to do a backup before updating as protection. Photos should
    be synced with your computer, music should be in iTunes, documents
    should be backed up on your computer as should contacts in whatever
    program you use on your computer. You should already have backups
    of your important information to prevent loss in case of theft, crash,
    physical damage. The question is not if your hard drive will crash but
    when, and you iPhone is not a backup device nor fit for the only
    source of any document, picture, music, movie, contact or otherwise
    irreplaceable information.

  • How i get data in matrix grid from A/P Invoice

    How i get data in matrix grid from A/P Invoice before click add button

    Hi,
    Are you trying to read the data in the matrix of a system form? Then you only have to look for the matrix with the ID you can see by visualising the System Information in B1 and then directly read from the matrix cells (using columns element in matrix), the DBDataSources are not filled in until the document has been added to the database.
    There are many messages in this forum talking about how to read information in matrix item, just make a search for it.
    Hope it helps
    Trinidad.

  • How to get Open Balance for the year and Total Ending Balance?

    For a given account, how to get Open Balance for the year (Cumulative Ending Balance) and Total Ending Balance (Cumulative Ending Balance)?
    Is there any function module available? or should I read from some tables? Please advice.

    Hello Paul,
    You could try calling one of the following BAPIs - see which one meets your requirement. They are documented well so shouldn't be a problem finding out the correct one for your requirements.
    BAPI_GL_GETGLACCBALANCE      
    BAPI_GL_GETGLACCCURRENTBALANCE
    BAPI_GL_ACC_GETBALANCE      
    BAPI_GL_ACC_GETCURRENTBALANCE
    BAPI_GL_ACC_GETPERIODBALANCES
    BAPI_COND_VAL_DECRE_BALANCES
    You might have to put in some of your own logic after the BAPI call to get what you want.
    Hope this helps,
    Cheers,
    Sougata.
    p.s. Also look at FM FAGL_GET_ACCOUNT_BALANCE
    Edited by: Sougata Chatterjee on May 7, 2008 11:47 AM

  • A^b = n ,How to get the value for a ?

    a^b = n ===> n = Math.pow(a,b)
    How to get the value for a ?
    dose Java have API to get the value for a ?
    Thanks for help~~~

    a^b = n
    =>
    a = n^(1/b)
    So,
    a = Math.pow(n,1.0/b)

  • How to Get Missing Dates for Each Support Ticket In My Query?

    Hello -
    I'm really baffled as to how to get missing dates for each support ticket in my query.  I did a search for this and found several CTE's however they only provide ways to find missing dates in a date table rather than missing dates for another column
    in a table.  Let me explain a bit further here -
    I have a query which has a list of support tickets for the month of January.  Each support ticket is supposed to be updated daily by a support rep, however that isn't happening so the business wants to know for each ticket which dates have NOT been
    updated.  So, for example, I might have support ticket 44BS which was updated on 2014-01-01, 2014-01-05, 2014-01-07.  Each time the ticket is updated a new row is inserted into the table.  I need a query which will return the missing dates per
    each support ticket.
    I should also add that I DO NOT have any sort of admin nor write permissions to the database...none at all.  My team has tried and they won't give 'em.   So proposing a function or storable solution will not work.  I'm stuck with doing everything
    in a query.
    I'll try and provide some sample data as an example -
    CREATE TABLE #Tickets
    TicketNo VARCHAR(4)
    ,DateUpdated DATE
    INSERT INTO #Tickets VALUES ('44BS', '2014-01-01')
    INSERT INTO #Tickets VALUES ('44BS', '2014-01-05')
    INSERT INTO #Tickets VALUES ('44BS', '2014-01-07')
    INSERT INTO #Tickets VALUES ('32VT', '2014-01-03')
    INSERT INTO #Tickets VALUES ('32VT', '2014-01-09')
    INSERT INTO #Tickets VALUES ('32VT', '2014-01-11')
    So for ticket 44BS, I need to return the missing dates between January 1st and January 5th, again between January 5th and January 7th.  A set-based solution would be best.
    I'm sure this is easier than i'm making it.  However, after playing around for a couple of hours my head hurts and I need sleep.  If anyone can help, you'd be a job-saver :)
    Thanks!!

    CREATE TABLE #Tickets (
    TicketNo VARCHAR(4)
    ,DateUpdated DATETIME
    GO
    INSERT INTO #Tickets
    VALUES (
    '44BS'
    ,'2014-01-01'
    INSERT INTO #Tickets
    VALUES (
    '44BS'
    ,'2014-01-05'
    INSERT INTO #Tickets
    VALUES (
    '44BS'
    ,'2014-01-07'
    INSERT INTO #Tickets
    VALUES (
    '32VT'
    ,'2014-01-03'
    INSERT INTO #Tickets
    VALUES (
    '32VT'
    ,'2014-01-09'
    INSERT INTO #Tickets
    VALUES (
    '32VT'
    ,'2014-01-11'
    GO
    GO
    SELECT *
    FROM #Tickets
    GO
    GO
    CREATE TABLE #tempDist (
    NRow INT
    ,TicketNo VARCHAR(4)
    ,MinDate DATETIME
    ,MaxDate DATETIME
    GO
    CREATE TABLE #tempUnUserdDate (
    TicketNo VARCHAR(4)
    ,MissDate DATETIME
    GO
    INSERT INTO #tempDist
    SELECT Row_Number() OVER (
    ORDER BY TicketNo
    ) AS NROw
    ,TicketNo
    ,Min(DateUpdated) AS MinDate
    ,MAx(DateUpdated) AS MaxDate
    FROM #Tickets
    GROUP BY TicketNo
    SELECT *
    FROM #tempDist
    GO
    -- Get the number of rows in the looping table
    DECLARE @RowCount INT
    SET @RowCount = (
    SELECT COUNT(TicketNo)
    FROM #tempDist
    -- Declare an iterator
    DECLARE @I INT
    -- Initialize the iterator
    SET @I = 1
    -- Loop through the rows of a table @myTable
    WHILE (@I <= @RowCount)
    BEGIN
    --  Declare variables to hold the data which we get after looping each record
    DECLARE @MyDate DATETIME
    DECLARE @TicketNo VARCHAR(50)
    ,@MinDate DATETIME
    ,@MaxDate DATETIME
    -- Get the data from table and set to variables
    SELECT @TicketNo = TicketNo
    ,@MinDate = MinDate
    ,@MaxDate = MaxDate
    FROM #tempDist
    WHERE NRow = @I
    SET @MyDate = @MinDate
    WHILE @MaxDate > @MyDate
    BEGIN
    IF NOT EXISTS (
    SELECT *
    FROM #Tickets
    WHERE TicketNo = @TicketNo
    AND DateUpdated = @MyDate
    BEGIN
    INSERT INTO #tempUnUserdDate
    VALUES (
    @TicketNo
    ,@MyDate
    END
    SET @MyDate = dateadd(d, 1, @MyDate)
    END
    SET @I = @I + 1
    END
    GO
    SELECT *
    FROM #tempUnUserdDate
    GO
    GO
    DROP TABLE #tickets
    GO
    DROP TABLE #tempDist
    GO
    DROP TABLE #tempUnUserdDate
    Thanks, 
    Shridhar J Joshi 
    <If the post was helpful mark as 'Helpful' and if the post answered your query, mark as 'Answered'>

  • How to get the date for the first monday of each month

    Dear Members,
    How to get the date for the first monday of each month.
    I have written the following code
    SELECT decode (to_char(trunc(sysdate+30 ,'MM'),'DAY'),'MONDAY ',trunc(sysdate+30 ,'MM'),NEXT_DAY(trunc(sysdate+30 ,'MM'), 'MON')) FROM DUAL
    But it look bith complex.
    Abhishek
    Edited by: 9999999 on Mar 8, 2013 4:30 AM

    Use IW format - it will make solution NLS independent. And all you need is truncate 7<sup>th</sup> day of each month using IW:
    select  sysdate current_date,
            trunc(trunc(sysdate,'mm') + 6,'iw') first_monday_the_month
      from  dual
    CURRENT_D FIRST_MON
    08-MAR-13 04-MAR-13
    SQL> Below is list of first monday of the month for this year:
    with t as(
              select  add_months(date '2013-1-1',level-1) dt
                from  dual
                connect by level <= 12
    select  dt first_of_the_month,
            trunc(dt + 6,'iw') first_monday_the_month
      from  t
    FIRST_OF_ FIRST_MON
    01-JAN-13 07-JAN-13
    01-FEB-13 04-FEB-13
    01-MAR-13 04-MAR-13
    01-APR-13 01-APR-13
    01-MAY-13 06-MAY-13
    01-JUN-13 03-JUN-13
    01-JUL-13 01-JUL-13
    01-AUG-13 05-AUG-13
    01-SEP-13 02-SEP-13
    01-OCT-13 07-OCT-13
    01-NOV-13 04-NOV-13
    FIRST_OF_ FIRST_MON
    01-DEC-13 02-DEC-13
    12 rows selected.
    SQL> SY.

  • Qry:How to get different price for each price list (variable area) in order

    1-How to get different price for each price list (variable area) in order for sale. for the opportunity to display and select multiple prices.
    2- I add a location store from a table in line item and I want to see this area in order,.
    I 'm created 2 field location(item line and order), 1 table location
    I tried this for exemple : select $ [userfieldlocation.OITW]

    Thanks Suda for your answer,
    the Formatted Search for prices is OK, but for the Item locations in warehouse this is not so simple,     
    I must have several (at least 2) locations for the item in the Warehouse and a track of this location and search possibilities.
    read carefully and imagine how (Management warehouse locations)
    I added a user table '@Location' who linked to a user field 'U_Location in Item master data --> lnventory data  line and an ather user field 'U_Location' in sales order
    I met the value of location in the table (list of locations for any warehouse), I select the location of each item while receiving merchandise in the user field of inventory data line (Item M data) and this value appears in the sales order 'U_Location' user field ( only the location value in the default warehouse for this Item)
    or
    create an user field 'location' in Good receipt PO to fill it while receiving merchandise that appears in the sales order to give possibility to find/select the location of the item at this order and in Item master data
    I think we will use all these tables
    @LOCATION
    PDN1
    OITM
    OITW
    OWHS
    RDR1
    Juste a another question : where you found this and What is: ' 38.1.0 '
    Is it in document (System information):Item=38 Pane=1 ??
    Thanks,
    Ouchen

  • How to get column names for a specific view in the scheme?

    how to get column names for a specific view in the scheme?
    TIA
    Don't have DD on the wall anymore....

    or this?
    SQL> select text from ALL_VIEWS
      2  where VIEW_NAME
      3  ='EMP_VIEW';
    TEXT
    SELECT empno,ename FROM EMP
    WHERE empno=10

  • How to get Alerts mail for adapter engine errors in SAP PI 7.0

    Hi Friends,
    I configured Alerts in PI 7.0. with the help of t-code u2018ALRTCATDEF and created a new alert catergory.
    In container tab i have mentioned all give below elements.
    SXMS_MSG_GUID, SXMS_RULE_NAME, SXMS_ERROR_CAT, SXMS_ERROR_CODE, SXMS_FROM_PARTY, SXMS_FROM_SERVICE, SXMS_FROM_NAMESPACE, SXMS_FROM_INTERFACE, SXMS_TO_PARTY, SXMS_TO_SERVICE, SXMS_TO_NAMESPACE,SXMS_TO_INTERFACE
    I am getting alerts when I manually test the alerts configurations by running the report u2018RSALERTTESTu2019.
    I am getting mail as :
    Alert ID: ##00009##
    Dear Administrator,
    This is with respect to XI Scenario. During processing of XML file from ECC or XYZ Server, Following error has been occured:
    Message ID:
    Interface:
    NOTE: To check the file name, go to SXMB_MONI and search for above message ID.
    Double click on that message ID and click on error in left hand tree.
    Please take appropriate action in co-ordination with respective functional and BASIS consultant.
    But When I am getting a error , I am not getting an alert mail. Right now iam doing in XI Development.
    I am not getting an Alert mail , when my message is in status of : System Error . Error catergory is : XI_J2EE_ADAPTER_JDBC.
    Kindly tell how to get alert mail for error catergory : XI_J2EE_ADAPTER_JDBC and in Adapter engine errors.
    How to get alert mail when my message is failed with any reason in Adapter engine.
    Waiting for quick replay. Please help me out.
    Regards,
    Ahmed.

    Hi thanks for quick reply.
    As per your given link : http://www.sdn.sap.com/irj/scn/weblogs?blog=/pub/wlg/14877. [original link is broken]
    I have done all these steps. But still little problem.
    as per link he is getting Error  description , error message id , alert rule..
    In my case I am not getting these information. when my messages failed. When I am doing manully testing the alert getting an mail as :
    Alert ID: ##00009##
    Dear Administrator,
    This is with respect to XI Scenario. During processing of XML file from ECC or XYZ Server, Following error has been occured:
    Message ID:
    Interface:
    NOTE: To check the file name, go to SXMB_MONI and search for above message ID.
    Double click on that message ID and click on error in left hand tree.
    Please take appropriate action in co-ordination with respective functional and BASIS consultant.
    Is it okay the body of mail??.
    I am not getting alert mail when my messages failed in adapter engine and Integration Engine.
    Ex my message is failed in AE:as below.
    My messages flow as : SAP --> XI --> DB.
    Messages is success (in ECC moni)> XI moni also success> XI Adapter engine getting error as (Status: System Error) and (Error Category : XI_J2EE_ADAPTER_JDBC).
    Regards,
    Ahmed.

  • How to get the ItemKey for a Workflow triggered by an event in Oracle Apps

    Hello,
    I have added a custom sub process to the seeded "OM Order Header" workflow. The process sends a notification. There are a few attributes in the body of the message tied to this notification, to which I am trying to assign values to using the syntax:
    SetItemAttrText (itemtype, itemkey, attrname, attrvalue).
    I have the internal names for the item type and attribute name, but don't know how to get the value for the item key. I understand the item key is supposed to be unique for each item type and is automatically generated by the workflow engine when the work flow fires. Is there a built-in function or some means to get this value?
    Regards,
    Smita

    Have you tried to query WF_ITEMS? -- http://etrm.oracle.com/pls/et1211d9/etrm_pnav.show_object?c_name=WF_ITEMS&c_owner=APPLSYS&c_type=TABLE
    bde_wf_item.sql - Runtime Data of a Single Workflow Item [ID 187071.1]
    Thanks,
    Hussein

Maybe you are looking for

  • Pb while importing a workarea with repository object navigator in 10g

    Hi, I've just created a new repository for designer 10g 10.1.2.0.2 and I try to import a dmp file from a workarea exported with the same version but on another machine. when I start the import it "freeze" at the step : . . Import de la table "XTSYS_E

  • Email ID in Contract form

    Hi, I am working in adding the new fields in standard Contract form (BBP_CONTRACT). In W_CONTRACTDETAILS window, there is a field call E-mail in text 'TE_CONTACT'. The value for this field is coming from  field &SF_CTR-RESP_EMPLOYEE-E_MAIL&. When I a

  • Itunes Wish List

    nm Message was edited by: jds3900

  • Appserver 7.0 crashes every time I logout console on Win2000

    Hi all, I use appserver on a few Win2000 Servers. Everything works fine except that appserver crashes every time I logout Windows console on any server. I receive the message in the Event Viewer: Server: SunAppServer7.0-domain1_server1 CORE0125: The

  • Prelude vs DAM vs Cloud Services

    lately I've been noticing a lot of cloud video production services emerging... http://aframe.com/ http://www.axlevideo.com/ http://www.shotgunsoftware.com/ seems to me that Adobe is in the perfect position to provide this same type of service via Pre