Issue Tracker App Demo-Email Notification

In working through the app I've stumbled on page 74, the email notification trigger. After entering and pressing "finish", I receive:
The table operation was not successful for the following reason:
ERROR at line 26: PL/SQL: Statement ignored
The following is code entered for trigger (line 26 is indented):
if (inserting and
:new.assigned_to is not null)
or
(updating and
(:old.assigned_to is null or
:new.assigned_to != :old.assigned_to) and
:new.assigned_to is not null)
then
for c1 in
(select person_name, person_email
from ht_people
where person_id = :new.assigned_to)
loop
if c1.person_email is not null
then
for c2 in
(select project_name
from ht_projects
where projects_id = :new.related_project)
loop
htmldb_mail.send(
p_to => c1.person_email,
p_from => c1.person_email,
p_body =>
'You have been assigned a new issue. '||
'The details are below. '||chr(10)||
chr(10)||
' Project: '|| c2.project_name ||chr(10)||
' Summary: '||:new.issue_summary ||chr(10)||
' Status: '||:new.status ||chr(10)||
'Priority: '||nvl(:new.priority,'-'),
p_subj => 'New Issue Assignment');
end loop;
end if;
end loop;
end if;
I appreciate any assistance from the Forum.
Glenn Butler

Glenn,
Looks like a syntax error in a condition: a missing quote:  :p5_assigned_project = '%||'null%')
    should be
  :p5_assigned_project = '%'||'null%')You'll have to poke around to find where that condition exists (on a region, an item, etc.). Or you could search for it in the export file.
Scott

