Show all payments

Select ENTITLEMENT_APPROVER.ENTITLEMENT_ID,
       (SELECT APPLICATION.EXTRA_FIELD_2 FROM APPLICATION APPLICATION WHERE APPLICATION.APPLICATION_NAME=ENTITLEMENT.APPLICATION_NAME) as APPLICATION_NAME,
       ENTITLEMENT.MODULE_NAME,
       ENTITLEMENT.SITE_NAME,
       ENTITLEMENT.ENTITLEMENT_NAME,
       ENTITLEMENT_APPROVER.APPROVER_LEVEL,
       ENTITLEMENT_APPROVER.APROVER_TYPE,
       ENTITLEMENT_APPROVER.APRROVER_DETAIL,
USR.USR_DISPLAY_NAME AS APRROVER_NAME
from   EC_ADMIN.ENTITLEMENT_APPROVER ENTITLEMENT_APPROVER, EC_ADMIN.ENTITLEMENT ENTITLEMENT, DEVT_OIM.USR USR
where  ENTITLEMENT_APPROVER.ENTITLEMENT_ID like NVL (:entitlementID, '%')
and    ENTITLEMENT_APPROVER.ENTITLEMENT_ID = ENTITLEMENT.ENTITLEMENT_ID
and    upper(ENTITLEMENT_APPROVER.APRROVER_DETAIL) like upper(NVL(:approverID, '%'))
and    upper(ENTITLEMENT.ENTITLEMENT_NAME) like upper(NVL(:entitlementName, '%'))
and      upper (ENTITLEMENT.APPLICATION_NAME) like upper (NVL(:applicationName,'%'))
 and      upper (ENTITLEMENT.SITE_NAME) like upper (NVL(:site,'%'))
   and      upper (ENTITLEMENT.MODULE_NAME) like upper (NVL(:module,'%'))
     and      upper (ENTITLEMENT.IT_PROCESSOR_GROUP) like upper (NVL(:itprocessor,'%'))
   and      upper (ENTITLEMENT.ENTITLEMENT_OWNER_GID) like upper (NVL(:owner,'%'))
AND USR.USR_LOGIN = ENTITLEMENT_APPROVER.APRROVER_DETAIL
Above is the application and I need to make small changes as

I need display all rights, regardless of the fact that there are approvers. Currently, it does not diplay records where there is no approver.

