Address problem in sapscript

Hi,
I'm creating a sapscript for Sales order, my problem is this:
when the order is sent to foreing country I would to print the country name, else the country name hasn't is displayed.
Thank you.

Hi Ierardi Leo,
To control the country name displayed in the address, please use the parameter "Sending Country".
Set the parameter "Sending Country" as the country of your Sales Org(VKORG)/Company code(BUKRS)/Shipped from(VSTEL).
The logic based on Sending Country followed by SAP is as follows,
1. If Sending country is same as destination country then, Country name is not displayed
2. If Sending country is not same as destination country then, Country name is displayed
I hope this solves your problem.
Regards,
Amit

Similar Messages

  • Delivery address problem.

    Hi guys,
    Thanks a lot for your earlier responce.
    I posted earlier message just to make sure that i am picking the correct address no, as i am facing a very strange problem.
    i am passing adrnr(plant) as parameter to ADDRESS function in sapscript and passing country code as GB. the problem is the function returns me the region along with the country, but in reality the region is not assigned to the plant and the region returned is that of vendor.
    if I remove country from the output line, then it is ok, but as soon as i put country in output line in form, region(that of vendor) is displayed in the output
    please help me to understand what's going wrong.
    please give your views what could be wrong. I had debugged the program and form.
    Thanks
    Lakhbir

    anyone with a solution to my problem
    Lakhbir

  • Printing Problem in SAPscript

    Hi friends, I have one problem with sapscript printing. When i am seeing the print preview of a form i dont have any problems with words overlapping. But When i prnt on local printer I am seeing words overlapping. Is there anything worng in my form or anything to be configured with printer ? please help me

    Seems like your Printer Driver and SAP logical printer doesn't match each other. Take a help from your Basis guys.
    Regards,
    Naimesh Patel

  • SapScript address problem

    Hello,
    To print a 'bill-to' address on an invoice I'm using the ADDRESS...ENDADDRESS command within my SAPScript form. To specify an address, I use the ADDRESSNUMBER parameter. Although the address is printed, I have a problem: I would like to add the name of the addressee to the address (on the second line of the address).
    Normally this is done by using the PERSON parameter, but because I'm using the ADDRESSNUMBER parameter, I think the PERSON parameter is omitted. Does anybody know how to solve this problem.

    The online help for the SAPscript <b>ADDRESS</b> command can be found at:
    <u>http://help.sap.com/saphelp_470/helpdata/en/d1/803238454211d189710000e8322d00/frameset.htm</u>
    I think you may want to play around with the PRIORITY parameter. Or you can specify the contents of each field you want and limit ADDRESS to formatting only. See the documentation.

  • Problem in sapscript.

    In this a sapscript driving program .this is use for printing data when I click print preview one line have different text .i want to correct that text in script form. But I m not able to identify form name can u tell me how to get form name or how to solve the problem.
    REPORT zj_1i57fp MESSAGE-ID 8i.
    TABLES: t001w,
            j_1iwrkcus,
            j_1iregset,
            j_1iindcus,
            j_1iexcdtl,
            j_1iexchdr,
            lfa1,
            adrc,
            t001.
    Begin 11.05.99
    DATA : BEGIN OF listtab OCCURS 30,
             procdoc(1) TYPE c,
             exnum   LIKE j_1iexchdr-exnum,
             exdat   LIKE j_1iexchdr-exdat,
             srgrp   LIKE j_1iexchdr-srgrp,
             preprn  LIKE j_1iexchdr-preprn,
             exbed   LIKE j_1iexchdr-exbed,
             exsed   LIKE j_1iexchdr-exsed,
             exaed   LIKE j_1iexchdr-exaed,
             list_line LIKE sy-linno,
           END OF listtab.
    End 11.05.99
    DATA : BEGIN OF options.
            INCLUDE STRUCTURE itcpo.
    DATA : END OF options.
    DATA : BEGIN OF result.
            INCLUDE STRUCTURE itcpp.
    DATA : END OF result.
    DATA : BEGIN OF thead OCCURS 10.
            INCLUDE STRUCTURE thead.
    DATA : END OF thead.
    DATA : BEGIN OF tlines OCCURS 10.
            INCLUDE STRUCTURE tline.
    DATA : END OF tlines.
    DATA : text_id(4) TYPE c.
    DATA : doc_num LIKE j_1iexchdr-exnum,  " pai 17/09/98
           m_length TYPE i.                " pai
    Begin 11.05.99
    DATA : doc_no   LIKE j_1iexchdr-exnum,
           doc_dt   LIKE j_1iexchdr-exdat,
           series   LIKE j_1iexchdr-srgrp,
           preprn   LIKE j_1iexchdr-preprn,
           m_selected,
           m_date(10) TYPE c,
           tabix LIKE sy-tabix.
    DATA : it_pcrdtl LIKE TABLE OF zeou_pcrdtl WITH HEADER LINE,
           it_pcrhdr LIKE TABLE OF zeou_pcrhdr WITH HEADER LINE .
    DATA : wa_mara TYPE mara,
           wa_t032t TYPE t023t.
    DATA : gv_tot_duty TYPE konv-kwert,
           gv_tot_amt TYPE konv-kwert,
           gv_tot_val TYPE konv-kwert.
    SELECT-OPTIONS: se_exnum FOR j_1iexchdr-exnum,
                    se_exdat FOR j_1iexchdr-exdat.
    SELECTION-SCREEN SKIP 1.
    SELECTION-SCREEN BEGIN OF BLOCK 4 WITH FRAME TITLE text-005.
    SELECTION-SCREEN BEGIN OF LINE.
    SELECTION-SCREEN POSITION 01.
    PARAMETERS: p_print RADIOBUTTON GROUP grp1 DEFAULT 'X'.
    SELECTION-SCREEN COMMENT (15) text-006.
    SELECTION-SCREEN POSITION 20.
    PARAMETERS: p_reprn RADIOBUTTON GROUP grp1.
    SELECTION-SCREEN COMMENT (20) text-007.
    SELECTION-SCREEN END OF LINE.
    SELECTION-SCREEN END OF BLOCK 4.
    End 11.05.99
    doc_num = doc_no.                      " pai
    m_length = STRLEN( doc_num ).
    WHILE m_length < 10.
      CONCATENATE '0' doc_num INTO doc_num.
      m_length = m_length + 1.
    ENDWHILE.
    doc_no = doc_num.                      " pai
    Begin 11.05.99
    TOP-OF-PAGE.
      WRITE :/3 text-001,
                text-002,
                text-003,
                text-004.
    START-OF-SELECTION.
      IF p_print = 'X'.
        SELECT * INTO CORRESPONDING FIELDS OF TABLE listtab FROM j_1iexchdr
             WHERE trntyp = '57FC' AND status = 'P' AND
                   exnum IN se_exnum AND exdat IN se_exdat AND preprn = ''.
      ELSEIF p_reprn = 'X'.
        SELECT * INTO CORRESPONDING FIELDS OF TABLE listtab FROM j_1iexchdr
             WHERE trntyp = '57FC' AND status = 'P' AND
                   exnum IN se_exnum AND exdat IN se_exdat.
      ENDIF.
      IF sy-subrc <> 0.
        MESSAGE e000(8i) WITH
           'No data available or Document already printed'.
      ENDIF.
    END-OF-SELECTION.
      SET PF-STATUS '100'.
      SORT listtab BY exnum exdat.
      LOOP AT listtab.
        WRITE :/ listtab-procdoc AS CHECKBOX.
        WRITE :  listtab-exnum UNDER text-001,
                 listtab-exdat UNDER text-002.
        WRITE AT 30 listtab-srgrp.
        WRITE AT 45 listtab-preprn.
        listtab-list_line = sy-linno.
        MODIFY listtab.
      ENDLOOP.
    AT USER-COMMAND.
      CASE sy-ucomm.
        WHEN 'EPRN'.
          DO.
            tabix = sy-index.
            READ LINE sy-index FIELD VALUE listtab-procdoc.
            IF sy-subrc <> 0.
              EXIT.
            ENDIF.
            IF listtab-procdoc = 'X'.
              READ TABLE listtab WITH KEY list_line = tabix.
              doc_no = listtab-exnum.
              doc_dt = listtab-exdat.
              series = listtab-srgrp.
              m_selected = 'y'.
              EXIT.
            ENDIF.
          ENDDO.
      ENDCASE.
    Call fn. module to capture pre-printed excise no.
      IF m_selected = 'y'.
        CALL FUNCTION 'J_1I_ACCEPT_VALUE'
          EXPORTING
            i_preprn = preprn
          IMPORTING
            o_preprn = preprn.
      ELSE.
        MESSAGE e000(8i) WITH 'Select a Document'.
      ENDIF.
    Check whether entered pre-printed excise no. already exists
      SELECT SINGLE * FROM j_1iexchdr WHERE preprn = preprn AND
                                            status <> 'D' AND
                                      NOT (  exnum   = doc_no
                                      AND    exdat   = doc_dt
                                      AND    srgrp   = series ).
      IF sy-subrc = 0.
        SET CURSOR FIELD 'PREPRN'.
        MESSAGE e000(8i) WITH 'Pre-printed excise no.' preprn 'already used'.
      ENDIF.
    End 11.05.99
      SELECT SINGLE * FROM j_1iexchdr
      WHERE   exnum   = doc_no
      AND     exdat   = doc_dt
      AND     srgrp   = series.
    IF SY-SUBRC <> 0.
       MESSAGE E000(8I) WITH 'Invalid Challan number entered'.
                                                                "10.05.99
    ELSEIF J_1IEXCHDR-PREPRN <> PREPRN AND J_1IEXCHDR-PREPRN <> ''.
       MESSAGE E000(8I) WITH
       '57F4' DOC_NO 'already printed with pre-printed excise no.'
        J_1IEXCHDR-PREPRN.
    ENDIF.
    IF J_1IEXCHDR-STATUS NE 'P'.
       MESSAGE E000(8I) WITH 'Challan status is not posted..cannot print'.
    ENDIF.
    Begin 10.05.99
    j_1iexchdr-exbed = j_1iexchdr-exbed + j_1iexchdr-exsed +
                       j_1iexchdr-exaed.
    Begin 10.05.99
    Print totals of BED, SED, AED
      j_1iexchdr-exbed = listtab-exbed + listtab-exsed + listtab-exaed.
      listtab-procdoc = ''.
      listtab-preprn = preprn.
      MODIFY LINE listtab-list_line FIELD VALUE listtab-procdoc
                  listtab-preprn LINE FORMAT COLOR 6 INPUT OFF.
    End 10.05.99
    Printing options
      options-tdcopies   = 1 .
      options-tdnewid   = 'X' .
      options-tddataset  = 'LIST1' .
      options-tddelete   = 'X' .
      options-tdprogram  = sy-repid.
      options-tdpreview  = 'X' .
      PERFORM open_form.
      PERFORM get_header_data.
      PERFORM write_form USING 'TITLE' 'DOC_TITLE_T' 'SET'.
      PERFORM write_form USING 'INFO' 'HEADER_DATA' 'SET'.
    Print Line items
      PERFORM write_form USING 'MAIN' 'DASH_LINE'   'SET'.
      PERFORM write_form USING 'MAIN' 'ITEM_HEADER' 'SET'.
      PERFORM write_form USING 'MAIN' 'DASH_LINE'   'SET'.
    ****Start of Changes***********************************
      DATA: gs_mseg TYPE mseg.
      CLEAR: gs_mseg.
      SELECT * FROM zeou_pcrdtl INTO TABLE it_pcrdtl
      WHERE exnum =  doc_no " j_1iexcdtl-exnum
      AND   exdat = doc_dt. "  j_1iexcdtl-exdat.
    ****End of Changes*************************************
      SELECT * FROM j_1iexcdtl WHERE exnum = doc_no AND
                                     exdat = doc_dt.
       SELECT SINGLE * FROM zeou_pcidtl INTO it_pcidtl
       WHERE ebeln =  j_1iexcdtl-rdoc1
       AND matnr = j_1iexcdtl-matnr.
    ****Start of Changes***********************************
       SELECT SINGLE * FROM zeou_pcrdtl INTO it_pcrdtl
       WHERE exnum =  j_1iexcdtl-exnum
       AND exdat = j_1iexcdtl-exdat.
        SELECT SINGLE * FROM mseg
                        INTO gs_mseg
                        WHERE mblnr = j_1iexcdtl-rdoc2
                        AND   mjahr = j_1iexcdtl-ryear2
                        AND   parent_id = j_1iexcdtl-ritem2.
        CLEAR it_pcrdtl.
        READ TABLE it_pcrdtl WITH KEY mblnr = gs_mseg-mblnr
                                      mjahr = gs_mseg-mjahr
                                      zeile = gs_mseg-zeile.
    ****End of Changes*************************************
        SELECT SINGLE * FROM mara INTO wa_mara
        WHERE matnr = j_1iexcdtl-matnr.
        SELECT SINGLE * FROM t023t INTO wa_t032t
        WHERE matkl = wa_mara-matkl
        AND spras = 'EN'.
        PERFORM write_form USING 'MAIN' 'ITEM_VALUES' 'SET'.
        gv_tot_duty = gv_tot_duty + it_pcrdtl-boedr.
        gv_tot_val =  gv_tot_val + it_pcrdtl-pcram.
        gv_tot_amt =  gv_tot_amt + j_1iexcdtl-exbas.
      ENDSELECT.
      PERFORM write_form USING 'MAIN' 'DASH_LINE' 'SET'.
      PERFORM write_form USING 'MAIN' 'TOTAL' 'SET'.
      SELECT SINGLE * FROM zeou_pcrhdr INTO it_pcrhdr
       WHERE pcrnr =  it_pcrdtl-pcrnr
       AND pcrdt = it_pcrdtl-pcrdt.
      PERFORM write_form USING 'MAIN' 'JOB_WORKER_ADDRESS' 'SET'.
      PERFORM write_form USING 'HEADER' ' ' ' '.
      text_id = 'PROC'.
    *concatenate j_1iexchdr-rdoc j_1iexchdr-ryear into thead-tdname.
      thead-tdname = '57FC'.
      PERFORM read_text.
      LOOP AT tlines.
        IF tlines-tdline NE space.
          j_1iregset-j_1irgdesc = tlines-tdline.
        ENDIF.
      ENDLOOP.
      PERFORM write_form USING 'FOOTER' ' ' 'SET'.
      PERFORM endform.
    Update table with entered preprn excise no.                "10.05.99
      UPDATE j_1iexchdr SET preprn = preprn
                        WHERE   exnum   = doc_no
                        AND     exdat   = doc_dt
                        AND     srgrp   = series.
    *&      Form  OPEN_FORM
          text                                                           *
    -->  p1        text
    <--  p2        text
    FORM open_form.
      CALL FUNCTION 'OPEN_FORM'
        EXPORTING
          application = ''
          device      = 'PRINTER'
          dialog      = 'X'
          form        = 'ZJ_1I_57F4'
        IMPORTING
          RESULT      = RESULT
        exceptions
          canceled    = 1
          device      = 2
          form        = 3
          OPTIONS     = 4
          unclosed    = 5
          OTHERS      = 6.
      IF sy-subrc NE 0.
        MESSAGE e888.
      ENDIF.
    ENDFORM.                               " OPEN_FORM
    *&      Form  WRITE_FORM
          text                                                           *
    -->  p1        text
    <--  p2        text
    FORM write_form USING  window element fnction.
      CALL FUNCTION 'WRITE_FORM'
           EXPORTING
               element       = element
               function      = fnction
               window        = window
       IMPORTING
            PENDING_LINES =
           EXCEPTIONS
                element       = 1
                function      = 2
                type          = 3
                unopened      = 4
                unstarted     = 5
                window        = 6
                OTHERS        = 7.
    ENDFORM.                               " WRITE_FORM
    *&      Form  ENDFORM
          text                                                           *
    -->  p1        text
    <--  p2        text
    FORM endform.
      CALL FUNCTION 'CLOSE_FORM'
           IMPORTING
                RESULT   = RESULT
        TABLES
            OTFDATA  =
           exceptions
                unopened = 1
                OTHERS   = 2.
    ENDFORM.                               " ENDFORM
    *&      Form  GET_HEADER_DATA
          text                                                           *
    -->  p1        text
    <--  p2        text
    FORM get_header_data.
      CLEAR: t001w,j_1iwrkcus,j_1iregset,j_1iindcus.
      SELECT SINGLE * FROM  t001w
            WHERE  werks       = j_1iexchdr-werks.
      SELECT SINGLE * FROM j_1iwrkcus
            WHERE  j_1iwerks   = j_1iexchdr-werks.
      IF sy-subrc <> 0.
        MESSAGE e000(8i) WITH 'plant customisation not found'.
      ENDIF.
      SELECT SINGLE * FROM j_1iregset
            WHERE  j_1iregid   = j_1iwrkcus-j_1iregid.
      IF sy-subrc <> 0.
        MESSAGE e000(8i) WITH 'register id customisation not found'.
      ENDIF.
      SELECT SINGLE * FROM j_1iindcus WHERE
             j_1ibukrs = j_1iexchdr-bukrs.
      IF sy-subrc <> 0.
        MESSAGE e000(8i) WITH 'Customisation missing .. indcus'.
      ENDIF.
      SELECT SINGLE * FROM lfa1 WHERE
      lifnr = j_1iexchdr-lifnr.
      IF sy-subrc <> 0.
        MESSAGE e000(8i) WITH 'Vendor record missing ....'.
    **Vendor full address
      ELSE.
        SELECT SINGLE * FROM t001
                        WHERE bukrs EQ j_1iexchdr-bukrs.
        SELECT SINGLE * FROM   adrc
                        WHERE  addrnumber EQ lfa1-adrnr.
      ENDIF.
    ENDFORM.                               " GET_HEADER_DATA
    *&      Form  READ_TEXT
          text                                                           *
    -->  p1        text
    <--  p2        text
    FORM read_text.
      CALL FUNCTION 'READ_TEXT'
        EXPORTING
          client                  = sy-mandt
          id                      = text_id
          language                = sy-langu
          name                    = thead-tdname
          object                  = 'J1IF'
          archive_handle          = 0
        IMPORTING
          header                  = thead
        TABLES
          lines                   = tlines
        EXCEPTIONS
          id                      = 1
          language                = 2
          name                    = 3
          not_found               = 4
          object                  = 5
          reference_check         = 6
          wrong_access_to_archive = 7
          OTHERS                  = 8.
    ENDFORM.                               " READ_TEXT

    Hi ,
      The form name is passed as a parameter to the FM OPEN_FORM , in your case look at the code
    CALL FUNCTION 'OPEN_FORM'
    EXPORTING
    application = ''
    device = 'PRINTER'
    dialog = 'X'
    form = 'ZJ_1I_57F4'  " Form Name
    IMPORTING
    RESULT = RESULT
    exceptions
    canceled = 1
    device = 2
    form = 3
    OPTIONS = 4
    unclosed = 5
    OTHERS = 6.
    , Now use se71 to see the from and check the text .
    Please do revert back in case you want more information.
    Regards
    Arun

  • ADDRESS Command in SAPScript

    Dear all,
    I'm using ADDRESS ~ ENDADDRESS command in SAPScript. I pass street name to STREET as follow
    NAME name1 name2 name3 name4
    STREET &LFA1-STRAS&
    With the above, my street can be displayed out correctly.
    But i faced problem when i have street2 street3 and street4, like below:
    NAME name1 name2 name3 name4
    STREET &LFA1-STRAS& , &ADRC-STR_SUPPL1& , &ADRC-STR_SUPPL2& , &ADRC-STR_SUPPL3&
    With above, nothing printed for street.
    Could you please point me out where did i code wrong?
    Or we can not pass street2/3/4 to STREET?
    Thank you.

    Hi,
    Just Refer this:
    https://forums.sdn.sap.com/click.jspa?searchID=12447471&messageID=2301405
    Check the below link for details on Text Elements
    http://help.sap.com/saphelp_47x200/helpdata/en/d1/802e91454211d189710000e8322d00/content.htm
    Regards,
    Shiva Kumar

  • Address Problem in Script

    Good Day.
    I am new to SDN and posting for the first time.
    I want to print vendor address in SAP SCRIpt Form.
    I have vendors from all over the world and the address format is different in each country.
    I want to know if there is anything using which I can display the address as per the country specification.
    thank you in advance.

    ADDRESS-ENDADDRESS will print address depends upon the receiver address standards. IN order to solve your problem, I suggest two ways.
    1) In sapscript
    /:ADDRESS
    /: ADDRESSRNUMBER = W_ADRNR
    /: COUNTRY 'DE'
    /: FROMCOUNTRY 'DE'
    /:ENDADDRESS
    and from prorgam pass W_ADRNR from ADRC. It will print entire address.
    http://help.sap.com/saphelp_40b/helpdata/en/d1/803238454211d189710000e8322d00/content.htm

  • I just used the "find my apple id" and it has an id to my old email address problem is when i try to login to hotmail with that account it says the email address doesn't exist..and this is affecting my application updates and purchases.

    Please help!
    I dont know how the email address doesnt exist and how it can still be an apple id but not let my access my purchases or update old appplications
    thanks,
    Kiah.

    Hey Chris, thanks for your reply.
    The problem is that i have 2 apple Id's now and i used on to purchase my macbook pro a few years back and then i created a new one for my new macbook.. i was trying to update my iphoto and imovie but it kept saying i couldnt update it as it was purchased under a different id, and seeing though i cant get into my old account i cant update what i need to. i know the password for the old one as my brother still uses it but it wont work now as hotmail says the email doesnt exist.
    in saying that i dont think i can get into the old account and change the email address

  • Apple verify email address problem :(

    I have a bought a IPhone 4S and I wanted to sign up for itunes. I have done everything. A verification mail is sent by apple but when I linked to the web site given and write my ID (I think it is my mail) and password, I got a message "This email address is already in use or you may already have an Apple ID associated with this email address. Please try again or sign in using your existing Apple ID."
    I cannot install sth without it please help me what can I do for overcome this problem

    I have the same problem.
    And another people with me have the same problem to.
    We are wainting for a fix very fast!
    Thank you.

  • Printing problem with sapscripts

    Hi everybody, I have a problem with a sapscript. This is called from a user exit, and take one value to print . I have that value in the sapscript with the same value between &&, but it doesn't print anything, only print the text I have there. Does anybody know which could be the problem??
    Thanks in advance

    Hi....
    it will display correctly...
    just check it once.
    if u have a variable called <b>'name'</b> in the print program then use <b>&name&</b> in the script. it will work fine.
    Just check it once.
    Reward points if useful......
    Suresh......

  • Self-assigned IP address problems

    I'm having a problem with my wireless router connection (my Airport card shows the network, but the "fan" is greyed out, and if I choose the network it still doesn't connect - When I check network status I get "AirPort connected to network, but has self-assigned IP address and may not be able to connect...)
    I can temporarily fix the problem by going into System Preferences to Network to Airport to Preferred Networks to Assist Me and THEN it will go to my network and turn on the path.
    I'm running Tiger 10.4.11 on a G5 iMac with the original AirPort Extreme card, and routing through a Linksys WRT54G attached to a cable modem.
    There are a lot of networks in my area, according to my wireless "fan".
    If changing channels on my router might fix this, I'd like to give it a try, but I don't know how, AND I don't want to ruin the signal to the other computers in the house, which, by the way, work just fine when the iMac loses the signal.
    If there's another way to tell the router to ignore the self-assigned IP address, or to get the AirPort to stop providing this ...
    The problem is obviously the self-assigned IP address. The question is what is causing this?
    Is it the AirPort Extreme Card?
    Is it the Linksys Wireless router?
    How do I test to see which it is, without losing the signal from the router to the other computers in the house?
    With so many people having the same problem, there must be an answer somewhere.
    Can some kind soul please point out the correct path? My tech support (teenager) will be home from college this week, and if I can prove to him that it won't ruin everything I think he'll be up to the challenge.

    Hi,
    Thank you Linc & dwb, I've had no issues with the router in the 14 months its been installed.  But tonight I've turned off the NAS and since then no drop off for wifi/ or assigning itself an IP address. 
    I will switch on the NAS once again and see what happens, would it be best to assign a static IP to the NAS?  One thing I have found when checking the homehub connection details, the mac air connects at the 5Gz Wireless as does the Kindle, which has also suffered from losing the wifi connection, where as my macbook pro only connects at 2.4Gz and like I said has not had any issue.  Not sure if this anything to do with the problem or not? 
    All I do know is that since the NAS was introduced then the problems began, so again not sure if its the NAS impacting on the router or a router setting? 
    thanks

  • Self-assigned IP address problem - My solution

    I am new to this board and created an ID just to write this post. When I searched for this self-assigned IP problem, I found almost 1 million results on Google so obviously I am not alone.
    I have this problem off and on on the wireless network at home with a Netgear router. It has never happened at my office with a D-Link router. Never happened at Starbucks or McDonalds (yes, they all offer WiFi here). But it happened at one Pizza Hut and it also at Christchurch airport about a week ago.
    Deleting one of the plist files worked once at home many months ago but this week nothing worked. My Mac usually goes back to normal by itself after I "****" it out at other WiFi networks but not this time. As a last resort, I asked my brother (our family's I.T. guy) to change the router as I had not tried that fix. He didn't do it but a day later, he gave me to oddest solution that worked in a blink of an eye.
    The solution? Key in a wrong password!!!
    1) Go to Keychain Access, delete the keychain for the problematic network.
    2) Connect back to the network
    3) Enter a WRONG password that is similar to the right one. For example, if your password is Apple123, try APPLE123. You should still connect to the network and get a self-assigned IP.
    4) Repeat Step 1. To be safe, you might want to re-boot now. I did but probably didn't have to!
    5) Repeat Step 2
    6) Enter the right password
    I'm not all that techie so all I understood from what he said was:
    1) It's probably a non-Apple router bug
    2) It's a hex key problem. The password wasn't being encoded/decoded properly so the router wasn't assigning the computer an IP address. Wasn't even reading the password which is why I could connect with a wrong one.
    He deduced that from reading a post from a guy in Spain who thought he had carelessly entered the wrong password and was wasting the community's time with his posting. I had read that post a couple of days ago too! But obviously I thought the Spaniard had just entered the wrong password and there was no fix for me to try out. My brother is a genius!
    I guess it then makes sense why fixes like:
    1) Disabling the firewall
    2) Deleting preference lists
    3) Deleting keychains
    4) Changing the router
    5) Renewing DHCP lease
    6) Resetting the router
    ...have worked for many people and not others. None of them actually fix the cause of the problem. Having searched for 3 days, I could not find the REAL reason why this happened. Personally from all I have read, I think it must be a hex key problem with Netgear and Linksys routers. I see those 2 names mentioned a **** of a lot. Maybe it's another one of those gadgets built more for PCs that don't work perfectly with Macs all the time. We used to have an Apple Airport Extreme base station but that got fried by lightning. It was not cheap.... So technically, it really isn't Apple's problem. I think if we used an Apple router, we wouldn't have a self-assigned IP address. Maybe that's why they haven't "fixed" the problem after so many years.
    Anyway, let me know if my brother's fix worked for you.
    This is my good deed for the weekend! Goodnight....!

    Hello, thanks for the tip/post, & a warm welcome to the forums!

  • Problem in sapscript Main Window Box command - Urgent

    Dear friends,
    Problem while showing boxes in multiple pages in sapscript. Box command is defined begining of the main window. But while printing showing in first page only not in other pages.
    Regards,
    Praveen Lobo

    This could be your problem why box command is not getting displayed in all pages, you might be using the box command in the element that is only called once and that to in the first page... so try to check your form and place you box command under element that is getting called in each and every page, it will solve your poblem.
    Note: for testing you can place your box command under element "/E" where you are displaying your line items... even though it is called multiple number of times it gets overlapped.
    close the thread once your question is answered.
    Regards,
    SaiRam

  • IMessage contact address problems

    I am a little perplexed about how to set up iMessage correctly. 
    I have iMessage activated.  My settings are that "I can be reached by iMessage" at my phone number and email.  I "Start new conversations from" my email.
    The first problem I have is when I talk to my girlfriend (she has an iPhone).  I frequently have two different iMessage threads with her and it is very frustrating.  In one thread, if I click on her Contact info it highlights her phone number.  The other thread, it highlights her email.  Its annoying to not keep everything in one unified thread.  Is there anyway to do this? Is the problem on her end or my end?
    Keeping the above problem in mind, I would also like to unify my iMessage with my iPad messaging.  I get this to work sporatically, but I would like it if I could consistently see all my iMessage conversations in my iPad as if I were looking at my iPhone.  My girlfriend also has an iPad (although she hasn't been using it for messaging) so I would like to be able to set up the same for her.
    I just don't understand the need for separating iMessages into two threads depending on the address.  It would seem to be easier for everyone if you just kept it unified based on the name.
    Any help would be greatly appreciated.

    Hi, did you ever fix this problem? I'm having the same issue.

  • Text problem in SAPScript

    Hello,
    i have a problem i need to print one recepit with sapscript.
    I have to made a changes in displaying the text in o/p but it is in different language i.e PT
    text to display is
    IVA NÃO REGULARIZADO – ARTº 71 CIVA
    Now if you see above in sentence we have some special characters which are not present in keyboard itself.
    Origanal language of form is DE
    Can anyone help me out in this.
    Regards,
    Vikrant

    Hi,
    Goto SE63 and translate the TEXT from one language to other.
    regards,
    Shiva

Maybe you are looking for

  • ERROR creating spatial index

    Hi all. I have a problem during the creation of a spatial index for a table column. The metadata is in the USER_SDO_GEOM_METADATA VIEW, but Oracle throws the message: ORA-29855: se ha producido un error en la ejecución de la rutina ODCIINDEXCREATE OR

  • ORACLE 8.0.5 Patches on Red Hat 8.2.1

    After installing Oracle 8.0.5 on Red Hat Linux 6.1, do we need to run any patches..? (I have downloaded the ORACLE8 from Technet). If yes.. where do I get them..? null

  • How to call TRFC from diff SAP server?

    hi all,         i have created one rfc enabled FM on a SAP server, and i am calling that FM from different SAP server using TRFC. I am calling using this statement, CALL FUNCTION 'ZMKV_RFC' IN BACKGROUND TASK   DESTINATION 'zmkv' But it doesnt show m

  • Substitution variable in Dynamic Calc

    Hi, We are using Essbase 9.3.0 on Windows and are seeing this behavior in our BSO cubes. When we use a substitution variable in a Scenario member with Dynamic Calc (not store) setting, after the first retrieve, if we change the value of the substitut

  • Oracle 9i and Oracle 10g Client

    can oracle9i and 10g client be installed on different drives of same machine... if so how we can configure it to work. Thanks in advance..