Column aliases when add IR computation

When you add computed column to IR you must use aliases composed of one or two capital letters. From APEX help:
Create a computation using column aliases.
Examples:
1. (B+C)*100
2. INITCAP(B)||', '||INITCAP(C)
3. CASE WHEN A = 10 THEN B + C ELSE B END
Is it possible to match these column aliases with columns (rows in apex_application_page_ir_col view) with PL/SQL?
Usually but not always apex_application_page_ir_col.display_order value 1 maps to alias A, 9 maps to I, 26 maps to Z, 27 maps to AA, 30 maps to AD…

I found solution: It's in apex_040100.wwv_flow_worksheet_columns.column_identifier column.

Similar Messages

  • ITunes Match info says"With iTunes Match, you can download some or all of your music directly from iCloud on a total of up to 10 devices and computers." but when I try to add a computer it tells me i have reached my maximum of 5 computers.

    iTunes Match info says"With iTunes Match, you can download some or all of your music directly from iCloud on a total of up to 10 devices and computers." but when I try to add a computer it tells me i have reached my maximum of 5 computers.

    You have old computers authorized that you are no longer using more than likely.
    From http://www.apple.com/itunes/features/
    Authorize and Deauthorize
    Purchases you make from the iTunes Store can be played on up to five computers that you authorize using your iTunes Store account name and password. To authorize or deauthorize a single computer, choose Authorize This Computer or Deauthorize This Computer from the Store menu. If all five authorizations are being used, you can deauthorize all your computers at one time by choosing View My Account from the Store menu and selecting Deauthorize All.
    You can then restart the authorization process with each current device.

  • When add a people picker (user column) in Word document (Template) and try to add a name it stuck!

    When add a people picker (user column) in Word document (un the document Template) and try to add a name it stuck!
    Is it a known issue?
    keren tsur

    Hi,
    According to your description, I have tested in my environment and I  have the same behavior.
    Only if you type the wrong name in the first time, then you click the phone book to search the right name and save, it will stuck. It means if you do other operation(e.g. type the wrong name then click “resolve” button, then search in the phone book) and
    repeat the operation above, it won’t stuck.
    It is appreciate that you can submit a feedback to Microsoft:
    https://connect.microsoft.com/
    Thanks,
    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]

  • Security filter against AD groups. When you add a computer, does it need to reboot to fall into scope.

    This should be an easy one. I have a 2008r2 domain. When I add a computer to an AD security group, so it will get targeted from a GPO that has that same group in its security filter, does the computer need to reboot to start processing any part
    of that policy?  It has always seemed that computers need a reboot to pick up their group memberships, but I wanted to double-check.
    Dave

    Hi Dave,
    Normally for a computer account to become aware of the group membership change a reboot is required. 
    Also some group policy can be applied after a comouter reboot. So I'd suggest to reboot your compputer.
    Best Regards,
    Elaine
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact [email protected]

  • I have been noticing that when using the computer the mouse keeps going in places where I really do not want and just now select the sentence without I have done anything. Sometimes goes to places like bookmark or open tabs in website when I am reading a

    I have been noticing that when using the computer the mouse keeps going in places where I really do not want and just now select the sentence without I have done anything. Sometimes goes to places like bookmark or open tabs in website when I am reading a page.
    Also I have noticed opened windows that I have not opened.
    I have verified the sharing folder and also the remote access but it not let me turn it off.
    Also I have add a password to my computer and even using the same one it looks like is not working.
    The I photo stopped working, Mac Mail does not let me add rules (this is from one day to the other)
    The computer is mine, the internet I use is payed by me with a password. I did not give permission to anyone to use my computer or share my files.
    In system preferences in the sharing folder is showing everyone and staff.
    My computer is private I do not own a company and I do not have a network set up in my house.
    I had my photos removed from my computer and even after trying to reinstall I photo and fix the Mac Mail is not working.
    I am receiving emails saying that I have sent emails to people that I do not know and including in a time where I am working and not using the computer.
    Any suggestions in how to fix this issue?
    I really appreciate.

    With the multitude of issues you have I would take it to an Apple store or AASP and have them sort it out. Then I would sign up for Apple camp or one on one.

  • HT204406 iTunes Match was set up but wouldn't download any of my music. I turned iTunes Match off, deauthorised and then reauthorised, restarted iTunes. Now iTunes match won't turn on - I get the "Add this computer screen" but it says can't add for 83 day

    iTunes Match was set up on my new MacBook Pro. Today, it wouldnt download any of my music, so I followed advice, switched on iTunes Match and switched it on again. When this didnt help, I deauthorized the computer, logged out of iTunes, and relogged in again. I have reauthroized the computer and reset the View/Options.
    However, now I cant connect to iTunes Match or iCloud at all. The screen asking me to Add this computer comes up, when I click and enter my Mac account details I get the error message:
    "You can use iTunes Match on this computer with just one Apple ID every 90 days. You cannot associate this computer with a different Apple ID for 83 days."
    However, this was the iTunes account with which I set up iTunes Match.
    Anyone got any suggestions?

    Hey Carolefromthelou,
    The following link will provide steps on how to best remove all traces of iTunes from your PC and then reinstall it:
    Removing and reinstalling iTunes and other software components for Windows Vista, Windows 7, or Windows 8
    http://support.apple.com/kb/HT1923
    Welcome to Apple Support Communities!
    Best,
    Delgadoh

  • How do I add another computer to my account to authorize

    How do I add another computer to authorize on my account list so I can use or redeem my gift cards and use my store credit?

    You can authorize up to 5 computers.
    To authorize you need to install iTunes on the computer to be authorized:
    Open iTunes
    From Store in the menu bar, choose Authorize This Computer. (If the menu bar is not visible hit CTRL-B).
    When prompted, enter your Apple ID and password, then click Authorize.
    iTunes Store: About authorization and deauthorization

  • How to add a computed field to a reports

    I have a report where I would like to add a column that is the sequence of the row. It is not the rownum in the db, but I want it to be a row number for what is returned.
    So, if I return 10 records, I would like a column to contain 1 through 10 to depict the row number.
    I do not want to have this number in the table or view.
    Is it possible to add a computed field to a report like this?
    If so, how?
    Thanks - Jim

    The SQL function rownum should suffice if the report is not too complicated, as this returns the number of the row rather than the database row ie.
    select empno,ename,rownum
    from emp
    add some clauses each time and you should see that each row is always numbered 1 to n.
    However, if you introduce the HTMLDB column sort functionality into the report then it would appear that it is the result set that is sorted rather than a new query being issued.
    Hope this is of help.

  • Constantly Needing to re-add my computer to itunes match?

    Recently, my main computer seems to be disconnecting from the itunes match service every time I close itunes and re open it.  the cloud icon gets the lightningbolt on it. 
    this is the computer connected to my library, which is on a network drive - always accessible.  If I click on "update itunes match" when the lightning bolt is on the cloud icon, it says "sign out of itunes and sign back in" 
    When I do that, the cloud icon is missing and I have to re-add my computer to itunes match.  i have done this at least 6 times - it never seems to stay connected after restarting itunes. 
    So frustrating!  Anyone know how to fix this?

    I'm having that same problem this morning.
    But before that, what fixed it for me was getting rid of ALL of my playlists. Apparently there was something in one of my playlists (smart or otherwise) that was making iTunes Match choke. It's definitely a bug in iTunes Match.
    So try ditching all your playlists, and re-setting up iTunes Match, see if you still have the problem.
    But like I said, I'm having the problem again, but I'm guessing it has to do with work for the iPad3 launch or something. Hopefully :-/

  • I want to use my IPOD Classic 160gb for notepad entries in addition to the music and books I listen to. It is set to "Open ITunes when connected to computer" and "manually manage music and videos". How can I do that without losing some of the features

    I want to use my IPOD Classic 160gb for notepad entries in addition to the music and books I listen to. It is set to "Open ITunes when connected to computer" and "manually manage music and videos".  How can I do that without losing some of the features of those two?   I just want to add a feature.  Thanks

    Settings>Store (or iTunes & App Stores if you are running iOS6)>Apple ID. Tap your son's ID and sign out. Sign in with your ID and password.
    You shouldn't lose the music, but if you try to update any apps that you bought with the family ID, you will have to use that password that is linked with that ID in order to update.
    Avoid downloading past purchased content with the old ID if you can since you will associate the iPad with the old ID for 90 days and you will lock yourself out of your own, new ID for that period of time. Read more about associated devices in iTunes here.
    iTunes Store: Associating a device or computer to your Apple ID

  • HT1386 I just got an iphone 4 and when I go to sync it, it appears in the left hand column but when I click on it there is just a blank screen with the apply logo and a tiny lock.

    I just got an iphone 4 and when I go to sync it, it appears in the left hand column but when I click on it there is just a blank screen with the apply logo and a tiny lock.

    OK, I think I fixed it.
    After trying to restore with an old backup from the phone (it estimated it would take 4 hours) I cancelled and went through the setup menus again, but set it up as a new phone. It then appeared in iTunes and I restored it from the computer, not the phone. It appears to be working, it's syncing my old apps right now.
    Summary:
    1. Reset settings on phone (hopefully you backed up fairly recently)
    2. Set up as NEW iPhone in setup menu on phone
    3. Restore from iTunes on computer when it recognizes the phone
    4. Cross fingers

  • Recently wiped out my mac do to mavericks update going wrong. If i add this computer with my itunes match will it put all the music i had back in my itunes library or just upload the little bit of music i purchased on itunes in the past?

    Recently erased my entire mac HD do to mavericks update going wrong. I do not have a back up for my music. But my itunes match account  has all my music. If i add this computer with my itunes match will it put all the music i had back in my itunes library or just upload the little bit of music i purchased on itunes in the past that im only seeing now in my itunes? I do not want itunes match to  sync  or upload the little bit of purchased music i have on my itunes now..Please Help Thanks..

    Hello gogreenj14,
    If you had iTunes Match updated with all of your non iTunes purchased content already, then yes, when you enable iTunes Match with the following article it will have all the content that has been uploaded to iTunes Match will be available for download.
    iTunes: How to add a computer or iOS device to iTunes Match
    http://support.apple.com/kb/ht4913
    Open the latest version of iTunes on the computer you intend to add. You can download the latest version of iTunes here.
    Sign in with the Apple ID you use with iTunes Match.
    Choose Store > Turn On iTunes Match.
    Click the Add This Computer button.
    When prompted, enter your Apple ID password.
    iTunes will automatically begin scanning your computer's library for matches.
    A status indicator will allow you to track progress. You may also manually pause and resume the process at any time by clicking the Stop or Start button.
    Once iTunes has completed matching and uploading your iTunes library, your music in iCloud will be integrated into your local music library. A download button will appear to the right of any content that you have in iCloud that doesn't already exist on your computer.
    Thank you for using Apple Support Communities.
    Cheers,
    Sterling

  • How to expand the hierarchy column automatically when delivery reports by a

    Hi Experts,
    In OBIEE 11.1.1.6.0,how to expand the hierarchy column automatically when delivery reports by agent?
    For example:
    In SampleLite RPD, when we drag "Time Hierarchy" and Sales column into the report , and sent it by agent ,it will only display "Total" sales, not show all level value,such as Year,Month,Day.So how to expand the hierarchy column automatically when delivery reports by agent?
    If we expand all levels and save them, it will be ok, however, when we add new data, it will be collpased automatically and not show the lowest level data, requiring Users or Developer to modify this report for expanding the hierarchy. We think it is very trouble, is there any good suggestion or method for achieving our requirement?

    958054 wrote:
    Hi Dpka,
    Is it any difference? I look at the result is same.
    Firstly, you said it is 'Add member of ',
    Now, you said it is 'Keep member of'
    Could you please tell me which options I must select ? Thanks very much.Here is some notes from the documentation to make a better sense of how those two options would work:
    •Selection steps — When you create selection steps, you can add a group or a calculated item in a step. Subsequent Keep Only or Remove steps might reference members that were included in the group or calculated item.
    ◦A group list is affected by members that are kept or removed in subsequent steps, but the group outline value remains the same. For example, suppose the MyNewYork group contains Albany and Buffalo and its value is 100. Suppose Albany is removed in a later step. The value of the MyNewYork group remains at 100, but Albany is no longer listed with the group.
    ◦A calculated item is not affected by members that are kept or removed in subsequent steps, because removals can affect the components of the formula.
    •Groups and calculated items — A step can include a group or calculated item. Groups and calculated items can be used only with Add steps; they cannot be used in Keep Only or Remove steps.

  • Add single computer to multiple collections listed in a file

    Good afternoon,
    I am trying to figure out how to add a single computer to multiple collections based on the contents of a file. Basically, I have a frontend hta for deployments. On that hta are checkboxes for various bits of software that should be installed, for example
    MS Office. When the hta is submitted, if a software checkbox is checked it writes to a text file on the server indicating it was checked. Once the deployment is completed a script is run via a status filter rule. The intent is for that script to read the file
    on the server and add the computer that was just imaged to the collections identified by the checked boxes.
    Obviously I am not having much luck which is why I am here looking for a bit of help.
    Here is the code that I am working with..both the while and foreach version
    $file = New-Object System.IO.StreamReader -Arg $path
    while ($line = $file.ReadLine()) {
    Add-CMDeviceCollectionDirectMembershipRule -CollectionName $line -Resourceid $ClientName
    $file.close()
    foreach ($line in (Get-Content $path)) {
    Add-CMDeviceCollectionDirectMembershipRule -CollectionName $line -Resourceid $ClientName
    I have found that if I manually assign a value to $line everything works as expected, but if I try to read from the file and use either a while or foreach loop it fails.
    I can enter a quick write-host and see that the value of each line is being returned as I would expect it but the system just returns the following error for each one:
    Add-CMDeviceCollectionDirectMembershipRule : No object corresponds to the specified parameters.
    I am sure that there are better ways to do this and I am sure there are cleaner ways to code it, but I am not a Powershell guru so please be kind. ;)

    "-Resourceid $ClientName" is not correct because ResourceID != Clientname. See
    http://technet.microsoft.com/en-us/library/jj850102(v=sc.20).aspx There is no parameter that accepts the name of the client.
    Torsten Meringer | http://www.mssccmfaq.de
    Thank you for the suggestion, but that is not the issue. As mentioned in the first post, if I manually assign the collection variable value it works without issue. This is to include *without* changing the $Clientname.
    Previously in the script, which was not shown is the following:
    $Clientname = (Get-CMDevice -Name $Clientname).ResourceID
    If I do a Write-Host $Clientname after that line of code I am returned the correct numeric value. That said, part of my troubleshooting *before* I posted here was to hardcode the numeric resource ID of the client which did not change anything unless the
    value of the collection variable was manually set or the variable replaced with the collection name.
    So, any ideas as to why it is not able to read and process collection names from a text file?

  • Database adapter and column aliases in the select statement (10.1.3.1)

    Hi,
    Is it possible to use column aliases in the select statement for a database adapter to return an xml element name which is different to the column in the queried table?
    I have tried using
    SELECT EMPLOYEE_ID, FIRST_NAME AS MYNAME, LAST_NAME, SALARY, DEPARTMENT_ID, PHONE_NUMBER, EMAIL, HIRE_DATE FROM HR.EMPLOYEES WHERE (DEPARTMENT_ID = #DEPT_ID)
    but I get the following XML fragment returned
    <Employees>
    <employeeId>100</employeeId>
    <firstName xsi:nil="true" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"/>
    <lastName>King</lastName>
    <salary>24000</salary>
    Any pointers appreciated.
    Joel.

    That is really interesting.
    When I use the "custom sql" option in the DB adapter wizard, it used the aliases just fine in the return schema.
    Marc

Maybe you are looking for

  • Photoshop Layers to Fireworks

    Hi, I'm working with Fireworks and Photoshop CS4 on a MacPro OSX 10.5.6. This should be so easy (and I suppose it is) but I can't make it happen. I have a Photoshop file with 15 layers that I want to import or open in Fireworks to create an animated

  • IPhone 5, lightning adapter, Life Fitness treadmills

    Hi, has anyone tried the iPhone 5 with the lightning adapter in the life fitness treadmills that have iPod 30pin connectors. I tried myself and it didn't work, it recognizes the iPhone which charges and says accessory connected in the iPhone screen b

  • Hash_sj hint in oracle 10g

    Please let me know how hash_sj hint is used to improve performance in sql query using EXISTS in oracle 10g? What is the use of hash_sj hint? How it improves the performance?

  • Resource permission to view himself only in resource center

    Hi All, I have a query regarding resource permission. My scenario is how a resource can view/edit only his attributes in the resource center. I have given Team Member permission and what other permission i need to apply to execute this scenario. Than

  • Why do we reuire multiple aliases

    why do we reuire multiple aliases. We can have only one system with one alias.  we should directly use the system name. If we are using aliases, then there must be some advantage of it....Please correct me if I am thinking in wrong direction.