This is the structure of the table
desc ENTITLEMENT_APPROVER
Name                           Null                             Type                                                                                                                                                                                                                                                                                       
------------------------------ -------------------------------- ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ 
ENTITLEMENT_ID                                                  NUMBER                                                                                                                                                                                                                                                                           
APPROVER_LEVEL                                                  NUMBER                                                                                                                                                                                                                                                                                     
APROVER_TYPE                                                    VARCHAR2(200)                                                                                                                                                                                                                                                                              
APRROVER_DETAIL                                                 VARCHAR2(200)                                                                                                                                                                                                                                                                              
EXTRA_FIELD_1                                                   VARCHAR2(200)                                                                                                                                                                                                                                                                              
EXTRA_FIELD_2                                                   VARCHAR2(200)                                                                                                                                                                                                                                                                              
desc ENTITLEMENT
Name                           Null                             Type                                                                                                                                                                                                                                                                                       
------------------------------ -------------------------------- ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ 
ENTITLEMENT_ID                 NOT NULL                         NUMBER                                                                                                                                                                                      
APPLICATION_ID                 NOT NULL                         NUMBER                                                                                                                                                                                                                                                                                     
APPLICATION_NAME                                                VARCHAR2(200)                                                                                                                                                                                                                                                                              
ERP_ENTITLEMENT_ID                                              VARCHAR2(200)                                                                                                                                                                                                                                                                              
MODULE_ID                      NOT NULL                         NUMBER                                                                                                                                                                                                                                                                                     
MODULE_NAME                    NOT NULL                         VARCHAR2(200)                                                                                                                                                                                                                                                                              
SITE_ID                        NOT NULL                         NUMBER                                                                                                                                                                                                                                                                                     
SITE_NAME                      NOT NULL                         VARCHAR2(200)                                                                                                                                                                                                                                                                              
ENTITLEMENT_NAME               NOT NULL                         VARCHAR2(200)                                                                                                                                                                                                                                                                              
IS_ENTITLEMENT_REQUESTABLE                                      VARCHAR2(20)                                                                                                                                                                                                                                                                               
SERVICE_ACCOUNT_FLAG                                            VARCHAR2(20)                                                                                                                                                                                                                                                                               
DESCRIPTION                                                     VARCHAR2(200)                                                                                                                                                                                                                                                                              
TECHNICAL_DESCRIPTION                                           VARCHAR2(200)                                                                                                                                                                                                                                                                              
COMPLIANCE_SENSITIVITY                                          VARCHAR2(20)                                                                                                                                                                                                                                                                               
DATA_CLASSIFICATION                                             VARCHAR2(200)                                                                                                                                                                                                                                                                              
INISIDER_TRADING_LIST                                           VARCHAR2(20)                                                                                                                                                                                                                                                                               
IT_PROCESSOR_GROUP                                              VARCHAR2(200)                                                                                                                                                                                                                                                                              
IT_USE_ONLY                                                     VARCHAR2(20)                                                                                                                                                                                                                                                                               
PROVISIONING_FLAG                                               VARCHAR2(20)                                                                                                                                                                                                                                                                               
IT_SUPPORT_PERSON_GID                                           VARCHAR2(200)                                                                                                                                                                                                                                                                              
REVIEW_CYCLE                                                    NUMBER                                                                                                                                                                                                                                                                                     
LAST_REVIEWED_ON               NOT NULL                         DATE                                                                                                                                                                                                                                                                                       
LAST_REVIEWED_BY                                                VARCHAR2(200)                                                                                                                                                                                                                                                                              
ENTITLEMENT_OWNER_GID                                           VARCHAR2(200)                                                                                                                                                                                                                                                                              
LIST_OF_APPROVERS                                               VARCHAR2(200)                                                                                                                                                                                                                                                                              
PERIMETER_ACCESS                                                VARCHAR2(20)                                                                                                                                                                                                                                                                               
ROLE_ASSOCIATION                                                VARCHAR2(4000)                                                                                                                                                                                                                                                                             
AUTOMATIC_PROVISIONING                                          VARCHAR2(20)                                                                                                                                                                                                                                                                               
ON_DEMAND_ENTITLEMENT                                           VARCHAR2(200)                                                                                                                                                                                                                                                                              
ON_DEMAND_ENTITLEMENT_PERIOD                                    NUMBER                                                                                                                                                                                                                                                                                     
COMMENTS                                                        VARCHAR2(4000)                                                                                                                                                                                                                                                                             
LAST_UPDATED_BY                                                 VARCHAR2(200)                                                                                                                                                                                                                                                                              
LAST_UPDATED                   NOT NULL                         DATE                                                                                                                                                                                                                                                                                       
CREATED                        NOT NULL                         DATE                                                                                                                                                                                                                                                                                       
RATIONALE_FOR_ACCESS                                            VARCHAR2(20)                                                                                                                                                                                                                                                                               
EXTRA_FIELD_1                                                   VARCHAR2(200)                                                                                                                                                                                                                                                                              
EXTRA_FIELD_2                                                   VARCHAR2(200)                                                                                                                                                                                                                                                                              
LAST_REVIEWED_NAME                                              VARCHAR2(200) 

outer join?

select * from
EC_ADMIN.ENTITLEMENT ENTITLEMENT
left outer join
EC_ADMIN.ENTITLEMENT_APPROVER ENTITLEMENT_APPROVER
on ENTITLEMENT_APPROVER.ENTITLEMENT_ID = ENTITLEMENT.ENTITLEMENT_ID
and
upper(ENTITLEMENT_APPROVER.APRROVER_DETAIL) like upper(NVL(:approverID, '%'))
left outer join
DEVT_OIM.USR USR
on USR.USR_LOGIN = ENTITLEMENT_APPROVER.APRROVER_DETAIL
where
        upper (ENTITLEMENT.ENTITLEMENT_NAME) like upper(NVL(:entitlementName, '%'))
