Urgent!  HELP_VALUES_GET_NO_DD_NAME replacement

Hi,
    When replace 'HELP_VALUES_GET_NO_DD_NAME', I don't know how to fill the return value 'P_IND'.
""ローカルインタフェース:
*"  IMPORTING
*"     VALUE(P_CUCOL) LIKE  SY-CUCOL DEFAULT 0
*"     VALUE(P_CUROW) LIKE  SY-CUROW DEFAULT 0
*"     VALUE(P_DISPLAY) DEFAULT SPACE
*"     VALUE(P_SELECTFIELD) LIKE  HELP_INFO-FIELDNAME
*"     VALUE(P_TITEL) DEFAULT SPACE
*"     VALUE(P_NO_PERS_HELP_SELECT) DEFAULT SPACE
*"     VALUE(P_TITLE_IN_VALUES_LIST) DEFAULT SPACE
*"     VALUE(P_SHOW_ALL_VALUES_AT_FIRST_TIM) DEFAULT SPACE
*"     VALUE(P_USE_USER_SELECTIONS) DEFAULT SPACE
*"     VALUE(P_WRITE_SELECTFIELD_IN_COLOURS) DEFAULT 'X'
*"     VALUE(P_NO_SCROLL) DEFAULT SPACE
*"     VALUE(P_NO_CONVERSION) DEFAULT SPACE
*"     VALUE(P_REDUCED_STATUS_ONLY) DEFAULT SPACE
*"     VALUE(P_NO_MARKING_OF_CHECKVALUE) DEFAULT SPACE
*"     VALUE(P_NO_DISPLAY_OF_PERS_VALUES) DEFAULT SPACE
*"     VALUE(P_FILTER_FULL_TABLE) DEFAULT SPACE
*"  EXPORTING
*"     VALUE(P_IND) LIKE  SY-TABIX
*"     VALUE(P_SELECT_VALUE) LIKE  HELP_INFO-FLDVALUE
*"  TABLES
*"      P_FIELDS STRUCTURE  HELP_VALUE
*"      P_FULL_TABLE
*"      P_USER_SEL_FIELDS STRUCTURE  DYNPREAD OPTIONAL
*"      P_HEADING_TABLE TYPE  F4TYP_HEADING_TAB OPTIONAL
*"  EXCEPTIONS
*"      RETURN01
*"      RETURN02
*"      RETURN03
*"      RETURN04
*"      RETURN05
2007/05/23 delete-start *
*CALL FUNCTION 'HELP_VALUES_GET_NO_DD_NAME'
    EXPORTING
      CUCOL                         = P_CUCOL
      CUROW                         = P_CUROW
      DISPLAY                       = P_DISPLAY
      SELECTFIELD                   = P_SELECTFIELD
      TITEL                         = P_TITEL
      NO_PERS_HELP_SELECT           = P_NO_PERS_HELP_SELECT
      TITLE_IN_VALUES_LIST          = P_TITLE_IN_VALUES_LIST
      SHOW_ALL_VALUES_AT_FIRST_TIME = P_SHOW_ALL_VALUES_AT_FIRST_TIM
      USE_USER_SELECTIONS           = P_USE_USER_SELECTIONS
      WRITE_SELECTFIELD_IN_COLOURS  = P_WRITE_SELECTFIELD_IN_COLOURS
      NO_SCROLL                     = P_NO_SCROLL
      NO_CONVERSION                 = P_NO_CONVERSION
      REDUCED_STATUS_ONLY           = P_REDUCED_STATUS_ONLY
      NO_MARKING_OF_CHECKVALUE      = P_NO_MARKING_OF_CHECKVALUE
      NO_DISPLAY_OF_PERS_VALUES     = P_NO_DISPLAY_OF_PERS_VALUES
      FILTER_FULL_TABLE             = P_FILTER_FULL_TABLE
   IMPORTING
      IND                           = P_IND
      SELECT_VALUE                  = P_SELECT_VALUE
   TABLES
      FIELDS                        = P_FIELDS
      FULL_TABLE                    = P_FULL_TABLE
      USER_SEL_FIELDS               = P_USER_SEL_FIELDS
      HEADING_TABLE                 = P_HEADING_TABLE
   EXCEPTIONS
      FULL_TABLE_EMPTY              = 1
      NO_TABLESTRUCTURE_GIVEN       = 2
      NO_TABLEFIELDS_IN_DICTIONARY  = 3
      MORE_THEN_ONE_SELECTFIELD     = 4
      NO_SELECTFIELD                = 5.
     OTHERS                        = 6.
