Event Trace not showing anything?How to config?

Hi Experts,
We have two development clients 450, 460 .. usally develop in 450 and test the functionality in 460.
Now most of the workflows are not displayed in Tcode 'SWEL'. I checked the event trace but it is swithced "ON".
Regards,
Roops

Hi Roops,
Try clearing the Buffer..:-)
Then use, SWE4/SWELS - EVENT TRACE ON/OFF
Then check the Event Trace: SWEL - DISPLAY EVENT TRACE
If these all do not work then check, how are the WF Triggering and is there Triggering Event Binded Correctly to the WF. Is the Event Linkage Active there..?
Check these links:-)
http://****************/Tutorials/Workflow/Workflow.htm
https://www.sdn.sap.com/irj/scn/wiki?path=/display/abap/workflow%252bscenario
/people/sapna.modi/blog/2007/02/19/workflows-for-dummies--introductionpart-i
http://help.sap.com/saphelp_nw04/helpdata/en/9b/572614f6ca11d1952e0000e82dec10/frameset.htm
Regards,
Kanika:-)

Similar Messages

  • HT1766 # is not working in my iphone 4s, when i want to see how much credit i have in iphone, i need to put # on that, than it calls and end, it is not working and not showing anything..

    # is not working in my iphone 4s, when i want to see how much credit i have in iphone, i need to put # on that, than it calls and end, it is not working and not showing anything..

    http://support.apple.com/kb/HT1848  Did you transfer your purchased item, take a look at the link

  • I purchased Elements v 13 and need to reload it.  Adobe (my account) does not show anything.  How and where do I go to download program?  Thanks

    Where do I go to download Elements v 13 that I purchased?   Adobe (my Account)  does not show anything.
    Thanks

    PSE 10, 11, 12,13 - http://helpx.adobe.com/photoshop-elements/kb/photoshop-elements-10-11-downloads.html
    PE 10, 11, 12,13 - http://helpx.adobe.com/premiere-elements/kb/premiere-elements-10-11-downloads.html
    Make sure you register the software with Adobe.  If you did not purchase it thru Adobe they will not have a record of the purchase in your account.

  • CRviewer do not show anything when click button to show report with VS2013

    First of all I must say, My English language skill is not good but I'll try to communicate as best as possible.
    I am using Visual Studio 2013Ultimate with Update4  on .NetFramework 4.5.1  and Crystal Reports SP13.0.13.1597
    When installed complete. ( Previously i have tried it with my project but CR & CRviewer not working)
    I have tried using CRviewer in a new asp.net page  The following code
    ***-----WebFrom1.aspx-----***
    <body>
        <form id="form1" runat="server">
        <div>
        <asp:RadioButton ID="rdoByAll" runat="server" Text="all" GroupName="rdoChoose" AutoPostBack="True" />
            FromDate :
            <asp:TextBox ID="txtDateFrom1" runat="server" AutoPostBack="True"></asp:TextBox> 
            ToDate :
            <asp:TextBox ID="txtDateTo1" runat="server" AutoPostBack="True"></asp:TextBox>
            <asp:Button ID="btnCallReport1" runat="server" Text="CallReport" />
            <br />
            <br />
            <asp:RadioButton ID="rdoByName" runat="server" Text="ByName" GroupName="rdoChoose" AutoPostBack="True" />
            FromDate :       
            <asp:TextBox ID="txtDateFrom2" runat="server" Height="16px" Width="150px" AutoPostBack="True"></asp:TextBox>
            ToDate :
            <asp:TextBox ID="txtDateTo2" runat="server" Height="16px" Width="150px" AutoPostBack="True"></asp:TextBox>
      <asp:Button ID="btnCallReport2" runat="server" Text="CallReport" />
            <asp:DropDownList ID="ddlNamelist" runat="server" AutoPostBack="True">
            </asp:DropDownList>
            <br />
            <br />
            <CR:CrystalReportViewer ID="CrystalReportViewer1" runat="server" AutoDataBind="True" ToolPanelView="None" />
            <br />
        </div>
        </form>
    </body>
    ***-----WebFrom1.aspx.vb-----***
    Imports CrystalDecisions.CrystalReports.Engine
    Imports CrystalDecisions.Shared
    Imports CrystalDecisions.Web
    Public Class WebForm1
        Inherits System.Web.UI.Page
        Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load
        End Sub
    Protected Sub rdoByAll_CheckedChanged(sender As Object, e As EventArgs) Handles rdoByAll.CheckedChanged
            If rdoByAll.Checked = True Then
                txtDateFrom1.Enabled = True
                txtDateTo1.Enabled = True
                btnCallReport1.Enabled = True
                txtDateFrom2.Enabled = False
                txtDateTo2.Enabled = False
                btnCallReport2.Enabled = False
                ddlNamelist.Enabled = False
            Else
                txtDateFrom1.Enabled = False
                txtDateTo1.Enabled = False
                btnCallReport1.Enabled = False
                txtDateFrom2.Enabled = True
                txtDateTo2.Enabled = True
                btnCallReport2.Enabled = True
                ddlNamelist.Enabled = True
            End If
        End Sub
        Protected Sub rdoByName_CheckedChanged(sender As Object, e As EventArgs) Handles rdoByName.CheckedChanged
            rdoByAll_CheckedChanged(sender, e)
        End Sub
        Protected Sub btnCallReport1_Click(sender As Object, e As EventArgs) Handles btnCallReport1.Click
            Dim rpt As New ReportDocument()
            rpt.Load(Server.MapPath("CrystalReport1.rpt"))
            Me.CrystalReportViewer1.ReportSource = rpt
            Me.CrystalReportViewer1.RefreshReport()
        End Sub
    End Class
    When i press F5 to run project make Code of radiobutton not work(Disable,Enable OtherControl such as textbox)
    And when i try press CallReportButton CRviewer do not show anything.
    When I brought CRviewer leaving the page ,Code of Radiobutton were working fine.
    But can't to show "CrystalReport1.rpt" on CRviewer when i click CallReportButton. i'm not understand.
    Then i have tried to learn from follow this link : CR not working in visual studio 2013
    and Using Crystal Report in ASP.Net website, Report not showing in CrystalReportViewer
    i have to create a new CR ASP NET project and copy the whole C:\inetpub\wwwroot\aspnet_client folder
    into my app folder and then add this to your web.config file, line in bold:  <add key="vs:EnableBrowserLink" value="false"/>
    project is working but not fine  when I try to click button to call report  I get this pop-up .   " popup.JPG"   what is it?
    And project warning!  could not find schema information every element . "Could not find every Element.JPG"
    After that, copy the whole C:\inetpub\wwwroot\aspnet_client folder into my app folder Only!  not add in my web.config
    (In previous project need to use CR)  make to project were working  but i get same pop-up when i click to show report.
    **** buleline in popup.JPG picture  is "The report you requested requires further information"

    I think you're over-complicating things. I'd like you to have a look at a few sample apps, see how they work, then adjust your app. Samples are here:
    Crystal Reports for .NET SDK Samples - Business Intelligence (BusinessObjects) - SCN Wiki
    Also, have a look  at Crystal Reports for Visual Studio 2005 Walkthro... | SCN (- applies to all versions of CR and .NET).
    Finally, the Developer Help files are here:
    SAP Crystal Reports .NET SDK Developer Guide
    SAP Crystal Reports .NET API Guide
    - Ludek
    Senior Support Engineer AGS Product Support, Global Support Center Canada
    Follow me on Twitter

  • Photo events do not show correctly in my iPhone

    Photo events do not show correctly in my iPhone. I have 21 events in my iPhoto but they appear in many different groups in my iPhone.

    Mine too. Anyone have a clue how to fix this?

  • I came home and i came home and my iphone is now frozzen on the applmy iphone is now frozzen on the apple screen and it hasnt been doing anything i put it in the charger and its not doing anything how do i get it to work so i can  text and call and stuff

    i came home and my iphone is now frozzen on the apple screen and it hasnt been doing anything i put it in the charger and its not doing anything how do i get it to work so i can  text and call and stuff

    I got to that page but clicking on the Subscribe Free had no effect.
    Nothing showed in the Podcasts nor the iTunes U.
    In fact I also subscribed to Stanford's lectures and despite actually managing to DL them there is still no subscription in iTunes U, just the Intro to Computer Science belatedly.
    Peter
    I'd like to attach the screen grab of the out of order and randomly DLed selection of Harvard's course, but the forum won't let me attach it even though it is only 456k. Correction, close post and retry and now it lets me. NB how intermittent the DLs are and in no particular order.

  • I imported photos but the event does not show

    I imported photos today, it shows up under "Last Import" but the event does not show under "Events", how do I fix this?

    What version of iPhoto are you running? Also is your profile correct?
    In the Events mode set the View ➙ Sort option to By Date ➙ Descending so that the newer events are at the top of the window.
    OT

  • IPhone black screen does not show anything, but I can hear that the device works. I hear the lock open the screen and hear the iPod but the screen remains black

    IPhone black screen does not show anything, but I can hear that the device works. I hear the lock open the screen and hear the iPod but the screen remains black!!

    It's happened to me before as well. Try holding both lock(top right) and home buttons simultaneously until u see a slight flash of wight then just reboot it normally. If that doesn't work try restoring your device from itunes

  • My Iphone calendar events are not showing up in iCal when I sync? Syncing has not been an issue till today?

    My Iphone calendar events are not showing up in iCal when I sync? Syncing has not been an issue till today?

    I found this tip from a 2011 discussion on the same topic.
    Open iCal and backup or export your entries. Make a note of the fie name and location, you're going to need them in a minute. Once your backup/export is completed, close the iCal application.
    Open Finder and remove everything inside the "Username/Library/Calendars" folder. For instance, if your username is "Joe", then move everything inside the "Joe/Library/Calendars" folder.
    Open the iSync application. It's located in the "/Applications/" folder. Once iSync is opened, go into the iSync Preferences (iSync -> Preferences) and push/click the "Reset Sync History" button. Then, close the iSync application.
    Re-Open the iCal application and Import (File -> Import) a new calendar. When prompted, use your notes from Step #1 to select the file your created earlier. Once completed, close the iCal application (you should have all of your calendar entries back.)
    Open the iTunes application and connect your Apple iPhone to the computer.
    Within the Advanced section of the Info tab for the Apple iPhone, check the box the overwrites/replaces the Calendar data on the Apple iPhone.
    Click the Apple/Sync button. New, modified and deleted entries should now be syncing correctly.
    That's it! You should be all set and iTunes, iCal and our Apple iPhone should all be playing nicely as friends again. We've used the exact method to repair our own Apple iPhone at least once... maybe even twice.

  • I have my iphone activated and working since 3days, i purchased it from ebay with 1year warranty, when i check the serial number from Apple store at Bangalore Forum mall, they say that it does not show anything and 'OUT OF WARRANTY'.

    I have my iphone4 activated and working since 3days, i purchased it from ebay with 1year warranty, when i check the serial number from Apple store at Bangalore Forum mall, they say that it does not show anything and 'OUT OF WARRANTY'.
    Now i have a problem in it, all icons just shake and system hangs, needs restarting.

    You need to go back to the person you bought it from. Sounds like they may have sold you phone that is not as described.
    Did you check the warranty status before purchasing it?

  • Does anybody know why my ipod touch 3rd generations screen does not show anything? The screen is all black, when I try to synchronise my ipod to my library it comes up with a message saying "iTunes could not back up the ipod because a session could not be

    Does anybody know why my ipod touch 3rd generations screen does not show anything? The screen is all black constantly. When I try to synchronise my ipod with my iTunes library it comes up with a message saying " iTunes could not back up the ipod because a session could not be started with the ipod. Please help and reply if you know an answer!!!

    Try this previous discusssion:
    https://discussions.apple.com/message/12518406#12518406

  • Report in pdf...not showing anything

    hii all
    i have created report with parameters..... when report is called, its preview opens properly (parameter form is removed, so directly report opens) and shows everything....but when from preview window, File->generate to file->PDF is done.....it does not show anything.......
    any idea why this happens....?

    yes report is proper even if parameter form is not shown.....but PDF blank....
    and if i keep parameter form.. it displays report properly and when i generate PDF it asks for parameter and that time it displays pdf properly....
    but i dont want parameter form...thats why i removed it..and so it is not asking for parameter when generating PDF...and i think that why it is not PDF blank....
    so any solution to this?

  • Yosemite Calendar - All day events are not showing

    I have been using  Apple Calendar for quite some time but after I upgraded to Yosemite All day events does not show in the calendar any more. Other events in my calendar is showing.
    Environment:
    1: I'm on Macbook Pro Retina, running Yosemite 10.10.1
    2: Calendar is version 8.0 (2026)
    3: I am using Google Calendar, added as account to Calendar
    Problem/Bug:
    This has been working fine on Maverick until this upgrade and I think it is a bug in Calendar.
    1. I tried to add an all day event from Calendar, using my Google account calendar
    2. Event is saved, but once saved it isn't shown in Calendar.
    3. When I login to my Google account calendar, the event I created just created is shown nicely there!
    I then tried adding a new calendar using my iCloud account, but same thing happened:
    1. I tried to add an all day event from Calendar, using my iCloud account calendar
    2. Event is saved, but once saved it isn't shown in Calendar
    3. I once again try, this time by logging into my iCloud account, the event I created just created is shown!
    This is really weird and a major issue as all-day events are kind of important to see when you are planning and scheduling meetings.
    One additional thing, I'm not sure if it is related, I have Time zone support turned on as I am working across multiple time zones.
    Anyone else that have encountered this?
    Thanks in advance.
    // Per

    I  have the same proble. In all views all day events don't show up. If I search for the event, there is a result but it does not appear in the calendar.

  • Why did the trace NOT show the other switches in between?

    I have a PC that is connected to a switch (A) in a network. Switch A has many switches in between and connects to another switch B. When I did a trace to the server, the last switch I see in the result is switch B. Also, when I checked to which port of switch B that the server was connected, It showed as Po1. When I did a show cdp neighbor for the interfaces for the interfaces involved inthe bundle, I get a switch and then another. Why did the trace NOT show the other switches in between? Why did I get an arp on Switch B? Could some one explain?

    It's hard to tell, but if you have L2 switches, the addresses on those L2 switches are for management purposes only and you won't see a response from a trace. The only time you'll see a response is when the packet is routed between devices and not switched. You'll get an arp request/response across a single vlan. If you have vlan 10 across 10 switches, all 10 switches will see an arp request because they're broadcasted throughout the whole vlan.
    HTH,
    John
    *** Please rate all useful posts ***

  • HT5312 I need help it's not showing me how send the security password to my email

    I've been trying to buy this game and it says it's my first time purchasing this item on this phone and I forgot the security password and it's not showing me how to send it to my weak I need help please and thank you.

    You need to ask Apple to reset your security questions; ways of contacting them include phoning AppleCare and asking for the Account Security team, clicking here and picking a method for your country, and filling out and submitting this form.
    They wouldn't be security questions if they could be bypassed without Apple verifying your identity.
    (104015)

