Code Search HELP

Here is my situation. I have a table that has a list of codes almost 100K. I have another table that has code listed in term of an in house regular expression.
Example:
40a.[1,2,3]
12b
Where
a is 0 - 9
b is 1 - 9
I have tried using REGEXP_LIKE but I get ORA-04030: out of process memory error.
My question is there a way to do this search such that it will be fast and efficient.
I have through about expanding the Expressed code, but that could lead to a lot of codes, and it specially gets tricky if the code is in the format of "1a2b". In this case I would need to somehow create 90 (10*9) rows. I am not entriely sure how to do this dynamically, because there could be a lot of variations.
The current approcach I am thinking of is to search based on character placement. Such that each character becomes a column and I do the comparisson as
Base_Char_1 = Code_Exp_1
Base_Char_2 = Code_Exp_2
I have not figured out how this would work. Shown below is the REGEXP_LIKE approach. Any help or advice would be great.
WITH t1 AS
     (SELECT '40a.[0,1,9]1' AS code_exp
        FROM DUAL
     ), t2 AS
       (SELECT code_exp
             , '^' || REPLACE (REPLACE (REPLACE (REPLACE (code_exp, 'a', '[0-9]'), '.', '\.'), 'b', '[1-9]'), ',') || '$' AS code_regexp
          FROM t1)
SELECT *
  FROM t2
WHERE REGEXP_LIKE ('402.11', code_regexp)Thanks.

Well, it is probably a design issue - joining 100 000 codes with 10 000 regular expressions based on regexp_like() will effectively mean 1e9 calculated regular expressions, which means a lot of work i suppose.
Besides that, there is indeed something strange on pga/uga memory consumption when regular expressions are stored in the table. I've set up small test case based on your data
SQL> CREATE TABLE codes AS
  2  SELECT dbms_random.string('p',10) code
  3  FROM dual
  4  CONNECT BY LEVEL <=100000
  5  UNION ALL
  6  SELECT '402.11' FROM dual
  7  /
Table created.
SQL> CREATE TABLE code_expressions AS
  2  WITH t1 AS
  3  (SELECT '40a.[0,1,9]1' AS code_exp
  4          FROM DUAL
  5  ), t2 AS
  6  (SELECT code_exp, '^' ||
  7          REPLACE (REPLACE (REPLACE (REPLACE (code_exp, 'a', '[0-9]'), '.', '\.'), 'b', '[1-9]'), ',')
  8          || '$' AS code_regexp
  9          FROM t1)
10  SELECT * FROM t2
11  /
Table created.
SQL> exec dbms_stats.gather_table_stats(user,'codes')
PL/SQL procedure successfully completed.
SQL> exec dbms_stats.gather_table_stats(user,'code_expressions')
PL/SQL procedure successfully completed.
SQL> set lines 100
SQL> col code for a15
SQL> col code_exp for a15
SQL> col code_regexp for a25
SQL> exec runStats_pkg.rs_start;
PL/SQL procedure successfully completed.
SQL> SELECT * FROM codes,code_expressions WHERE regexp_like(code,'^40[0-9]\.[019]1$');
CODE            CODE_EXP        CODE_REGEXP
402.11          40a.[0,1,9]1    ^40[0-9]\.[019]1$
SQL> exec runStats_pkg.rs_middle;
PL/SQL procedure successfully completed.
SQL> SELECT * FROM codes,code_expressions WHERE regexp_like(code,code_regexp);
CODE            CODE_EXP        CODE_REGEXP
402.11          40a.[0,1,9]1    ^40[0-9]\.[019]1$
SQL> exec runStats_pkg.rs_stop;
Run1 ran in 34 hsecs
Run2 ran in 276 hsecs
run 1 ran in 12.32% of the time
Name                                  Run1        Run2        Diff
STAT...session cursor cache co           1           0          -1
.... sniped
STAT...CPU used when call star          37         276         239
STAT...CPU used by this sessio          37         276         239
STAT...DB time                          37         277         240
STAT...Elapsed Time                     36         283         247
STAT...session pga memory           65,536           0     -65,536
STAT...session uga memory           65,560           0     -65,560
STAT...session pga memory max      262,144  10,551,296  10,289,152
STAT...session uga memory max      261,964  10,592,024  10,330,060
Run1 latches total versus runs -- difference and pct
        Run1        Run2        Diff       Pct
       1,009       1,348         339     74.85%
