How & Where Assign & Pass Request in package application

hi friends,
i am using package application to learn more about apex.here i have face some problems ,
On page no 1, there are an intractive report,but it shows only Customer Name, Referencable, Users, Summary, Web Site, Category ,Status column in intractive report but there are more column in Report Attributes ,
Plese tell me how does developer hide the unnessary column in intractive report on page no 1.
2nd Problem is,
i am not getting how & where developer assign & pass request LAST_PAGE_VISITED .Developer create an processes name Load Data on page no 1
if :REQUEST = 'REPORTS' then
:LAST_PAGE_VISITED := 20;
else
:LAST_PAGE_VISITED := 30 ;
end if;
i am not getting the meaning of this code and where developer pass and assign this Request.
What are the role of this code.
My Login Details
Workspace-->customertraker
username-->[email protected]
password-->piwufo
Application --> 2923
Thanks
Manoj

i just need to have my message be dynamic. However, i am not using validation.xml.
i can either use
in My actionClass.java, i am using
}ResourceBundle res = ResourceBundle.getBundle("struts/resource/MessageResource");
                                                 res.get("message.notify")     
                  //Is it possible to set the value of {0} from here on my resource.properties?
           or in my JSP
  <fmt:message key="message.notify"/>Thank you

Similar Messages

  • How to create installation scripts in packaged application

    can u tel me How to create installation scripts for packaged application.
    also tell me , i have to first install scripts and then supporting objects or
    supporting objects first then installation scripts..

    Hi,
    Depending upon your usecase there are different ways to implement this logic.
    Check this for example (Read my answer in this post):
    https://forums.sdn.sap.com/thread.jspa?threadID=349151
    Also check these senarios:
    http://help.sap.com/saphelp_nw70/helpdata/en/42/9ddf20bb211d72e10000000a1553f6/frameset.htm
    http://help.sap.com/saphelp_nw70/helpdata/en/42/9ddcc9bb211d72e10000000a1553f6/frameset.htm
    Also the delegation may be interesting for you:
    http://help.sap.com/saphelp_nw70/helpdata/en/a0/44b742cafec96ae10000000a155106/frameset.htm
    Greetings,
    Praveen Gudapati

  • How/Where can I request InCopy training for a team via webinars and in-house?

    How/Where can I request InCopy training for a team via webinars and in-house?
    My team desperately needs to incorporate InCopy into our operation. There are a number of people who need to be trained. I am unsure of how this is done...also, pricing/procedure? After calling the customer service line and being on hold for an hour, I decided to place my question here.
    Your assistance is greatly appreciated.

    Or, contact me at Seneca Design & Training:
    InCopy / InDesign Training & Workflow :: Seneca Design & Training :: Anne-Marie Concepción
    Bob is good, too. And there are others of our ilk here ... :-D  and on InCopySecrets.com too
    AM

  • How to assign transport request for Dynamic selection in SE36

    Hi Friends,
    Please guide me how to transport or assign a request for the changes made in BRF selecion view.
    I have assigned and added BKPF-XREF1_HD field for FB03 transaction. Its working fine as per user requirement.
    I am facing probelm to assing a transport request for that. I didn't find any transport menu in se36.
    So please provide me how to assign a TR which need to import into Production client.
    If I have to assign or create a program (standard), then please provide me the program name.
    Please reply.
    Thanks & Regards
    Sankar.
    Edited by: sankar babu on Jul 29, 2010 12:27 PM

    Moderator message - Cross post locked
    Total Questions:  283 (131 unresolved)
    Please also close your old posts and assign po1nts to helpful answers.
    Rob
    Edited by: Rob Burbank on Jul 29, 2010 9:50 AM

  • How to get Soap Request xml in application.cfc

    Hi
    if api getting soap request using cfhttp like below:
    <cfxml variable="mydata">
    <soapenv:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
       <soapenv:Header />
       <soapenv:Body>
           <ns:service_soap_call soapenv:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
            <login>test</login>
            <password>test</password>
          </ns:service_soap_call>
       </soapenv:Body>
    </soapenv:Envelope>
    </cfxml>
      <cfhttp url="http://sm.iclp-dubai.ae/research/wsdl/MyPointsBank.cfc?wsdl" method="post" charset="utf-8" result="myresult">
           type" value="text/xml">
            <cfhttpparam type="header" name="SOAPAction" value="">
           <cfhttpparam name="soapInput" type="xml" value="#trim(mydata)#"/>
    </cfhttp>
    then how to get Soap Request in application cfc.
    like :
    <cfif IsSOAPRequest() >
      <cfset soapreq = GetSOAPRequest() />
    </cfif>
    I want to validate the soap xml Request before calling targeted CFC.
    Any suggestion!.

    Let me see whether I understand. Are you attempting to achieve something like this:
    test.cfc
    <cfcomponent output="no">
    <cffunction name="testFunction" returntype="any" access="remote">
    <cfargument name="soapInput">
    <cfset var inputXML = arguments.soapInput>
    <cfset var soapBodyText="">
    <cfset var noBodyTextError="">
    <cftry>
        <cfset soapBodyText = xmlSearch(inputXML,"//soapenv:Body/text()")[1].xmlValue>
        <cfsavecontent variable="noBodyTextError"><?xml version="1.0" encoding="utf-8"?><soapenv:Envelope     xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <soapenv:Body> <soapenv:Fault> <faultcode>soapenv:Server.userException</faultcode> <faultstring>java.lang.Exception: Body not found.</faultstring></cfsavecontent>
        <cfif trim(soapBodyText) is "">
        <cfthrow>
        </cfif>
        <cfreturn inputXML>
    <cfcatch type="any">
    <cfreturn noBodyTextError>
    </cfcatch>
    </cftry>
    </cffunction>
    </cfcomponent>
    tester.cfm
    <cfxml variable="mydata">
            <soapenv:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:wor="https://www.worldmilesafrica.com">
       <soapenv:Header/>
       <soapenv:Body>
       </soapenv:Body>
    </soapenv:Envelope>
    </cfxml>
    <cfinvoke webservice = "http://127.0.0.1:8500/workspace/wsTest/test.cfc?wsdl"
              method = "testFunction"
               returnVariable = "result">
           <cfinvokeargument name="soapInput" value="#trim(mydata)#" >
    </cfinvoke>
    <cfdump var="#result#">

  • How to Assign The request when Initiation

    Hi all
    My BPM Project contains of 2 roles and 3 users..
    Roles are : Initiator , and Supervisor
    init1 user belongs to Initiator role
    sup1,+sup2+ belong to Supervisor role
    init1 user must specify to which supervisor participant *(sup1,sup2)* when creating the request
    The default implementation of Oracle Workspace is when the request sent and the supervisor login then there is no participant selected
    so, How can I specify to which supervisor the request should sent?
    Thanks

    In the assignment tab for the supervisor task you can change the Participant List configuration to specify a specific user (or list of comma separated user names) rather than the default swimlane assignment that uses the bpm:getPerformer() function. You'll have to capture the assigned user as an editable property of the payload value in the initiator task. Then pass that value to the supervisor's task (via that task's payload) and reference the userid in the expression to build the participant list. The participant type will be User, and the value will be an xpath into the payload where the supervisor's userid is found.

  • How to assign the default service package to the user in the command line ?

    when i create use use the following command ,which service package is assigned to the user ,or in where can i set the default service package ,thanks for you!
    /opt/SUNWcomm/bin/commadmin user create -D admin -F John -l jdoe -L Doe -n jnpc.com.cn -p 80 -w admin123 -W demo -X v120e.jnpc.com.cn -S mail,cal -E [email protected] -H v120e.jnpc.com.cn -k legacy

    When I create a user via command-line, I get no service package. I don't see any way to assign such on creation via command-line.
    Some of what might be in a service package can be set as default falues, through configutil.
    quota is this kind of thing.

  • How Web Server pass request IP Address as the environment variable?

    How can I config the Web server in order to pass the URL request IP address as the environment variable?

    Are you inspecting the environment from a CGI program? The definitive guide to the CGI standard is the CGI/1.1 specification at http://hoohoo.ncsa.uiuc.edu/cgi/env.html
    iPlanet-specific enhancements to CGI are described in the iPlanet Web Server Programmer's Guide.
    REMOTE_ADDR is probably the variable you're interested in.

  • How to assign request number to a report painter

    hi all
    i have to assign a request number to the report that i have created using report painter.
    please let me know how to assign a request number.
    thank you all in advance.

    Hi,
    If you are creating new report once you press Create on SE38, it would give you a screen where you enter the program details..
    After this You  get a Create Object Entry Screen on which you have to deifne Package ... Please don't select package as $TMP as it would not allow you to create request..
    Select relevant package and Press Save..
    It would give you another screen with blank Request Number..
    Please press the Create Button..
    The system will create a request Number and display in the request number..
    Press Save ..
    Hope this helps..

  • Request Set - Passing Request Id as Parameter

    Hi Guys,
    I have following request set
    STAGE1: Receiving Transaction Processor
    STAGE2: Receiving Interface Error Report
    STAGE3: Send Email (This custom program)
    Send Email Program looks for Request ID of Receiving Interface Error Report and sends out and email with attachement. The attachement is output of Receiving Interface Error Report.
    So my question is...how can i pass request id of STAGE2 request.
    thanks in advance
    Prashant Pathak

    Prashant,
    This might help you.
    select request_id from fnd_concurrent_requests a
    where description='2'
    and exists (
    select 1 from fnd_concurrent_requests b
    where b.request_id=<your_request_id>
    and a.parent_request_id=b.parent_request_id);
    Thanks
    Nagamohan

  • How to pass XML data between applications

    Hi,
    can any one tell me how to pass XML data between applications
    Thanks in advance
    Sudheer

    Steve,
    I tried the code in the http package in the Appendix A section of your book. Each time i try a POST I get a HTTP/1.1 400 Bad Request error from the server. I can successfully do a GET from URLs. I have pretty much copied your code verbatim. Any ideas?
    Thanks,
    Sunder
    <BLOCKQUOTE><font size="1" face="Verdana, Arial">quote:</font><HR>Originally posted by Steven Muench ([email protected]):
    See the "Working with XML Messages" section starting on page 242 of my Building Oracle XML Applications. It covers how to Send and Receive XML messages over the web through HTTP GET and HTTP POST as well as specifically Example 6-30 that illustrates how to receive a posted XML message in a servlet and process it.
    Hope this helps.<HR></BLOCKQUOTE>
    null

  • Help.I want to learn about how to assign a custom request  with manager .

    Hi.
    When i submit a custom single request.I got this problem.
    No concurrent manager is defined to process this request, so it cannot be processed.
    Contact your system administrator to define a concurrent manager to process this request or to verify that existing concurrent managers have the correct specialization rules.
    Then, I check the request with request id in application manager.I found there is no manager with my program.So I think i need to assign it.But i don't know how to do it.
    So.please help me.waiting for reply...
    Thanks
    Snail.

    Check Note: 342932.1 - No Concurrent Manager is Defined to Process This Request on Shutdown of Managers
    https://metalink.oracle.com/metalink/plsql/ml2_documents.showDocument?p_database_id=NOT&p_id=342932.1

  • How to assign particular concurrent requests to sparate concurrent managers

    How to assign particular Users concurrent requests to custom or Sparate concurrent managers
    OS : Linux
    Apps: 11.5.10.2

    Hi,
    This can be done via "Specialization Rules".
    How to Create a Custom Concurrent Manager [ID 170524.1
    How to Split the Load of Work to Many Concurent Managers [ID 473310.1]
    Oracle Applications System Administrator's Guide - Configuration (zipped) -- Page 7-14
    http://download.oracle.com/docs/cd/B25516_18/current/acrobat/115sacg.zip
    Make sure you bounce the CM once you are done.
    Thanks,
    Hussein

  • How sharepoint understand when user requests for web applications by their DNS names

    HI
    I configured Alternate access mapping in my sharepoint farm for default ,intranet zones
    and spt farm has two web front end servers and they load balancing by F5 device
    in WFE servers there are different web applications are running on different ports
    so here I want to know how load balancing works, load balancing configured in F5 device.
    when users request a webapplication from browser (ex http://cms) where this request will go
    1)when I ping cms and other web applicaations  it returns me a loadbalancer  server IP  for all web applications;
    ping cms : it returns 10.xxx.0.80 , same ip returns when I ping for other web app
    but ex CMS web application run on the 10.xxx.1.26:81 port in sharepoint server
    2) and these sharepoint web applications running on different ports in sharepoint  web servers , so here  how sharepoint understand when user requests for web applications by their DNS names
    http://cms and http://products  etc
    adil

    I'm not sure if the F5 can add a port number (I'm not an expert on load balancers).  But in general if you design the SharePoint site to run on port 81 then you need to have port 81 appended to the request or it won't work.  http://cms in your
    example would take you to http://cms:80 not http://cms:81.  But in general DNS will resolve the address back to the F5 load balancer.  The load balancer will look at the header of the HTTP request (which contains the original address you requested)
    and forward the request to the appropriate web front end IP address.  If your web front end is using one IP address for multiple sites then those sites need to be differntiated by using a custom port like 81 (which must be included in the original request)
    or because a host header was bound to the web application when it was created.  If they are running on different port numbers then the request must include the port number by the time it gets to the SharePoint server.
    Paul Stork SharePoint Server MVP
    Principal Architect: Blue Chip Consulting Group
    Blog: http://dontpapanic.com/blog
    Twitter: Follow @pstork
    Please remember to mark your question as "answered" if this solves your problem.

  • How to assign a new  transport request for  a program saved in $tmp mode

    Hi  all,
    How to assign a new  transport request for  a program saved in $tmp mode?

    Hi,
    delete the object fro the package $tmp.
    go to change mode, save it.
    while saving it will ask for teransport id.
    thanks
    vinod

