Bug in context based forward?

I have a servlet that is forwarding to a .jsp page. I do this using
          the getServletContext().getRequestDispatcher( "/my.jsp" ). Note that
          this is in a web application, not a servlet defined in
          weblogic.properties and the files for this web application are stored
          on a completely different directory location than the default server
          doc root directory. In order to avoid having problems with relative
          URL's in the destination JSP page, I changed one of the images which
          has a link in it to use a path relative to the root of the server -
          i.e. something like /index.jsp.
          The first thing that I noticed was that the URL (unlike what the spec
          says) for the destination page in the browser changed to the url for
          the forwarded to page (vs staying with the request URL as the spec
          says) - but that is really beside the point of this post ... the real
          problem is that when I click on that image to take me to that page,
          the URL that is formed lacks the web application context component -
          thus Weblogic tries to find it in the public_html subdirectory and of
          course returns a 404 error since the document is stored off of the web
          application's directory, not the root directory of the web server.
          I am running SP5 WLS 5.1.
          Is this a bug - or am I misinterpreting the spec?
          

Hi Scott,
          It is typical to access your servlets via the following form:
          http://www.myco.com/myapp/stuff
          ... where "stuff" must not contain "/" characters. Usually "stuff" will be
          mapped (via web.xml) to a servlet. I usually use a front servlet, so my
          web.xml maps "*" to that front servlet, and the front servlet then is
          responsible for its own mapping from that point. I usually put security on
          *.jsp to an admin group, so that they are not accessible directly. That way
          all requests go through my front servlet.
          HTML returned by the servlet (regardless of how gen'd, for example by fw to
          a jsp) should contain relative paths to the images only if the images are
          under:
          http://www.myco.com/myapp/
          For example, in a small WAR (i.e. conventional, not nuclear) you might put
          your .jsp files in the root of the WAR and your images in a sub-directory
          called /img. In such a case, your servlet is doing a forward:
          forward("/my.jsp")
          ... and the JSP formats HTML containing images such as:
          src="img/my.gif"
          I personally prefer:
          src="<App:ImagePath/>my.gif"
          ... but that takes a bit more work to implement and manage.
          Cameron Purdy
          [email protected]
          http://www.tangosol.com
          WebLogic Consulting Available
          "Scott Jacobs" <[email protected]> wrote in message
          news:[email protected]...
          > Correction - the URL displayed in the browser is not incorrect as I
          > stated below - it is ok. However, any root relative path I attempt to
          > use causes the server to look at the actual web server root, and not
          > the root of the web application.
          >
          > Note also that I have tried using the request.getRequestDispatcher()
          > method as well, using relative paths for the url passed to that
          > dispatcher along with relative URL's for links, etc. in the .jsp
          > pages. That approach works, except that if I go from index.jsp
          > (accessed directly), then to register.jsp (forwarded to by servlet),
          > and then back to index.jsp via image link on register.jsp page, I now
          > have the path of the servlet in the url for the index page. If I then
          > go to the register page again, I get another path component
          > corresponding to the servlet added to the url displayed, and so on.
          >
          > How the heck do I prevent this - do I have to go in and modify the
          > links on the forwarded to JSP page so that they "get rid" of the
          > servlet component of the path by using "../". This would be a pain
          > since most of these links are in common header and nav bar areas. That
          > would mean that I would have to have at least two sets of those
          > depending on whether the page was forwarded to by my control servlet
          > or not...yuck!
          >
          > On Thu, 14 Sep 2000 02:33:32 GMT, [email protected] (Scott Jacobs)
          > wrote:
          >
          > >I have a servlet that is forwarding to a .jsp page. I do this using
          > >the getServletContext().getRequestDispatcher( "/my.jsp" ). Note that
          > >this is in a web application, not a servlet defined in
          > >weblogic.properties and the files for this web application are stored
          > >on a completely different directory location than the default server
          > >doc root directory. In order to avoid having problems with relative
          > >URL's in the destination JSP page, I changed one of the images which
          > >has a link in it to use a path relative to the root of the server -
          > >i.e. something like /index.jsp.
          > >
          > >The first thing that I noticed was that the URL (unlike what the spec
          > >says) for the destination page in the browser changed to the url for
          > >the forwarded to page (vs staying with the request URL as the spec
          > >says) - but that is really beside the point of this post ... the real
          > >problem is that when I click on that image to take me to that page,
          > >the URL that is formed lacks the web application context component -
          > >thus Weblogic tries to find it in the public_html subdirectory and of
          > >course returns a 404 error since the document is stored off of the web
          > >application's directory, not the root directory of the web server.
          > >
          > >I am running SP5 WLS 5.1.
          > >
          > >Is this a bug - or am I misinterpreting the spec?
          >
          