PL/SQL procedure successfully completed.
SQL>
SQL> conn scott/tiger
Connected.
SQL> set lines 100
SQL> col code for a15
SQL> col code_exp for a15
SQL> col code_regexp for a25
SQL>
SQL> exec runStats_pkg.rs_start;
PL/SQL procedure successfully completed.
SQL> SELECT * FROM codes,code_expressions WHERE regexp_like(code,'^40[0-9]\.[019]1$');
CODE            CODE_EXP        CODE_REGEXP
402.11          40a.[0,1,9]1    ^40[0-9]\.[019]1$
SQL> exec runStats_pkg.rs_middle;
PL/SQL procedure successfully completed.
SQL> SELECT * FROM codes,code_expressions
  2  WHERE regexp_like(code,'^' ||
  3  REPLACE (REPLACE (REPLACE (REPLACE (code_exp, 'a', '[0-9]'), '.', '\.'), 'b', '[1-9]'), ',') ||
  4           '$');
CODE            CODE_EXP        CODE_REGEXP
402.11          40a.[0,1,9]1    ^40[0-9]\.[019]1$
SQL> exec runStats_pkg.rs_stop;
Run1 ran in 37 hsecs
Run2 ran in 335 hsecs
run 1 ran in 11.04% of the time
Name                                  Run1        Run2        Diff
STAT...recursive cpu usage               3           2          -1
.... sniped
STAT...CPU used when call star          40         336         296
STAT...CPU used by this sessio          40         336         296
STAT...DB time                          40         336         296
STAT...Elapsed Time                     39         338         299
STAT...session pga memory           65,536           0     -65,536
STAT...session uga memory           65,560           0     -65,560
STAT...session pga memory max      262,144  10,551,296  10,289,152
STAT...session uga memory max      261,964  10,592,024  10,330,060
Run1 latches total versus runs -- difference and pct
        Run1        Run2        Diff       Pct
       1,022       1,348         326     75.82%
PL/SQL procedure successfully completed.
SQL> explain plan for
  2  SELECT * FROM codes,code_expressions WHERE regexp_like(code,'^40[0-9]\.[019]1$');
Explained.
SQL> select * from table(dbms_xplan.display);
PLAN_TABLE_OUTPUT
Plan hash value: 1698472622
| Id  | Operation            | Name             | Rows  | Bytes | Cost (%CPU)| Time     |
|   0 | SELECT STATEMENT     |                  |  5000 |   205K|    59   (6)| 00:00:01 |
|   1 |  MERGE JOIN CARTESIAN|                  |  5000 |   205K|    59   (6)| 00:00:01 |
|   2 |   TABLE ACCESS FULL  | CODE_EXPRESSIONS |     1 |    31 |     3   (0)| 00:00:01 |
|   3 |   BUFFER SORT        |                  |  5000 | 55000 |    56   (6)| 00:00:01 |
|*  4 |    TABLE ACCESS FULL | CODES            |  5000 | 55000 |    56   (6)| 00:00:01 |
Predicate Information (identified by operation id):
   4 - filter( REGEXP_LIKE ("CODE",'^40[0-9]\.[019]1$'))
16 rows selected.
SQL> explain plan for
  2  SELECT * FROM codes,code_expressions WHERE regexp_like(code,code_regexp);
Explained.
SQL> select * from table(dbms_xplan.display);
PLAN_TABLE_OUTPUT
Plan hash value: 3098457583
| Id  | Operation          | Name             | Rows  | Bytes | Cost (%CPU)| Time     |
|   0 | SELECT STATEMENT   |                  |  5000 |   205K|    57   (2)| 00:00:01 |
|   1 |  NESTED LOOPS      |                  |  5000 |   205K|    57   (2)| 00:00:01 |
|   2 |   TABLE ACCESS FULL| CODE_EXPRESSIONS |     1 |    31 |     3   (0)| 00:00:01 |
|*  3 |   TABLE ACCESS FULL| CODES            |  5000 | 55000 |    54   (2)| 00:00:01 |
Predicate Information (identified by operation id):
   3 - filter( REGEXP_LIKE ("CODE","CODE_REGEXP"))
15 rows selected.
SQL> explain plan for
  2  SELECT * FROM codes,code_expressions WHERE regexp_like(code,'^' ||
  3  REPLACE (REPLACE (REPLACE (REPLACE (code_exp, 'a', '[0-9]'), '.', '\.'), 'b', '[1-9]'), ',') ||'$');