Maybe you are looking for

  • Advance level drawing problem with Jframe and JPanel need optimize sol?

    Dear Experts, I m trying to create a GUI for puzzle game following some kind of "game GUI template", but i have problems in that,so i tried to implement that in various ways after looking on internet and discussions about drawing gui in swing, but i

  • Issue during PI Sheet creation

    Daar Gurus In the recipe I have created phase with control Key PI03 and PI04* The process order gets created, but when they attempt to run the PI sheet, it starts creating production phases other than PI03 and PI04 but instead something like 0001 and

  • Exchange rate different between PGR and reverse GR

    Hi, We do PGR(vl32n) and reverse GR(vl09) in the same day for our import po, but system picked different exchange rate which caused PPV exchange rate . (We do not tick the fix rate in PO) As per my knowledge,the GR&GR reverse exchange rate are contro

  • Illustrator CC crash aléatoirement ?

    Bonjour, Illstrator CC crash aléatoirement, 2 fois aujourd'hui. Je n'étais en train de faire aucune opération spéciale. Voici les logs d'erreur si ça peut aider : Nom de l'application défaillante Illustrator.exe, version : 17.0.0.260, horodatage : 0x

  • Images not showing (dreamweaver)

    Hi, I don't know if this question is in the right location as I am new to this. But in dreamweaver CS6 the images show up fine in design and live view. But once it is published the images don't show. All of the images are in the root folder in the ri