Modify IRecReason. Is it possible?

Hy all,
I've to modify crm_ic standard view "IRecReason". I follow all the step in the example in "IC WebClient Cookbook" but nothing change.
I tried the same with another view and it works, so I'm asking if there is something particular on "IRecReason" view.
Thanks in advance
Regards
Stefano

Hi Thirumala,
I'm trying to define a different IRecViewSet but I can see only a part of my modification.
For example, in my CRM_IC_DT_REP, I substitute for id followup, notes anc activities the existent views with other views that I've defined in my CRM_IC.
I do the same for id reason and view IRecReason but I still see the standard one.
Is it possible that for different id's I've different situation?
Thanks in advance
Stefano

Similar Messages

  • I want modify my plant is possible using MM02 in poduct costing

    HI
    I want modify my plant name, while creation of Raw material insted of 1000 i given 3000 and created Raw material... now i want change my plant as 1000.. can any body send me reply immediatly..
    Thank you
    AShok kumar

    Kumar,
    You have to extend your RM to plant 1000.
    The one that was created incorrectly to 3000 could stay or could be marked for deletion and archived.
    Thanks
    Ajay

  • Object ISIP not modifiable in QA

    Hi All,
    As all of you may know in spite of the fact that the system has been closed (SCC4) and also whether the system change option is set to not modifiable (SE06) it is possible however to allow certain objects to be changed. In this case I am trying to allow changes to any infopackage. In order to perform this action I have set up the object type ISIP --> InfoPackage as "changeable original" through the object changeability of the transport connection.
    However, I still having problems while trying to change my existing infopackages. I am still receiving the following message:
    "The system and namespace change option set for this SAP System does not allow any changes to be made to object ISIP"
    Did anyone have this problem before?
    Thanks,
    José.-

    Hi All,
    Just wanted to share with you the solution that I've found to this problem. Indeed the problem was related to a bug it seems to exist in some versions whereby using the button "switch changeability" does not work (it shows like it has changed but it does not). Instead of this button, better right click on the column and choose the corresponding option.
    It worked, so I will close this post.
    Thanks anyway,
    José.-

  • How do you find what objects you modified?

    I am leaving my current company soon and they want me to document all objects that I touched.  Is there a simple way to do this?  I am thinking of a program that I can run (create) by searching z-objects (programs, structures, tables, forms, etc...) that I have modified.  Is this possible?
    Regards,
    Davis

    Just in case anybody finds it useful, here is a quick little program that I wrote.  It accepts a user name and a date range.  It then saves the objects in an excel file.
    Davis.
    *& Report  Z_TRANSPORTED_OBJECTS
    REPORT  z_transported_objects.
    TABLES: e070.
    DATA: t_e070 TYPE e070 OCCURS 0 WITH HEADER LINE.
    DATA : BEGIN OF t_e071 OCCURS 0.
            INCLUDE STRUCTURE e071.
    DATA : END OF t_e071.
    DATA : BEGIN OF t_header OCCURS 0,
           name(30) TYPE c,
           END OF t_header.
    DATA: v_pass_path TYPE string.
    PARAMETERS: p_user LIKE t_e070-as4user.
    SELECT-OPTIONS s_date FOR e070-as4date.
    *Get the header details for all transports created by p_user in the date range of s_date
    * if s_date is empty (no dates specified) then it will return all transports created by p_user
    SELECT * FROM e070 INTO TABLE t_e070 WHERE as4user = p_user AND as4date IN s_date.
    *Get the details (objects) in each transport
    SELECT * INTO TABLE t_e071 FROM e071 FOR ALL ENTRIES IN t_e070 WHERE trkorr = t_e070-trkorr.
    *Sort the table and delete all duplicate entries.  This will leave you with a list of all objects
    * which were "touched" by p_user ONLY if p_user created the transport.
    SORT t_e071 BY pgmid object obj_name.
    DELETE ADJACENT DUPLICATES FROM t_e071 COMPARING pgmid object obj_name.
    *Delete all transports which are included as objects in e071.
    DELETE t_e071 WHERE pgmid = 'CORR' AND object = 'RELE'.
    *Add the header lines for the output file:
    t_header-name = 'Request/Task'.
    APPEND t_header.
    t_header-name = 'Dictionary: Line item'.
    APPEND t_header.
    t_header-name = 'Program ID'.
    APPEND t_header.
    t_header-name = 'Object Type'.
    APPEND t_header.
    t_header-name = 'Object Name'.
    APPEND t_header.
    t_header-name = 'Object Function'.
    APPEND t_header.
    t_header-name = 'Lock Status'.
    APPEND t_header.
    t_header-name = 'Language'.
    APPEND t_header.
    t_header-name = 'Language Key'.
    APPEND t_header.
    t_header-name = 'Activity'.
    APPEND t_header.
    *Save the file in an excel format.
    CALL FUNCTION 'GUI_FILE_SAVE_DIALOG'
      EXPORTING
        default_extension = 'XLS'
      IMPORTING
        fullpath          = v_pass_path.
    CALL FUNCTION 'GUI_DOWNLOAD'
      EXPORTING
        filename   = v_pass_path
        filetype   = 'DBF'
      TABLES
        data_tab   = t_e071
        fieldnames = t_header.

  • Find all Z programs which are being modified in last month

    hii all,
    I want to find all Z programs which are being modified in last months.Is this possible??.is there any standard or z-program which can give me the detail of all Z-program which are modified.
    It is possible if i get last month Request but suppose if there are more than 100 request per month then it is not possible to go through each individual Request and find Z-programs.
      Waiting for ur reply.
    <removed_by_moderator> ... read [the rules|https://www.sdn.sap.com/irj/sdn/wiki?path=/display/home/rulesofEngagement]!
    Thaking You.
    Edited by: Julius Bussche on Jul 17, 2008 7:16 PM

    Hello
    REPORT ZCHPROG.
    TABLES: D010SINF.
    DATA: PROGTXT(72) TYPE C OCCURS 0 WITH HEADER LINE.
    DATA: PROGTXT1(72) TYPE C OCCURS 0 WITH HEADER LINE.
    DATA:
       BEGIN OF MT OCCURS 0,
    PROG LIKE D010SINF-PROG,
    EDTX LIKE D010SINF-EDTX,
    R3STATE LIKE D010SINF-R3STATE,
    UNAM LIKE D010SINF-UNAM,
    CNAM LIKE D010SINF-CNAM,
    UDAT LIKE D010SINF-UDAT,
    UTIME LIKE D010SINF-UTIME,
    END OF MT,
    N(4),
    PROG(20) TYPE C,
    MIN(10) TYPE C.
    RANGES: UDAT1 FOR D010SINF-UDAT.
    RANGES: UTIME1 FOR D010SINF-UTIME.
    SELECT-OPTIONS: PROG1 FOR D010SINF-PROG,      "
                    UNAM1 FOR D010SINF-UNAM,      "
                    CNAM1 FOR D010SINF-CNAM.      "
    PARAMETERS DEN(4) TYPE C DEFAULT '1'.
    PARAMETERS SEC(5) TYPE C DEFAULT '30'.
    PARAMETERS DOP AS CHECKBOX DEFAULT ' '.
    START-OF-SELECTION.
    IF DOP NE SPACE.
    MIN = SEC * 60.
          UTIME1-SIGN = 'I'.
          UTIME1-OPTION = 'BT'.
          UTIME1-LOW = SY-UZEIT - MIN.
          UTIME1-HIGH = SY-UZEIT.
       APPEND UTIME1.
    ENDIF.
          UDAT1-SIGN = 'I'.
          UDAT1-OPTION = 'BT'.
          UDAT1-LOW = SY-DATUM - DEN.
          UDAT1-HIGH = SY-DATUM.
       APPEND UDAT1.
    SELECT PROG UNAM UDAT UTIME R3STATE EDTX CNAM
    INTO (MT-PROG, MT-UNAM, MT-UDAT, MT-UTIME, MT-R3STATE, MT-EDTX,MT-CNAM )
             FROM D010SINF  WHERE PROG IN PROG1
                                         AND UDAT IN UDAT1
                                         AND UTIME IN UTIME1
                                         AND CNAM IN CNAM1
                                         AND UNAM IN UNAM1.
    APPEND MT.
    ENDSELECT.
    N = 1.
    WRITE: / 'from', UDAT1-LOW, 'to', UDAT1-HIGH.
    SORT MT BY UNAM UDAT UTIME.
    LOOP AT MT.
    WRITE: / MT-CNAM,MT-PROG,MT-UNAM,MT-UDAT, MT-UTIME,
    MT-R3STATE, MT-EDTX.
    N = N + 1.
    ENDLOOP.
    WRITE: / N.

  • Please consider adding a modifier key with click for rating change.

    Or provide us with an option to add the modifier key, as is possible in Photoshop.
    Once I had hundreds of photos selected to drag into another file, but I clicked near the bottom and changed all the ratings to 1 star.
    At that point I really could have used an UNDO option, like Microsoft Word.
    Either option -- modifier key or undo --would be solutions to this time waster.
    (This happened on a Apple Powerbook G4 with Panther 10.3.9, but could happen on a PC as well.)

    Holly,
    The Option modifier already exist as a Preference although it doesn't apply if using the mouse which is what you appear to be doing. Forcing the modifier on mouse users would defeat the purpose of the mouse and therefore I doubt that it would find widespread favor. As for Undo, well that already exists in the form of Cmd/Ctrl+Z just like Photoshop.

  • Is it possible to get the URL from which user came to Apex Application?

    Hi,
    I have 1 web site which is created by Apex. And I have to create similar sites with slight differences. For example, even though the contents are almost same, each telephone # have to be modified.
    So, if possible, I want to use only 1 web site and depending on the URL from which user came, change some information on the page. Is it possible?
    And if it is possible, what if the user set Apex URL as favorite and visit it after some days?

    Thank you Scott,
    This is the one.
    But I have another issue.
    If a user comes to our page from their link directly, I can identify where he come from. But if he added our site to Bookmark and comes to our site through the link, is it possible to identify his original route?
    If it is impossible, I will create other Apex Application and put each URL to the link in order to catch where the user is from.

  • ACS 5.3 one user multiple roles

    Hi.
    I have got ACS 5.3 and two AD groups: vpn_users and wifi_users. My goal is to permit authentication of user trying to connect to wireless network (via WLC) if he is a  member of wifi_users group. The similar goal is for vpn users (via ASA). I have no idea how to configure ACS Access Polieces.
    In Default Network Access -> Identity    I  created two rules:
    Wifi:  Compound Condition: System:Device IP address = WLC's IP  --> result: AD1 Identity Store
    VPN: Compound Condition: System:Device IP address = ASA's IP  --> result: AD1 Identity Store
    What can i do in Authorization section? My rule is sth like:
    If user is member of AD1:vpn_users  then permit access
    If user is member of AD1:wifi_users  then permit access
    As a resul if user is member of vpn_users but is not a member of wifi_users, he is authorizated both wifi and vpn
    How can i create a rule saying sth like:
    If System:Device IP address = WLC's IP  AND  AD1:group=vpn_users  THEN permit access.
    Thanks.

    Hi there,
    The roles for ACS administrators cannot be modified, and is not possible to add new ones in the current version, this could be an option in the future release.
    According to the role privileges from the User Guide, the closest role to your goal will be ReportAdmin however seems like you already tested this and is not doing what you were expecting.
    Documentation about roles:
    http://www.cisco.com/en/US/partner/docs/net_mgmt/cisco_secure_access_control_system/5.3/user/guide/admin_admin.html#wp1068633
    Rate if it helps!

  • Using a registered object outside a UnitOfWork

    We are constructing a multi-tiered application using TopLink 4.6. The Model and Controller are in different JARs but are part of the same EAR. Data objects mapped in TopLink are sent by the Model to the Controller. The Controller may modify these objects locally, and send them back to the Model for persisting.
    When the Controller makes a request for a data object to the Model, the Model does the following -
    1. Gets the object from the TopLink cache through a query
    2. Gets a UnitOfWork
    3. Registers the object with the UnitOfWork to get the clone
    4. Releases the UnitOfWork
    5. Returns the clone to the Controller
    I am registering the object with a UnitOfWork, even though I am not modifying it in that UnitOfWork.
    I have to do this because the object model is very complicated. The Controller needs access to the root object, and also all of its nested parts. Using this technique, I retain the benefit of Indirection. The other option is to use a ObjectCopyingPolicy, but that is expensive as the Model is forced to do a cascadeAll copy. Also, I cannot send back the original object returned by the query because this object comes from the cache, and the Controller could end up modifying it, thus causing possible data inconsistency.
    After the Controller sends back the modified object, the Model now does the following -
    1. Check the incoming object and perform business validations
    2. Get a UnitOfWork
    3. Do a deepMergeClone on the UnitOfWork to save the object.
    4. Commit or release the UnitOfWork
    This seems to work without any problems. Will this have any other repercussions? The object is initially obtained through a different UnitOfWork, and is saved using a different UnitOfWork.
    Is there a better way of handling this situation?
    Thanks

    Hi,
    The key here is that the object is cloned (copied) and the clone (copy) is returned to the client.
    The client then makes the changes to the copy (the original is still in the session cache and has not changed)
    When the object is register, TopLink does a look-up, using the copy Object, in the session to find the original object, it then makes a clone of the original object.
    You now have three copies of the same object. The Original Object (no changes), the clone of the Original Object (no changes yet), and the copy Object (with client changes).
    The next step merges the Original Object Clone (without changes) and the copy Object Clone (with changes).
    Now your system has two copies, The Original Object (no changes) and the clone Object (with changes).
    Now on commit, TopLink compares the Original with the Clone and updates the DB.
    Raanan.

  • Lightroom 4 (and 5) unable to see photos in folders (import and sync)

    Hi folks,
    actually I'm reporting about an old problem which still persists with Lightroom. I'm using Lightroom 4.4.1 on Windows 7 (64bit) and also Mac OS X Mavericks. Here's some more background information on my setup first, before describing the actual problem:
    My photos are stored on a Mac Mini running Mavericks, which I use as a fileserver. The fileshare is accessed by my Windows 7 PC as well as my Macbook. There is no issue with file access or any problem with any other program but Lightroom on the Windows machine. The Macbook does not have the issue described:
    My photos are basically organized by date in a folder structure per the picture below.
    The issue is that Lightroom on the Windows PC is not able to sync or even import pictures from some of the folders any more. Trying to sync the affected folders results in Lightroom to delete pictures from the catalogue because they're not found any more.
    One special thing is that in the import dialogue, Lightrooms shows me three addional subfolders in my actual picture folder which are not existing in reality. In the attached picture you can see three levels of subfolders "05 Norwegen" which are not there in the regular Windows or OS X structure, and no, they're not hidden or something like that. So something is mixed up with Lightrooms file/folder handling which causes this problem I guess.
    Checking the respective folders in Windows Explorer or on my Macbook and also with Lightroom on the Macbook tells me that all pictures are there and absolutely accessible!
    Checking different forums for tons of months revealed, that there's others having the same issue. There's also a couple of solutions which worked for some folks but not in my case:
    - Deleting the XMP files of the pictures in the folder did not work
    - Deleting the Preferences file in Lightroom  and creating a new one did not work
    - Un- and reinstalling Lightroom, including deleting the registry stuff and system files did no work
    - Creating a new catalogue and trying to import the whole picture selection did not work
    - Exporting the catalogue from my Macbook and importing it into the Windows PC's Lightroom did not work
    - Lightroom 5.x also does have the issue, at least with the current trial version, so updating does not help either
    - The issue came like "creeping" into the system and folders behaved like that as of a sudden, even without having edited or modified file in there before.
    - Lightroom can actually see all pictures again, if you move the affected folder to the Windows PC's local harddrive (SSD), but as soon as you move the folder back to the shared volume, even with Lightroom, the problem's there again
    - Renaming the folder also does not work and the "ghostly" subfolders mentioned above do have the same name again
    - A suspicion I had, that the problem is connected to the number of files in the affected folder, could not be confirmed by me. There was a time when I thought exceeding 100 files in the folder would reveal the problem, this is not true.
    As the issue is going on for more than a year, basically making my Windows PC useless in terms of photo editing, I'm heavily frustated with Lightroom and Adobe. The only thing I did not try right now was doing a clean install on the Windows PC, which I'm hesitant to do as Lightroom is the only application having problems.
    So, I would be happy if anybody would have a hint for me or if somebody from Adobe finally would take note of that issue. I expect it still to be there even if there would be a Lightroom 6. If there's something i can do to my Windows config, let me know!
    Regards!

    Alright,
    no replies so far! Anyways, here's some more information which is leading me to the conclusion that the bug causing the effect described above is a combination of Apple's SMB implementation of Mavericks and the way Lightroom is actually using SMB network access:
    I did another trial by connecting a USB hard drive to the USB port of my router (Netgear). The connection is quite slow, but moving one of the folders in question (see my 1st post above) to the shared drive connected to the Router made Lightroom on my Windows machine to see the photos again, when I told Lightroom where to find the moved folder!
    Everything was working as expected, on the Windows machine again! Moving the folder back again to the Mac Mini fileshare was causing Lightroom on the PC to get blind again for the pictures trying to sync or import. However, accessing and modifying a photo was possible again, like it was before the trial. So it's only the sync and import function having a problem!
    I also did some trial in re-building ACLs and access rights on the file server with no luck. So there's got to be a functionality in sync and import of Lightroom which is using a certain SMB feature which is not supported by Apple's SMB implementation!
    Any thoughts or hints?
    Thanks!

  • Please provide the abap code for below requirement

    note: if the user exit is not suitable please provide the suitable user exit and code
    1   Business requirement
          In order to update the postings and tracking on Buffer Account postings the User Exists need to be modified and extended where possible in order to trace the Buffer postings in applicable MM and FI reports , i.e. at PO level, GR level and IR level.
    The User-exit used in the document is only for transactions at Invoice Verification level (MIRO).
    Therefore when an Invoice is created and the requirements for Buffer Account postings are met, i.e. relevant doc types and AAC, a table for Buffer Account entries and a subsequent report is required in order to trail the various Buffer entries and postings.
    The User Exit : LMR1M003.
    The Component is  EXIT_SAPLMRMP_003 . 
    The user-exit (LMR1M003) gets triggered when an Invoice is created or changed (MIRO). When an Invoice is cancelled, all entries will have to be reversed.
    The code in this user-exit will identify the invoice number (bkpf-belnr)  that has been created or changed and thus post entries in the applicable buffer accounts for this purpose.
    2.0   Buffer Table
    The Buffer Account table for the Invoice will have the following fields
    Field      DataElement      Data Type     Description                              Saptable     
    mandt     mandt          clnt          client                         key     init     bkpf
    bukrs     bukrs          char          companycode                    key     init     bkpf
    belnr     belnr_d     char          accountdocumentno               key     init     bkpf
    gjahr     gjahr          numc          fiscalyear                    key     init     bkpf
    kostl     kostl          char          cost center                    key     init     csks     
    ebeln     ebeln          char          purchasing document number     key     init     ekko     
    blart     blart          char          document type                         bkpf
    bldat     bldat          dats          document date in document                    bkpf     
    budat     budat          dats          posting date in document                    bkpf
    xblnr     xblnr1          char          reference document number                    bkpf
    bstat     bstat_d     char          Document Status                         bkpf
    xstov     xstov          char          indicator: document is flagged for reversal          bkpf
    xmwst     xmwst          char          calculate tax automatically                    bkpf
    reindat     reindat          dats          invoice receipt date                         bkpf
    werks     werks_d     char          plant                                    csks
    wrbtr     wrbtr          curr          amount in document currency               bseg     
    bsart     esart          char          po doc type                              ekko     
    ebelp     ebelp          numc          item number of purchasing document          bseg     
    nplnr     nplnr          char          network number for account assignment          bseg     
    knttp     knttp          char          account assignment category                    ekpo
    3.0   Detail Design
    3.1   Invoice Details
    •     The User-exit LMR1M003 is only to be used at Invoice level (MIRO).
    •     The user-exit (LMR1M001) gets triggered when an Invoice is created or changed (MIRO) .the field name bkpf-belnr is fetched from the table bkpf and checked whether document created or changed and triggers the user exit LMR!M003 .
    •     When an Invoice is cancelled, all entries will have to be reversed this is done by checking the value of flag indicator  bkpf-xstov fetched from the table bkpf .
    •     The code in this user-exit will identify the invoice number that has been created or changed and thus post entries in the applicable buffer accounts for this purpose.

    Cross-post: http://forum.java.sun.com/thread.jspa?threadID=763485

  • Message split on adapter engine for the java based IDoc adapter

    Hi Guys,
    Do you know if message split on adapter engine is available for the java based IDoc adapter on the single stack (PI 7.31)?
    I'm getting such exception when I try to post 3 IDocs
    Transmitting the message to endpoint <local> using connection File_http://sap.com/xi/XI/System failed, due to: com.sap.aii.af.idoc.exception.IDOCAdapterException: Error before sending due to idoc parsing error: (7) IDOC_ERROR_PARSE_FAILURE: Invalid XML 1.0 character encountered within IDocXML for type <ns0:Messages>:
    state=EXPECTING_IMMEDIATE_TAG_END, charPosition=68, lineNumber=1, columnNumber=69, invalidChar=U+0078,
    sourceSnippet=...UTF-8" standalone="no"?><ns0:Messages xmlns:ns0="http://sap.com/xi/XI/SplitAndMerge"><ns0:Message1><...
    ^
    Mapping is one to many.
    Each IDoc content has been compared manually against the xsd schema and it was fine.  
    I know that old way of modifying xsd is still possible.
    Best regards,
    Wojciech

    Did you find a solution to this? Having a similar error right now.
    Thanks and kind regards
    Jens

  • I've lost the application folder from Favorites. How do I get it back?

    I've somehow lost the application folder which should be located in Finder - left hand side under Favorites. I can do a search and find a specific application located on the hard drive - so I haven't deleted them.  But I want the Application folder with the different applications back in Finder.  I'm kind of hesitant about starting a search in areas I know nothing about.  Can anyone help?

    Hi JanMP,
    The sidebar in a Finder window can be easily modified, so it's possible that the Applications folder may have been accidentally dragged out of it. You should be able to drag it back on from its current location (Macintosh HD > Applications), as outlined in the following article:
    OS X Yosemite: Customize the Finder toolbar and sidebar
    Regards,
    - Brenden

  • Not getting enough performance out of Msi GT60 0NC

    Hello there guys! Since I've got my laptop I have been getting the feeling that I am not getting enough power out of my toy. I dont know if its me who have too big expectations about this laptop or it really should be performing better?:( I have done hours of research regarding drivers, graphic setup and not at least overclocking which seems to raise the performance quite a bit but it easily gets unstable. I am using Msi's preinstalled drivers as it seems like they give the best performance so far. I have also installed the modded Firmware from https://forum-en.msi.com/index.php?topic=162629.0 which works better than the original one from Msi. But still, i hear a lot of people playing demanding games on ultra with fps around 50-60. In bf3 I get around 40-60 on High with shadow on medium and post processing off, anti-aliasing off. Turbo is on + overclock. The performance in Gw2 is even worse.
    So here is my question: am I expecting too much from the laptop or can I do something to improve it and make it run like a charm? Another question would be if it is possible to change powervoltage to get a higher overclock?
    I would very much like to hear from u guys how your msi gt60 is performing:)
    Best regards, Mathias Kanstrup

    Quote from: zipper.sippola on 18-September-13, 17:57:49
    Same here, Gt70 0NE + 680M; overclocking GPU core causes clockdowns so gains are minimal. Overclocking memory is successful upto about 2500MHz but gains are small as the memory isn't the restricting factor in preformance - or the effect is just minuscule. So mostly 2 to 8 % in benchmarks, max.
    With extreme air cooling and a modified VBios, it's possible to get up to around 15%......I know this first hand.
    I just don't care to do it since there's little point in pushing the hardware that hard regularly. Yes, it's great for bragging rights, but it's not useful for long term use unfortunately.
    Overclocking the memory in the GTX675M might help a bit more than in the 680M. I'm not sure, I haven't really followed up on the other cards.

  • DM3.0 EA2: Filter engineering changes between logical and relational model

    Hi,
    when I am engineering changes between logial and relational model there are some issues at filter handling for me:
    - When the filter "Show Modified Objects" is activated, the filter works only on the first level, e.g. on Entity level. On attribute level all attributes are displayed, not only the attributes which have really been modified. It is possible, to show on every level only the really modified objects?
    - I think, selecting a Filter condition is circuitous. All filter conditions except "Show All Objects" keeps activated when I choose another condition. So I have to deactivate "Show Deleted Objects" when I want to see only the modified objects. It is possible to choose another control element for filtering, e.g. disjunctive radio buttons?
    I am running Data Modeler on Windows XP with german localization and the JDK 1.6.0_11 from Oracle SQL Developer.

    I logged bug for that.
    Philip