2007/05/23 delete-end *
2007/05/23 add-start *
*タイプ変換
  DATA:
    TEMP_FIELDS   TYPE TABLE OF DFIES WITH HEADER LINE,
    TEMP_PARAM    TYPE TABLE OF DDSHRETVAL,
    TEMP_WK_PARAM TYPE DDSHRETVAL.
  DATA: INAMETAB  LIKE DNTAB OCCURS 0 WITH HEADER LINE,
        INAMETAB1 LIKE DNTAB OCCURS 0 WITH HEADER LINE.
  LOOP AT P_FIELDS.
    CALL FUNCTION 'NAMETAB_GET'
      EXPORTING
        LANGU               = SY-LANGU
        ONLY                = 'N'
        TABNAME             = P_FIELDS-TABNAME
    IMPORTING
      HEADER              = IHEADER
      TABLES
        NAMETAB             = INAMETAB
      EXCEPTIONS
        INTERNAL_ERROR      = 01
        TABLE_HAS_NO_FIELDS = 02
        TABLE_NOT_ACTIV     = 03.
    IF SY-SUBRC EQ 2 OR SY-SUBRC EQ 3.
     RAISE NO_TABLESTRUCTURE_GIVEN.
    ENDIF.
    LOOP AT INAMETAB.
      CHECK P_FIELDS-FIELDNAME = INAMETAB-FIELDNAME.
      MOVE INAMETAB TO INAMETAB1.
      APPEND INAMETAB1.
    ENDLOOP.
  ENDLOOP.
  CLEAR INAMETAB1.
  DATA: CHARLEN       TYPE I,
        LEN           TYPE I,
        OFFSET        TYPE I,
        NO_CONVERSION TYPE C.
  DATA: BEGIN OF ITAB OCCURS 0,
          FIELD_VALUE(132),
        END OF ITAB.
  CHARLEN = CL_ABAP_CHAR_UTILITIES=>CHARSIZE.
  IF P_FILTER_FULL_TABLE EQ 'X'.
    LOOP AT P_FULL_TABLE.
      OFFSET = 0.
      LOOP AT INAMETAB.
        IF NO_CONVERSION = SPACE.
          LEN = INAMETAB-INTLEN / CHARLEN.
        ELSE.
          LEN = INAMETAB-DDLEN / CHARLEN.
        ENDIF.
        READ TABLE INAMETAB1 WITH KEY INAMETAB.
        IF SY-SUBRC EQ 0.
          MOVE P_FULL_TABLE+OFFSET(LEN)
               TO ITAB-FIELD_VALUE.
          APPEND ITAB.
        ENDIF.
        OFFSET = OFFSET + LEN.
      ENDLOOP.
    ENDLOOP.
  ELSE.
    LOOP AT P_FULL_TABLE.
      OFFSET = 0.
      LOOP AT INAMETAB1.
        IF NO_CONVERSION = SPACE.
          LEN = INAMETAB1-INTLEN / CHARLEN.
        ELSE.
          LEN = INAMETAB1-DDLEN / CHARLEN.
        ENDIF.
        MOVE P_FULL_TABLE+OFFSET(LEN) TO ITAB-FIELD_VALUE.
        OFFSET = OFFSET + LEN.
        APPEND ITAB.
      ENDLOOP.
    ENDLOOP.
  ENDIF.
*タイプ変換
  APPEND LINES OF P_FIELDS TO TEMP_FIELDS.
  CALL FUNCTION 'F4IF_INT_TABLE_VALUE_REQUEST'
    EXPORTING
      RETFIELD        = P_SELECTFIELD
      WINDOW_TITLE    = P_TITEL
    TABLES
      VALUE_TAB       = ITAB
      FIELD_TAB       = TEMP_FIELDS
      RETURN_TAB      = TEMP_PARAM
    EXCEPTIONS
      PARAMETER_ERROR = 1
      NO_VALUES_FOUND = 2
      OTHERS          = 3.
  READ TABLE TEMP_PARAM INTO TEMP_WK_PARAM INDEX 1.
  IF SY-SUBRC = 0.
    P_SELECT_VALUE = TEMP_WK_PARAM-FIELDVAL.
  ENDIF.