Similar Messages

  • Issue Tracker App Demo

    As I'm a newby to htmldb, I'm building the Issue Tracker app demo. Did anyone who has already built the demo have trouble with create/edit Person information on page 4? When I submit, I get the following error:
    Error ERR-1025 Error processing PLSQL expression. (:p5_person_role in ('CEO','Manager') and :p5_assigned_project = '%||'null%') or (:p5_person_role in ('Lead','Member') and :p5_assigned_project != '%'||'null%')
    OK
    ORA-06550: line 2, column 29: PLS-00103: Encountered the symbol "NULL" when expecting one of the following: . ( ) , * @ % & - + / at mod remainder rem and or || multiset
    Any assistance would greatly appreciated

    Glenn,
    Looks like a syntax error in a condition: a missing quote:  :p5_assigned_project = '%||'null%')
        should be
      :p5_assigned_project = '%'||'null%')You'll have to poke around to find where that condition exists (on a region, an item, etc.). Or you could search for it in the export file.
    Scott

  • Can't Export ALL Comments from Issues Tracking app in Sharepoint 2013

    I really like the flexability of the SharePoint 2013 Issues Tracking application. I am able to enter the initial issue, then update it regularly with "comments". Each comment is added as a seperate entry to the issue, date stamped, etc.
    The issue I am having is in exporting this to Excel. I know, I know, the purpose of SharePoint is that you DON'T turn everything into an Excel spreadsheet.  However, I have to send the issues to an external contact that does not have access to the SharePoint
    environment.  When I export to Excel, it only adds the LAST comment to the Comments column in the spreadsheet. I need all comments combined, and dropped into the correct cell.
    Is there a way to do this? I found another thread where it seemed everyone accepted the fact that this was not possible, but I thought I'd try one more time and see if there were any new ideas.
    I believe this is tied to the option of "Append Changes to Existing Text" that is available in the Edit Column settings for the Issues Tracking app. I see that you can turn this off, but then you lose the ability to date-stamp each entry. If there
    is no good solution, then I think the only alternative would be to turn this off, then just manually add a date to each time. 
    Word of caution!!  If you have a bunch of comments already appended, and THEN you decide to change the option from Append Yes to Append No, it will hide all previous comments. I did this and thought I'd lost them, but when I changed the option back
    to Append Changes, they were all still there.  I may need to manually cut-paste every single comment out, change to Append No, and then manually past the entire comment thread back in.  Will be very tedious for a large issues log.
    Thank you.
    Bill

    Update - The only solution I was able to change to "Append Changes to Existing Text", then do as I dreaded, which was to manually cut and past every comment out then back into the single field.  Definitely a good lessons-learned to set the
    value to "Append Changes to Existing Text" before starting.

  • LG G3 lollipop update - no app or email notifications while on WiFi

    After the lollipop update, while on my WiFi xfinity router, no apps or emails push notifications come through and does not update Facebook feed. I already did a factory reset on my LG G3 and reset my router to no effect. Please help

    Verizon Wireless Customer Support, @YosefT_VZW
    I do not see how "advance WiFi calling has an impact on the issue with account syncing. I, and many others having an issue where applications, those native to android and third party apps, and not syncing automatically in the background when the phone is connected to WiFi.
    As a result, we are not receiving notifications for many applications while our phone are connected to WiFi. This is an issue with devices that have been upgraded to Lollipop. In order to receive updates from applications, you either have to open the application and force it to sync OR disconnect from WiFi.
    I've seen this to be called the "WiFi syncing bug" that was at issue in lollipop prior to the release, but was not fixed.

  • Issue Tracker app - how to make one page public

    Hi all,
    We have installed and made a few tweaks to the Issue Tracker demo app, and are finding it very useful! We have just a handful of users that have logins for the application, and it is working well for them. We would like to make a modification to the app, so that the main "Issues" page (that lists out all of the issues, and you can search them) can be viewable by anyone in our company. Is there a way to do this? Basically, I'd prefer to be able to just send out the URL for this page, and make it so that anyone in our company can just go to that URL, and have Read-Only access to this page (without having to login), so they can search for issues, and see their status. I would also want to make it so that these folks cannot see the "Add a New Issue" button, and probably hide the breadcrumb at the top as well.
    I know that I could create a whole separate AppEx app, and basically just duplicate the layout of that one page, and make that application public. Is that the easiest route? I was assuming there would be a fairly simple way to take the existing app, and just tweak it so that this one page is public.
    Any advice?? Thanks!

    Quick update - that was easier than I thought! I simply made that one page Public under the Authentication. And I was able to make the "Add a New Issue" button only viewable by the Admins.
    One more question - is there a way to do a similar thing with the breadcrumb at the top? Currently, when I go to the public page, I see the "Home - Isses" breadcrumb at the top left. If I click on the link for Home, then it brings me to a login. However, it would be best if the public users didn't even see this breadcrumb. Is that possible?

  • Issue Tracker App - Error Message

    Hello, all,
    I'm trying to learn, basically by following the steps to produce the Issue Tracker application from the Tutorials section in Apex 3.1. The application was written for Apex 2.x and at one point wants me to put the following query into a report:
    DECLARE
    q VARCHAR2(32767); -- query
    w VARCHAR2(4000) ; -- where clause
    we VARCHAR2(1) := 'N'; -- identifies if where clause exists
    BEGIN
    q := 'SELECT "ISSUE_ID", '||
    ' "ISSUE_SUMMARY", '||
    ' "IDENTIFIED_BY", '||
    ' "RELATED_PROJECT", '||
    ' "ASSIGNED_TO", '||
    ' "STATUS", '||
    ' "PRIORITY", '||
    ' "TARGET_RESOLUTION_DATE", '||
    ' "ACTUAL_RESOLUTION_DATE" '||
    ' FROM "#OWNER#"."HT_ISSUES" ';
    IF :P6_IDENTIFIED_BY != '-1'
    THEN
    w := ' IDENTIFIED_BY = :P6_IDENTIFIED_BY ';
    we := 'Y';
    END IF;
    IF :P6_RELATED_PROJECT != '-1'
    THEN
    IF we = 'Y'
    THEN
    w := w || ' AND RELATED_PROJECT = :P6_RELATED_PROJECT ';
    ELSE
    w := ' RELATED_PROJECT = :P6_RELATED_PROJECT ';
    we := 'Y';
    END IF;
    END IF;
    IF :P6_ASSIGNED_TO != '-1'
    THEN
    IF we = 'Y'
    THEN
    w := w || ' AND ASSIGNED_TO = :P6_ASSIGNED_TO ';
    ELSE
    w := ' ASSIGNED_TO = :P6_ASSIGNED_TO ';
    we := 'Y';
    END IF;
    END IF;
    IF :P6_STATUS != '-1'
    THEN
    IF we = 'Y'
    THEN
    w := w || ' AND STATUS = :P6_STATUS ';
    ELSE
    w := ' STATUS = :P6_STATUS ';
    we := 'Y';
    END IF;
    END IF;
    IF :P6_PRIORITY != '-1'
    THEN
    IF we = 'Y'
    THEN
    w := w || ' AND PRIORITY = :P6_PRIORITY ';
    ELSE
    w := ' PRIORITY = :P6_PRIORITY ';
    we := 'Y';
    END IF;
    END IF;
    IF we = 'Y'
    THEN q := q || ' WHERE '|| w;
    END IF;
    RETURN q;
    END;
    When I do, I get the error "PLS-00372: In a procedure, RETURN statement cannot contain an expression." I googled the error and got the simple advice to turn the query into a function. Simple to many, yes, but not to me. Also, 3.1 does not allow the selection "SQL function returning a query" or some such, only an anonymous PL/SQL block.
    Any help (at a very elementary level, please), please?
    Thanks!

    Hello,
    the problem with your code is that it is designed as an PL/SQL body returning an SQL query not as an anonymous PL/SQL block.
    Which version of ApEx are you using? I have taken a look into version 3.1 and there is the possibility to select 'SQL Query (n PL/SQL body returning an SQL query)'.
    Regards, Tine.

  • Issue Tracker app closing the browser window on chart page

    Hi!
    I am walking through the Issue tracker tutorial. I have created page 10 (Issues Resolved by Month) which is the chart page. Everything looked fine until I try to run the page. Then it simply closed the browser window after it authenticates me. Anyone else see this? Any ideas?
    Thanks!

    Probably a problem with your SVG viewer installation. Does it happen on other chart pages as well? What browser/svg viewer version combination are you using? There are some known issues with what's labeled as the current svg viewer on Adobe's website and Firefox.
    Earl

  • Track GRN with Email Notification

    Dear All,
    We have different users who are doing MIGO and MIRO. Users who are doing MIRO need Email notification when GRN is done.
    This E mail need to be sent for GRN in respective plant and User name who has done to the respective user for MIRO.
    We cannot send E mail on check as some errors might be left. This has to be sent while GRN is posted.
    Please guide on the relevant Table/fields and  User Exit or BADI to trigger the event.
    Regards,
    Vikas

    Hi,
    There a standard SAP functionality to send mail to buyer , i.e.purchase group
    You have to configure output MLGR in Inventory management , in PO you will GR message tick on delivery tab
    May be you can map purchase groups in the user ids of MIRO user
    Explore further
    Thanks
    Diwakar

  • Issue with Service Request email Notification

    Hi All,
    Whenever we change the status of SR an email should be triggered. But it is not happening. Is there any setups we have to look for. When ever an event is raised there is no notification sent.
    Please let me know your comments at the earliest as it is an priority issue.
    Thanks,
    Mahesh

    Hi Mohammed,
    Thanks for the reply. I will explain the issue in detail. The issue is with the iSupport.
    User creates an SR in iSupport. Now the status will be in Open. Again user updates the SR by adding some notes by which the status of the SR will be changed to Updated by Customer. At this point we are getting an error notification. This error is as follows
    Event Error Name: WFENG_EVENT_NOTFOUND
    Event Error Message: 3142: Process 'SERVEREQ/100794754-1997529-EVT' has no activities waiting to receive event 'oracle.apps.cs.sr.ServiceRequest.statuschanged'.
    Event Error Stack:
    Wf_Engine.Event(SERVEREQ, 100794754-1997529-EVT, CSEVTPROC, oracle.apps.cs.sr.ServiceRequest.statuschanged)
    Wf_Rule.Default_Rule(oracle.apps.cs.sr.ServiceRequest.statuschanged, CEEC6B02CCB86CD4E0340003BA4D7D08)
    But If we update the same SR from service request form in customer support everything is working fine. \
    Please let me know your feedback
    Thanks,
    Mahesh

  • Text/Email notifications won't clear

    I was having issues with my text/email notifications not clearing on the dock and was told I had to do a factory reset. So i did that and I was still having the problem after i set my phone up again. I found that once I went into the Developer Options and chose the option "Do not keep Activities," so I unchecked that box and it fixed the problem once i got a new message or restarted the phone and haven't had that problem since.

    I don't have all the things that you list.
    I have:
    Actions
         Receive email notifications (or not)----which I chose & hope that that works.
         Bookmark this
    I have already checked 'no' to all emails, which is NOT what I want. If there are more comments to my questions, I would like to see them, but there is no option for that. I have 2349 emails, certainly not related to MY question.  (And I am NOT shouting... trying to make a point.
    How can I keep up with what is going on in the Apple Support Community if I say NO to all of the emails?
    And why can't we copy or cut & paste here????? If one copies or cuts it won't allow paste. It gives only options ot insert links & such???
    How do you people keep up with this community IF you don't get a gazillion emails?
    Thanks.

  • Email notifications begin sent in text format rather than html format

    Hi all,
    I have encountered a strange issue wherein i get email notifications in text format with all html code in the email(trying to open wf emails in netscape navigator)...but for all others the emails are begin sent in correct and decent HTML format......is there any prefernce that has to be set up in local mail client for me to receive email notifications in HTML format.
    Thanks in advance
    Aparna

    Open the message and see if there are contents in HTML body.
    If you need the message in HTML format, make sure the correct HTML tags are in place in HTML Body.
    If you do not need the message in HTML format, make sure the HTML Body is empty.

  • Email Notification Glitch || Motorola Droid 4; v.4.0.4 ICS || ongoing as of 17 January 2013

    For the past  past week or so my Droid 4 has been repeatedly and continually (non-stop!) providing "new" Email notifications when I have none whatsoever, or only one new mail. The notification I receive is that I have hundreds of new mails when either one or no new mails have delivered to my mail account (for reference, hundreds of notifications per hour). Not only that, but when I open the new mails I cannot access the contents of the mail I have received, and there are always at least three to five duplicates of each "new" mail, sometimes more.
    I have researched this issue via Google Search: Droid4, ICS and Android help communities and sites and now on this forum. I have attempted to troubleshoot to rectify the issue by disabling my Email notifications, powering down the device, powering-up again, then re-enabling my Email notifications, all to no avail. If I receive no resolution here @VerizonWireless Community, my next course of action will be to enter the same information and request for assistance w/Motorola.  
    In my research on this topic I did find the Motorola Droid 4; v.4.0.4 ICS rollout documentation, which was no help to me for this particular issue, but from which I did learn some neat things about that software version which I'd not previously known and which were helpful to me in other ways. That file is linked below as well as the attached .pdf file in hopes that it might be of help to others.
    I would most certainly appreciate any and all help and/or suggestions from anyone here at the Verizon Community.
    Thanks so much and kindest regards,
    ricemeli
    Droid 4 Update.pdf - Verizon Wireless Support
    support.verizonwireless.com/pdf/system_update/droid_4.pdf
    Cheers!

    I disabled my Email alerts and enabled gmail alerts because I couldn't stand it anymore... still hope someone here can help me, though because I very much dislike using the gmail platform on my Droid4.
    I'm uploading screenshots of examples of multiple instances showing of one actual new mail and of what I see when I open a new mail... which is nothing in the body of the mail.
    Multiple instances of some mails:
    Email body blank when opened:
    Thanks all! I appreciate any help or suggestions anyone may be able to provide.
    Kind regards,
    ricemeli

  • Asha 305 email notification and Facebook app issue...

    Sir
    In nokia asha 305
    email app is not get email notification automatically.
    Facebook app does not allow to upload photo,vedio.
    It does not allow to trun off chat, Change pasward,etc settings
    .mp4 vedio not supported.
    Moderator's note: We have amended the title of this post as this was moved from another thread.

    Bro! Every asha mobile user face this problems! Lets hope some changes in next update!

  • Why won't the iTunes app on the iPad and iPhone let me shut off new download email notifications?

    I have a few new season passes.  Each one came, of course, with email notifications of new episodes.  I'm able to turn those notifications off through the iTunes store interface on my laptop.  But when I try to shut them off on my iPhone or iPad, the app lets me get all the way to toggling the notification option to "off" and pressing "done" before saying that the iTunes store "cannot process [my] request at this time." 
    Here's what I've done to try and fix the issue so far:
    1. Logged out of, and back into, my account on the iTunes store;
    2. Turned my iOS devices off and back on again;
    3. Made sure my iOS and iTunes software was completely up to date; and
    4. Contacted Apple customer support.
    That last option produced the following advice from Apple's representatives:
    A. Log out of, and back into, your account on the iTunes store;
    B. Turn your iOS devices off and back on again;
    C. Update iTunes to the latest version;
    D. Update your iPad and iPhone to the latest iOS version;
    E. Use another app that does the same thing as iTunes;
    F. Uninstall and re-install the iTunes app; and
    G. Let us know if the problem persists.
    When I let Apple know that (1) my account functions just fine on the full iTunes program, (2) the software on my devices is completely up to date, (3) both iOS devices continued to suffer the same problem after multiple restarts, and (4) options E-F don't appear to be possible without jailbreaking, a representative referred me to Apple's webpages on generic iPad troubleshooting.  She also admonished me not to jailbreak my iPhone or iPad because they'd then be jailbroken---and that's bad.
    Has anyone else encountered this problem?  How did you fix it?  Apart from just using the full iTunes program, that is---I don't take my laptop on the road with me when I travel, which can be for weeks at a time, so I'd like to be able to shut these notifications off through the app interface if at all possible.
    Thanks very much for your help and suggestions!

    What does " the computer will still not sync to my ipad." mean?
    What have you tried?
    What was the result?
    Error message?
    What did it say?

  • ITunes not sending email notifications to iTunes and App Store gifts recipients

    I sent several iTunes and App Store gifts from my Apple ID... I set the date to be sent of Dec 25. The gift recipients have not received email notifications about their gifts. I went into my iTunes account and resent the gift, but the people I sent gifts to are still not getting emails from iTunes. However I got the iTunes email informing me my credit card had been charged.

    I'm having this issue as well. I was really hoping to surprise people on Christmas Day, really disappointed right now., doesn't look like anyone has got an email about the apps I gifted them.

Maybe you are looking for

  • Book Preview and Adjustments

    This issue has been somewhat covered in other threads (see for example <http://discussions.apple.com/thread.jspa?messageID=5397022>, <http://discussions.apple.com/thread.jspa?messageID=5807886> and <http://discussions.apple.com/thread.jspa?threadID=1

  • Error in VO extension

    Hi, I have a requirement to extend a VO, i need to add 3 columns in the Select list of the Seeded VO Query. when i try to extend the VO in JDev(10g) using VO wizards, i m getting the following error - "Each Row in the query result columns must be map

  • ROS supplier not transferring in EBP

    Dear SRM Experts, We are working in SRM5.0 with support pack SAPKIBK008. I have configured ROS and EBP on different client & have maintained following settng: 1. Activated all ROS services in both client. 2. Service user created in ROS with AP_EC_BBP

  • XML error at login

    I boot up and enter my login credentials.  Immediately after login, an error message appears that says "An unexpected error. Unable to parse the custom or default XML." I click OK and move on about my day.  Other than this, Yosemite and my Mac seem t

  • Apache Tomcat 4.0 and MySQL 3.2.3, how to connect?

    Hi, could anybody help me please? I have a problem in connecting between Apache Tomcat 4.0 and MySQL 3.2.3. How can I connect them? Do I need mm.mysql.Driver? I have download that one, but I don't know where I should put that .jar file? And before th