and     upper (ENTITLEMENT.APPLICATION_NAME) like upper (NVL(:applicationName,'%'))
and     upper (ENTITLEMENT.SITE_NAME) like upper (NVL(:site,'%'))
and     upper (ENTITLEMENT.MODULE_NAME) like upper (NVL(:module,'%'))
and     upper (ENTITLEMENT.IT_PROCESSOR_GROUP) like upper (NVL(:itprocessor,'%'))
and     upper (ENTITLEMENT.ENTITLEMENT_OWNER_GID) like upper (NVL(:owner,'%'))

Published by: chris227 on 27.06.2012 01:24
correction

Published by: chris227 on 27.06.2012 03:02
fix

Published by: chris227 on 29.06.2012 06:16
Sorry, last necessary correction but I am confused with copy & paste, I do not really often write statements without trying (lack of testdata):
and the top (ENTITLEMENT_APPROVER. APRROVER_DETAIL) as superior (NVL (: approverID, ' %'))))
must be in the first join condition.
In addition, all predicates on PAYMENT must follow the join predicates in a where clause clause.

Tags: Database

Similar Questions

  • How can I make the size of the show all windows bookmarks?

    When I click on show all bookmarks, that the window is full screen. I can't leave this page without stopping Firefox window.

    You may have a corrupted file xulstore.json .
    https://support.Mozilla.org/en-us/KB/changes-toolbars-and-window-sizes-are-not-saved

  • The search for bookmarks in the library "Show all bookmarks": output is missing an * important * thing...

    (1) open a library "show all bookmarks".
    (2) search for any article you know is there, but you don't know where he is among the Favorites.
    3) click on any element in the resulting list.
    (4) you will see a lot of information about the item (bookmark), you clicked on.

    What you want * NOT * see is this very important piece of information: the LOCATION IN THE LIBRARY OF THIS BOOKMARK.

    Where this bookmark is placed in the library? In what folder/subfolder?

    I invite the developers of FireFox to add this info. Please...

    Thank you!

    There is an add-on for this:

    https://addons.Mozilla.org/firefox/addon/show-parent-folder/

    After installation and activation of the extension, Parent folder must appear on the list of columns in the Library dialog box.

    If you want to see the full hierarchy the bookmark rather that just the name of the folder, you can set the page modules. Either:

    • CTRL + SHIFT + a
    • "3-bar" menu button (or tools) > Add-ons

    In the left column, click Extensions. Find show Parent folder on the right, then click on the Options button.

    Note: The extension was created more than 7 years ago and he's still not a built-in feature, so please don't hold your breath!

  • Since worm 36 and perhaps earlier, I have bookmarks under the stars, but not when I ask to show all bookmarks

    by clicking on the bookmarks on the home page gives me my favorites
    I have bookmarks under recently and unsorted bookmarks. I can move from these categories to the master list without problem.
    When I click on show all bookmarks that I get none. He goes to this screen but shows no Favorites.
    I would use these bookmarks on another computer, but also change in show all.

    second problem, my norton toolbar does not load and has not since worm 36

    When you click View all bookmarks to launch the dialog box library, normally, you see three categories listed on the right side. If you double-click in any of the categories, you will find actual bookmark listed there or empty each category?

    To transfer bookmarks in Firefox on another computer, there are two different file formats. I suggest to create two in case one does not work:

    Symantec is usually very quick with updates to date, but it might be a little early for 40 of Firefox (beta version). There is a release supporting 39 Firefox: https://community.norton.com/en/blogs.../firefox-39-support-norton-toolbar. Users report that you sometimes have to run LiveUpdate several times to get the last toolbar into Firefox.

    If you had accidentally on the way to the beta and prefer to have the support of Norton toolbar in good time, you can install the retail version (39 Firefox) and it should work seamlessly with your existing settings.

    It wouldn't hurt to do a backup first. You can find suggestions in this article: back up and restore the information contained in the profiles of Firefox.

    Then do the restore:

    Clean reinstall it

    We use this name, but it isn't about deleting your settings, this is to ensure that the program, files are clean (not incompatible, corrupt or exotic code files). As described below, this process does not disrupt your existing settings. Don't uninstall NOT Firefox, that does not need.

    (1) download a fresh Installer for Firefox 39.0 of https://www.mozilla.org/firefox/all/ in an ideal location. (Scroll down your preferred language).

    (2) close Firefox (if applicable).

    (3) to rename the program folder, either:

    (Windows 64-bit folder names)

    C:\Program Files (x86)\Mozilla Firefox
    

    TO

    C:\Program Files (x86)\OldFirefox
    

    (Windows 32-bit folder names)

    C:\Program Files\Mozilla Firefox
    

    TO

    C:\Program Files\OldFirefox
    

    (4) run the installer you downloaded in the #1. It should automatically connect to your existing settings.

    You can get to the Options page?

    Note: Some plugins can only exist in this OldFirefox file. If it is missing something essential, present in these files:

    • \OldFirefox\Plugins
    • \OldFirefox\browser\plugins
  • Why my favorites appear actually when I click on the bookmark icon, but not when I click on "show all bookmarks"?

    Something went this afternoon and when I started Firefox all my favorites have disappeared. I reinstalled Firefox and recovered my favorites. My bar on the top of the browser's back, and when I click on the bookmark icon, it shows all my favorites. However, if I click on show all bookmarks (ctrl-shift-B), none of my favorites appear. I have attached a screenshot to show what I see, but it seems that there is a corruption somewhere.

    It is possible that they are all in a folder or hidden?

    I hope that these help solve, please if you make changes to make a backup of the profile as well: back up and restore the information contained in the profiles of Firefox

  • Bookmarks do NOT open in a browser window click on the "show all bookmarks".

    Currently using Firefox 30.0.3 Mac OS 10.9.5. When I tried to modify my collection of bookmarks buy opening the "show all bookmarks" in the drop down menu, nothing happened. Usually, this opens a new tab or window with bookmarks is displayed. Then I searched HELP and tried all the solutions without success. Where the topic of aide said even a Bookmarks window will open, this isn't. I have no way to edit or delete massively outdated bookmarks. Yes, I can do so individually through the bookmark button in the toolbar - what a pain in the ___s.

    Is - this problem is intentional or a glitch?

    Good to hear. Several users have reported problems with
    multiple monitors.

    Please report your last post as solved if others
    will know.

  • Double click on the Bookmarks button to open the library window directly ("Show all bookmarks" feature)

    I have a number of folders in the bookmarks, and I frequently change it by clicking on "Show all bookmarks" and by opening a library.
    Earlier, after you click the Bookmarks button, "show all bookmarks" appeared on the top of the list, and now he's down.
    Please, add a double-tap on the Bookmarks button function so that it opens the window of the library directly.

    You can ask for a bug to get this feature if nobody has already done it. But change will have been carefully studied, and it is unlikely to be reversed.

    What you could also do, is add a comment with your feedback

    If you want to return to a mote of style like Firefox 28 or e = earlier consider using addons

    Note We are other users Firefox NO developers and decision makers. Decisions relating to the development and discussion of politics or or feature requests are irrelevant.

  • Unable to find the "Show all bookmarks" button on Firefox 29

    I can no longer locate the "Show all bookmarks" button in the menu bookmarks Firefox 29. I tried to search in the bookmarks bar, but it's not there either. I would like to manually save my favorites from time to time - is there another way to do this on Firefox 29?

    Do scroll all the way to the bottom of the bookmark in the menu drop-down, or press (Ctrl + Shift + B) and the signet library will pop up.

    I don't understand why Firefox due do so difficult to open the bookmark library in FF29.

  • I don't see "Show all bookmarks" when I try to organize my favorites.

    The first is to organize the bookmarks: click the Bookmarks button, and then select Show all bookmarks to open the library window. I don't see "Show all bookmarks" when I try to organize my favorites. My desired final result would be followed by individual bookmarks in folders.

    Finally found "Show all bookmarks" at the bottom of my list of bookmarks

  • the "Show all downloads" button shows only a download after it's over

    In Firefox, the 'Show all downloads' button shows only a download after it's over. It is similarly of the dialogue download library. Downloads occur, but you do not see the status until it is complete. It started yesterday, using Firefox 27. I upgraded to 28.0 but it still happens. I have also reset Firefox, nothing happens. I am running Windows 7.

    The answer was... Conduit search malaware himself had installed on my PC. Uninstalling it solved the problem.

  • Firefox 24: "show all bookmarks" grip clean, fresh, install on Windows XP

    24 of Firefox. An install_ _clean (then of the previous delete that I specified "delete my profile") no added addons or plugins and without the imported bookmarks or bookmarks added by the user blocks when I select "Show all bookmarks" in the bookmarks menu. The window Library open, but when you click on any point to all bookmarks below on the left panel, or one of the elements in the right panel, the "library" window hangs and must be killed with the Manager tasks.

    This problem also occurs if you have a lot of favorites, an average slightly above the plugins and addons and lots of history.

    I will not automatically add troubleshooting information because I fell for 23 of Firefox (which does not have this problem) in order to submit this report of disturbance.

    Windows XP Pro SP3, up-to-date with Windows Update.

    Fixed by the update of Firefox 25, apparently.

  • "New Tab Page" he says show all bookmarks, then "drag a bookmark to the page new tab." but there is no section called that, and I can't change my tabs

    the instructions are clear, as there is no section in the bookmark page called new tab but when I click individually their I can't find a list of what my Quick tabs are currently I can't change them.
    It seems that the browser does not work properly because the instructions are so simple.

    Hi Batjutsu, the article above did help?

    It is perhaps not obvious, according to the illustrations that are has two separate windows that are displayed: the Library dialog box (opened with bookmarks > show all bookmarks) and open a new tab in a window by using the following:

    • CTRL + t
    • The button '+' on the tab bar
    • the orange Firefox button (or file menu) > new tab

    With both open and not maximized, you can drag and drop bookmarks to the new tab page.

  • Can't access "Show all downloads" via the "library" Panel

    Top of page where you can click to see the progress of your downloads, there is the option «Show all downloads»

    When I click on 'Show all downloads', it shows me the 'library' with only one option. On the left hand side, I see the option named "all bookmarks". "However, has nothing else where he must also propose 'History,' Downloads ' and 'Tags' alongside"all bookmarks ". So, I can not access my downloads (of course, I can access my downloads through my account, but not what I am referring. I always prefer to verify via firefox, because it is much easier and faster).

    Start Firefox in Safe Mode to check if one of the extensions (Firefox/Firefox/tools > Modules > Extensions) or if hardware acceleration is the cause of the problem (switch to the DEFAULT theme: Firefox/Firefox/tools > Modules > appearance).

    • Do NOT click on the reset button on the startup window Mode without failure.

    You can check for problems with the database places.sqlite file in the Firefox profile folder.

  • Where is this mysterious "Show all bookmarks" tab so I can get to the library to export?

    I am so enraged! When I click on my favorites bookmarks already show. There is no option anywhere to "show all bookmarks" tells me that the help section will lead me to a library, so I can export to an html document. Why not have just one button export! @!!!???

    Firefox 3.6 might have had different names in the menu. If you look at the top items, do you have that refer to management or organize the bookmarks?

    Also, try the command + shift + b to open the bookmarks Organizer (now called the Library dialog box).

  • "Show all bookmarks" used to open a 'library' page which has persisted. Now that it's disappeared? How can I fix it?

    Just upgraded from XP to Windows 7. In the past, by clicking on "Show all bookmarks" open list of bookmarks which persisted until closing. Now, the list disappears as soon as I do other things. Firefox 20.0.1. How to do list still so I can work on the bookmarks without losing the page each time? "Persist" would include the addition of an icon in the status bar.

    Start Firefox in Safe Mode to check if one of the extensions (Firefox/tools > Modules > Extensions) or if hardware acceleration is the cause of the problem (switch to the DEFAULT theme: Firefox/tools > Modules > appearance).

    • Do NOT click on the reset button on the startup window Mode safe or make changes.

Maybe you are looking for