How to add a user defined HTTP header field?

Hi, everyone!
I want to add a user defined HTTP header field to a HTTP
response header.
I use the following statements in testHeader.jsp
response.addHeader("myheader", "123");
response.sendRedirect("middleHeader.jsp");
in middleHeader.jsp,
out.print(request.getHeader("myheader"));
But the output in middleHeader.jsp is null!
How to add a user defined HTTP header field to a HTTP
response header? Are there some sample codes?
Cheers,
George

the send redirect actually creates a new request (through the client) and thus a new response
thus the headers you set in the response are gone for the next request/response
You can try servletDispatcher.forward

Similar Messages

  • How to add a User Defined Field in OUBI

    Dear Experts
    I would like to find out how to add a user defined field into OUBI from a Customer Care & Billing source system. If anyone could list the steps involved or point me toward a source of documentation that sets out the steps involved it would be much appreciated.
    Cheers
    Tim

    Is there anyone out there who has had experience using OUBI with CC&B?

  • How to Add a user defined field in transaction-PKMC?

    Could anyone tell me the step by step process of how to add a user defined field in transaction-PKMC?
    Moderator message: please do some research before posting.
    Edited by: Thomas Zloch on Jan 16, 2012

    Is there anyone out there who has had experience using OUBI with CC&B?

  • User-defined http header and com.oracle.httpclient.HttpRequestBuilder

    Hello,
    In Java ME Embedded 8, I would like to send a HTTP request containing a user-defined identifier in the http header (X- header type), using the com.oracle.httpclient package.
           HttpClient client = clientBuilder.build();
            HttpRequestBuilder requestBuilder = client.build(http://my_uri);
            requestBuilder.setHeader(HttpHeader.ACCEPT, "text/plain");
    Here, I would like to add a user-defined header value like :
          requestBuilder.setHeader("MyHeader", "myHeaderValue");
    It seems that there are only pre-defined values available for headers in the com.oracle.httpclient.HttpHeader class.
    Is there any way to add a user-defined header in the request ?
    Thanks in advance.
    Bruno

    Hi Bruno,
    did you try HttpHeader myHeader = new HttpHeader("MyHeader");?
    /Sergey

  • How to add a user defined constructor to an existing type?

    Hi,
    I want to alter an existing type (ORDSys.ORDVideo), where I do not have the source code of the type body. There is only a wrapped version, where I don't know, how to alter it.
    Because the existing functions use the constructor of the original type I can't simply add new attributes. That's why I want to add a new user defined constructor which equals the old built in.
    Is there any way to do this, without having the bodys source code?
    Thanks, Christian

    Unfortunately, No.
    <quote source="oracle_documentation">
    Oracle interMedia describes the ORDVideo object type, which supports the storage and management of video data.
    </quote>
    It comes along with the Oracle interMedia and the modifications could not be performed by the customer.
    You could however, try to create a derived type based on this type and add your constructors/functions on top.

  • How to add/restore user-defined presets (.cst files)?

    Having recently fixed my corrupted install of GB2 with a clean install of GB3, I want to restore all my customized twiddles. Restoring all my self-made and 3rd-party loops was as easy as dragging them to the Loop Browser. I'm less sure about how to restore things like my self-made Real Instrument presets and so forth (all those fiddly .cst files).
    From my old GB2 install, I archived the whole /Library/Application Support/GarageBand/Instrument Library/ tree, so all my presets and everything are saved in their correct locations under that path. So, for example, I can drill on down to my archived [...]/Instrument Library/Plug-In Settings/Amp Simulation/ and find my old user-defined .cst presets.
    When I drag them to the appropriate [...]/Instrument Library/Plug-In Settings/Amp Simulation/ location in the support files tree of my new GB 3 installation, I get a warning that I need authorization. This is presumably a permissions issue, and if I authorize it by typing in my admin password, my old .cst files will be where I want them.
    But I have a nagging worry about whether they'll be correctly recognized by GarageBand when I then restart it. Is there some other better/different way to get my old .cst presets recognized in the new installation? Will they not appear because they haven't been indexed or something? I want to be sure of the best way to do this so I don't mess up my shiny new GB3 installation
    Cheers,
    Carl
    iBook G4   Mac OS X (10.4.6)  

    Making the backup archive before futzing around is certainly a good idea And, yes, there is quite a bunch of Instrument Library stuff new for GB3 that wasn't there in my GB2! (I look forward to messing with it
    When trying to copy my .cst and .pst files, when I clicked the Authenticate button on the you-ain't-got-permissions dialog box that came up, nothing happened. So I twiddled the permissions for the whole Instrument Library via Get Info, and then moved my stuff. That worked, though of course, Repair Permissions in Disk Utility won't fix them back now because the files aren't on the Start-Up disk. But, hopefully, it shouldn't really matter!
    For some reason, it still wouldn't recognize the added .cst and .pst files until I'd trashed the GB .plist/.cs and restarted, but now it seems to be fine. It was a bit slow to respond when I tested things be selecting some of my newly restored presets, but perhaps that's because it was still indexing. I haven't really checked it all through thoroughly to make sure things sound all right, but the signs are good
    Cheers,
    Carl

  • User defined HTTP headers

              Hi.
              Is there any way that I can add a user defined HTTP header when posting messages
              to a servlet?
              I tried the following --
              URL url = new URL("http://localhost:7001/ebXML/receiver");
              HttpURLConnection urlc = (HttpURLConnection)url.openConnection();
              urlc.setRequestMethod("POST");
              urlc.setDoOutput(true);
              FileInputStream in = new FileInputStream("ebxml.xml");
              byte[] buf = new byte[8192];
              buflen = in.read(buf);
              System.out.println("len="+buflen);
              urlc.setRequestProperty("Content-length", (new Integer(buflen)).toString());
              urlc.setRequestProperty("Content-type",
                             "multipart/related; type=text/xml; boundary=\"BEA-EBXML-Boundary\"; version=1.0");
              urlc.setRequestProperty("SOAPAction", "ebXML");
              At the receiving side, the servlet uses
              HttpServletRequest.getHeaderNames() to get all the headers.
              The Content-type and the Content-length headers are shown up properly; however
              the "SOAPAction" header is missing.
              I tried to put "X-" in front of "SOAPAction". Then, it got through. It seems to
              me that our Servlet Container has filtered out user defined headers if they are
              not started with "X-".
              How can I work around this problem? The ebXML TRP spec specified that the "SOAPAction"
              header must be in the HTTP header and I can not change the name to be "X-SOAPAction".
              

    Weird. I use 6.1sp1 and this works as expected. Here is a small test
              (app does pretty much the same):
              test.jsp:
              <%
              Enumeration e = request.getHeaderNames();
              while(e.hasMoreElements()) {
              String name= (String)e.nextElement();
              out.println(name + " = " + request.getHeader(name));
              %>
              Test.java:
              import java.io.*;
              import java.net.*;
              public class Test {
              public static void main(String[] args) {
              try {
              URL url = new URL("http://localhost:7001/test.jsp");
              HttpURLConnection conn = (HttpURLConnection)url.openConnection();
              conn.setRequestMethod("POST");
              conn.setDoOutput(true);
              conn.setRequestProperty("Content-type", "some/xml");
              conn.setRequestProperty("SOAPAction", "foo:bar");
              OutputStream out = conn.getOutputStream();
              byte[] data = "Hello, World!".getBytes();
              out.write(data);
              out.close();
              BufferedReader in = new BufferedReader(new InputStreamReader(conn.getInputStream()));
              String line;
              while((line = in.readLine()) != null) {
              System.out.println(line);
              } catch(Throwable oops) {
              oops.printStackTrace();
              # java Test
              Content-type = some/xml
              SOAPAction = foo:bar
              User-Agent = Java1.3.1
              Host = localhost:7001
              Accept = text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2
              Connection = keep-alive
              Content-length = 13
              > Dimitri Rakitine <[email protected]> wrote:
              >>Hrm. Unless you use some internal WebLogic version this should
              >>work (And it does work as expected - using both 5.1sp10 and 6.1sp1 -
              >>
              >>SoapAction gets to the servlet just fine).
              >>
              > I do use WLS 6.1 sp1 release version. I also find out another application using
              > java mail to post a request on the same servlet can have any user defined header
              > in the HTTP header.
              > So, I guess the problem is at the sending side. Have you tried to use the same
              > mechanism (HttpURLConnection) I was using to send the HTTP request?
              > Thanks!
              > Yuhua
              >>Yuhua <[email protected]> wrote:
              >>
              >>> Hi.
              >>
              >>> Is there any way that I can add a user defined HTTP header when posting
              >>messages
              >>> to a servlet?
              >>
              >>> I tried the following --
              >>
              >>> URL url = new URL("http://localhost:7001/ebXML/receiver");
              >>> HttpURLConnection urlc = (HttpURLConnection)url.openConnection();
              >>> urlc.setRequestMethod("POST");
              >>> urlc.setDoOutput(true);
              >>
              >>> FileInputStream in = new FileInputStream("ebxml.xml");
              >>> byte[] buf = new byte[8192];
              >>> buflen = in.read(buf);
              >>> System.out.println("len="+buflen);
              >>
              >>> urlc.setRequestProperty("Content-length", (new Integer(buflen)).toString());
              >>> urlc.setRequestProperty("Content-type",
              >>>                "multipart/related; type=text/xml; boundary=\"BEA-EBXML-Boundary\";
              >>version=1.0");
              >>> urlc.setRequestProperty("SOAPAction", "ebXML");
              >>
              >>> ;;;;;;;;;;;;
              >>> At the receiving side, the servlet uses
              >>> HttpServletRequest.getHeaderNames() to get all the headers.
              >>> The Content-type and the Content-length headers are shown up properly;
              >>however
              >>> the "SOAPAction" header is missing.
              >>
              >>> I tried to put "X-" in front of "SOAPAction". Then, it got through.
              >>It seems to
              >>> me that our Servlet Container has filtered out user defined headers
              >>if they are
              >>> not started with "X-".
              >>
              >>> How can I work around this problem? The ebXML TRP spec specified that
              >>the "SOAPAction"
              >>> header must be in the HTTP header and I can not change the name to
              >>be "X-SOAPAction".
              >>
              >>
              >>
              >>
              >>--
              >>Dimitri
              Dimitri
              

  • How do you add a user defined page size for a "standard" user

    I have been trying to add a User Defined Page size in the Adobe PDF Properties with a "Standard" AD account.  When I click add/modify, no error shows up on the screen but the page size does not show up in the drop down menu.  The only accounts that can add page sizes are "Admin" accounts, as far as I know.  Does anyone know a workaround?  PLEASE HELP!!!

    Firefox unable to store your password without username.
    *https://support.mozilla.org/en-US/kb/password-manager-remember-delete-change-passwords

  • I have the code for this project, but how do I add this user-defined exception that I want?

    For a final VB.NET project, I have to write a project that ascends and descends a word or number chosen by the user. 
    This is what I want to do:
    I want to add a user defined error that will stop the program and tell the user to input a value into the program if they did not. I do not know how to do this. I think I would use a Null Reference exception. 
    Here is the code for the project:
    Module Module1 'VB.NET Final Project 12/30/14 . Option 3: Write a program to run two separate threads printing numbers or words (It can do both) in ascending and descending orders. The words have to be given by the user.
        Dim Ascending As System.Threading.Thread = New Threading.Thread(AddressOf PrintAscend) 'Two threads are declared,
        Dim Descending As System.Threading.Thread = New Threading.Thread(AddressOf PrintDescend) 'ascending and descending 
        Sub Main()
            Console.WriteLine("VB.NET Final Project 12/30/14 . Option 3: Write a program to run two separate threads printing numbers or words (It can do both) in ascending and descending orders. The words have to be given by the user.")
            Ascending.Start() 'starts first thread
        End Sub
        Sub PrintAscend()
            Console.WriteLine("Please type in a word to print in ascending order.") 'the program asks for users to input a word
            Dim input As String 'as a string
            input = Console.ReadLine()
            For i As Integer = 0 To input.Length - 1
                Console.WriteLine(input.Chars(i)) 'prints the letters of the word in ascending order 
            Next
            If Ascending.ThreadState = Threading.ThreadState.Running Then Descending.Start() 'starts second thread
        End Sub
        Sub PrintDescend()
            Console.WriteLine("Please type in a word or number to print in descending order.")
            Dim input As String
            input = Console.ReadLine() 'user inputs the word that he wants
            For i As Integer = input.Length - 1 To 0 Step -1
                Console.WriteLine(input.Chars(i)) 'prints the letters of the word in descending order 
            Next
            Console.WriteLine("Please press enter key to close the program, and thanks for your time.")
            Console.ReadKey()
        End Sub
    End Module

    Dejavu again?
    Is your teacher instructing you to use a User Defined
    error or do you just want to accept the user input, check it, give a message, and repeat?
    It seems to me you are missing the basic program loop? This example checks the user input and then performs an action, then repeats. If the user enters Quit execution stops. Is that what you want to do?
    Module Module1
    Sub Main()
    Console.Title = "Make a Decision"
    Dim theline As String = ""
    Do While theline <> "Quit"
    Console.WriteLine(vbLf & "Enter a or b." & vbLf)
    theline = Console.ReadLine()
    Select Case theline
    Case "a", "A"
    Console.WriteLine(vbLf & ">> Result: You entered A.")
    Console.WriteLine(vbLf & " ** Output Complete **" & vbLf)
    Case "b", "B"
    Console.WriteLine(vbLf & ">> Result: You entered B.")
    Console.WriteLine(vbLf & " ** Output Complete **" & vbLf)
    Case Else
    Console.WriteLine(vbLf & """" & theline & """ is invalid.")
    End Select
    Loop
    End Sub

  • How to send a user defined parameter to a web form?

    Hi,
    I4m looking for a solution how to send a user defined parameter to a web form when I start the form from a html-page.
    I think that it should work to add the parameter to the URL.
    Example: I added myparam=myvalue at the end oft the URL
    http://my.server.com:7777/f60cgi?form=myform.fmx&userid=scott/tiger@mydb&otherparams=useSDI=NO&lookAndFeel=generic&colorScheme=teal&myparam=myvalue
    How can I fetch the parameter myparam in forms?

    You have the user the otherParams parameter, which you can specify in the formsweb.cfg file, or override on the url. e.g. http://myhost/servlet/f690servlet?config=myApp&otherParams=myParam=myValue
    In the Forms Builder, in the Navigator window, there is a node called Parameters. Create one in there, and then you can refer to it like a block variable. e.g. if :myparam = 'myvalue' then...
    At runtime, Forms will match up any parameters on the command with parameters defined in your form, and populate them for you. You don't have to do anything.
    Regards,
    Robin Zimmermann
    Forms Product Management

  • OSB question : passing a user defined transport header to a proxy service

    Hi All,
    I have a proxy service that calls another proxy service. The protocol for the "called proxy service" is set to local. The calling proxy service has a "transport header" action to add a user defined header to the outbound request.
    I log the outbound request in the calling proxy service before publishing/calling the other proxy service. It does have header set as expected. But the called proxy service does not get this header.
    As a note in the "transport" tab "get all headers" is set to true.
    Please suggest
    Here is the outbound xml gets printed just before calling the proxy service
    <con:endpoint name="BusinessService$userProvisioning$businessService$HttpMessageSender" xmlns:con="http://www.bea.com/wli/sb/context">
    <con:service/>
    <con:transport>
    <con:uri>http://localhost:8064/ProvisioningService/</con:uri>
    <con:mode>request-response</con:mode>
    <con:qualityOfService>best-effort</con:qualityOfService>
    <con:request xsi:type="http:HttpRequestMetaData" xmlns:http="http://www.bea.com/wli/sb/transports/http" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
    <tran:headers xsi:type="http:HttpRequestHeaders" xmlns:tran="http://www.bea.com/wli/sb/transports">
    <tran:user-header name="JMS_BEA_RedeliveryLimit" value="1"/>
    <tran:user-header name="JMSDeliveryMode" value="2"/>
    <tran:user-header name="JMSExpiration" value="0"/>
    <tran:user-header name="JMSMessageID" value="ID:&lt;914937.1294164899050.0>"/>
    <tran:user-header name="JMSPriority" value="4"/>
    <tran:user-header name="JMSRedelivered" value="false"/>
    <tran:user-header name="JMSTimestamp" value="1294164899050"/>
    <tran:user-header name="JMSXDeliveryCount" value="1"/>
    *<tran:user-header name="reResolvedAddress" value="http://LPF004689:8080/axis2/services/provisioning/"/>*
    *<tran:user-header name="reResolvedRegion" value="MB"/>*
    <http:Content-Type>application/soap+xml; charset=utf-8</http:Content-Type>
    </tran:headers>
    <tran:encoding xmlns:tran="http://www.bea.com/wli/sb/transports">utf-8</tran:encoding>
    </con:request>
    </con:transport>
    <con:security>
    <con:doOutboundWss>false</con:doOutboundWss>
    </con:security>
    </con:endpoint>>
    And here is the inbound xml getting printed inside the called proxy service
    inbound="<con:endpoint name="ProxyService$userProvisioning$proxyService$LocalSoapListener" xmlns:con="http://www.bea.com/wli/sb/context">
    <con:service/>
    <con:transport>
    <con:mode>request-response</con:mode>
    <con:qualityOfService>best-effort</con:qualityOfService>
    <con:request xsi:type="loc:LocalRequestMetaData" xmlns:loc="http://www.bea.com/wli/sb/transports/local" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
    <tran:headers xsi:type="loc:LocalRequestHeaders" xmlns:tran="http://www.bea.com/wli/sb/transports"/>
    <tran:encoding xmlns:tran="http://www.bea.com/wli/sb/transports">utf-8</tran:encoding>
    </con:request>
    <con:response xsi:type="loc:LocalResponseMetaData" xmlns:loc="http://www.bea.com/wli/sb/transports/local" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
    <tran:headers xsi:type="loc:LocalResponseHeaders" xmlns:tran="http://www.bea.com/wli/sb/transports"/>
    <tran:response-code xmlns:tran="http://www.bea.com/wli/sb/transports">0</tran:response-code>
    </con:response>
    </con:transport>
    <con:security>
    <con:transportClient>
    <con:username>&lt;anonymous></con:username>
    </con:transportClient>
    </con:security>
    </con:endpoint>"

    Hi,
    We are using OSB 11g for sending message to external client.
    we are setting Headers "JMSType" in set Transport Header. but Client is not able to recieve the JMSType header at there side.
    we have read many forums for the same and turned on
    Pass all Headers through Pipeline
    Get All Headers
    then I put one publish action and keep my "Set Transport Header" inside that. still client is not able to find the same
    In out outbound request we can see the header as following.
    $outbound = <con:endpoint name="BusinessService$Notification$BusinessService$external$BUSINESSSERVICE:con="http://www.bea.com/wli/sb/context">
    <con:service/>
    <con:transport>
    <con:uri></con:uri>
    <con:mode>request</con:mode>
    <con:qualityOfService>exactly-once</con:qualityOfService>
    <con:request xsi:type="http:HttpRequestMetaData" xmlns:http="http://www.bea.com/wli/sb/transports/http" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
    <tran:headers xsi:type="http:HttpRequestHeaders" xmlns:tran="http://www.bea.com/wli/sb/transports">
    <tran:user-header name="JMSType" value="XXXXXXX">
    <http:Content-Type>text/plain; charset=utf-8</http:Content-Type>
    </tran:headers>
    <tran:encoding xmlns:tran="http://www.bea.com/wli/sb/transports">utf-8</tran:encoding>
    </con:request>
    <con:response xsi:type="http:HttpResponseMetaData" xmlns:http="http://www.bea.com/wli/sb/transports/http" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
    <tran:headers xsi:type="http:HttpResponseHeaders" xmlns:tran="http://www.bea.com/wli/sb/transports">
    <tran:user-header name="content-description" value="SOAP"/>
    <tran:user-header name="content-disposition" value="attachment;filename=&quot;[email protected]&quot;"/>
    <tran:user-header name="content-id" value="&lt;[email protected]>"/>
    <http:Cache-Control>proxy-revalidate</http:Cache-Control>
    <http:Connection>Keep-Alive</http:Connection>
    <http:Content-Length>112</http:Content-Length>
    <http:Content-Type>text/xml; charset=utf-8</http:Content-Type>
    <http:Date>Sun, 02 Sep 2012 04:06:43 GMT</http:Date>
    <http:Server>XXXXXXXXXerver>
    <http:Set-Cookie><![CDATA[<cookie-values xmlns="http://www.bea.com/wli/sb/transports/http">
    <value>JSESSIONID=m2RvGs2_Lvk_AZgyVJIv_e2-vSiFOQFi_mIA_SAPULGAKriCp_hbBD8uC0e8pEXt; Version=1; Path=/</value>
    <value>saplb_*=(spspiq_PIQ_00)6487650; Version=1; Path=/</value>
    </cookie-values>]]></http:Set-Cookie>
    </tran:headers>
    <tran:response-code xmlns:tran="http://www.bea.com/wli/sb/transports">0</tran:response-code>
    <tran:response-message xmlns:tran="http://www.bea.com/wli/sb/transports">OK</tran:response-message>
    <tran:encoding xmlns:tran="http://www.bea.com/wli/sb/transports">utf-8</tran:encoding>
    <http:http-response-code>200</http:http-response-code>
    </con:response>
    </con:transport>
    <con:security>
    <con:doOutboundWss>false</con:doOutboundWss>
    </con:security>
    </con:endpoint>

  • How to add multiple users to a role in ECC 6.0

    How to add multiple users (say 1000) to a role in ECC 6.0?

    Hi
    You can actually add multiple users to a role using transaction SU01. From SU01, use the menu Environment->Mass Changes.
    Here you can manually add the users, select them by address or authorisation data. Once you have your user list, you can then add or remove roles and/or profiles.
    Secondly , You can use SU10 to do mass changes to multiple users including role assignments per logical systems
    Also check the following link:
    http://www.sap-img.com/bc021.htm
    I hope this should do it
    regards
    Chen

  • How can I use User-Defined Aggregate Functions in Timesten 11? such as ODCI

    Hi
    we are using Timesten 11 version and as per the documentation, it doesn't support User-Defined Aggregate Functions.
    So we are looking for alternatives to do it. Could you please provide your expert voice on this.
    Thanks a lot.
    As the following:
    create or replace type strcat_type as object (
    cat_string varchar2(32767),
    static function ODCIAggregateInitialize(cs_ctx In Out strcat_type) return number,
    member function ODCIAggregateIterate(self In Out strcat_type,value in varchar2) return number,
    member function ODCIAggregateMerge(self In Out strcat_type,ctx2 In Out strcat_type) return number,
    member function ODCIAggregateTerminate(self In Out strcat_type,returnValue Out varchar2,flags in number) return
    number
    How can I use User-Defined Aggregate Functions in Timesten 11? such as ODCIAggregateInitialize ?

    Dear user6258915,
    You absolutely right, TimesTen doesnt support object types (http://docs.oracle.com/cd/E13085_01/doc/timesten.1121/e13076/plsqldiffs.htm) and User-Defined Aggregate Functions.
    Is it crucial for your application? Could you rewrite this functionality by using standart SQL or PL/SQL?
    Best regards,
    Gennady

  • How to add a user to the wheel group?

    How to add a user to the wheel group in leopard?

    In Leopard, users can be added to system groups using 'dscl'. For example, while logged into an "admin" account, the command below can be entered using "/Applications" > "Utilities" > "Terminal.app" to add a user "username" to the "wheel" group:<pre>
    sudo /usr/bin/dscl . -append /groups/wheel GroupMembership username</pre>
    If you prefer a GUI, "Workgroup Manager.app", included with the Leopard version of the "Server Admin Tools" can be used.
    http://www.apple.com/support/downloads/serveradmintools105.html

  • Regarding : How to add a user to portal group with the help of webdynpro .

    Hii ,
    I am working on an application in which with the help of an action( Button)  we r adding a user in Ztable in R/3 , as well as  group in portal.
    The user r successfully creating in Ztable but from portal side No user is assigned to Portal group.
    I need coding solution for " How to add a user to portal group with help of webdynpro"
    Any usefull link will also do.
    Pls anyone have any solution ??
    Thnks in advance.
    Rewards r waiting for u .

    Hi,
    Use UME api to add user to portal group.
    Using UME API:
    https://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/40d562b7-1405-2a10-dfa3-b03148a9bd19
    Regards,
    Naga

Maybe you are looking for

  • Email notification to Manager on routine change request

    I am trying to set up a multi review activity template for routine change request. The first Review Activity should notify the creator of the Change Requests Manager so the Manager can review. In the Review Activity, there is a check box for "Line Ma

  • Locking Problem for Ivews in SRM 4.0 in EP

    Hi .. We have given access to SRM EBP transaction through EP 6.0 SP9. The problem we are facing is that, once the user selects a trasaction in EP and then uses the BACK browser button or the link in EP, the corresponding process for the transaction r

  • How can I update to latest Solaris NTP 4  package?

    I am facing difficult challenge on this. There is a requirement to run the NTP version 4, I Understand the package involved is SUNWntp4S. But in all the patch bundles installed we have not been able to upgrade the current version, i.e V3 Tried to see

  • 10.8.6 Column view. Can we set the window width to resize to it's longest file?

    I have a MacBook Pro, 10.8.6. I always have my windows open in Column view. Can we set the window width to resize to it's longest file? I'm always having to manually make the width wider and it's annoying. Thanks

  • Ajax related...

    I have a project,that will be formed by ajax technology,so i want to know which ajax framework will be suited to eclipse...