comma in the URL

Hello

APEX 4.2

I have a problem.

for example value in ITEM3 = "FAMILY name, first NAME"

f? p = & APP_ID.:16: & SESSION. : & DEBUG. : P16_ID, P16_ITEM1, P16_ITEM2, P16_ITEM6: #ID #, #ITEM1 #, #ITEM2 #, #ITEM3 #.

but item3 does not (comma) in the url. so I tried with backslash (s) single and double while ' \\#ITEM3'\\

f? p = & APP_ID.:16: & SESSION. : & DEBUG.::P16_ID,P16_ITEM1,P16_ITEM2,P16_ITEM6:#ID#,#ITEM1#,#ITEM2#,\#ITEM3#\

f? p = & APP_ID.:16: & SESSION. : & DEBUG.::P16_ID,P16_ITEM1,P16_ITEM2,P16_ITEM6:#ID#,#ITEM1#,#ITEM2#,\\#ITEM3#\\

but no value.

Please let me know how can I solve the problem?

Kind regards

RI

It works now :) It's really weird.

I tried \#ITEM3#\ and was not working until yesterday and now work

Thank you.

RI

Tags: Database

Similar Questions

  • Problem with comma when you pass values in the URL

    Hello

    I have two pages, the first page to the second page, I'm passing some values using the url parameter passing

    but certain values contains comma ex:-P1_NATION field contains INDIA, United States, United Kingdom

    but the apex treated that as these are distinct values and assign it to separate elements

    Suppose that my intention is like P2_NATION, P2_EMPLOYEE, P2_EMPID: USA, UK, INDIA, SAGAR, 123

    but the apex dealing with like P2_NATION = INDIA: P2_EMPLOYEE = USA: P2_EMPID = UK

    is there any solution for this

    Please help me about this

    I use apex4.1, db 11g, ie, chrome, ff

    Thank you

    SAGAR

    SAG says:

    I have two pages, the first page to the second page, I'm passing some values using the url parameter passing

    but certain values contains comma ex:-P1_NATION field contains INDIA, United States, United Kingdom

    but the apex treated that as these are distinct values and assign it to separate elements

    Suppose that my intention is like P2_NATION, P2_EMPLOYEE, P2_EMPID: USA, UK, INDIA, SAGAR, 123

    but the apex dealing with like P2_NATION = INDIA: P2_EMPLOYEE = USA: P2_EMPID = UK

    is there any solution for this

    The best practice is not to transfer the data in the URL, other than the minimum possible number of discrete ID. Values required in a target page can be recovered in the element source and properties by default, calculations or using these values of process ID, or by referencing the other page element values or application already in session state. Collections can be used to store multiple values in session state to use through one or more pages.

    In URL of the APEX, commas in the item values can be escaped by encapsulating values of the backslashes ('-'), while the settlers may not appear at all.

    P2_NATION,P2_EMPLOYEE,P2_EMPID :\INDIA,USA,UK\,SAGAR ,123 
    

    Also, do not use unescaped reserved characters in the URI.

  • How to create a shortcut that will receive an IP address in the URL?

    I have an electronic notebook installed on my home server and have access to the program by entering an IP address
    and the name of the program. (#, #, #, #: / PgmName).  When I create a shortcut and install it as URL, it the
    shortcut of the reports that it is not valid and yet I come in as the URL in any browser.

    What gives?

    The format that you typed contains a colon ":" which is normally the separator for a port number

    ServerName:443 or xxx.xxx.xxx.xxx:443 link to the port of a web server https. Also, you used a comma ',' instead of the period ".".

    UNC shares are normally \servername\sharename

  • Determine the URL associated with a request without resorting to request headers.

    What should I do for the URL of a request without resorting to what the caller to set the request headers X-APEX-PATH and X-APEX-BASE?

    Is a variable binding available?  I tried: url and: uri without success.

    I would like this information in order to implement HATEOAS features; to return the "parent" of the current URL or other URL are not children of the URL of the request, but it can be derived related.  For example, the URL of the https://server:port / xxx/account/abc123/recipes/zxy987 I wish I could return a URL reference for all bills paid (see example below).  If there is another, or better, medium provided by ADR interested.

    Thank you.

    {

    "items":]

    "uri": {}

            "$ref": " Https://Server:port / ADR/account/abc123/ERC/RXYZ987 "

    },

    "receipt_number": "RXYZ987",

    "receipt_date": "2015-01 - 02 T 08: 00:00Z"

    'amount': ' $249,00 ",

    "bills":]

    {

    "invoice_number": "INV123",

    'total': ' $149,00 ",

    "uri": {}

                "$ref": " Https://Server:port / ADR/account/abc123/invs/INV123 "

    }

    },

    {

    "invoice_number": "INV130",

    "total": "$100.00". "

    "uri": {}

                "$ref": " Https://Server:port / ADR/account/abc123/invs/INV130 "

    }

    }

    ]

    ]

    }

    Hi Ryan,

    Well, getting back to your original question, there is a WAY BETTER way to build these hyperlink references.

    In the documentation of the ADR ( http://docs.oracle.com/cd/E56351_01/doc.30/e56293/develop.htm#AELIG90013 ), we find the following paragraph:

    Based on what I've created an example based on the EMP table:

    set sqlblanklines on
    
    declare
      l_moduleid   number;
      l_templateid number;
      l_handlerid  number;
    begin
      -- delete module if exists
      ords_services.delete_module('URL-Sample');
    
      -- REST Modul anlegen
      l_moduleid := ords_services.create_module(
        p_name       => 'URL-Sample'
       ,p_uri_prefix => 'URL-Sample/'
       ,p_status     => 'PUBLISHED'
      );
    
      -- 1. URL-Template
      l_templateid := ords_services.add_template(
        p_module_id    => l_moduleid
       ,p_uri_template => 'employees/'
      );
    
      --------------------------------------
      -- GET Handler to retrieve a full list of all employees
      -- GET URL-Sample/employees/
      --------------------------------------
      l_handlerid := ords_services.add_handler(
        p_template_id  => l_templateid
       ,p_source_type  => ords.source_type_collection_feed
       ,p_source       => q'[
    
       select empno "$self", emp.* from emp
    
       ]'
       ,p_method       => 'GET'
       ,p_items_per_page => 100
      );  
    
      -- 2. URL-Template
      l_templateid := ords_services.add_template(
        p_module_id    => l_moduleid
       ,p_uri_template => 'employees/{empno}'
      );
    
      --------------------------------------
      -- GET Handler to retrieve a single employee
      -- GET URL-Sample/employees/{empno}
      --------------------------------------
      l_handlerid := ords_services.add_handler(
        p_template_id  => l_templateid
       ,p_source_type  => ords.source_type_query
       ,p_source       => q'[
    
       select empno "$uri",
           '../employees/' "$collection",
           '../../metadata-catalog/handler-test/feed/' "$describedby",
           emp.*
      from emp
     where empno=:empno
    
       ]'
       ,p_method       => 'GET'
      );  
    
    end;
    /
    
    commit
    /
    
    /*=======================================================================
      now we can test the service using :
    
      *) GET a list of contacts:
      curl -i http://localhost:8080/ords/ordstest/URL-Sample/employees/
    
      *) GET a single contact:
      curl -i http://localhost:8080/ords/ordstest/URL-Sample/employees/7782
    
    =======================================================================*/ 
    

    When you run this you get the following results:

    Especially note here that you are working with absolute and relative paths here (using a relative path syntax in a directory tree:... /..).

    The feature is really cool... If it was established only the most obviously.

    It's a shame.

    I used in this example ords.source_type_query as a return type for a single employee. If I use ords.source_type_collection_item as return type, ADR will be actually build the reference to the parent that feed by itself:

    It works for you?

    ~ Dietmar.

  • apex_util.prepare_url - by the way a comma between the item values

    Hello

    I created an application to illustrate a problem I'm having with the help of apex_util.prepare_url: http://apex.oracle.com/pls/otn/f?p=test_prep_url

    ' Tab ' without prep. url "displays a chart linking from this page (1) 2 using the usual f? syntax of p in the link, through two values, one for p2_schema_name and one for the p2_job_name values hidden on page 2. It works fine and the page 2 table displays data based on these past in values.
    The link is set up as: ' f? p =' || : APP_ID | ':2:' || : APP_SESSION. ": NO:2:P2_schema_name, P2_JOB_NAME:' |" schema_name | ',' || JOB_NAME

    ' Tab ' with prep. url "displays a chart which links from this page (3) on page 4 use apex_util.prepare_url to prepare the connection, passing two values, one for p4_schema_name and one for the p4_job_name in the values hidden on page 4. However, the decimal point is rendered in the browser '% 252C' url and p4_schema_name has the value "SCHEMA_A % 2CJOB_3" and p4_job_name is null (instead of = "JOB_3"). Of course, no data is found.
    The link is set up as: APEX_UTIL. PREPARE_URL ('f? p =' |: APP_ID |) ':4:' || : APP_SESSION. ": NO:4:P4_schema_name, P4_JOB_NAME:' |" schema_name | ',' || JOB_NAME)

    So I say to myself that I send you the value of point across properly, but I don't know what I would do differently. I hope the demo app described my problem enough so that someone can point out my blunder.

    The reason why I use APEX_UTIL. PREPARE_URL is that I would like to use session state protection and through the amount of control, but until I can get the sorted comma, I can't turn on session state protection.

    Thank you for your help.

    Alan

    Update: it is not prepare_url that does. Prepare_url encodes the comma in the list of item as % 2 c values. Then when the table XML gets converted to a blob for output, the % sign is encoded again. We will have to figure out what to do about this. In the meantime, only one element value can appear in the f? p link in a flash (fixed SVG chart) chart.

    Scott

  • Not able to copy the url of the mail in Mail 10.0

    Summary: Ability to copy the url from an email in Apple Mail lost since the upgrade?

    Hello

    Sometimes I copy the url from an email in Apple Mail in an event in the calendar to find emails that I need quickly at a meeting. I then simply click on the link in my calendar of events a be returned directly to the email in Apple Mail.

    However, the ability to copy the url from an email in Apple Mail seems to be lost since the upgrade. Anyone with the same problem or solution?

    Best regards

    I can provide a workaround solution. Use Wunderlist. It's free. Once you have validated your email, you can forward the email to me@wunderlist and a new task will be added with the attached email.

    Select this option to add items Wunderlist calendar Wunderlist Preferences > accounts.

    I even tried dragging an email on the desktop and choose to share. Calendar was not an option.

  • AppleScript to create the thumbnail of the file selected with hyperlink to the URL of the file

    Hello

    I need an AppleScript script to copy to the Clipboard a thumbnail of a selected file (s. picture 1 below) with a hyperlink to the URL of the selected file.

    I have a script that allows me to get the URL of the file and copy it to the Clipboard. But then I have to paste the URL into my Document, back to the finder, make a screenshot of the thumbnail of the file, paste this screenshot and enter the URL (manually copy) of the file (choose the context menu of the image) (s. image 2 below):

    Is there a way to automate this?

    I could do the screenshot manually, this is actually no problem, but then I would need to attribute this screenshot on a Clipboard 1, go back and get the URL of the file and attribute it to Clipboard 2 and then go to my document and paste Clipboard 1 first, chose the menu popup "hyperlink" and the Clipboard paste 2.

    I would be grateful for the help!

    (I am a high school language teacher, and it is a task repetitive Daylilies)

    Kind regards

    Kai - Uwe

    Kai - Uwe,

    OpenOffice or LibreOffice aren't outwardly scriptable with AppleScript or Automator, as to exclude these two applications that support. They are inwardly Python scriptable via their respective SDK.

    I became aware of a solution of AppleScript that invites for the input file, then uses a custom (port) application that uses QuickLook to generate an image thumbnail jpg to your specified output destination. I added a line of AppleScript that sends the URL of the file to the Clipboard.

    After running the script, I can paste the URL of the document in LibreOffice and follow by drag and drop the jpg thumbnail afterwards.

    Do you want me to post the directions for this solution. In its current form, it is not written for processing batch.

  • How can I change the new behavior of the location of the drop-down menu on the subject which the url comes first?

    Since the upgrade to FF43, the address bar behaves differently. When I type a letter, URL that contains this letter. FF42 the first result would be any url, I visited the most, that contains this letter in its url. Now in FF43, it's always a url that starts with the letter I typed. Often, these are not the same. I now constantly, click on the wrong entry because I'm so used to everything fast click on the first person by habit.

    If the url of a site starts with the letter I typed and is also the site that I visit most, it now serves as the results! For example, if I type the letter H, my first result is: 'visit hardocp.com', and directly below there is an entry: "www.hardocp.com. This result of 'Visit hardocp.com'everything is new behavior that I want to turn off.

    Also, the deletion of an entry in the address bar does not seem to work (one that appears first, still and always starts with: 'Visit [url]'). I pointed out the entry and press DELETE on my keyboard and it disappears. I then my url most visited my first new result. But when I can cool off and come back on the address bar and type a letter, the entrance is back! It's infuriating.

    How can I go about fixing this?

    This is a new feature in Firefox 43. To turn it off to do this:

    1. Go about: config in Firefox
    2. Click on the I'll be careful button
    3. Locate the Boolean browser.urlbar.unifiedcomplete
    4. Change the false value

    Note: You may need to restart Firefox for the changes to take effect.

  • How to: Disable the new 'Visit what you type' in the url drop-down list. FF 43

    So with the update of FF 43 Mozilla is still destroying my workflow. While browsing I have I'll especially out of muscle memory. And the new updated through upward in the top position most of the url drop-down the search with the option. I disabled that within 5 minutes but now instead of it's me give "visit"url what ever I can partially be hit". I wish that this new item disabled and can't seem to find an option for her.

    I never understood why the url bar allowed for searching the Web when there is already a dedicated search bar.

    You can set this pref to false on the topic: config page.

    • Browser.urlbar.unifiedcomplete = false

    You can open the topic: config page via the address bar.
    You can accept the warning and click on "I'll be careful" to continue.

    Location drop-down menu bar may show items from the history, as well as pages of a bookmark and sites currently open in tabs.
    You can define what suggestions to show when you enter a URL in the address bar in "Options/Preferences > privacy".

    • Tools > Options > privacy > address bar: when you use the location bar, suggest:
      History
      Bookmarks
      Open tabs
    • choice of browser.urlbar.suggest.history.onlyTyped must be modified directly through the pref
    • choice of browser.urlbar.Suggest.Searches is present in Firefox 43 + as 'See the search in the location bar results suggestions' in "Options/Preferences > Search" in the search parameters
  • Suggestion of domain in the URL bar

    This new feature of the 43 version, as shown in the image, is not very useful for me, because I am more often than not visit a page on a site, instead of the domain of the site itself. Whereas before I would just have to type a letter and press ENTER, I must now hit the down arrow and click on enter. I know this isn't a lot of work, but these things annoy me. Is there a topic: config to get rid of this new behavior change?

    Hmm, interesting. The first item on the list, which for me is preselected, seems to provide information on what will happen if you press enter or click the Go button. For example, if you have the URL bar auto-complete enabled (which is the default value), a corresponding site is displayed. If you disable the feature AutoFill, you could get an indication that will search in Firefox for the characters you typed. I have attached the screenshots contrast for reference.

    I think that if you want to use an item in the list, you must always press the arrow pointing to the same number of times as before.

    If you do not want this visual cue, it can be removed by disabling a preference, but this preference may have other important aspects that would be also disabled, so be on the lookout for unexpected changes in the behavior of the bar, and let us know there are problems.

    (1) in a new tab, type or paste Subject: config in the address bar and press enter/return. Click on the button promising to be careful.

    (2) in the search above the list box, type or paste URLB and make a pause so that the list is filtered

    (3) double-click the preference browser.urlbar.unifiedcomplete to true to false

    Who help me?

    Alternatively, you can probably use a custom style rule to hide the explanatory entry, but I have not dug into that yet.

  • How to select only the URLS in the same page

    I'm used to be able to select only the URL with right click of the entire page. After reinstalling Firefox, I can't use this feature more. Please let me know what kind of add-on, I need to have. Thank you

    I looked in the Wayback Machine for an older version of this page. He said:

    Multi links allows you to open, copy or favorite of several links at the same time rather than having to do them all individually.

    To open, links copy or bookmark, you simply right-click and do to drag a rectangle around the links to the desire to act. When you release the right mouse button, you will open/copy/bookmark these links.

    Note: The Wayback Machine does not cache downloads real extension due to the limitations of robots.txt on the site of modules.

    One of these current extensions could be partial replacement:

    I have not tried any of them myself.

  • How to change the URL of google?

    Hello
    Currently I use Mozilla Firefox & Google Chrome for my navigation. But recently (4 days ago) it's URL has changed. Whenever I want to search anything through these two browser the URL appeared in 'Hong Kong' site. In search bar "https://www.google.com.hk".
    This thing happen. But I don't want to "hk". How can I solve this problem?

    Try to clear the cache and delete cookies only from Web sites that are causing problems.

    "Clear the Cache":

    • Firefox/tools > Options > advanced > network > content caching Web: 'clear now '.

    'Delete Cookies' sites causing problems:

    • Firefox/tools > Options > privacy > "Use the custom settings for history" > Cookies: "show the Cookies".
  • How can I change the Focus of the URL bar for the Google search box?

    Hi guys,.

    I want to change the new direction of the tab in the URL bar of back to the google search box.

    How can I do?

    -Chris

    You can watch this extension:

  • I type kickass.to and it removes the url and remains on the current page.

    So, I've heard of Mozilla blocklist. Normally, I can choose to ignore a warning and connect anyway, but for this particular site, Mozilla seems to know what's best for me in not letting me even enter in the url. That is what it is?

    Hello Daryl95,

    Can you try disabling the built-in phishing protection.

    Type in the address bar: Subject: preferences #security

    Clear the check boxes under 'Général'

    Try and keep us updated.

  • Firefox continues to change the url that I entered

    I've updated a Web site. When I paste the url in Firefox it keeps changing and display a different page.

    The one I want is http://megalithmovers.org/blog-2015-10-24.htm
    Firefox continues to change it to http://megalithmovers.org/blog-2015-01-24.htm
    The two pages are valid (they have the date in the url as YYYY-MM-DD)
    I know that the url is valid, that I stuck in other browsers. Somewhere FF has cached the page in January. Being too smart for that is good, it's settled I've mistyped the url and displays this page, not the one October.
    I deleted all the history of this site, but that makes no difference.

    Please don't tell me to restore the FF default settings - I'll have to re - install all Addons then.

    http://megalithmovers.org/blog-2015-10-24.htm

    I had no problem with this link.

    Start Firefox in Safe Mode {web link} by holding down the < shift >
    (Mac options)
    key and then from Firefox. Is always the problem?

Maybe you are looking for