HI masters, UI layout is not coming in webdynpro abap

HI Masters,
                    when i going to do webdynpro applications , the UI layout is not coming, Please any one can give reply. I think it relate to browser problem. Is there any other causes. and also if browser related problem , please guide me in detail how to solve this problem. Reply will be highly appreciated.
thanks

hi , in webdynpro abap , the UI Layout is not visible. 
I did some settings .
1) in SICF  t-code , i actvate the all services realted to http . i dont know which services properly need to webdynpro ui layout.
        after activating those services, ui elements are coming . but when i am tryin to drag ui elemetns in to UILayout , it showing some error message. I am not able to drag ui elemetns to ui layout.
Please tell how to solve this problem.
1)  if the solution is regarding ip address in host file, please guide me in depth step by step.
2) if the solution is realted to browser settings , please guide me in depth each step by step for settings   in browser .

Similar Messages

  • Adobe Form Layout is not loading from webdynpro abap

    Hi Experts,
    I am creating adobe forms using webdynpro.If i double click on the adobe form name from UI element properties,i am getting an error:
    'Error while opening document'
    Also in diagnosis it is written as:
    'An error occured in the desktop application while opening the document' and also the message number is 'SOFFICEINTEGRATION143'.
    Please help me to solve these issue.
    Regards,
    Arun.

    Hi,
    I solved this issue by reinstalling Life cycle designer.
    Regards,
    Arun.
    Edited by: ARUN.NAREIN on Oct 4, 2011 12:47 PM

  • WDA layout editor not coming

    Hi guys and gals,
    I am down with a problem here...the View editor is not coming for the WDA objects.I doing WDA developments for the first time. We are accessing SAP through citrix. Is there any solution?

    Hi Sourav,
    Need to configure in the drivers for your system check with the basis-team.
    http://help.sap.com/SAPHELP_NW04S/helpdata/en/67/be9442572e1231e10000000a1550b0/content.htm
    Regards,
    Sravanthi

  • Adobe Form Layout is not loading from webdynpro

    Hi Experts,
    I am not getting the layout for Adobe forms from webdynpro.If i click the layout tab an error is poping:
    "Error while opening the document"-Message no.SOFFICEINTEGRATION143
    When i checked the diagnosis it is stated as:An error occured in the desktop application while opening a document.
    Please help me to solve this issue.
    Regards,
    Arun.

    Hi Arun,
    Error due to incorrect installation of life cycle designer.
    check the below links for solution.. ( same issue ).
    Error Message "Error while Opening the Document"
    Error - Adobe Live Cycle designer
    Regards
    Srinivas

  • RFC working in foreground but not working thru webdynpro abap

    Dear all,
    I am passing certain parameters to an RFC it works thru foreground but when I pass the same parameters at the click of a submit button the RFC doesn't work. although the RFC importing parameters are getting passed successfully.
    Can anyone tell me the reason for this kind of behaviour or what needs to be done to make it work more specifically?
    Thanks and regards,
    Sonal

    I am not sure about the exact reason behind your problem, but you can try following things. I hope it will help.
    1) Set break point after RFC call, and try following things:
         i) Check if correct parameters are passed to the RFC i.e. parameters you are passing in test mode, same are also passed
            while running in WDA application
         ii) Compare the return parameters of RFC in test mode and WDA after setting break point if any
    2) use 'COMMIT WORK' after RFC call
    Regards,
    Saket.

  • Adobe layout design is not coming

    Hi Everyone,
    In my webdynpro abap or in Adbe form creation in SFP also the Adobe layout design is not coming. Displaying an error message stating that ' Could Not start Layout Design'. Can any reply me the root cause for this Adobe layout problem.

    Hi,
    There could be two reasons for this.
    1. Check under ABAP connection in SM59 for ADS service running or not. It must be active. You may test the connection or check with Basis Team as well.
    2. You need to install Adobe Life Cycle Designer in your system OR the latest SAP GUI ( This contains by default Adobe Life Cycle Designer)
    Let me know if this helps you.
    Thanks & Regards,
    Anil Kumar Sahni

  • Layout variant not working

    Hi ,
      I have executed a report . I hide one column and saved the layout. The layout name comes on to the selection screen parameter which i have defined on the selection screen.
    PARAMETERS: p_vari LIKE disvariant-variant. " ALV Variant
    i have made the i_save = 'A' and is_default = 'x'. and also used other function modules reg. Variants.
    but if i select the layout variant in the selection screen and execute it is not working . the hidden column also coming on the output.
    But if the select the layout variant on the output of the report from the icon select layout it is working fine. the column which i have hidden is not coming. it is perfect. why it is not working when i select the variant in the selection screen.
    Regards,
    Rose.

    Hi,
    Please try this code
    AT SELECTION-SCREEN ON VALUE-REQUEST FOR p_vari.
      w_variant-report = sy-repid.
    * Function module to show the variant of a ALV report
      CALL FUNCTION 'REUSE_ALV_VARIANT_F4'
        EXPORTING
          is_variant = w_variant
          i_save     = 'A'
        IMPORTING
          es_variant = w_kvariant
        EXCEPTIONS
          not_found  = 2.
      IF sy-subrc = 2.
        MESSAGE ID sy-msgid TYPE 'S'      NUMBER sy-msgno
                WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
      ELSE.
        p_vari = w_kvariant-variant.
      ENDIF.
    END-OF-SELECTION.
    MOVE w_variant TO w_kvariant.
        MOVE p_vari TO w_kvariant-variant.
        MOVE sy-repid TO w_kvariant-report.
    *   Function module to check the variant existence
        CALL FUNCTION 'REUSE_ALV_VARIANT_EXISTENCE'
          EXPORTING
            i_save     = w_save
          CHANGING
            cs_variant = w_kvariant.
        w_variant = w_kvariant.          
    CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
        EXPORTING
          i_callback_program          = sy-repid
          i_callback_pf_status_set    = 'SET_PF_STATUS'
          i_callback_user_command     = 'USER_COMMAND'
          i_callback_html_top_of_page = 'HTML_HEADING'
          i_grid_title                = text-t06
          i_grid_settings             = wa_grid_set
          is_layout                   = wa_layout
          it_fieldcat                 = t_fieldcat
          i_save                      = 'X'
          is_variant                  = w_variant
          is_print                    = wa_print
        TABLES
          t_outtab                    = t_header
        EXCEPTIONS
          program_error               = 1
          OTHERS                      = 2.
      IF sy-subrc <> 0.
        CASE sy-subrc.
          WHEN 1. RAISE program_error.
          WHEN 2. RAISE others.
        ENDCASE.
      ENDIF.
    Regards
    Krishna
    Edited by: Krishna Gowrneni on Apr 17, 2009 5:27 PM

  • Search help (PREM) for personal no. is not coming in ALV grid table control

    hi experts,
    Search help (PREM) for personal no. is not coming in ALV grid table control.
    i have assigned the srch help (prem) to my 'ZFIEXP_PROJALLOC' table for the emp_id.
    but in output it is now showing the help.
    ls_fcat-fieldname = 'EMPLOYEE CODE'.
      ls_fcat-ref_table = 'ZFIEXP_PROJALLOC'.
      ls_fcat-ref_field = 'EMP_ID'.
      ls_fcat-outputlen = '10'.
      ls_fcat-key = 'X'.
      ls_fcat-edit = 'X'.
      ls_fcat-coltext = 'EMPLOYEE CODE'.
      ls_fcat-seltext = 'EMPLOYEE CODE'.
      append ls_fcat to pt_fieldcat.
      clear ls_fcat.
    Then i tried to solve it using the PA0002 . ie.,
    ls_fcat-fieldname = 'EMPLOYEE CODE'.
      ls_fcat-ref_table = 'PA0002'.
      ls_fcat-ref_field = 'PERNR'.
      ls_fcat-outputlen = '10'.
      ls_fcat-key = 'X'.
      ls_fcat-edit = 'X'.
      ls_fcat-coltext = 'EMPLOYEE CODE'.
      ls_fcat-seltext = 'EMPLOYEE CODE'.
      append ls_fcat to pt_fieldcat.
      clear ls_fcat.
    with this it is showing the help in employee code, but, when i click on an empl number, it is not added to my table control and allowing me to add the number by typing them.
    plz help me.
    thanks.

    Hi 
    In the layout give layout-sel_mode  = 'A'.  and
    pass  'A'    to  i_save  exporting parameter to method  set_table_for_first_display.
    The same thing if you are working with function module
    reuse_alv_grid_display.
    Reward points for useful answer.
    Venkat

  • FBL1( VENDOR LEDGER REPORT)-  Withholding tax amount is not coming .

    in FBL1 ( vENDOR lEDGER rEPORT) - WITHHOLDING TAX AMOUNT IS NOT CMING IN COLUMN  QBSHB OF FBL1.
    Purchasing document number is not coming also.
    How these fields may appear in the above said report. Is any config missing ?
    Thanks in advance
    M K Agarwal
    9967029930

    TDS posted from MIRO will not reflect in line item report, i have taken opinion from SAP for the same issue few days back, SAP has given the following opinion.
    *With reference to the difference in behaviour as compared to the document posted for example from MIRO which is an MM transaction and FB60 which is a FI transaction please note the following:
    The withholding tax amount that you are using i.e. Field BSEG-QBSHB is designed to fill for the classic withholding tax. And extended withholding tax information is stored exclusive in table WITH_ITEM.
    Also note that MIRO does not give the user the control in case of Classical withholding tax. It only supports Extended withholding tax. Hence it does not populate BSEG fields in case of Extended WT.
    So in MIRO, the data for extended withholding tax are saved within the table WITH_ITEM and not within the table entry BSEG-QBSHB. The latter isnot updated during the procedure. Furthermore it is not possible to select data from table WITH_ITEM
    within the transaction FBL1N in a transparent and unique way, as FBL1N only reads BSEG / BSIK / BSAK tables.
    In your line layout,you define a field BSEG-QBSHB. But actually the field of vendor/customer line item is filled with zero from FI. Thus,it shows zero in line item display*
    Please review note 363309 for detailed explanation and explains the functionality which is valid even for your release.
    So it is not possible to display withholding tax information in the line item display transactions, since this information is not
    held in the BSEG / BSIK / BSAK tables, but is instead stored in the WITH_ITEM table.
    Please convey to your client, standard SAP will not show the TDS information in line item reports, documents posted from MIRO and refer  the note 363309.

  • Custom Resource Renderer not coming on Implementing Flexible UI Components

    HI,
    I am using the Sneak Preview NW2004s SP9 with TREX .
    I have to modify the search result list as returned by the TREX using the default search, basically have to include a custom Link based on the resource name.
    I am trying to run the examples from the Knowledge Management and Collaboration Developer's Guide - "How to Implement Flexible UI Components".
    I deployed the par file for the sample application "Using Flexible UI Ready-Mades"
    and followed the steps as outlined below:
    System Administration>System Configuration>Knowledge Management -->Content Management
    1) Under
    User Interface->Mapping>Resource Renderer
    Created a new mapping for the java class com.sap.km.ui.renderer.SimpleResourceRenderer
    2) Then under
    User Interface->Settings>Resource Renderer Settings
    Created a duplicate of  SearchResourceRenderer
    and in the copy changed the Resource Renderer to the custom one(as the one mapped in previous step).
    In the Search Result layout Set, i changed the Resource Renderer Name to the custom one.
    Now i restarted the server.(i tried restarting after almost all the steps )
    But my resource renderer is not coming after i execute the TREX Search.The list returned seems to use the default Resource Renderer.
    I even tried by making an advanced copy of the Search Layout Set, changed the Resource Renderer name, updated the OTH file(search.oth), Switched on the degugging for the WdfProxy and reloaded the OTH.
    Now the new layout Set is being used but still i cannot see the result as per the custom resource renderer.
    Morover, if i try to print some message from the resource renderer code(Component render method), it is not printed in the default Trace file.
    Please help me in identifying and resolving the problem.
    Thanks,
    Siddhartha

    Hi Detlev,
    Sorry for the delay.
    We don't want to exlude the folders, we would like keep it, the problem is, instead of appearing the folder name, is displayed the error message and below the actions (details, delete, …).
    At first, we thought that could have been an error in the configuration of LayoutSet, but then, we tried on other two environments, with the default LayoutSet configuration and we still get, on the three environments, the same error message.
    Any idea?
    Thanks and Regards,
    John

  • In webdynpro abap , the ui layout is not visible. please read query fully

    hi , in webdynpro abap , the UI Layout is not visible. 
    I did some settings .
    1) in SICF  t-code , i actvate the all services realted to http . i dont know which services properly need to webdynpro ui layout.
            after activating those services, ui elements are coming . but when i am tryin to drag ui elemetns in to UILayout , it showing some error message. I am not able to drag ui elemetns to ui layout.
    Please tell how to solve this problem.
    1)  if the solution is regarding ip address in host file, please guide me in depth step by step.
    2) if the solution is realted to browser settings , please guide me in depth each step by step for settings   in browser .

    Hi sujana,
    I had a similar problem..
    if u hav a look at ur url you will come to know the following things:
    <schema>://<host>.<domain>.<extension>:<port>/sap/bc/webdynpro/<namespace>/<application name>
    the same url can be traced in SICF.
    Also u need to add the server ip/domain name in the advanced tab in lan settings so that it does go through the proxy..
    You can check the following link: http://help.sap.com/saphelp_nw04s/helpdata/EN/8c/780741375cf16fe10000000a1550b0/content.htm
    Best Regards,
    navin fernandes.

  • Documents not coming in the report taken for reversal reason code

    Hi,
    We have defined the various reason codes for document reversal.
    When we try to take the report based on the reason code in FB03 or FAGLL03, the reversal doucment is not coming up.
    Is there any setting for it? or how to get that report? We need that report to authorize the reversals.
    Thanks,
    Pratap

    Hi,
    Please note that In standard SAP, the reversal reason code gets stored in the original document which is reversed. It does not get stored in the reversal document.
    You can get the report based on the field STBLG (Reverse Document Number) and STJAH (Reverse document fiscal year).
    This will be filled up for both original document and reversal document. And the clearing document number will be same for both the documents, so you can easily link the two documents in FAGLL03 output layout using sorting based on clearing document and filtering based on the two fields given.
    Regards,
    Gaurav

  • Inspection Lot not coming in QA16

    Dear Masters,
    I am using inspection lot origin 04.Inspection is carried out by uaing a task list.As soon as the production confirmation is done , inspection lot is cretaed and  it is seen in QA32.But the same lot is not coming in QA16 , Why?Please suggest.
    Thanks,
    Ram

    I believe you answered your own question.  With free inspection points, it does not show up in the QA16 list.  That is because SAP has no idea how many inspection points your going to decide to process.  1?  3?  20?  When is the lot ready for a UD?  Only you know that.  SAP has no clue.
    I believe if you had a lot that used inspection lots by qty or time and the inspection points were pre-created, then all results recorded, that would show up on the list.
    But with free inspection points, the system has no way of knowing if your done with the lot or not.
    Craig

  • Value are not coming (tcode cm50)

    hi expert ,
    in below code values are not comes into ITAB_TXTLINES (  WA_DATA ) . we use a standard program cm50 tcode . into
    customize program  memory but values is not coming into wa.
    values(arbpl ,werks,kapar,planr)
    this is my first time i use standard progarm
    so plz help
    REPORT  ZPP_CM50  LINE-SIZE 170..
    TYPE-POOLS : SLIS.
    DATA : INT_CAT TYPE SLIS_FIELDCAT_ALV,
           INT_FCAT TYPE SLIS_T_FIELDCAT_ALV.
    DATA : LS_LINE TYPE SLIS_LISTHEADER,
           VN_TOP  TYPE SLIS_T_LISTHEADER,
           IT_SORT TYPE  SLIS_T_SORTINFO_ALV,
           WA_SORT LIKE LINE OF IT_SORT.
    DATA : LAYOUT TYPE SLIS_LAYOUT_ALV.
    DATA: BEGIN OF SLIST_LISTLINE,
          LINE(1024)      TYPE   C,
          END OF SLIST_LISTLINE.
    DATA: ITAB_TXTLINES LIKE SLIST_LISTLINE OCCURS 0 WITH HEADER LINE.
    TABLES : CRHD , KAKO .
    DATA: BEGIN OF ITAB_DATA OCCURS 0,
          AA(20),LEVEL(20),ITEM(20),OBJ(20),OBJID(20),
          OBJDES(20),OVRFLW(20),QTY(20),UOM(20),ICT(20),
          END OF ITAB_DATA.
    DATA : WA_DATA LIKE ITAB_DATA.
    DATA: TEXT TYPE C LENGTH 10,
          RSPAR_TAB  TYPE TABLE OF RSPARAMS,
          RSPAR_LINE LIKE LINE OF RSPAR_TAB,
          RANGE_TAB  LIKE RANGE OF TEXT,
          RANGE_LINE LIKE LINE OF RANGE_TAB.
    *DATA: TEXT TYPE C LENGTH 10,
         RSPAR_TAB  TYPE TABLE OF RSPARAMS,
         RSPAR_LINE LIKE LINE OF RSPAR_TAB.
         RANGE_TAB  LIKE RANGE OF TEXT,
         RANGE_LINE LIKE LINE OF RANGE_TAB.
    DATA  : LIST_TAB TYPE TABLE OF ABAPLIST.
    SELECTION-SCREEN : BEGIN OF BLOCK ABC WITH FRAME TITLE TLT.
    SELECTION-SCREEN   SKIP 1.
    *SELECT-OPTIONS     ARBPL FOR CRHD-ARBPL.
    SELECT-OPTIONS     WERKS FOR CRHD-WERKS.
    SELECT-OPTIONS     KAPAR FOR KAKO-KAPAR.
    SELECT-OPTIONS     PLANR FOR KAKO-PLANR.
    SELECTION-SCREEN   SKIP 2.
    SELECTION-SCREEN : END OF BLOCK ABC.
    START-OF-SELECTION.
    *RSPAR_LINE-SELNAME = 'TRUST_ID'.
    RSPAR_LINE-KIND    = 'P'.
    RSPAR_LINE-LOW     = 'RPF1'."'VD06011013'.
    APPEND RSPAR_LINE TO RSPAR_TAB.
    CLEAR RSPAR_LINE.
    RSPAR_LINE-SELNAME = 'YEAR'.
    RSPAR_LINE-KIND    = 'P'.
    RSPAR_LINE-LOW     = '2009'.
    APPEND RSPAR_LINE TO RSPAR_TAB.
    CLEAR RSPAR_LINE.
    RSPAR_LINE-SELNAME = 'REPONAME'.
    RSPAR_LINE-KIND    = 'P'.
    RSPAR_LINE-LOW     = 'FORM3A'.
    APPEND RSPAR_LINE TO RSPAR_TAB.
    CLEAR RSPAR_LINE.
    SUBMIT RCCRY000 EXPORTING LIST TO MEMORY
    USING SELECTION-SCREEN '1000'
                    WITH CRHARBPL-LOW EQ ARBPL
                     WITH CRHWERKS-LOW EQ WERKS
                     WITH KAKKAPAR-LOW EQ KAPAR
                     WITH KAKPLANR-LOW EQ PLANR
                      AND  RETURN.
      CALL FUNCTION 'LIST_FROM_MEMORY'
        TABLES
          LISTOBJECT = LIST_TAB
        EXCEPTIONS
          NOT_FOUND  = 1
          OTHERS     = 2.
      CALL FUNCTION 'LIST_TO_ASCI'
        EXPORTING
          LIST_INDEX         = -1
          WITH_LINE_BREAK    = ' '
        TABLES
          LISTASCI           = ITAB_TXTLINES
          LISTOBJECT         = LIST_TAB
        EXCEPTIONS
          EMPTY_LIST         = 1
          LIST_INDEX_INVALID = 2
          OTHERS             = 3.
      LOOP AT ITAB_TXTLINES .                                   "from 5.
        CLEAR WA_DATA.
        SPLIT ITAB_TXTLINES AT '|' INTO: WA_DATA-AA
                                         WA_DATA-LEVEL
                                         WA_DATA-ITEM
                                         WA_DATA-OBJ
                                         WA_DATA-OBJID
                                         WA_DATA-OBJDES
                                         WA_DATA-OVRFLW
                                         WA_DATA-QTY
                                         WA_DATA-UOM
                                         WA_DATA-ICT.
       IF ITAB_TXTLINE-SY-INDEX .
    then
         DO 4 TIMES.
           REPLACE '.' IN WA_DATA-LEVEL WITH SPACE.
         ENDDO.
    *DELETE ITAB_DATA-INDEX=1." WHERE WA_DATA = ITAB_DATA.
         CONDENSE WA_DATA-LEVEL.
         IF NOT WA_DATA-LEVEL IS INITIAL and not WA_DATA-LEVEL cp 'Emp*'.
            APPEND WA_DATA TO ITAB_DATA.
         ENDIF.
       ENDIF.
      ENDLOOP.
    thanks.

    Hi,
    CM50 is generated from CM10 main program for parameter 'M'. It generates it on the runtime and exports values into memory. It's less likely you will be able to generate the whole set into a Z Program.
    I didn't find a function module to do so. But, with your consultants help you can create your own function module that gives results similar to CM50, it's merely calculation of capacity of workcenters for a period using the sales order booked against the work centers in that period. If you try a bit you can create it.
    Good luck.
    Also remember, before you post a code, use  ...

  • CS5 - TOC not coming in correctly

    I have a document where the TOC is not coming in according to the document layout. Sub-headers are out of order (based on placement in document) and I have sub-headers showing up under Headers they don't belong.
    I have removed all sub-headers and re-inserted them. I have removed all instances of Anchored Objects. Neith fixed the problem.
    Any help would be greatly appreciated!
    Thanks ~ Karyn

    Since the TOC is based on styles, make sure you don't have any styles that are mis-applied. One way this can happen is described as follows:
    Here's a screenshot of a fake document with a few styles and a TOC. The red is the title, which I want in the TOC, and the green is the subtitle, which I don't. I have the cursor set on the subtitle, which you can see in the paragraph styles pallet.
    I have built the TOC that you can see in the first screenshot with the specs you can see in the second. I have a style for the Title (red) Subtitle (green) one for the TOC head,  one for the TOC body and Basic Paragraph for the body (which you really don't want to use, by the way, which I can explain if you need). The title style is the only one that will be gathered for the TOC entries.
    Here, I have deleted the paragraph return that separates the title from the subhead. This can sometimes happen if you aren't careful. Notice that the style is listed as Title, but the text retains the look of the subhead.
    Here, I have put the paragraph return back, but notice that the style still reads "Title" (but with the + that indicates local overrides). By removing the paragraph return, the Title style is applied to the subhead, because they were part of the same paragraph, and you can only have one paragraph style for any given paragraph. Hitting the return key hasn't changed the style, so it's still set to Title, and the + shows because the local overrides weren't stripped out by combining the paragraphs. You might not even notice visually that anything has changed, except in this case, I have used a space-after on the subhead that is missing on the title.
    Now, when I re-generate the TOC, the subhead is included, because even though it looks like the subhead, it's actually the title with local overrides. By re-applying the subhead style to the subhead while holding the Option key, I can remove the local overrides and apply only those aspects that I have defined into the style itself. This can also be done from the fly-out triangle of the styles pallet to any text that is selected with the type tool, or to any text within text frames selected with the Selection tool (and probably for the whole document with a script, but since I don't write scripts, I can 't say that for sure, but probably).
    Now that the local overrides are removed, I can re-generate the TOC once again and only show the title. This may not be what is causing your TOC to fail, but you might want to go through and see if your styles are applied correctly and then generate your TOC again. It's usually best to avoid local overrides when possible, and not at all if it's practical.

Maybe you are looking for

  • Question on unplanned delivery costs need to go to GL account ????

    Hello I have a question regarding unplanned deliver costs. I am a FI analyst  Can you please explain my how I can solve my problem . My user wants unplanned delivery costs to go in to the GL account . In MM account determination GL account is set up

  • XMLCompareTagValue(Text)

    Hello, I am having a problem with XMLCompareTagValue(Text) function. My XML Tag is: /vnml/project/trade/operation[@type] where type can be SELL or DELETE. I am comparing it with constant DELETE. Even when the type is DELETE, the comparison I am getti

  • Customizing user report

    Hi, I would like to generate a user report based on a global variable of the user instead of the variables defined in the extended attributes form. Is this possible ? If so, how do I refer to the same in the User summary report. right now any waveset

  • Can't open scarlett plug-in suit in logic

    I jost bought a Focusrite Scarlett 2i2 . It came with a "Scarlett plug-in suit". The 2i2 works as it should, but when i install the plug-in suit i can't find it in Logic pro. The user guide says that in order to activate the plug-ins i should open on

  • ITunes Link maker

    I found this site on Apple.com will trying to figure out how to link to my ebooks to help promote sales.  hope this helps.  http://itunes.apple.com/linkmaker/ Create links for the iTunes Store, the App Store, the iBookstore, and the Mac App Store. Wi