Maybe you are looking for

  • Source code not generated in mapping

    Hi,   I tried mapping an Idoc to an XSD in my mnessage mapping.When I try to check my message mapping I get an error msg : "<Mappingname> has no Source Code"...My scenario is only some fields of Idoc map to the XSD and the rest are constants..I am in

  • IndexOutOfBoundsException When Creating Web Service Client

    Hello, I am getting the following error when I try to create a Web Service Client in JDeveloper 10.1.3. Any ideas why this occurs? Thanks, Kevin Scott java.lang.IndexOutOfBoundsException: Index: 0, Size: 0           at java.util.ArrayList.RangeCheck(

  • When importing DV, Event dates jumbled and incorrect. How to correct dates?

    When I import DV tapes into iM 08 the date that I imported them was correct and putting them in order under the year 2007. Then at about my 16th tape the Event went under the year 2016 then the next one 2019 then the next one 2002????? How can I rese

  • WLAN deployment across 3 floors without cable

    I have a customer looking to install a wireless network across 3 floors with full coverage on each floor. 2 ssid's are needed one for guest use and one for their business use. The top floor is where the server and demarc is located. The top floor is

  • Can Home/Dashboard be active with Action/Dashboard

    On v6111.  When we were on v6.0 we used the home page defaultdashboard.html file to broadcast messages to P4P users.  Since Action Dashboard Solution pack has been installed, users prefer that to be on top since announcments are infrequent.  We would