Maybe you are looking for

  • Upgrade to ECC6 & Unicode: IE Web Browser Issues?

    Has anyone experienced web browser issues at display time? We are on IE7. We are now using the internal ITS. Our carriage returns are totally being ignored by the browser. Thus, we have a dropdown box to pick one of the businesses multiple partners,

  • 80%+ Packet Loss on a BT hop!

    I've been noticing extreme lag when playing games, which seems to occur regularly every few seconds for the past few weeks, maybe months. I ran PingPlotter for a few minutes to find that one of the 'hops' is losing nearly every packet! I don't know i

  • TS1398 iPad mini poor wifi

    The wifi connection on my new iPad mini (32GB wifi only) is so slow that I am submitting this from my iPod touch (4th gen). I actually started to access support on the iPad but it was just taking too long. Really this is not good enough for what shou

  • Web adi 11i

    Hi, we're on on ebs 11.5.10.2. I have a custom table that I have developed a web adi spreadsheet to load data into. The spreadsheet has a 2 header fields; header quantity and amount. I want to be able to validate that for all the lines I load, the su

  • What does java.exe do if double pass same classpath to it?

    By default, java.exe loads rt.jar as default classpath. if user explicitly passes rt.jar as classpath in command line to java.exe again, does java.exe load rt.jar twice or only once? Loading same classpath twice is slower than only once - i need the