2007/05/23 add-end *
  CASE  SY-SUBRC.
    WHEN  1.
      RAISE  RETURN01.
    WHEN  2.
      RAISE  RETURN02.
    WHEN  3.
      RAISE  RETURN03.
    WHEN  4.
      RAISE  RETURN04.
    WHEN  5.
      RAISE  RETURN05.
  ENDCASE.

Refer to this sample code
http://www.geocities.com/victorav15/sapr3/examples/f4_table1.txt
* popup window
  call function 'HELP_VALUES_GET_NO_DD_NAME'
       exporting
            selectfield                   = fieldname
            titel                         = 'Select Company Code'
            use_user_selections           = 'S'
       importing
            ind                = ind
       tables
            fields             = fields
            full_table         = inttab
            user_sel_fields    = shrinkfields
       exceptions
            full_table_empty             = 01
            no_tablestructure_given      = 02
            no_tablefields_in_dictionary = 03
            more_than_one_selectfield    = 04
            no_electfield                = 05.
  if sy-subrc <> 0.
    write: / 'Error =', sy-subrc.
  else.
    write: / '#', ind, 'selected'.
    read table inttab index ind.
    write: inttab-bukrs.
  endif.

Similar Messages

  • (urgent) Keyboard Replacement

    So, after spilling a few drops of tea on my keyboard, it no longer works (for the most part). 
     Particulars:  - Certain keys do not respond when pressed - If keys do respond, they tend to relate to differing characters (the C key is now my spacebar) - A key may type several characters at a time when only pressed once  I've followed the instructions set out here:  http://support.hp.com/gb-en/document/c03738933#AbT0
    but none of the methods have resolved the issue. 
    Questions:
    Is there anywhere I can purchase a replacement keyboard (in the UK)? My search results have found little.  Is there any point to replacing the keyboard?

    According to the message you have recently posted I would like to confirm that this is a hardware issue and the whole keyboard assembly needs to be replaced. I strongly recommend you to Contact HP Technical Support over the Phone for further assistance to get your Notebook diagnosed and serviced by an authorized HP Certified Engineer You can also Check your warranty Here to verify the warranty status  Hope this helps, for any further queries reply to the post and feel free to join us again  **Click the White Thumbs Up Button on the right to say Thanks**Make it easier for other people to find solutions by marking a Reply 'Accept as Solution' if it solves your problem. Thank You,K N R KAlthough I am an HP employee, I am speaking for myself and not for HP

  • Urgent question:can you replace source video and automatically have AE swap clips in timeline?

    Hi there
    Have an urgent question. I have finished editing a project that has been edited from pre-exported videos, but the problem is that i have been notified last minute if it is possible to change parts of it!
    Is is possible to change and re-render the pre-exported clips at same length that are affected and then replace the 'source footage' in after effects to have it automatically swap the clips that I've edited and cut up already? As it would take a very messy and extremely long time to manually change all the trimmed parts!
    It is only a small section of the source clip I need to change, but the overall composition edits are fine so I don't really need to touch that, it's just really to replace the footage but have everything to stay the exact same.
    Please advise!
    Appreciate this if anyone can! fairly urgent
    Thanks

    Yes, just right-click on a source in the Project bin and choose Replace Footage.

  • URGENT : replacing letters in an expression

    Hi all
    I think that I should post this topic here because I think it concerns SQL functions. Here is the problem :
    I am developping a forms application . There is a listbox named FORMULA containing list of formulas. When I choose a formula from that list then there is a program which exctracts all of its operands. For example if the formula is : (a+b)*abs(c-d) then the operands are : a,b,c and d.
    Then I populate another listbox named OPERANDS with these operands. So the value of the OPERANDS listbox is either a or b or c or d in our example.
    I held the expression of the formula in a global variable so it can be accessible anywhere in my application.
    When I choose one of the operands from the OPERANDS listbox , for example b,then I enter its value , for example 5, in a text field named VALUE ,and then I click on a button to replace the letter "b" in the formula with the value I entered , which is 5. So I want to get an expression like this : (a+5)*abs(c-d) .
    But the problem is that when I run the application then all letters "b" in the formula are replaced by 5 . So even the expression "abs", which is a pl/sql function, is replaced by "a5s". And I do not want that to happen.
    Here is how I proceeded :
    formula := replace(formula,operands,value); where "formula" is the global variable containing the formula expression, "operands" is the variable containing the value of the OPERANDS listbox which is "b" here, and "value" is the variable containing the value 5.
    So how can I avoid this misreplacement ?
    Thank you very much indeed.

    post it where you want, but only once...
    I will follow the other thread
    URGENT : replacing some letters in an expression

  • Replacing BC with SAP XI-URGENT

    Hi Experts ,
    I have a query related to a case in which we want to replace SAP BC with SAPXI.
    The client is going for an upgradation from SAP R/3 4.6 c to ECC 6.0 and they have architecture like 4.6c--- BC-SAP Adapter--- Customized Adapters(Third party).
    The customized adapters make synchronous RFC calls to 4.6 c through SAP Adapter and BC.
    Basically MQ series flow is there between customized adapter and SAP ADAPTER which further updates R/3 through BC.
    Now they want to upgrade from 4.6c to ecc 6.0 and replace BC with SAP XI without making any changes to SAP Adapter and customized adapters
    Now my questions are :-
    1) If i replace BC with SAP XI will there be any development changes required or it will be only configuration changes that can be done by BASIS?
    2)Is it possible that Third Party continues to make RFC calls to XI and XI make RFC  calls to R/3.
    3) In XI we will be configuring JMS adapter for MQ series or MQ series adapter.
    4) What difficulties can be faced during replacement of BC with SAP XI ? What can be the impact of replacement?
    I would appreciate an early response as this is very urgent.
    Regards
    Saras Jain

    > Hi Experts ,
    > I have a query related to a case in which we want to
    > replace SAP BC with SAPXI.
    > The client is going for an upgradation from SAP R/3
    > 4.6 c to ECC 6.0 and they have architecture like
    > 4.6c--- BC-SAP Adapter--- Customized
    > Adapters(Third party).
    >
    > The customized adapters make synchronous RFC calls to
    > 4.6 c through SAP Adapter and BC.
    > Basically MQ series flow is there between customized
    > adapter and SAP ADAPTER which further updates R/3
    > through BC.
    > Now they want to upgrade from 4.6c to ecc 6.0 and
    > replace BC with SAP XI without making any changes to
    > SAP Adapter and customized adapters
    > Now my questions are :-
    >
    > 1) If i replace BC with SAP XI will there be any
    > development changes required or it will be only
    > configuration changes that can be done by BASIS?
    Only some parts of the SAP BC can be migrated to SAP XI like xslt mappings
    refer this : https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/b4f3755a-0401-0010-b6b3-9b65bb7d4503
    > 2)Is it possible that Third Party continues to make
    > RFC calls to XI and XI make RFC  calls to R/3.
    yes, 3rd party can make calls to XI and XI will make RFC calls to  R/3 calls using the RFC adapter in XI.
    > 3) In XI we will be configuring JMS adapter for MQ
    > series or MQ series adapter.
    you will have to configure the JMS adapter in XI.
    > 4) What difficulties can be faced during replacement
    > of BC with SAP XI ? What can be the impact of
    > replacement?
    >
    Refer this for more info:
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/a8424011-0d01-0010-e19d-e5bd8ca52244
    >
    > I would appreciate an early response as this is very
    > urgent.
    >
    > Regards
    > Saras Jain

  • How to replace the values in variable selection Screen urgent plz

    Hi all,
    I am having a requirement. where the user need pass the value in the variable, Here v r having option like '1' and '2' which represent 'month' and 'ytd'.
    While selecting user view as 1,2 .Now my requirement is to replace the value 1=monthly and 2=ytd while the user passing the value to avoid the confusion.
    Is it possible if so plz let me know
    Regards

    Dear Venkat.
    You please try the following steps:
    1. Say the InfoObject is 0EMPLOYEE against which you have created the variable, which user is trying to select value against, when they execute the report.
    2. Goto RSA1-> InfoObject tab-> Select InfoObject 0EMPLOYEE.
    3. Selcet the following options:
       Query Execution Filter Val. Selectn  -  'Only Posted Value for Navigation'
       Filter Value Repr. At Query Exec. -      'Selector Box Without Values'
    Please let me know if there is any more issue. Feel free to raise further concern
    Thnx,
    Sukdev K

  • Urgent: How to use xdofx:replace function in xdoxslt

    Hi,
    I have to replace multiple occurrences of a particular string(#BR#) with the new line character. I tried <?xdoxslt:replace(stringpath,'#BR#',chr(10))?>, but it is giving error.
    Later I tried <?xdofx:replace(stringpath,'#BR#',chr(10))?> which works properly.
    the problem is that the string in which I have to do this operation is stored in a variable(I have stored it in a variable after doing some other replace operations). So now if I try <?xdofx:replace(xdoxslt:get_variable($_XDOCTX, 'teststring'),'#BR#',chr(10))?>, it does not work.
    What should I do to resolve this issue. Is there any way in xdoxslt by which I can replace the string with new line character?
    Or if there is any other way of storing the string by which it will work with XDOFX?
    Thanks in advance.

    I tried the same code <?xdofx:replace(xdoxslt:get_variable($_XDOCTX, 'teststring'),'#BR#',chr(13))?>, but it is not working. It is producing a blank line.
    Can anyone tell me what is the new line character in xdoxslt/OBIP. For e.g. if I have to enter a new line after the year in the following code, what I should write in place of xxx
    <?concat(xdoxslt:sysdate(‘YYYY’),XXX, "Report for ", FirstName, LastName)?>
    I tried chr(10), \n but all of them are giving error.
    Thanks and Regards

  • URGENT : replacing some letters in an expression

    Hi all
    I think that I should post this topic here because I think it concerns SQL and PL/SQL functions. Here is the problem :
    I am developping a forms application . There is a listbox named FORMULA containing list of formulas. When I choose a formula from that list then there is a program which exctracts all of its operands. For example if the formula is : (a+b)*abs(c-d) then the operands are : a,b,c and d.
    Then I populate another listbox named OPERANDS with these operands. So the value of the OPERANDS listbox is either a or b or c or d in our example.
    I held the expression of the formula in a global variable so it can be accessible anywhere in my application.
    When I choose one of the operands from the OPERANDS listbox , for example b,then I enter its value , for example 5, in a text field named VALUE ,and then I click on a button to replace the letter "b" in the formula with the value I entered , which is 5. So I want to get an expression like this : (a+5)*abs(c-d) .
    But the problem is that when I run the application then all letters "b" in the formula are replaced by 5 . So even the expression "abs", which is a pl/sql function, is replaced by "a5s". And I do not want that to happen.
    Here is how I proceeded :
    formula := replace(formula,operands,value); where "formula" is the global variable containing the formula expression, "operands" is the variable containing the value of the OPERANDS listbox which is "b" here, and "value" is the variable containing the value 5.
    So how can I avoid this misreplacement ?
    Thank you very much indeed.

    select
       e,
       regexp_replace(
          regexp_replace(e,
          '([^[:alnum:]_]|^)b([^[:alnum:]_(]|$)','\15\2'
          ),'([^[:alnum:]_])b([^[:alnum:]_(]|$)','\15\2'
       ) "EXP"
    from
       (select '(a+b)*abs(c-d)' e from dual
       union select 'b+b' from dual
       union select 'b+b+b+b' from dual
       union select '1-b(b)' from dual)
    E              EXP
    (a+b)*abs(c-d) (a+5)*abs(c-d)
    1-b(b)         1-b(5)
    b+b            5+5
    b+b+b+b        5+5+5+5If you do not have 10g, you can look at the OWA* packages or write you own function
    Regards
    Laurent

  • Urgent: Question about Censoring and replacing

    Hello, guys.
    This is my very first time writting a java program. Please tell me what I have done wrong as this is my first time?
    My question is to write a program that asks the user for a word to replace in some text, and the word to replace it with. The program then reads a line of text from the user and echoes the line back to screen replacing all occurrences of the first word with the second word. It only replaces the word being censored when it occurs independently in a line (i.e. not as a part of another word).
    Like:
    Enter word to censor: dumb
    Enter word to replace it: xxxxx
    Enter line of text to censor:
    The guy is dumb but his friend is even dumber.
    The guys is xxxxx but his friend is even dumber.
    Please look at my code now and tell me what is wrong?
    public class censor
       public static void main(String args[])
           String sentence = "Please type a word which you like to censor"
           String ac =  string sentence;
           String[] temp = null;
           temp = sentence.split(" ");
           for (int j = 0; j < temp.length; j++ )
               if (temp[j].equals("bridge"))
                   string sentence = "Censored";
               System.out.println(sentence + " " + string sentence);
    } Edited by: G on Apr 13, 2008 4:04 AM
    Edited by: KevinGupta on Apr 13, 2008 4:05 AM

    Hey guys,
    I'm getting an error where I have added the "ERROR LINE" next to the line where im getting an error..
    What I'm trying to do ?: I'm trying to make it like
    Enter word to censor: dumb
    Enter word to replace it: xxxxx
    Enter line of text to censor: The guy is dumb dumb dumb dumb and his friend is dumber.
    So, this code should replace ALL "dumb" with xxxxx NOT the dumber. But when I try to run this code only one dumb changes to xxxx not all ? So, please help on that. Also, this code doesnt work when I try to write " LIke ThaT " It gives me an exception error ?
    {color:#ff0000}Look at the error below (underneath the code){color}
    import java.util.*;
    public class LineCensor
    public static void main(String [] args)
    System.out.print("Enter a word to censor: ");
    Scanner keyboard = new Scanner(System.in);
    String word = keyboard.nextLine();
    System.out.print("Enter a word to replace it: ");
    String wordC = keyboard.nextLine();
    System.out.println("Enter line of text to censor: ");
    String phrase = keyboard.nextLine();
    String wordLowered = word.toLowerCase();
    String phraseLowered = phrase.toLowerCase();
    int location = phrase.indexOf(word);
    String string1 = phraseLowered.substring(location,(location +
    wordLowered.length()));
    String string2 = phraseLowered.substring(0, location);
    String string3 = phraseLowered.substring(location+word.length());
    System.out.println(string2+wordC+string3);
    string2 = string2.toLowerCase();
    for (int i=0; i < phrase.length; i++)
    (phrase.equals());                        <-------- ERROR LINE.
    phrase = wordC;
    System.out.println(+i);
    }ERROR:
    The error is:
    LineCensor.java:28: not a statement
    (phrase.equals());
    ^
    1 error ANOTher ErroR
    Enter a word to censor: CaT
    Enter a word to replace it: xxxx
    Enter line of text to censor:
    The cAT wAs CuRioUs abOuT otHER CAT's strings
    Exception in thread "main" java.lang.StringIndexOutOfBoundsException: String index out of range: -1
    at java.lang.String.substring(String.java:1932)
    at LineCensor.main(LineCensor.java:17) This error is coming up because of lower and high caps typing. This shouldnt be happening no matter how I type the sentence/word.
    Please help ?
    Edited by: kabootar on Apr 16, 2008 3:20 AM
    Edited by: kabootar on Apr 16, 2008 3:21 AM

  • URGENT! T30 Hard Drive Replacement - Max Size Limit?

    Is there a limit to the GB size that I can use to replace my internal hard drive?  The largest I have seen referenced on the lenovo site is 80gb, but I would like to go bigger if it can be supported.  Any ideas?  I need to get this machine up and running ASAP, as the old drive is completely dead.
    Thanks!
    Solved!
    Go to Solution.

    If you can find a brand new 7200rpm PATA laptop drive, such as that Hitachi 7K100, grab it immediately since they're no longer in production...
    Personally, I prefer Seagate, but my T43 runs a Hitachi 60GB/7200 rpm...
    Hope this helps.
    Cheers,
    George
    In daily use: R60F, R500F, T61, T410
    Collecting dust: T60
    Enjoying retirement: A31p, T42p,
    Non-ThinkPads: Panasonic CF-31 & CF-52, HP 8760W
    Starting Thursday, 08/14/2014 I'll be away from the forums until further notice. Please do NOT send private messages since I won't be able to read them. Thank you.

  • Urgent need to install Internet Explorer or replacement

    Please urgent need to install Internet Explorer or replacement

    No hay, no ha habido y probablemente nunca habra Internet Explorer que corra nativo en iOS en iPads/iPods/iPhones. Hubo una version para OS X, pero Microsoft dejo de actualizarla y soportarla desde el 2002. Y al haber sacado su marca propia de tabletas, la Surface, MS ya no tiene aliciente para tener IE en la tableta de la competencia.
    Se puede hacer una especie de "chachuyo" y tener IE indirectamente en un iPad. A traves del producto Citrix, la tableta se vuelve una "pantalla remota" de un servidor Windows, donde hay el genuino IE. Parallels acaba de sacar un producto con funcionalidad similar. Pero son muy caros y requieren ademas tener la infraestructura de la PC a donde se comunica la iPad.
    Ya probaste con otros navegadores ademas del Safari para ver si despliega la pagina? Veo al menos 6 diferentes navegadores alternativos para la iPad, como Opera, Mercury, Chrome, etc.

  • Replacing characters in a string - URGENT!

    Hi guys
    I have a string - 003452.jpg.xml
    I want to remove the '.jpg'
    How do I do this ... I was using :
    String image1 = 002452.jpg.xml;
    String newString = image1.replace ( '.jpg',' ' );
    What am i doing wrong???
    thanks

    The replace method takes characters as its arguments not strings. If you files will always be in that format you can do something like:
    In j2se 1.4 a replace based on regular expressions was added so you could use:
    String image1 = "002452.jpg.xml";
    String newString = image1.replaceAll ("\\.jpg", "" );

  • So i have requested a replacement pair of headphones (UK) how do i send them to apple and where to ? URGENT

    please can people tell me how to send my earphonnes to apple

    If as you stated, you requested a replacement pair of headphones then Apple should have sent you all of the directions on how to handle the replacement. It sounds like your oriiginal request has gone astray and it might be time to try again.
    Allan

  • URGENTLY Ipod nano replacement problem, VIETNAM, HELP

    Hi everyone,
    I am from Vietnam. And I already informed the infomation for shipping replacement program to the address of Texas, Houston, USA  by mistake. And the package already sent to that address. But my ipod nano is in Vietnam with me. How can I cancel this shipment. Because now I and my ipod in Vietnam, I will give it to Agent Future World to handle replace for me. But they suguest me that I have to cancel that shpt and they can hangle it to you. How can I do to fix this problem.
    Anyone can advise me.
    thank you so much
    Best Regard
    Phuong

    I try to contact the number 800-275-2273, in my mail, but I received that no adviser is available. Hic hic. I am so confuse

  • Charactestics with replacement path getting error (ple solve urgent)

    hi frieds,
    how are you. i created 2 queries
    first query (sender)  customer material and quantity
    2nd query (receiver)  customer sales.
    now i went rsbbs and joined 2 queries. i went sender query and gto and rec i got 2 queries.
    now i went sender query used varible characterstics with manual entry/default now i went receiver quer charracterstics with replacement path, when i am creting variable i am getting error like i can use variable in default value.
    why.
    ple let me know solution.
    regards
    ssk

    SSK,
    I'm not totally sure I understand what you mean by getting a characteristic with a replacement path.
    Yes you need two queries for a RRI - one sender and one receiver.
    When you run the sender query you may or may not enter variables into the query to run it. When the query is run you will select a row in your results area, right mouse click, select Got - and then pick the Query you have setup the RRI with from the resulting Context menu. 
    Lets say you are on a row that contains the characteristics Customer / Material and Date. When you execute the jump, the values of the three characteristics for the row that you were on when you did the jump will automatically be passed to your receiver query, as long as those three characteristics exits in your receive query. They should not have any variables on them in the receive query - the jump passes the values from the sender query to the receiver query.
    let me know how you get on.
    Regards
    gill

Maybe you are looking for

  • Lock box issue

    Hi , When i upload lockbox file through FLB2 i am getting the message "Accounts receivable posting Error: (F5 102) Customer * is not defined in company code XXXX". In the upload file i have metnioned the bank deatils of the customer and this customer

  • Spinning circle of pain... is there a work around?

    Hi, using latest Folio Builder, have tried uploading both from doc and import, single and multiple, sidecar and without sidecar, single sidecar, folio sidecar... pretty much everything i can find to try... still cannot upload articles. builds article

  • HP C3180 All In One Prints test page everytime I turn it on

    My printer prints a test page everytime I turn it on.  This is a huge waste of ink.  What should I do?

  • Slowness of operating system

    Out of the blue my iMac G5 started slowing down. The multi colored pinwheel shows up all the time when changing applications and such. I don't believe I have used all my memory, however I'm not sure. Any suggestion as to how to get my machine operati

  • Warning message through BG ABSENCE DURATION

    Hi , Can we popup waring message instead of error message by using BG ABSENCE DURATION FORMULA. i am able to popup warning message through validation formulas , but i failed to display through BG ABSENCE DURATION . Regds, Kumar