Explained.
SQL> select * from table(dbms_xplan.display);
PLAN_TABLE_OUTPUT
Plan hash value: 3098457583
| Id  | Operation          | Name             | Rows  | Bytes | Cost (%CPU)| Time     |
|   0 | SELECT STATEMENT   |                  |  5000 |   205K|    57   (2)| 00:00:01 |
|   1 |  NESTED LOOPS      |                  |  5000 |   205K|    57   (2)| 00:00:01 |
|   2 |   TABLE ACCESS FULL| CODE_EXPRESSIONS |     1 |    31 |     3   (0)| 00:00:01 |
|*  3 |   TABLE ACCESS FULL| CODES            |  5000 | 55000 |    54   (2)| 00:00:01 |
Predicate Information (identified by operation id):
   3 - filter( REGEXP_LIKE ("CODE",'^'||REPLACE(REPLACE(REPLACE(REPLACE("CODE_E
              XP",'a','[0-9]'),'.','\.'),'b','[1-9]'),',')||'$'))
16 rows selected.Best regards
Maxim

Similar Messages

  • Window freezes when Product category selected via match-code (search help)

    Hello Experts,
    I am using SRM 7.0 Extended Classic Scenario.
    I maintained a product category hierarchy in the SRM environment.
    I maintained the GL Accounts related, the tax determination, the source system etc.
    I did all this customizing in a Development environment where everything was working fine.
    Now I just transported all this to a Quality environment.
    And in the Quality I am facing the following issue :
    If I select a product category via the match-code (search help), after the category is selected, the window freezes.
    I have to shut it down manually using the Windows Close button.
    However, when I type the category number, everything works fine.
    Do you have any idea what could be causing this issue, and how to fix it ?
    Thanks in advance,
    Sofiane

    Hello,
    We have the exact same issue in SRM 7.0 Extented Classic Scenario. This was working fine before we installed the latest support package 11. Which support package do you have?
    The same problem occurs with every drop down menu (search help) in EBP. For example when creating a new shopping cart, if I try to add approver, the same thing happens. After clicking 'Approval Process: Display / Edit Agents' > 'Add Approver', the window freezes. Same thing happens with IE8 and Firefox 3.6.13. Could you also try the same?
    Could it be a new bug in SP11?
    Thanks and best regards,
    Matti Hokkanen
    Edited by: Matti Hokkanen on Nov 4, 2011 10:30 AM
    Edited by: Matti Hokkanen on Nov 4, 2011 10:43 AM

  • BADI FOR WITHHOLDING TAX CODES SEARCH HELP

    HI,
    Is there any BADI for witholding tax code search help. i want to make some changes in it.
    field: WITHT
    Pls help.

    Please find the following BADIs which are called during the transaction FB60.
    BADI_FDCB_SUBBAS01
    BADI_FDCB_SUBBAS02
    PPA_CUST_BADI
    BADI_FDCB_SUBBAS03
    BADI_FDCB_SUBBAS04
    BADI_FDCB_SUBBAS05
    What release are you on? I have the same issue for 1042s, but here are some helpful links for turning on the extended withholding tax:
    http://help.sap.com/saphelp_erp2005/helpdata/en/e5/0780914acd11d182b90000e829fbfe/frameset.htm
    Defining withholding tax codes:
    http://help.sap.com/saphelp_erp2005/helpdata/en/e5/0780914acd11d182b90000e829fbfe/frameset.htm
    http://help.sap.com/saphelp_erp2005/helpdata/en/e5/0780914acd11d182b90000e829fbfe/frameset.htm
    Reward points if found helpful....
    Cheers,
    Chandra Sekhar.

  • Match Codes / Search Helps for Duplicate Check Vendor are missing

    Hi Guys,
    I'm trying to enable the Duplicate Check for the Vendor solution we have here and I couldn't help, but notice that when I'm setting up the DB Search in "Define Search Application", the out of the box values for existing search helps are already preconfigured and the values are the following:
    BP MC_BP_ADDRESS Address Data
    BP MC_BP_BANK_DETAIL Bank Details
    BP MC_BP_GENERAL General Data
    BP MC_BP_ID_NUMBER Identification Numbers
    BP MC_BP_ROLES BP Roles
    Unfortunately, when I check in SE11 - those search helps do not exist in the system. How can I get them deployed? Are they part of a Business Set that I missed to install and activate?
    Thanks in advance,
    Boris

    Hi Boris
    Please check that the following is set in your system:
    Configure Duplicate check for entity types - BP need the following:
    Assign search object connector template to object types - BP need the following:
    Ensure that "Business Partner template for MDG" connector is created in ESH_COCKPIT
    Regards
    Danie

  • Match Code/ Search Help

    Hi !
    I need to create a new matchcode for transaction XD03 which is directly a clone of search help DEBIX with additions of two fields i.e street 4 and street 5(STR_SUPPL3 & LOCATION). When I do that by copying and adding the two fields somehow I was not getting theright thing and it was taking me through the DEBIX , probably due to teh fact that I was using the same FM used in DEBIX. SO i created another database view table and put the required fields needed in it, but still I am not getting the result.
    Can anyone help me in creating this new search help which will be similar to DEBIX and the two fields added to it.
    Thanks

    >  i created another database view table and put the required fields needed in it, but still I am not getting >the result.
    > Can anyone help me in creating this new search help which will be similar to DEBIX and the two fields >added to it.
    Are those fields are from the smae table or they are from same table. what is happening when you go to view and check the entries, are those fields populated or not.
    May be inside the function they are populating the search help values with some coding manually , which don't include the Fields which you added recently.
    For time being, just to test remove the Exit function and check it once , are you getting values in those fields are not..

  • Dynamic search help for one field of the SM30 generated maintenance view

    Hi experts,
    I have one Z* table with three fields. For that table I have generated maintenance dialog in SE55 so I can now run the maintenance in SM30. My requirement is: as soon as a user enters a value for the first field, the search help for the second field should be depended on the value in the first field. Let's say when user entered value 01 into the first field then the search help for the second field should be S_HLP01. For other values entered into the first screen the search help for the second field should be S_HLP02. Both search helps are standard (the names differ).
    Is there any change how to achieve this without making completely new dynpro transaction?

    Hi ,
    You can try it this way.
    pass your match-code( search help to function ) HELP_VALUES_GET_WITH_MATCHCODE and get the value and update it in  your screen field.
    But you have to modify the flow logic in POV event. it would be better if you create your own transaction because once the maintenance is regenerated your modified flow logic will vanish

  • Exit: Standart Search Help

    Hi.
    I am involved in an upgrade Project and I am having problems with one transaction that was enhanced in a Match Code.
    I found the match code (search help) that was enhanced in the last version (4.6C) and I realized that in the new version it was not changed, so I did it manually. When I tested the match code in last version I put break points in the function module related with the search help and when I press the match code, the debug showed to me the function module related with the enhanced search help. I did the same in the new version, but the search help did not attach the function module enhanced.
    I don’t really know which the problem is, but I can see that it is like if the search help that was modified were not the correct one.
    So, what I want to know is how I could find in a standard transaction, the name of the search help (match code) that I need to change.
    Thanks..
    Diana.

    You may need to find out where or at what level the search help is attached. There is a hierarchy for this, the below link may help you.
    http://help.sap.com/saphelp_47x200/helpdata/en/0b/32e9b798da11d295b800a0c929b3c3/content.htm
    http://help.sap.com/saphelp_47x200/helpdata/en/8b/415d363640933fe10000009b38f839/content.htm
    Regards,
    Anish Thomas

  • Selection-Screen and Search Help

    Hi
    I'm trying to show a Search Help (using trabstrip) from an internal table, but when I execute the code, search help is showed twice.
    SELECTION-SCREEN BEGIN OF SCREEN 100 AS SUBSCREEN.
    SELECTION-SCREEN BEGIN OF BLOCK b1 WITH FRAME.
    SELECT-OPTIONS:
                a0 FOR ZCTRL01-ZSTATUS,
                a1 FOR ZCTRL01-ZLOTE,
                a2 FOR ZCTRL01-BELNR.
    SELECTION-SCREEN END OF BLOCK b1.
    SELECTION-SCREEN END OF SCREEN 100.
      wa_estejec-zstatus = 'E'.
      wa_estejec-zdescrp = 'Error'.
      APPEND wa_estejec TO ti_estejec.
      wa_estejec-zstatus = 'P'.
      wa_estejec-zdescrp = ' Processed'.
      APPEND wa_estejec TO ti_estejec.
    AT SELECTION-SCREEN on value-request for A0-low.  PERFORM search_help.
    AT SELECTION-SCREEN on value-request for A0-high. PERFORM search_help.
    *&      Selection-screen
    AT SELECTION-SCREEN.
      CASE sy-dynnr.
        WHEN 1000.
          CASE sy-ucomm.
            WHEN 'PUSH1'.
              mytab-dynnr = 100.
              mytab-activetab = 'BUTTON1'.
              MESSAGE s888(sabapdocu) WITH text-010.
              sy_ucomm = 'PUSH1'.
              PERFORM inicializar.
         ENDCASE.
    FORM SEARCH_HELP.
    *&      Form  SEARCH_HELP
    FORM SEARCH_HELP.
      call function 'F4IF_INT_TABLE_VALUE_REQUEST'
        EXPORTING
          retfield    = 'ZSTATUS'
          dynprofield = 'A0'
          dynpprog    = sy-cprog
          dynpnr      = sy-dynnr
          value_org   = 'S'
        TABLES
          value_tab   = ti_estejec.
    ENDCASE.
    Thanks in advance.

    Well, the code you posted won't pass a syntax check. You have an extra form statement, a missing endform statement and an extra endcase statement.
    But have you put the assignments to ti_estejec in the INITIALIZATION event??
    Rob

  • Can i have html code for date select options (SEARCH HELP)

    Hi frinds,
    I have a BSP Page with input as date.
    Can i have html code for date select options (SEARCH HELP)
    Moosa

    Hi
    Please find the sample code below.
    FROM DATE
          <htmlb:inputField id        = "dd"
                            width     = "45%"
                            type      = "DATE"
                            showHelp  = "X" <- Search help
                            alignment = "CENTER"
                            maxlength = "10"
                            disabled  = "TRUE"
                            value     = "<%= w_FROMDATE %>" />
    TO DATE
          <htmlb:inputField id        = "dd"
                            width     = "45%"
                            type      = "DATE"
                            showHelp  = "X"
                            alignment = "CENTER"
                            maxlength = "10"
                            disabled  = "TRUE"                      
    value     = "<%= w_TODATE %>" />
    Thanks
    kalyan

  • Search help for material code in VA01

    Dear Experts,
    In VA01 tcode in item level if user press f4 in the material code then we will get all the f4 helps for few fields.Now i need to add one more field  mtart from mara table  in the existing  search help of material code.
    plz suggest me how can i proceed.
    If u have any documets regarding adding one more fied to existing search help plz send me.
    Thanks & Regards,
    farook.
    Edited by: farook shaik on Aug 18, 2009 8:58 AM

    Hi,
       You can do that using search help exits you would find several threads already posted to the forum for this like below:
    Link[Search Help Exits|Search Help Exit;
    Regards,
    Himanshu

  • Search Help "PREM"  Restriction on Company Code

    Dear Friends,
    I have modified the screen SAPLKACB 0002. I HAVE APPLIED SEARCH HELP "PREM" ON COBL-PERNR(Personnel No).Now if u go to F-02 Transaction.We have a Company Code entered Say : 2200.
    Now if we fill in the mandatory fields we go 2 next screen there we have personnel no field where i have
    attached F4(Search Help).
    Now i need 2 restrict the search help according to the company code.
    if the Company Code i enter say 2100 and hIt enter.it should give me some king of msg that
    the company code 2100 does not match the (F-02 Transaction Company Code:2200).
    Please Guide as 2 how 2 Accomplish this.
    Regards,
    Essam

    Hi if you need to do any thing to search help u need to create a search help exit for it.
    check my [blog|https://wiki.sdn.sap.com/wiki/x/du0] on this code.

  • Company code to be displayed in search help for vendors/Business partners

    Hi,
    We have a requirement to display the company code along with the vendor/business partner number when searching for preferred vendors while creating the shopping cart.
    In standard the search help exit used is BBP_F4IF_SHLP_EXIT_SOS. This search help does not have logic to find the company code for the vendor/business partner. It only finds and displays the purchasing organization.
    Can someone tell me where I find the company code agains the vendor?
    I tried searching in SRM and couldnt find the table where this relationship is found.
    Or is it that this data is not stored in SRM and we need to make an RFC call to R/3 using FM B470_VENDOR_GET_DATA.
    Please let me know!
    Thanks,
    Srivatsan

    I have the same problem due to multiple backends and 1 purchasing org to 2 company codes, have you got a fix for this yet would appricieate help if any one has ideas on this one
    Tom May
    <removed by moderator>

  • ABAP sentence/code to call search help

    Hello,
    I created a search help in the Dictionary, and have used it in a module-pool, filling the corresponding field in the Attributes window.
    But now I would like to call that search help from my code, in a different program. Is there any ABAP sentence for that purpose?
    Thank you very much.

    Hi Ivson,
    You can use the matchcode object concept.Select-options or parameters can be used in case of type 1 programs.
    select-options:s_fail for failtable-failcode matchcode object fail.                           "Fail is the serach help you created.
    regards,
    MV

  • Search Help for transaction code KE53

    Hi Experts,
    I want to add one more elementary search help in already existing search help PRCT for tcode KE53.
    This is a collective search help. I am trying to create an elem. searh help which includes 3 input fields
    Profit Center (PRCTR), Text desc. of Profit Center (LTEXT), and Company Code (BUKRS). But the problem is PRCTR & BUKRS are in table CEPC_BUKRS and PRCTR & LTEXT in table CEPC. Then how do i club the 3 in a single elem help. Do i have to use Search Help Exit. I have created a FM in which i have written a select query as follows:
    SELECT APRCTR ALTEXT B~BUKRS
           FROM CEPCT AS A
           INNER JOIN CEPC_BUKRS AS B
           ON APRCTR = BPRCTR
           INTO CORRESPONDING FIELDS OF TABLE ITAB.
    ITAB is the table in FM. The FM also includes the changing parameters :SHLP & CALLCONTROL and tables SHLP_TAB & RECORD_TAB (but i dont know the use of the parameters). How do i proceed.
    I dont have any idea about search help exits. Also there is no table which includes PRCTR, BUKRS and LTEXT.

    Hi,
    No need to write a search help exit. You can instead give a database view in the selection method. This database view can be a join on the tables CEPC  and CEPC_BUKRS.
    Refer to the search help PRCTN which uses a database view as the selection method.
    Since this is a standard search help, you will have to use append search help technique. Refer to this link for [enhancing the standard search help|http://help.sap.com/erp2005_ehp_04/helpdata/EN/1f/29ef5777df11d2959800a0c929b3c3/frameset.htm].
    regards,
    Advait
    Edited by: Advait Gode on Dec 30, 2008 9:45 AM

  • T-code PA30(SAP HR) search help exit problem.

    Hi Experts ,
    I have a requirement to restrict/show particluar Wage Types in PA30 t-code on basis a  company code of a given the employee (PERNR).
    The field PERNR/Company code are not there in the parameters or selection method of the elementary search help H_T5W3A(PA0151-LGART field) .
    I have managed to add the field pernr to the parameters of this elementary serach help H_T5W3A and also given it as a importing parameter in the custom search help exit FM.
    When i debug the PERNR/Company code don't get populated in the FM parameters.
    I need this PERNR/Comp code to be poulated in order for the search help entries to be restricted as this is the requirement.
    Please tell me what step i am missing here.
    Any other workarounds for this requirement.

    Hi,
    Adding an importing parameter just provides the user to restrict the search by entering the field value. For this you need not write a search help exit. You only need to join the tables with the fields properly in the search help. However if the Wage types need to be populated as per the company code and if you have included the company code as an importing parametr, then everytime the user clicks on the F4 help for Wage type, he "has" to enter the company code in the pop up that appears for selection criteria, otherwise how would the search help know the value that you have entered for company code.
    Without entering the company code in the pop up that would appear to restrict the search, the search help won't work as there won't be any other way to make it aware of the value entered.

Maybe you are looking for

  • LabVIEW developer seeks short/medi​um term contract work in UK/EU

    Hello All, I am an ambitious and hardworking LabVIEW developer who is available for short/medium term contract work in the UK/EU. My formal qualifications consist of a bachelors and masters degree in electronic engineering. I am permitted to work wit

  • Problems with JSSE under Weblogic 5.1 sp9

    I have a java application which uses JSSE to communicate with a WebMethods server and it works great. However, when I take the same code block and run it under Weblogic 5.1 sp11, I receive a bad certificate error. After spending a lot of time reading

  • Flash cs5.5 player 10.3 problem

    Hello, Having seen the new player version 10.3 and the possibilities that interests me next microphone. I decided to install it. The installation went well, in my publish settings I can select 10.3. As against this does not work very well I would say

  • Is there some way to keep Safari from opening a new tab when clicking on a link?

    When one clicks on a link on a page in Safari a new tab is opened. This is fine if the link is to a different site. However, it is annoying when navigating through the pages of a single site such as is required, for example, in on-line banking. Firef

  • Way to edit and save .AC3 audio files?

    Anyone know if there is a way to edit and save .AC3 audio files in Audition 3?