[URGENT] APEX - ISSUE TRACKER QUESTION

I am new in using APEX and I would like to use this application in a project.
Have some questions:
1. Can we attach files into issues.
2. Can a leader and member be assigned more than a project
If it can be modified by inputting programming, may you plx give me also some samples or guidelines?
Thanks a lot!!
Edited by: 817748 on 2010/12/2 下午 10:53
Edited by: 817748 on 2010/12/3 上午 2:08

The packaged applications have been removed because they are no longer supported by Oracle.
However you can still find the old ones on the Chinese website ;-)
http://translate.google.com/translate?js=n&prev=_t&hl=en&ie=UTF-8&layout=2&eotf=1&sl=auto&tl=en&u=http%3A%2F%2Fwww.oracle.com%2Ftechnetwork%2Fcn%2Fdeveloper-tools%2Fapex%2Fpackaged-apps-087541-zhs.html

Similar Messages

  • Edit the hyperlink in the alert email (Modify my alert settings, View Issue Tracking)

    is it possible to add the external hyperlink in these emails instead of the internal hyperlink? 
    in example when I get a list tracking email there are hyperlink that get sent out with these tags Modify my alert settings | View Issue Tracking | mobile view  that use the internal url //servername how can I change it to use the external
    address //internetname

    Hi Joe, check out the following links for solutions:
    http://sharepoint.stackexchange.com/questions/13216/how-to-create-custom-email-alert-template-in-sharepoint-2010
    https://social.technet.microsoft.com/forums/sharepoint/en-US/e5ebc5a7-8295-49e4-a817-c31066e1ac3d/customize-the-sharepoint-2010-email-alert
    http://www.alectang.com/blog/archive/2012/05/16/how-to-customise-sharepoint-alert-email-template.aspx
    cameron rautmann

  • 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, Bug Tracker, 0.9,Discussion Forum 0.91!

    Hi all!
    My question is very specific.
    I have Software Projects application in Russian edition.(I translate this application).
    I can put it for you.
    Do you have Issue Tracker application, Bug Tracker 0.9 application, Discussion Forum 0.91 application in Russian edition ?
    Thanks,
    Roman.

    Unfortunately the problem persists on OC4J904, so the alternative for you is to use OC4J902, you can setup a new container on a different port (other than used for 902) and register the provider using the direct URL of the OC4J902 container. This should solve the problem.

  • Missing Issue Tracking Folder

    I am trying to move a workspace from one computer to another.  I saved and sent the workspace.  When I opened up the workspace all folders were on the new computer except the Issue Tracking folder.  Can anyone help?
    Thanks!

    follow this method to move it.
    http://support.microsoft.com/kb/980518
    Please remember to mark your question as answered &Vote helpful,if this solves/helps your problem. ****************************************************************************************** Thanks -WS MCITP(SharePoint 2010, 2013) Blog: http://wscheema.com/blog

  • 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?

    Hi all,
    Does anyone knows where can i find an export of the Issue Tracker Application?
    Thanks,

    Hi,
    the issue tracker is here: http://www.oracle.com/technetwork/developer-tools/apex/application-express/packaged-apps-090453.html#IS_TKR
    or directly the download: http://www.oracle.com/technetwork/testcontent/issue-tracker-1-130514.zip
    Herald ten Dam
    http:/htendam.wordpress.com

  • How to add data in related issue field in issue tracking list sharepoint 2013

    Hi,
    I'm using out of box Issue Tracking List. In Related Issue I want to add some data like :- Business, Technical, HR, Contractor etc in right side so user can select one of them add it. Not sure how to add these data in Related Issue column. Please advice.

    Related Issues is a lookup column to the same list which is Issue Tracking List. so you can add new items where title is Business, Technical, HR, Contractor etc then you will get those under related issues.
    My Blog- http://www.sharepoint-journey.com|
    If a post answers your question, please click Mark As Answer on that post and Vote as Helpful

  • Document for configuring Early watch alerts And issue tracking system

    Hello Experts,
    Iam on SAP Solution Manager 4.0 and need step wise step procedure document for configuring Early watch alerts and Issue tracking system in solman 4.0 . I hv checked Help site and other standard config docs by SAP but getting confused and things are not working ,so help shall be appreciated.
    My Email id is [email protected] .
    Requested to revert at earliest as iam in urgent need of it .Points guaranteed.
    Thanks and Regards,
    Somya

    Hi Somya,
    setting up EWA is explained in Application help of SAP Solution Manager.
    It would be helpful to know, what you have already done and what is causing problems for you.
    Prerequisite to process EWA is to configure all steps described in the Basic Settings of SAP Solution Manager Configuration guide (tx SPRO).
    The configuration of Issue Tracking is also described in the IMG (Basically, it's required to activate a BC Set).
    Path in IMG: Basic Settings -> Standard Configuration of Basic Settings -> Solution Manager -> Basic BC-Sets for Configuration -> Activate Issue Tracking BC Set
    Access the configuration guide:
    - run transaction SPRO
    - choose SAP Reference IMG
    - expand tree SAP Solution Manager -> Configuration -> Basic Settings
    - follow the steps under
    "Wizard-based Initial Configuration of Basic Settings", if your SolMan system has not been yet configured or
    "Standard Configuration of Basic Settings", if you have done already some configuration.
    Best regards,
    Ruediger Stoecker

  • What is Road map Analysis, Issue tracking,, Monitoring, Reporting?

    Hi
    Friends
    what is Road map Analysis, Issue tracking,, Monitoring, Reporting?
    can any one clear my doubts in detail full points will be given

    Dear Venkat,
    Your questions are very high level questions.
    Roadmap Analysis: This term is generally used in SAP Implementation where we compare the project status with the SAP roadmap. Generally in ASAP Roadmap, we have SAP specified standard deliverables, and there can be custom deliverables as per the client's requirements. If we need to do an analysis of custom deliverables viz standard deliverables or standard roadmap viz custom roadmap, we call it as roadmap analysis.
    Issue Tracking: Very broad level term - can be in Implementation as well as support projects. Issues are either support problems or implementation problems which are documented and recorded for solutioning and approval. These are generally steering committee terms used in a project.
    Monitoring: Again a broad level term. Any watch process can be termed as monitoring. Eg: Monitoring of Backup; Monitoring of System health check etc.
    Reporting: Again a broad level term. It is the same as defined in the english dictionary. Nothing related to any process in SAP with technical solution in mind.
    Regards,
    Anirban

  • What is the relationship between Change management and Issue tracking?

    What is in general change management and what is issue tracking in a SAP point of view?

    Hi
    See this thread
    Re: SAP APO
    Additional inputs :
    APO refers Advanced planned and optimizer
    APO is similar to BW in the sense it is also a OLAP processor intended for reporting needs
    Supply chain management
    http://help.sap.com/saphelp_nw2004s/helpdata/en/25/79eb3cad744026e10000000a11405a/frameset.htm

  • How to send e-mail from issue tracker if i have more than 1 task?

     I have a problem with issues tracker and in my form i have 4
    Assigned to Fields. 
    I want these fields notifications to be acknowledge by a different person and that is submitted to these person.
    How can i make this happen?

    Hi,
    To send email per list fields or someone specific, you could associate a workflow to this list, and add Send an Email action in the workflow.
    If this is not what you really mean, please provide more explanation about your requirement? I’m not quite sure about:
    “I want these fields notifications to be acknowledge by a different person and that is submitted to these person.”
    Best Regards,
    Dean Wang
    TechNet Community Support
    Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact
    [email protected]

  • 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.

  • 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

  • A very urgent deployment issue about DBAdapter

    Hello All,
    I have a very urgent deployment issue about DBAdapter.
    That DBAdapter is connect to DB2 AS400 Database. I have a developing database (jdbc:as400://server01/TEST) and a production database (jdbc:as400://server01/PROD).
    During developing, I used DBAdapter wizard to create it, and import some tables, and set the Adapter to use jabc/DB2DS as connection information for easily deployment later.
    Then I deploy to Production. I configured Data-source.xml and oc4j-ra.xml rightly; I set DB connection point to production database. But the DBAdapter still write into developing Database.
    I checked the DBAdapter, the imported tables are something like this, TEST.table1, TEST.table2. And there are a lot "TEST" located in DB2Writer_toplink_mapping.xml, DB2Writer.xml, TEST.schema, DB2Writer.table1.ClassDescriptor.xml.
    This TEST is refrer to the TEST in connect String jdbc:as400://server01/TEST.
    I think this might be the reason cause the problem. As to production database, "TEST" should replaced by "PROD". If I changed it manually, I have to change every time when switch between TEST and PROD. And I also don't know if it is safe to do it? (I tried, and bring some toplink mapping problem)
    By the way, for Oracle Database, because we use 2 instances for testing and production with same schema name, and do not have this issue.
    Anyone could help and many thanks.
    Kerr
    Message was edited by:
    Kerr

    Hi Kerr,
    The idea is to set up all connections in the BPEL or ESB services with logical names, e.g. typically of the form eis/DB/MyFinancialSystem or eis/DB/MyLogisticsSystem. This way, you do not have to modify code when deploying it onto different environments that serve different purposes.
    When moving your services through their lifecyle, on every environment you deploy these to you will have the same logical connections configured on each instance, e.g. for DEV, QA, SIT, UAT and PROD. Only, in case of QA the actual physical connection is configured to point to the QA instance of the systems that your services interact with whereas in case of UAT it points to the UAT instance of the same system.
    Maybe your problem is caused by connecting as user "SomeUser" when running the DB Adapter wizard during development and actually selecting objects from a different schema than you used to connect with, e.g. "Test" in your case.
    Hth,
    Sjoerd

Maybe you are looking for

  • Ipad 2 is not that old, you wont let us have tethering?

    Is it really that hard to give us function to share internet or just tethering with usb? even iphone4 support personal hotspot, ipad 2 who share same cpu would able to do it fine but you want us to buy THE NEW IPAD that badly? i even use ipad2 about

  • Re-importing Configuration Objects

    experts! I have imported Configuration Objects from .tpz files in Integration Directory. Because of those objects where unable to activate, I did a reject change and all objects were gone. When I try re-import from the same .tpz file, it is not showi

  • CS5 won't open NEF files from D600, despite updating camera raw plug in.  How do I fix this?

    CS5 won't open NEF files from D600, despite updating camera raw plug in.  How do I fix this?

  • Emac issues....maybe minor

    ive got a Cd drive that doesnt respond. Ive tried the manual (paper-clip) eject and didn't work. And my Western Digital Pro-Book 250 is not booting. Ive tried everything and my mac real sluggish especialy ITunes. This might be a lot to injest. Im not

  • Database Query Failed

    I got this error message instead of weekly report. Anybody ever experienced this? How to fix it? The Warning message is: Report Query Failed query_id: mga_overview_incoming_mail_over_time data_source: CounterReportDataSource error: <type 'type'> ('co