Similar Messages

  • How to create dynamic context based on a structure defined in the program?

    Hi Experts,
             I need to create a dynamic context based on a structure wa_struc which i have define programatically.
    When I pass wa_struc to structure_name parameter of create_nodeinfo_from_struc, i get a runtime error:
    "Parameter STRUCTURE_NAME contains an invalid value wa_struc."
    How to create dynamic context based on a structure defined in the program?
    I have written the code like this:
    TYPES: BEGIN OF t_type,
                v_carrid TYPE sflight-carrid,
                v_connid TYPE sflight-connid,
             END OF t_type.
      Data:  i_struc type table of t_type,
             wa_struc type t_type.
      data: dyn_node   type ref to if_wd_context_node.
      data: rootnode_info   type ref to if_wd_context_node_info.
      rootnode_info = wd_context->get_node_info( ).
      clear i_struc. refresh i_struc.
      select carrid connid into corresponding fields of table i_struc from sflight where carrid = 'AA'.
    cl_wd_dynamic_tool=>create_nodeinfo_from_struct(
      parent_info = rootnode_info
      node_name = 'dynflight'
      structure_name = 'wa_struc'
      is_multiple = abap_true ).
    dyn_node = wd_context->get_child_node( name = 'dynflight' ).
    dyn_node->bind_table( i_struc ).
    Thanks
    Gopal
    Message was edited by: gopalkrishna baliga

    Hi Michelle,
              First of all Special thanks for your informative answers to my other forum questions. I really appreciate your help.
    Coming back to this question I am still waiting for an answer. Please help. Note that my structure is not in a dictionary.
    I am trying to create a new node. That is
    CONTEXT
    - DYNFLIGHT
    CARRID
    CONNID
    As you see above I am trying to create 'DYNFLIGHT' along with the 2 attributes which are inside this node. The structure of the node that is, no.of attributes may vary based on some condition. Thats why I am trying to create a node dynamically.
    Also I cannot define the structure in the ABAP dictionary because it changes based on condition
    I have updated my code like the following and I am getting error:
    TYPES: BEGIN OF t_type,
    CARRID TYPE sflight-carrid,
    CONNID TYPE sflight-connid,
    END OF t_type.
    Data: i_struc type table of t_type,
    dyn_node type ref to if_wd_context_node,
    rootnode_info type ref to if_wd_context_node_info,
    i_node_att type wdr_context_attr_info_map,
    wa_node_att type line of wdr_context_attr_info_map.
    wa_node_att-name = 'CARRID'.
    wa_node_att-TYPE_NAME = 'SFLIGHT-CARRID'.
    insert wa_node_att into table i_node_att.
    wa_node_att-name = 'CONNID'.
    wa_node_att-TYPE_NAME = 'SFLIGHT-CONNID'.
    insert wa_node_att into table i_node_att.
    clear i_struc. refresh i_struc.
    select carrid connid into corresponding fields of table i_struc from sflight where carrid = 'AA'.
    rootnode_info = wd_context->get_node_info( ).
    rootnode_info->add_new_child_node( name = 'DYNFLIGHT'
    attributes = i_node_att
    is_multiple = abap_true ).
    dyn_node = wd_context->get_child_node( 'DYNFLIGHT' ).
    dyn_node->bind_table( i_struc ).
    l_ref_interfacecontroller->set_data( dyn_node ).
    But now I am getting the following error :
    The following error text was processed in the system PET : Line types of an internal table and a work area not compatible.
    The error occurred on the application server FMSAP995_PET_02 and in the work process 0 .
    The termination type was: RABAX_STATE
    The ABAP call stack was:
    Method: IF_WD_CONTEXT_NODE~GET_STATIC_ATTRIBUTES_TABLE of program CL_WDR_CONTEXT_NODE_VAL=======CP
    Method: GET_REF_TO_TABLE of program CL_SALV_WD_DATA_TABLE=========CP
    Method: EXECUTE of program CL_SALV_WD_SERVICE_MANAGER====CP
    Method: APPLY_SERVICES of program CL_SALV_BS_RESULT_DATA_TABLE==CP
    Method: REFRESH of program CL_SALV_BS_RESULT_DATA_TABLE==CP
    Method: IF_SALV_WD_COMP_TABLE_DATA~MAP_FROM_SOURCE_DATA of program CL_SALV_WD_C_TABLE_V_TABLE====CP
    Method: IF_SALV_WD_COMP_TABLE_DATA~MAP_FROM_SOURCE of program CL_SALV_WD_C_TABLE_V_TABLE====CP
    Method: IF_SALV_WD_COMP_TABLE_DATA~UPDATE of program CL_SALV_WD_C_TABLE_V_TABLE====CP
    Method: IF_SALV_WD_VIEW~MODIFY of program CL_SALV_WD_C_TABLE_V_TABLE====CP
    Method: IF_SALV_WD_COMPONENT~VIEW_MODIFY of program CL_SALV_WD_A_COMPONENT========CP
    -Gopal
    Message was edited by: gopalkrishna baliga

  • Sample "REST" service for context based routing in OSB

    Hi All,
    We have a requirement where we have to do context based routing in OSB.For that, we need to have a Rest Service which should do context based routing.In the payload there will be Action tag, based on the Action tag we need to invoke corresponding Business service, if you have any sample service like this please send it to me.
    As I am quite new to Rest services.It will be helpful if I get a sample service.
    Thanks In Advance

    http://prsync.com/oracle/restful-services-with-oracle-service-bus-6243/
    http://blogs.oracle.com/jamesbayer/2008/07/using_rest_with_oracle_service.html
    http://blogs.oracle.com/jeffdavies/2009/06/restful_services_with_oracle_s_1.html
    Regards,
    Anuj
    Edited by: Anuj Dwivedi, TCS on Aug 17, 2010 3:02 PM

  • Rule-Based Forwarded Email

    I am reviewing the contents of the Message Tracking logs from an Exchange 2010 server. How can I identify those emails that were forwarded using some form of rule-based forwarding? Does the exchange server record rule-based forwarded emails in the Message
    Tracking logs?
    I would normally perform a test to find the answer, unfortunately I do not have access to an Exchange 2010 server.
    Any assistance is greatly appreciated.

    You didn't say you were running the Exchange server on a Domain Controller (not a configuration that's recommended). Since this is an Exchange forum I took what you said to mean that you had only an image of the Exchange server.
    If you have the AD then you'll find the alternateRecipient property on the accounts that had it populated at the time your image was made, along with the transport rules (which would be easier to deal with using Powershell).
    --- Rich Matheisen MCSE&I, Exchange MVP

  • How to pass context based parameters to subquery?

    Hello to All!
    How to pass context based parameters to subquery of custom folder when I schedule workbook?
    Thanks, Oleg

    Hi Russ
    Yes, I've done this too. Basic SQL though will not allow the updating of a table inside a function, so we have to get clever. The trick is to use the PRAGMA AUTONOMOUS TRANSACTION command. Here's an example:
    FUNCTION UPDATE_MYTABLE(P_VALUE IN NUMBER)
    RETURN VARCHAR2 IS
    PRAGMA AUTONOMOUS_TRANSACTION;
    BEGIN
    UPDATE SCHEMA_OWNER.MY_TABLE SET MY_VALUE = P_VALUE;
    COMMIT;
    RETURN('Done');
    END UPDATE_TABLE;
    When the update has been completed the Discoverer worksheet will respond with 'Done'.
    Everyone: don't forget to grant EXECUTE on this function to all of the necessary users, including the EUL owner, and also don't forget to import the function using the Admin edition so that it is available for the users. You will also need to make sure that all necessary users have been granted the UPDATE privilege on the table.
    I hope this helps
    Regards
    Michael

  • How to implement context based auditing?

    I am looking to implement context based auditing, auditing the reason for a change as well as the before and after values, change time etc.
    One method that springs to mind would be to abstract the key tables behind an API and require the change reason whenever any DML is issued but does anyone out there have a better method that would be easier to implement and maintain.
    Unfortunately I will be both retrofitting the solution to a current system as well as creating a new solution too so any suggestions would be welcomed.
    Thanks in advance for your suggestions.
    Ollie.

    Ollie_J (OCP) wrote:
    Thanks for the quick response but the auditing described in the links only audits changes but not fundamentally the CONTEXT of the change.
    I need to record why a user was changing data not just what they were changing.This sort of thing, as Pavan has mentioned, is not available within the database. For example, you have updated a parameter through the alter system command so what is the context of this that you would audit in the first place? All what you can audit that what the user has fired i.e the alter statement. I am not sure that this actually would be good idea to do even but still, as suggested, try to use something through the application and/or from the table itself that can help tracking it.
    Aman....

  • SNMP Support over VPNs—Context Based Access Control

    I am a little confused as to what this feature is designed to provide. I've been experimenting with this based on the examples in the CCO documentation.
    Can anyone offer me any insight into the design of this feature?
    My initial understanding was that all of the MIB data would be available (unless limited by a view) and that the contexts would limit access on a per VRF basis. For example
    VRF Customer_A1 could be in contextA
    VRF Customer_A2 could also be in contextA
    VRF Customer_B could be in contextB.
    When a walk query was performed on the MPLS-VPN MIB then only the data for the VRFs in the relevant context would be shown - so UserA (in GroupA which is associated with contextA) could see data about the Customer_A1 and Customer_A2 VRFs only, and UserB (in GroupB which is associated with contextB) could only see the information in contextB.
    It seems that my theories weren't quite right - the vrf <-> context <-> group relationship appears to be a little strange. A context must be unique and cannot be duplicated between VRFs - this means that CustomerA that has two (or possibly more) VRFs on a router can't see data on both using the userA login?
    It also appears that this feature doesn't work with views enabled on 12.3(7)T, and the data provided when context alone is used is limited to a subset of the IP-Forwarding MIB?

    Information about this feature including configuration examples is available in the documentation at http://www.cisco.com/en/US/products/sw/iosswrel/ps5207/products_feature_guide09186a00801a6d84.html. I also feel that the image 12.3(7)T is not exactly the best choice. The image is pretty new and a 'T' image. You might end up running into bugs frequently.

  • Bug with criteria based groups in FIM R2 SP1

    Hello all,
    We experience following unusual behavior within the FIM portal (FIM R2 SP1) with criteria based groups, which looks like a bug.
    The behavior applies for all kind of criteria groups and can be reproduced with following steps:
      1. Open your criteria based group and click on your members tab: 
    2. Click on General Tabs 
    3. Click back to Members tab -->the criteria is not available anymore 
    Do anybody else experiences the same? This behaviour confuses our customers and leads to corrupted criteria based groups.
    Regards Fatih

    Hi,
    Please check the cache properties in Portal Configuration. Try and test your issue by increasing the cache values.
    I am not sure, it will help you or not. But a try.
    Regards,
    Manuj Khurana

  • Bug in ABP based segregation at distribution group level

    We have Exchange 2013 based hosted exchange platform, tenants are segregated via ABP with custom attribute1 as a filter. users, distribution groups etc. are properly segregated as expected.
    when a user login to owa\ecp and navigate to Options->Groups, they can see the distribution groups it is member of and the distribution group for whom he is defined as manager, with in the same tenants. All good as expected.
    but now when you click on join button, it open up a windows which exposes all the security groups and distribution groups from all the tenants on this platform. it clearly says the
    ABP is not taking care of segregation at this level and expose ALL Groups Address list to all the tenants bypassing the ABP segregation. Is their any hack exist for this issue? 

    Hi Qaiser, this isn't a bug, it's a limitation of what the ABP code can do. This is why the guidance document (http://technet.microsoft.com/en-us/office/dn756468) says the following;
    Problem or Issue Description
    Some EAC/ECP features will not work correctly in a multi-tenant   configuration when using Exchange 2013.
    For example, the distribution group self-service functionality can expose   data from other tenants.
    For example, adding a user to any RBAC group that exposes the Distribution   Group Management options in ECP will likely result in exposing data from all   tenants.
    Recommended Approach to Solve
    It is recommended that you disable the features that do not work   correctly. For the DG self-service and management tools, you can do this by simply   not including users in the
    MyDistributionGroupMembership   RBAC role group that enables the functionality and user interface.
    It is also recommended to completely disable access to the Exchange   Administration Center by modifying the
    Set-ECPVirtualDirectory   –AdminEnabled parameter on all tenant-facing servers.
    Unsupported Solutions
    Modification of any of the files that are used for EAC/ECP is   unsupported. If you decide to build a control panel solution, that solution   must only use built-in cmdlets and interfaces.
    Additional Comments
    Understanding Role Based Access Control -
    http://technet.microsoft.com/en-us/library/dd298183.aspx  
    There is no hack to get around it.

  • Policy-based forwarding

    Hello,
    I'm not familiar with the IronPort ESA configuration at all. Just the concepts of what it does. However, I need to configure one for another appliance I'm installing. I need to be able to choose where to forward mails based on either the port that it connects on or the incoming IP address.
    I've been trying to understand the ESA config guide (using version 7.0.1) to figure out how to configure this and here's all I have so far:
    I can't receive mail on 2 different ports on the same interface
    Something about HATs
    Can someone break it down for me please? I'm seeing a lot of options.
    Regards,
    Xavier

    Hi,
    it is possible to configure more then one listener on one interface. They just need to be configured on different ports. So you can receive emails on the same interface with different ports. E.g. port 25 and port 26. Since the standard port for SMTP is 25, sending servers need to know that the appliance is listening as well on 26. So configuring different ports then port 25 would only make sense for particular servers/clients.
    When you need to forward mails based on the interface they are connecting to you can make the use of content filters. In a content filter you can add a condition "Receiving Listener" and as action select for instance "Send to Alternate Destination Host", depending on where you need to forward email.
    Best regards,
    Enrico

  • Bug in form based authorization ( url-patter /* and loginform in /*)

    Try this:
    examples\weapp\security
    default web.xml file for this webapp has url-pattern =
    <url-pattern>/admin/*</url-pattern>
    try to register this web application as default webApplication ( this can be
    done only by editing config.xml manualy - this is feature or bug ? =) )
    and change url-pattern to <url-pattern>/*</url-pattern> and try to run this
    example. Weblogic falls to recursion when executing this example. Porblem is
    that access to loginform is protected by /* but in order to access resouces
    in /* i need autorization which can be performed only by using loginform
    PS: sorry for my poor english
    Regards,
    Giedrius Trumpickas

    in the web.xml, you can specify some security setting , also the the protected
    resources are grouped by url pattern, so to avoid that ,you can group the protected
    url pattern to exclude the form resource, so the form resource page don't need
    to protected. or if weblogic is really smart , they should in default to leave
    the form page or error page or welcome page unprotected.
    Hope that helps.
    Yaodong Hu
    "Giedrius Trumpickas" <[email protected]> wrote:
    Try this:
    examples\weapp\security
    default web.xml file for this webapp has url-pattern =
    <url-pattern>/admin/*</url-pattern>
    try to register this web application as default webApplication ( this
    can be
    done only by editing config.xml manualy - this is feature or bug ? =)
    and change url-pattern to <url-pattern>/*</url-pattern> and try to run
    this
    example. Weblogic falls to recursion when executing this example. Porblem
    is
    that access to loginform is protected by /* but in order to access resouces
    in /* i need autorization which can be performed only by using loginform
    PS: sorry for my poor english
    Regards,
    Giedrius Trumpickas

  • Context Based Help

    1. Context sensitive help - on click of help link from a
    particular application page, the help application should open up
    (if not already open) and the particular help page should open in
    the right frame of the help application with the location of the
    help page in look-up tree being highlighted.

    aringen -
    Hello again. I'll cut and paste from another post today:
    To bring up the topic within the dual frame arrangement, try
    the hashmark method: e.g.:
    http://www.domainname.com/helpfolder/projectname.htm#specific_topic.htm
    or, if using the Map ID's, perhaps this article will help:
    http://www.adobe.com/cfusion/knowledgebase/index.cfm?id=5177075f

  • Bug: Report Column based on LOV character string buffer too small error

    When using a column type of "Display as Text (based on LOV, does not save state)" with a result set that is rather large causes a character or string buffer too small oracle error.
    See the below page for an example.
    The example page below has a single report off a table called "HUGE_TABLE" which has two columns: display and code
    Code contains a number between 0 and 100000.
    Display contains the number in code appended to a block of text.
    When I display the report with no Display As Text (based on LOV does not save state) it displays fine.
    If I make the "Code" column display as text based on LOV and make the LOV
    "SELECT display, code FROM huge_table"
    I get the error you see on the page.
    http://apex.oracle.com/pls/otn/f?p=32149:1
    Thanks.

    Thanks for your help Scott.
    So from what I've gathered from my own tests and the discussions you linked me to the LOVs based on SQL queries are being converted into "static LOV" strings before being used.
    As such they are limited to the PL/SQL VARCHAR2 max size of 32767
    Which means given the static reduction of the string 'STATIC:' that we have 32760 characters left.
    Which is where your SUM( LENGTH( display ) + LENGTH( return ) + 2 ) comes in.
    In short, if:
    sum( length( display ) + length( return ) + 2 ) + 7 > 32767
    would evaluate to true then you have a problem. :)
    I'll use this to track down my problems and switch them over to inline queries.
    Thanks.
    Cheers,
    Joe

  • How to dynamically Set the list of flex contexts based on a condition

    Database is in 11i atg rup7 level
    first OAF page - shows list of employees under a manager
    on clicking an employee record, the second OAF page opens and it shows a set of records from descriptive flexfield. Currently 5 contexts of the same flexfield are enabled for this responsibiltiy using the ContextA||Seg1|Seg2|Seg3||ContextB||Seg1|Seg2||ContextC||Seg1|Seg2|Seg3|Seg4||ContextD||Seg1|Seg|Seg3|Seg4||COntextE||Seg1|Seg2 in the personalisation at responsibility
    So 5 sections(one for each context) are shown in the OA page
    My requirement is to show only 3 contexts for employee 'A' and 5 contexts for the employee 'B'. Both the employees are under the same manager.So i think i cannot do a simple personalisation at responsibility level.
    So assuming ,i have some parameter like person_id , how do i dynamically restrict to 3 or 5 contexts in my controller code?

    Hi,
    Use this :
    OADescriptiveFlexBean descFlexfieldsBean = (OADescriptiveFlexBean)oawebbean.findIndexedChildRecursive("flexitemid");
    descFlexfieldsBean.processFlex(oapagecontext);
    if(descFlexfieldsBean != null)
    descFlexfieldsBean.setFlexContextCode(pageContext,"ContextName");
    Thanks,
    Gaurav

  • Context based assignment - context filter to display roles

    Hi!!
    I would like to make a guided task with a context named SYSTEM that contains values such as SAP ECC / SAP BW... and once the user selects the system (s) he wants (step 1), the appropriate roles (corresponding to the value of the context SYSTEM) display in step 2.
    I assign the MX_CTX_TYPE to the roles. Roles having context type SYSTEM were well display. Then I add the MX_CTX_CONDITIONAL (by modifying the attr to allow assignment to MX_ROLE entrytype) to the same roles. But it seems that the filter is made at contexte type level and not value context level.
    1 : Do you think if it's possible to use context value as filter for displaying roles in step 2?
    2 : Do you know a way to filter on system for displaying roles in order to assign them to a user even if it's not a guided task? I tried to use the FIELD functionnality but it seems that it's not allow with the attribute type of MX_ASSIGNMENT.
    Thanks,
    Guillaume

    Also suggest that you have a look at the MX_ASSIGNMENT attribute on the user, for use in the WebUI. This attribute will allow you to see both role and privilege assignments in a WebUI task. This also has the "context" setting as you mentioned.
    Regards
    John Erik Setsaas
    Development Architect IdM

Maybe you are looking for

  • Need help in using my GPRS connection to surf internet on macbook

    Hi, I have a Nokia 9300 communicator, with a GPRS conenction. I want to use it to connect to the internet on my macbook. Since I am in India, my service provider, not having sufficient knowledge of the mac, cannot help me with configuring it. can any

  • Oracle 11g R2 to MS Access .mdb (Windows Server 2008 64-bit) problem

    I have a need to make connection from Oracle 11g R2 to MS Access database file (mdb). OS is MS Windows Server 2008 64-bit. My configuration is next: 1. I made System DNS mikeacs (using c:\windows\sys_wow6\odbcad32.exe) to my access mdb file; 2. I mad

  • How do we handle BDC table control

    hi sap technical guru, PLS suggest me how to handle BDC table control while uploading data to sap R/3 regards,

  • Media Keys

    When I installed Windows 7 RC for the first time the media keys worked. When I rebooted, they no longer work. How do I solve this?

  • Namespace objects in XI

    Hi Experts, I would like to create two namespaces in IR, but the all object names should be same in both the namespaces. Is it possible in XI? Regards Sara