Id parameter in result URL

I am using a table data source and the search result
URL has a parameter called id (after the type parameter).
What does that refer to and can I use it to find the
group to which that result belongs?
The id seems to be the same for results coming from
a particular group.
Dinesh

i have added this code but still nothing happens.
i have only written the code
:BLK_STTMS_CUSTOMER.CUSTOMER_NO:=:PARAMETER.PRM_CUST_NO ;
in the trigger.
when i put the initial value of teh form level parameter prm_cust_no=000000014
then the first record comes is this one but now i have removed the initial value from the parameter prm_cust_no and now no record is populating.
F7 & F8 shows the records from begining

Similar Messages

  • Using the "highlight" parameter in an URL to open a PDF

    I have read the "PDF Open Parameters" document:
    http://partners.adobe.com/public/developer/en/acrobat/PDFOpenParameters.pdf
    I am trying to use the "page" and "highlight" parameter in a URL (called from Flash) to open a PDF to a specific page and then draw a rectangular highlight on a specific area on that page. According to the above document, I should be able to do this by using the following URL:
    http://www.MySite.com/MyPdf.pdf#page=10&highlight=10,20,30,40
    This will open the PDF to the proper page (10) but I don't see any highlight. The "PDF Open Parameters" describes the usage of the "highlight" parameter as follows:
    highlight=lt,rt,top,btm "Highlights a specified rectangle on the displayed page. (Use the page command before this command.)
    The rectangle values are integers in a coordinate system where 0,0 represents the top left corner of the visible page, regardless of document rotation."
    It sounds to me that all I'm supposed to do is define the left (lt), right (rt), top and bottom (btm) boundaries of the rectangle by a single integer.
    But, why am I not seeing the highlight? Do I need to use co-ordinate X,Y sets? Are the integers I am supposed to be using pixels, or arbitrary units? If 0,0 is the top left corner of the page... what's the bottom right corner?

    Try this:
    http://www.adobe.com/devnet/acrobat/pdfs/pdf_open_parameters_v9.pdf#page=7&highlight=100,2 00,600,400
    (0,0) is the bottom left corner of the viewed PDF page.
    For an 8.5 x 11 page size; the x-axis ranges from 0 to 612 and the y-axis ranges from 0 to 792.
    (points -- 72 to an inch)
    In an AUC thread about placing an annotation to a specific location on a PDF page, Thom Parker wrote:
    "There are several coordinate systems used in Acrobat. 
    The info window uses a modifed version of Rotated User Space. 
    There's also device space, which is the OS's window coordinate system, it also starts at the top left.
    But for placing things onto a PDF page there are two main spaces "Default User Space" and Rotated user space. 
    Both put (0,0) at the bottom left corner, sort of."
    An article on PDF page geometry
    http://www.acrobatusers.com/tutorials/2007/10/auto_placement_annotations
    Be well...
    Message was edited by: CtDave
    Message was edited by: CtDave

  • How to Track App Download by adding CID as a parameter in iTunes URL?

    Hi,
    I want to track my application download by passing CID (Campign ID) as a parameter in iTunes URL. The delegate method which i am using to fetch the parameter is:
    - (BOOL)application:(UIApplication *)application openURL:(NSURL *)url sourceApplication:(NSString *)sourceApplication annotation:(id)annotation
    Can you please help me how to track campign ID so that i can save it?
    Please help
    Thanks.

    The sample campaign url which i am using: https://itunes.apple.com/us/app/ye-jobs/id930911192?mt=8&cid=20402
    Is this a correct way to create a campaign URL?
    Please reply.
    Thanks

  • Receive a parameter in the URL in adf application

    Hello,
    using the sendRedirect to direct control to another adf application, as:
    ((HttpServletResponse)FacesContext.getCurrentInstance().getExternalContext().getResponse()).sendRedirect("some url");assuming that I am pushing parameters to the url, how can I read them in called application !!
    to make the post clearer, assume that I have two adf applications A and B,
    A will redirect the user to B using the sendRedirect method,
    where shall I receive the request to get the parameters or attributes added to the URL !!!
    hopefully I have made the post clearer so that you can help !!
    appreciated, thanks in advance.
    rgrds,

    For passing parameters to another ADF application, we could use as a parameter as part of the request parameter of the URL as mentioned in
    http://blogs.oracle.com/shay/entry/passing_parameters_to_adf_appl
    For reading the parameters in the another application (assuming CurrentDepartmentName is the parameter) ,
    HttpServletRequest request =
    *(HttpServletRequest)FacesContext.getCurrentInstance().getExternalContext().getRequest();*
    String strvalue = request.getParameter("CurrentDepartmentName");
    Thanks,
    Navaneeth

  • Connecting a pdf to a database and passing a specific parameter through a URL

    Hi,
    I have a product data sheet that I want to personalise with partner logos. I need to pass a parameter from a url string to the form and have it populate a specific spot with the partner logo.
    How would I go about doing that. I have LiveCycle Designer 8
    Thanks,
    Nolan

    yea.. looks like a mess true.., cos i was puttin all 2geda in a haste..
    this is my midlet code....
    TextField uname, upass, uacc;
    url ="http://localhost:8080/serv/Ser";
    uname = new TextField("Firstname:","",30,TextField.ANY);
    form.append(uname);
    upass = new TextField("Lastname:","",30,TextField.ANY);
    form.append(upass);
    uacc = new TextField("Account ID:","",30,TextField.ANY);
    form.append(uacc);
    void connect( String url ) throws IOException {
    HttpConnection http =null;
    InputStream iStrm =null;
        StringBuffer b = new StringBuffer();
        try {
          http = (HttpConnection)Connector.open(url);
         http.setRequestMethod(HttpConnection.POST);
    http.setRequestProperty("User-Agent","Profile/MIDP-1.0 Configuration/CLDC-1.0");
    http.setRequestProperty("Content-Language", "en-CA");
    http.setRequestProperty("Content-Type", "application/x-www-form-urlencoded");
    iStrm = http.openDataInputStream();
    System.out.println(http.getResponseMessage());
    System.out.println(http.getResponseCode());
    int ch;
    while((ch=iStrm.read()) != -1)
    b.append((char) ch);
    conn.setString(b.toString());
    System.out.println(b.toString());
    display.setCurrent(conn);
    catch(Exception ex)
    System.out.println(ex);
    conn.setString(String.valueOf(ex));
    ex.printStackTrace();
    finally
    if(iStrm!=null)
    iStrm.close();
    if(http !=null)
    http.close();
    }and this is my servlet code.
    public void doPost(HttpServletRequest req,HttpServletResponse res)
    throws IOException,ServletException
    try
    Class.forName("com.mysql.jdbc.Driver");
    Connection con =DriverManager.getConnection("jdbc:mysql://localhost:8080","root","pass");
    PreparedStatement stat = con.prepareStatement("Select custaid from customers_old where firstname=? and surname=? and custAID=?");
    stat.setString(1,req.getParameter("uname"));
    stat.setString(2,req.getParameter("upass"));
    stat.setString(3,req.getParameter("uacc"));

  • How to add parameter in Outlook URL

    Hi All,
    I am intergating Outlook Web Access in Portal. I did create a URL iview for the same. The URL of the outlook is http://servername.domain.com/Exchange
    Since outlook is configured on every m/c, I want to add a User Id parameter to this URL so that the outlook of that User id is pulled up which has been mentioned as a parameter.
    Can someone provide some help in this regard.
    Nikhil Bansal

    Hi,
    Try something like this:
    http://<server_hostname>:<port>/Exchange/<User.UserID>/<Folder>
    Folder is Inbox, Calendar etc
    Pay attention that <User.UserID> is placeholder so your url will look like this:
    http://servername.domain.com/Exchange/<User.UserID>/Inbox
    Omri

  • Passing a comma in a parameter within a URL

    I am trying to pass a parameter whose value contains a comma into Discoverer Viewer using a URL. I have followed the instructions that are given in the Disco documentation, substituting ~44 into the URL where the comma appears. Here's how it looks:
    http://elvis.rock.local:7777/discoverer/viewer?us=anyuser&db=prod&eul=prodeul&wbk=ACT001TESTURL&wsk=2234&qp_Drivers=Smith~44+Shad+A+/+ssmith,Brady~44+Tom++/+brady&qp_Company=Mycompany
    The problem is that the parameter values show up as 'Smith~44 Shad A / ssmith','Brady~44 Tom / brady' rather than what I expected: 'Smith, Shad A / ssmith','Brady, Tom / brady'. I have tried using ~32 and 002c instead, also tried enclosing in quotation marks, i.e., '~44'.
    Obviously I don't get any results because the values passed in the parameters don't match up with the values in my table.
    Any suggestions?
    Thanks in advance,
    Tricia

    Hi,
    It looks like you have a multivalued parameter and Discoverer cannot distinguish between a comma as a delimiter and a comma within the a parameter value. It is because you are using both multivalued parameters and commas within your parameters that you have the problem. If you have a list values like Smith,Brady,Cooke then the URL parameter qp_names=Smith,Brady,Cooke will be translated to 'Smith','Brady','Cooke'. On the other hand if you have a single parameter like Smith, Shad A then qp_name='Smith,+Shad+A' will be translated to 'Smith, Shad A'. I cann't think of any workaround other than using your own encoding.
    So for example, if you encoded comma as ~2c then you would change you condition for the parameter from item_name IN (:Drivers) to REPLACE(item_name, ',','~2c') IN (:Drivers)
    But then all users would have to enter the encoded comma not just when the URL was used.
    Rod West

  • How to passing multiple values for a parameter of discoverer(url parameters

    Hi All,
    I am trying to pass multiple values for a parameter of disco report. I am trying to include my url for discoverer viewer report. the values has the following
    'jeff,mark'
    'sfophiee,angela'
    Thanks and Regards
    Venkat

    Hello Venkat,
    I know there are some problems with 10.1.2.0.2, maybe if you haven't done yet you can try with 10.1.2.2, assuming this version should be working for multiple parameter values :
    OracleAS Discoverer 10.1.2.2 is installed with the following patch :
    Patch 4960210 PLACEHOLDER BUG FOR AS/DS 10G R2 PATCH SET 2 10.1.2.2
    So, once installed you can try adding your parameter as param_<parameter_name>='sfophiee,angela'
    Hope this helps, otherwise feel free to log a Service Request to Support.
    Best Regards,
    Gianluca

  • Why do I get this error when specifying a parameter from the URL?

    Hello,
    I am trying to "install" a parameter in a page, so that it's value can be specified in the URL and a VO updated according to this value.
    Here's is the page definition file, with an executable and a binding to a method call:
    <executables>
    <invokeAction Binds="prepareMainMenuView1" id="invokeQuery"
    Refresh="prepareModel"/>
    </executables>
    <methodAction id="prepareMainMenuView1"
    InstanceName="AppModuleDataControl.dataProvider"
    DataControl="AppModuleDataControl" RequiresUpdateModel="true"
    Action="invokeMethod" MethodName="prepareMainMenuView1"
    IsViewObjectMethod="true">
    <NamedData NDName="param" NDValue="#{param.root_menu}"
    NDType="java.lang.String"/>
    </methodAction>
    if I run the MyMenu application with:
    http://127.0.0.1:7101/MyMenu-ViewController-context-root/faces/menu?root_menu=anything
    then I get this exception:
    ADF: Adding the following JSF error message: String index out of range: -1
    java.lang.StringIndexOutOfBoundsException: String index out of range: -1
    Do you know why? Where do I fail?
    I followed the isntruction here:
    http://www.jasonsdevelopercorner.com/?p=65
    So far I have not been able to read a parameter in a way, do you have any example on how can I use parameters from URL from within a single page in an unbounded task flow?
    I worked all the day on this, but with no luck.
    Thanks

    I solved the problem. The invoked method was not part of the VO, but was part of the AM.

  • How to catch URL parameter from Portal URL in Web Dynpro iView

    Hi All,
    I have a web dynpro application running as a portal iView successfully. Now the client wants to make it internationalized with 7 languages. Currently they access the portal - and via role assignment they get to the portal tab with the wd iView. Now they want to send a parameter for the language key with the portal URL. So when they are typing in http://myportal.mydomain.com now they want to type in http://myportal.mydomain.com?sap-locale=de or so. My question is how can I catch this parameter in the WD application when it is running inside a portal iView? Is it at all possible?
    I have written a very small application which is trying to catch a URL parameter named PARAM. The code I have written is the default one as below:
    String paramValue = WDWebContextAdapter.getWebContextAdapter().getRequestParameter("PARAM");
    When I run the application standalone and add the PARAM=something in last of the URL I can catch it. But when I create an iView and while previewing it I add the same PARAM value it is coming as null all the time. Same when I add this iView to a role and show it via role assignment in protal. Please help to let me know how to achieve this. I think if I can read the parameter value from Portal URL in the WD iView - then I can set it as the default locale of the application and then show language specific file to achieve internationalization.
    Your urgent help will be highly appreciated.
    Warm Regards,
    Shubho

    Hi Shubhadip
    Even if you get the parameters, how do you internationalize your application? Are you not following the standard way as described in the following link. In this case you never need to capture any such parameter. This is done by the WD runtime automatically .
    <a href="http://help.sap.com/saphelp_erp2005/helpdata/en/f4/d95664da179b4db731e21c2e470b72/frameset.htm">Internationalization of WD projects</a>
    You can retrieve application parameters specified at the creation of iview by "adding parameters(with the same name as in iview application parameters) to the default plug of the Component Interface View of the WD application". "onDefaultPlug" method of the interface view controller you get these values as parameters, which you can save in the context node of component controller for later use.This is guaranteed to work.
    But again this is not what you want exactly. You want the user to specify the value at runtime. If you have just 7 languages, you can create 7 set of iviews with different application parameter value indicating language key, and assign to 7 different set of roles, each representing one set of users with common language.
    I hope you find a solution.
    Regards
    kk

  • ActionScript parameter in reportserver url not working

    I am trying to get a javascript call back on any action that is performed on a report. I am using URL access to get a report. Url  looks like this:
    http://localhost/ReportServer/Pages/ReportViewer.aspx?MyReport&rs:Command=Render&rc:ActionScript=alert
    Documentation for the rc:ActionScript url parameter at
    http://msdn.microsoft.com/en-us/library/ms155395.aspx says that the parameter "Specifies the name of the JavaScript function to use when an action event occurs,
    such as a drillthrough or bookmark click. If this parameter is specified, an action event will trigger the named JavaScript function instead of a postback to the server."
    The report renders fine. Actions on a report work - clicking on a text box that has "go to report" action defined takes me to the right report. However, the alert function mentioned in the url doesn't seem to be called. 
    I know I can use a "go to URL" action to invoke a javascript of my choosing, but I'd rather keep using "go to report" action in 70+ reports that we have already written as it is cleaner and makes development and testing in VS easier.
    Any ideas how to get the ActionScript parameter working? I have tried passing in "window.alert" as opposed to just "alert". Doesn't seem to work.
    Thanks!

    Same problem with ActionScript-Setting in DeviceInfo. I'm getting only normal hyperlinks with href. Any ideas?

  • Can the parameter in the url be invisible?

    hi,
    I want the parameters in the url to be invisible. That is if the url is
    http://localhost:8080/index.jsp?create=12 , so in the url bar it has to be displayed like
    http://localhost:8080/index.jsp. But the parameters should not be displayed. Is it possible?
    If possible how? Can you send the code?
    Thanks in anticipation
    Deepa Datar

    Greetings,
    if the username & password is right the user has to be
    redirected to the index.jsp page, where the usernameHow are you "redirecting", with sendRedirect? This method adds an HTTP 'Location' header to the response which instructs the browser to "fetch the response" from the given URL (including parameters, if any). Unfortunately, the browser uses a GET request on the next resource so, "no", its not possible to make the (GET) parameter(s) invisible - this is a limitation of the HTTP protocol. However, it seems what you really want in this case is not to "redirect" but to "dispatch" the request. Request dispatching allows your servlet to forward the request to, and/or include responses from, another resource on the same server without the overhead of redirecting the client. Additionally, the original request and response objects are maintained which can be modified with additional ("invisible") attributes:
    // In service thread...
    request.setAttribute( "client", "12" );
    RequestDispatcher rd = request.getRequestDispatcher( "index.jsp" );
    rd.forward( request, response );I hope this helps.
    Can any one help me out? Its actually urgent.
    Thanks in anticipation
    Deepa DatarRegards,
    Tony "Vee Schade" Cook

  • How to handle oas parameter in the URL

    Hi,
    I am very curious about the oas parameter in the next URL how to form the value:
    OA_HTML/OA.jsp?_rc=<..._LAYOUT>&_ri=275&addBreadCrumb=RS&<...Id>=<param_value>&_ti=2094430068&oapc=3&oas=l305LKdSwzg9iJqy8q00ew..
    If I use String createURL() or setForwardURL() then I can make some value for oas parameter. My issue is that the by these methods made values are not correct I would like to manage this value by myself. How can I manage this value, put, set, get anywhere?
    Thanks in advance,
    Cafer

    Hey,
    Thank you all for your replies. Actually i forgot to say something to you professionals,
    In my Pc, already, i have Oracle Web server which listens to 80, thats why for tomcat itlself i set 8084
    as port number at the time of installation, since giving 80 failed to run. Without keeping this in mind, i blindly
    changed the port 8084 into 80 in server.xml file, stopped and while starting i get " *The port 80 is already in use*"
    Is there any way to skip this 8084?
    i use tomcat 6, Waiting for your suggession!
    Thanks ,
    SRI.

  • How to specify delimiter when parsing the parameter list in URL

    Here is a sample URL used to call the servlet:
    http://myhost.com/servlet?param1=test1&param2=test2&param3=test3In the doGet method of my servlet, I understand I can use the getParameter method to retrieve the various parameter values:
    String p_param1 = request.getParameter("param1");
    String p_param2 = request.getParameter("param2");
    String p_param3 = request.getParameter("param3");However, what if the URL was of the form:
    http://myhost.com/servlet?param1=test1+param2=test2+param3=test3where the URL parameter delimiter was a plus sign rather than an ampersand (&).
    By default, the servlet is only recognizing the ampersand (&) as a parameter delimiter.
    When I use a plus sign as the delimiter, getParameter retrieves everything after the question mark (?) as the first parameter
    i.e. param1 = test1 param2=test2 param3=test3
    param2 = null
    param3 = null
    How can I get getParameter to recognize a plus sign (+) as a valid delimiter?

    Servlets follow the HTTP specification. So, there is not much you can do on that level. What you could do (though I do not recommend it) is to set-up a filter that will automatically swap the plus with an ampersand before the actual servlet processes it. My strong advice, however, is to give up on using a nonstandard delimiter.
    [http://java.sun.com/products/servlet/Filters.html]
    - Saish

  • How to pass and fetch multiple parameter in the URL of the Web Dynpro

    Please help me to fetch parameter in runtime from the URL in web dynpro allication. Like
    MyApplication?SAPtestId=Arun?SAPtestId=Kumar?Test2=Jaiswal;
    I want to fetch the value of the SAPtestId, Test1 and Test2 in the web Dynpro Application.
    Please help me on this asap. thanks

    Hi Arun,
    Passing parameter to a wen dynpro application is done throught default inbound plug, which exist in interface viewcontroller
    and you can access those parameter in implementaion of default inbound plug
    To pass parameter
    If MainWin is your main window of application then
    1.in MainWininterfaceview controller add parameters in default inbound plug.
    To access these parameter
    1. In implementaion of MainWininterface view right a code to access these parameter
    2.Store these parameters  in controller context, so you will be access it from any screen
    as
    public void onPlugDefault(com.sap.tc.webdynpro.progmodel.api.IWDCustomEvent wdEvent, java.lang.String SAPtestId )
        //@@begin onPlugDefault(ServerEvent)
    set  your controler context with SAPtestId
    //@@end

Maybe you are looking for

  • AIM 5.9 and iChat

    I've been working on doing video chat from my Mac to my in-laws PC. We got it to work last night with them using AIM 5.9. The only thing is that the window which they see us in is only 1"x1 1/2" (rather small). First, is there a way to change that wi

  • I can't install widows 7 using bootcamp ?

    Hi there... I tried to install windows 7 using bootcamp, but when the its Expanding the widows file it stop as it shows on the percentage bar on 68% ??? I tried so many time But i get the same problem.. When its working fine by using the parallel...

  • X Standard and missing maker files

    I have installed X Standard, using Windows 8.1 and Office XP.  I cannot create documents as the "missing maker files" error comes up.  I have updated X (I think) to no avail....help please!

  • The usb cable won't stay in my m515

    It won't stay in tight enough to charge the device.  Is there some way I can make it tighter or do I have to get a new cable?  Also how do I access the user manual.  It says it's in the software, but I can't find it. Post relates to: Palm m515

  • EA1 - Can't edit object view

    If I want to edit an object view in the 'Edit view pop up' I get an error after the click on 'Ok'. Error(s) parsing SQL: Unexpected token near *!* in the following: ,cast(multiset(select id,product_name,obtained from orderdetails where order_id = o.i