Custom Subtypes for IT0021 not appearing in ESS

We are in ECC 6.0 and using custom subtypes like FM01 - FM06 for IT0021 (Family Member/Dependents). Now we are doing ESS implementation and we are not able to display Family details through ESS.
I have maintained the subtypes in table V_T7XSSPERSUBTY.
Our country grouping is 99 and for IT0021 we are using Russian Country screen and completed  relevant configurations changes for the same.
Dear Friends, Can anyone guide me what extra changes I need to make for the Custom Subtypes (for IT0021) to appear in ESS.
Thanks in advance for your help.
Preethi

Hi again
One thought:  There are 2 IMG nodes for Defining possible family members - in addition to V_T7XSSPERSUBTYP.
This is already maintained in our installation, as we are now doing an upgrade. 
And all I did for upgrade, was entering data into V_T7XSSPERSUBTYP.
Check out if you need the entries in both the IMG nodes as well.  It should not be necessary to code anything to get the subtypes in ESS.
Personnel Management>Personnel Administration>Personal Data>Family>Personal Data>Family Types>Define Possible Family Members. 
Br
Kirsten

Similar Messages

  • Bank Infotype Subtype Not appearing in ESS

    Hello all,  I am working with a client who allows employees to create/maintain up to 3 bank accounts.  Our PA person has set up the following:
    Infotype 0009 with Subtype 0 as the MAIN bank
    Infotype 0009 with Subtype 1 as OTHER bank (can specify % or $ amount)
    Infotype 0009 with Subtype 91 as SECONDARY bank.
    Everything appears to be set up properly in V_T7XSSPERSUBTYP as follows:
    10 ->  0009  -> 0 -> B1
    10 ->  0009  -> 1 -> B3
    10 ->  0009  -> 91 --> B3
    The PROBLEM is this:  when viewing the bank information on ESS, the SECONDARY bank does not allow the user to specify % or $ amount.  Our PA person created subtype 91 by copying subtype 1, and she sees the $ or % field in the bank end, but it is not appearing in ESS.
    Any clues?
    Thanks!
    Cassy

    The reason is prety startight forward. These fields are been enabled via web dynpro coding for subtype '1'.
    Just in if condition for subtype 1 in the web dynpro coding also include subtype 91
    by adding a or condition.. I do not remember the exact view name but it is pretty easy to find the view name and the exact place where you need to do this by looking at the De velopment compnent in NWDS
    regards
    rajk
    null

  • Can we user custom subtype 9001 in 0105 to access ESS&MSS portal?

    Hi,
    I know by default the standard function modules of ESS will look for a user id in 0105 with subtype 0001. But 0001 has been used by some other portal pointing the same back end. we cannot use the same user id for ESS.
    For ESS, can we use custom subtype for the user ids? Is there any configuration to handle this scenario? How do we link the new portal should validate the user ids in custom subtype.
    Advance thanks for your valuable input.
    cheers
    Jayanthi

    Of course you can have custom subtypes for 0105 but the issue in your case always in all programmes0105 0001 subtype
    is checked so i would recommend not to substitute 0001 with 9001 instead use 9001 for some other purposes
    it will be easier.

  • How to Created custom report for Ship not Billed (SD/FI)?

    Hi all,
    I am anticipating  to write some abap reports..Here is one of them..
    Anyone can help  me with writing a Report , how to do 'Custom Report for shipped not Billed(SD/FI)' ..But since I am new to Abap , if you wish to reply, please use a little more detail and simple explanation, step by step so I can understand what is the idea, how it can be acheived...what kind of report should be used , techniques, tables etc...:)
    Appreciate your help!
    Regards,
    Boby

    Hi Boby,
    You need to create custom transaction to achive these results.
    you will have selection-screen ,it would be :
    Date : Here date would be mandatory  - Ranges Option
    Customer  - Optional field - Ranges
    Order #  Sales Order (Optional) Ranges
    Invoice #  - Invoice # (Optional) Ranges
    You will get the data based on ur selection-screen criteria ...
    First you will have customer order details from diffrent table
    VBAK,
    VBAP,
    LIKP
    LIPS
    VBRK,
    VBRP
    KNA1,
    VBFA Tables ( See the my sample program )
    Output would be :
    Customer #   Custome Name    Order #   Delivery #   Invoice #   Netpr, Netquantity ,
    Check the condition  whether invoice table has VBRK-RFBSK  = ''.
    See the my sample program : This is sales report by monthly..
    REPORT ZFDSALES_REPORT no standard page heading
                           message-id zwave.
    Data Declaration Part
    TYPE-POOLS
    type-pools : slis.
    Tables
    tables : VBAK,
             VBAP.
    Internal table for VBAK Table
    data : begin of i_vbak occurs 0,
           vbeln like vbak-vbeln,
           bstnk like vbak-bstnk,
           vdatu like vbak-vdatu,
           end of i_vbak.
    Internal table for VBAP and MATNR
    data : begin of i_vbap occurs 0,
           vbeln like vbap-vbeln,
           matnr like vbap-matnr,
           kdmat like vbap-kdmat,
           kwmeng like vbap-kwmeng,
           netpr like vbap-netpr,
           maktx like makt-maktx,
           end of i_vbap.
    Internal tables
    data : begin of i_sales occurs 0,
           vdatu like vbak-vdatu,
           bstnk like vbak-bstnk,
           matnr like vbap-matnr,
           maktx like makt-maktx,
           kdmat like vbap-kdmat,
           kwmeng like vbap-kwmeng,
           netpr  like vbap-netpr,
           end of i_sales.
    Variable for ALV
    data : v_repid like sy-repid,
           gt_fieldcat    type slis_t_fieldcat_alv.
    Selection-screen
    selection-screen : begin of block blk with frame title text-001.
    select-options : s_vbeln for vbak-vbeln,
                     s_erdat for vbak-erdat,
                     s_ernam for vbak-ernam,
                     s_vdatu for vbak-vdatu obligatory,
                     s_BSTNK for vbak-BSTNK,
                     s_KUNNR for vbak-kunnr,
                     s_matnr for vbap-matnr,
                     s_KDMAT for vbap-KDMAT.
    selection-screen : end of block blk.
    Initilization
    initialization.
      v_repid = sy-repid.
    S T A R T  -  O F  -  S E L E C T I O N ****************
    start-of-selection.
    Get the data from VBAK and VBAP Tables
      perform get_vbak_vbap.
    E N D  -  O F  -  S E L E C T I O N *****************
    end-of-selection.
    Display the data
      perform dispolay_data.
    *&      Form  get_vbak_vbap
          Get the data from VBAK and VBAP Table
    FORM get_vbak_vbap.
    Get the data from VBAK Table
      select vbeln bstnk vdatu from vbak into table i_vbak
                         where vbeln in s_vbeln
                         and   bstnk in s_bstnk
                         and   vdatu in s_vdatu
                         and   kunnr in s_kunnr
                         and   erdat in s_erdat
                         and   ernam in s_ernam.
      if sy-subrc ne 0.
        message e000(zwave) with 'No data found for given selection'.
      endif.
    Get the data from VBAP Table
      select avbeln amatnr akdmat akwmeng a~netpr
             b~maktx into table i_vbap
             from vbap as a inner join makt as b on bmatnr = amatnr
             for all entries in i_vbak
             where a~vbeln in s_vbeln
             and   a~kdmat in s_kdmat
             and   a~abgru = space
             and   a~matnr in s_matnr
             and   a~matnr ne '000000000000009999'
             and   a~matnr ne '000000000000004444'
             and   a~matnr ne '000000000000008888'
             and   a~matnr ne '000000000000001111'
             and   a~werks = '1000'
             and   b~spras = 'E'
             and   a~vbeln = i_vbak-vbeln.
      if sy-subrc ne 0.
        message e000(zwave) with 'No data found for given selection'.
      endif.
      sort i_vbak by vbeln.
      sort i_vbap by vbeln matnr.
      loop at i_vbap.
        read table i_vbak with key vbeln = i_vbap-vbeln
                                binary search.
        if sy-subrc eq 0.
          i_sales-bstnk = i_vbak-bstnk.
          i_sales-vdatu = i_vbak-vdatu.
          i_sales-matnr = i_vbap-matnr.
          i_sales-kdmat = i_vbap-kdmat.
          i_sales-maktx = i_vbap-maktx.
          i_sales-netpr = i_vbap-netpr.
          i_sales-kwmeng = i_vbap-kwmeng.
          append i_sales.
        else.
          continue.
        endif.
        clear : i_sales,
                i_vbap,
                i_vbak.
      endloop.
      sort i_sales by vdatu bstnk matnr.
      refresh : i_vbap,
                i_vbak.
    ENDFORM.                    " get_vbak_vbap
    *&      Form  dispolay_data
          Display the data
    FORM dispolay_data.
    Fill the Fiedlcat
      PERFORM fieldcat_init  using gt_fieldcat[].
      CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
       EXPORTING
      I_INTERFACE_CHECK                 = ' '
      I_BYPASSING_BUFFER                =
      I_BUFFER_ACTIVE                   = ' '
          I_CALLBACK_PROGRAM                = v_repid
      I_CALLBACK_PF_STATUS_SET          = ' '
      I_CALLBACK_USER_COMMAND           = ' '
      I_CALLBACK_TOP_OF_PAGE            = ' '
      I_CALLBACK_HTML_TOP_OF_PAGE       = ' '
      I_CALLBACK_HTML_END_OF_LIST       = ' '
      I_STRUCTURE_NAME                  =
      I_BACKGROUND_ID                   = ' '
      I_GRID_TITLE                      =
      I_GRID_SETTINGS                   =
      IS_LAYOUT                         =
          IT_FIELDCAT                       = gt_fieldcat[]
      IT_EXCLUDING                      =
      IT_SPECIAL_GROUPS                 =
      IT_SORT                           =
      IT_FILTER                         =
      IS_SEL_HIDE                       =
      I_DEFAULT                         = 'X'
      I_SAVE                            = ' '
      IS_VARIANT                        =
      IT_EVENTS                         =
      IT_EVENT_EXIT                     =
      IS_PRINT                          =
      IS_REPREP_ID                      =
      I_SCREEN_START_COLUMN             = 0
      I_SCREEN_START_LINE               = 0
      I_SCREEN_END_COLUMN               = 0
      I_SCREEN_END_LINE                 = 0
      IT_ALV_GRAPHICS                   =
      IT_ADD_FIELDCAT                   =
      IT_HYPERLINK                      =
      I_HTML_HEIGHT_TOP                 =
      I_HTML_HEIGHT_END                 =
      IT_EXCEPT_QINFO                   =
    IMPORTING
      E_EXIT_CAUSED_BY_CALLER           =
      ES_EXIT_CAUSED_BY_USER            =
        TABLES
          T_OUTTAB                          = i_sales
    EXCEPTIONS
      PROGRAM_ERROR                     = 1
      OTHERS                            = 2
    ENDFORM.                    " dispolay_data
    *&      Form  fieldcat_init
          text
         -->P_GT_FIELDCAT[]  text
    FORM fieldcat_init USING  e01_lt_fieldcat type slis_t_fieldcat_alv.
      DATA: LS_FIELDCAT TYPE SLIS_FIELDCAT_ALV.
    Delivery Date
      CLEAR LS_FIELDCAT.
      LS_FIELDCAT-FIELDNAME    = 'VDATU'.
      LS_FIELDCAT-OUTPUTLEN    = 12.
      LS_FIELDCAT-TABNAME    = 'I_SALES'.
      ls_fieldcat-seltext_L = 'Delivery Date'.
      APPEND LS_FIELDCAT TO E01_LT_FIELDCAT.
    Purchase Order #Material Description
      CLEAR LS_FIELDCAT.
      LS_FIELDCAT-FIELDNAME    = 'BSTNK'.
      LS_FIELDCAT-OUTPUTLEN    = 25.
      LS_FIELDCAT-TABNAME    = 'I_SALES'.
      ls_fieldcat-seltext_L = 'Purchase Order #'.
      APPEND LS_FIELDCAT TO E01_LT_FIELDCAT.
    Material
      CLEAR LS_FIELDCAT.
      LS_FIELDCAT-REF_FIELDNAME    = 'MATNR'.
      LS_FIELDCAT-REF_TABNAME    = 'MARA'.
      LS_FIELDCAT-FIELDNAME    = 'MATNR'.
      LS_FIELDCAT-TABNAME    = 'I_SALES'.
      ls_fieldcat-seltext_L = 'Material #'.
      ls_fieldcat-seltext_M = 'Material #'.
      ls_fieldcat-seltext_S = 'Material #'.
      APPEND LS_FIELDCAT TO E01_LT_FIELDCAT.
    Material Description
      CLEAR LS_FIELDCAT.
      LS_FIELDCAT-FIELDNAME    = 'MAKTX'.
      LS_FIELDCAT-OUTPUTLEN    = 40.
      LS_FIELDCAT-TABNAME    = 'I_SALES'.
      ls_fieldcat-seltext_L = 'Material Description'.
      APPEND LS_FIELDCAT TO E01_LT_FIELDCAT.
    Customer Material #
      CLEAR LS_FIELDCAT.
      LS_FIELDCAT-FIELDNAME    = 'KDMAT'.
      LS_FIELDCAT-OUTPUTLEN    = 35.
      LS_FIELDCAT-TABNAME    = 'I_SALES'.
      ls_fieldcat-seltext_L = 'Customer material no.'.
      APPEND LS_FIELDCAT TO E01_LT_FIELDCAT.
    Quantity
      CLEAR LS_FIELDCAT.
      LS_FIELDCAT-FIELDNAME    = 'KWMENG'.
      LS_FIELDCAT-OUTPUTLEN    = 15.
      LS_FIELDCAT-TABNAME    = 'I_SALES'.
      ls_fieldcat-seltext_L = 'Quantity'.
      APPEND LS_FIELDCAT TO E01_LT_FIELDCAT.
    Net Price
      CLEAR LS_FIELDCAT.
      LS_FIELDCAT-FIELDNAME    = 'NETPR'.
      LS_FIELDCAT-OUTPUTLEN    = 15.
      LS_FIELDCAT-TABNAME    = 'I_SALES'.
      ls_fieldcat-seltext_L = 'Net Price'.
      APPEND LS_FIELDCAT TO E01_LT_FIELDCAT.
    ENDFORM.                    " fieldcat_init
    Reward Points if it is helpful
    Thanks
    Seshu

  • HT3625 I have a 2012 macBook Pro 13" and the option "Use audio port for" does not appear at all in the sound menu. why is this? im running  mountain Lion 10.8.2

    I have a 2012 macBook Pro 13" and the option "Use audio port for" does not appear at all in the sound menu. why is this? im running  mountain Lion 10.8.2

    Because line-in has been removed.
    It does allow for an Apple headset with mic., but I don't know if it would work with third-party ones.
    You'll need to use a Griffin iMic or similar to use line-in via a USB port.
    The same goes for the 15" retina, the newest MBA and the new iMac (whenever it finally arrives).

  • I installed an airport express, on my mac book i can use the airplay using iTunes, but on my iPhone en ipad the icon for airplay not appears on the screan when i start the music player.

    I installed an airport express, on my mac book i can use the airplay using iTunes, but on my iPhone en ipad the icon for airplay not appears on the screan when i start the music player.

    Chances are, you have already tried this and already know the answer.
    But, if not....sorry, but no......since your printer is not AirPrint compatible, you must use the extra software workaround in the Mac.
    A newer AirPrint printer would allow you to do what you want.

  • Some Services not appearing in ESS.

    Hi All,
    I have configured ESS and it was working fine previously.
    But now Some Services on overview page of ESS are missing after 105 mapping.
    This issue is for all the users.
    But if i remove 105 mapping all the service link appearing on overview page.
    services not appearing after 105 mapping : Form 16, tax declaration , IT declaration , work Event AreaPage.
    System version is EHP7.
    Kindly suggest.
    Thanks & Regards,
    Meghal Shah.

    Hi CRANGV,
    we are  not using any UI5 Application so ODATA is not required.
    we have configured LPD_CUST properly.
    If Employee not maintain in 105 than all the services are appearing.
    but if we map user under 105 infotype than some services is not appearing .
    Thanks & Regards,
    Meghal Shah.

  • Customer Material no. does not appear in Delivery type LO

    Hello all,
    I have maintained a Customer-material info record (VD51) and now am creating a LO delivery (without reference to an order) for the same material and customer but the Cust-Matl no. is not appearing in the delivery. Any pointers on why this is happening and how to resolve the issue would be extremely helpful.
    Thanks!
    Regards,
    Sonal

    it has to be done with the help of ur abap person.
    for ur conformation assign the out put type that assigned for ur delivery type LF in nace and check whether the material information has displayed.

  • Content type problem for 'does not appear to be a proper arcive'

    Hi all,
    The following code will create a ZipOutputStream using ByteArrayOutputStream (not FileOutputStream) and attach the outputstream to a MIME multipart email using ByteArrayDataSource (so the file never exists physically).
    It works and sends the email but the zip 'does not appear to be a valid archive' even though it looks about the right size. If I do the same and use FileOutputStream to create a physical file it works OK. I think it is an issue with the content type, or maybe this just isn't possible!
    I have tried:
    byteArray.toByteArray(),
    byteArray.toString().getBytes() and application/zip & application/unknown.
    Can anyone help or suggest an alternative way to create a 'in-memory' zip file that can then be emailed?
    Many thanks
        // Specify files to be zipped
                                                                 String[] filesToZip = new String[3];
                                                                 filesToZip[0] = "C:\\Program Files\\NetBeans3.6\\firstfile.txt";
                                                                 filesToZip[1] = "C:\\Program Files\\NetBeans3.6\\secondfile.txt";
                                                                 filesToZip[2] = "C:\\Program Files\\NetBeans3.6\\thirdfile.txt";
                                                                 byte[] buffer = new byte[18024];
                                                                 // Specify zip file name
                                                                  String zipFileName= eq_rt.getReportName() + ".zip";
                                                                 try {
                                                                   // Create ZipOutputStream to store the FileOutputStream
                                                                   //ZipOutputStream out = new ZipOutputStream(new FileOutputStream(zipFileName));
                                                                   ByteArrayOutputStream byteArray = new ByteArrayOutputStream();                                                             
                                                                   ZipOutputStream out = new ZipOutputStream(byteArray);                                                              
                                                                   // Set the compression ratio
                                                                   out.setLevel(Deflater.DEFAULT_COMPRESSION);
                                                                   // iterate through the array of files, adding each to the zip file
                                                                   for (int a = 0; a < filesToZip.length; a++) {
                                                                     System.out.println(a);
    //                                                                 // Associate a file input stream for the current file
                                                                     FileInputStream in = new FileInputStream(filesToZip[a]);
                                                                     // This ROCKS as it is passing a array into the text file .getBytes() seems
                                                                     // to be the KEY in getting ByteArrayInputStream to WORK
                                                                     String strSocketInput = "TAIWAN";
                                                                     ByteArrayInputStream baIn = new ByteArrayInputStream(strSocketInput.getBytes());
                                                                     //ByteArrayInputStream baIn = new ByteArrayInputStream( getAttachementNoFormat(eq_rt.getStoredProc() ) );                                                               
                                                                     // Add ZIP entry to output stream.
                                                                     out.putNextEntry(new ZipEntry(filesToZip[a]));
                                                                     // Transfer bytes from the current file to the ZIP file
                                                                     int len;
                                                                     while ((len = baIn.read(buffer)) > 0)
                                                                     out.write(buffer, 0, len);
                                                                     // Close the current entry
                                                                     out.closeEntry();
                                                                     // Close the current file input stream
                                                                     baIn.close();                                                   
                                                                  // DataSource sourcezip = new FileDataSource(zipFileName);
                                                                   //DataSource sourcezip = new ByteArrayDataSource(byteArray.toByteArray(), zipFileName, "application/octet-stream");   
                                                                    DataSource sourcezip = new ByteArrayDataSource(byteArray.toByteArray(), zipFileName, "application/octet-stream" );
                                                                   // Create a new MIME bodypart
                                                                   BodyPart attachment = new MimeBodyPart();
                                                                   attachment.setDataHandler(new DataHandler(sourcezip));
                                                                   attachment.setFileName(zipFileName);                       
                                                                   /* attach the attachemnts to the mail */
                                                                   multipart.addBodyPart(attachment);                                                                
                                                                   // Close the ZipOutPutStream
                                                                   out.close(); 

    Many thanks Dr Clap. Moving the Closing the ZipOutputStream before I attached it to the email solved my problem.
                                          /* Close the ZipOutPutStream (very important to close the zip before you attach it to the email) Thanks DrClap */
                                                                    out.close();                                                    
                                                                    /* Create a datasource for email attachment */
                                                                    // DataSource sourcezip = new FileDataSource(zipFileName);
                                                                    DataSource sourcezip = new ByteArrayDataSource(byteArray.toByteArray(), zipFileName, "application/zip" );
                                                                    /* Create a new MIME bodypart */
                                                                    BodyPart attachment = new MimeBodyPart();
                                                                    attachment.setDataHandler(new DataHandler(sourcezip));
                                                                    attachment.setFileName(zipFileName);                       
                                                                    /* attach the attachemnts to the mail */
                                                                    multipart.addBodyPart(attachment);  

  • Custom envelope for sound not working? Flash CS5

    I'm trying to set a custom envelope for a sound in Flash CS5. I can bring up the envelope editor fine. But, I find that all the control points are after the end of the sound itself. If I click on the waveform to create a new control point, the point momentarily appears where I click it, then automatically jumps to the end of the waveform. If I try and drag any of the control points from after the waveform to during it, they just automatically pop to the end of the waveform.

    Strange. After I wrote the previous post, Flash crashed. And now after starting it up again, the Custom Envelopes are working properly.

  • Delete button not appearing in ESS Family members/Dependends

    Hi All,
    We have a requirement to add a button delete button on ESS-> Personnel Information-> Family Member/Dependents under Partner, where Partner is custom sub infotype.
    For sub types like Spouse, child it is appearing by default, but not apearing for Partner, donno why?
    For information: It is calling HRXSS_PER_READ_P0021_GA function module.
    From a Webdynrpo applcation, it looks like getting dynamic layout based on a function module.
    Kindly, help me.
    Regards,
    Devender V

    it uses USE CASES to add the buttons!
    check here
    V_T591A
    V_T7XSSPERSUBTYP
    check the badi HRXSS_PER_BEGDA

  • CN41 Customer Fields for WBS not visible in the CN41 report

    Hi,
    I have Done the Below Steps:
    I have done all the Things Below and it is working Also.:
    Create structure CI_PRPS.
    Create enhancement.
    Edit the function exits.
    Maintain the global declarations.
    Design the customer-specific screen.
    Activate the enhancements in CMOD.
    Generate the structures in the Project Information System.
    In CJ20N i have these customer fields as a new Tab and i am also able to save the data in the Database also.
    My problem comes not in transaction execution but in Reporting.
    When i run the Report CN41 the fields which i have added into the PRPS using the Include CI_PRPS is not displayed in the Report.These fields are available in the selection screen but not available in the report when i execute the Report and do choose fields to display collums in the report.
    I am getting these fields in CN43 but not in CN41.
    In CN43 also the Values are comming in ####### but not in correct values.
    Also when i tried to Run the Report RCNCT001 it is asking for the access Key.
    Thanks

    Hi,
          I have Done the Below Steps:
    I have done all the Things Below and it is working Also.:
    Create structure CI_PRPS.
    Create enhancement.
    Edit the function exits.
    Maintain the global declarations.
    Design the customer-specific screen.
    Activate the enhancements in CMOD.
    Generate the structures in the Project Information System.
    In CJ20N i have these customer fields as a new Tab and i am also able to save the data in the Database also.
    My problem comes not in transaction execution but in Reporting.
    When i run the Report CN41 the fields which i have added into the PRPS using the Include CI_PRPS is not displayed in the Report.These fields are available in the selection screen but not available in the report when i execute the Report and do choose fields to display collums in the report.
    I am getting these fields in CN43 but not in CN41.
    Thanks

  • One solution for AppleTV not appearing in iTunes Devices list

    So, this may not be everyone's problem, but I noticed I was having trouble seeing my AppleTV in iTunes sources list when my iBook (the syncing computer) was on wireless, but not when i was plugged into the router via ethernet.
    Perplexed by this, I kept investigating and discovered I couldn't even ping the AppleTV when on the iBook was on wireless, but if I plugged into the ethernet, again - it worked. (the AppleTV connects to my router wirelessly, though for the first big sync I had them both on ethernet.)
    Anyhow, I don't know if this is happening in the router, or in the AppleTV, but the solution was ... to change my laptop's name in sharing preferences.
    This also changes the bonjour name, and that somehow was confusing either the router or the AppleTV since I guess two LAN IP addresses had the same bonjour name.
    I suppose it might also work to force the router to give the same IP address to me whether I'm connected to the router via ethernet or airport. I'm not sure. All I know is, I changed the computer name and now I can ping the appletv when the ibook is connected to the router wirelessly, and the AppleTV appears in the Devices list in iTunes when the iBook is connected via wireless so... I'm happy.

    Yeah ,this only worked temporarily. I don't know what's going on with my router and my AppleTV but it's proving impossible to reliably sync to the AppleTV when both the AppleTV and my iBook (the syncing computer) are connected to my router wirelessly. Sometimes, fiddling with the router fixes it, sometimes rebooting the AppleTV fixes it, but invariably, the time comes when I can ping and see the AppleTV from my desktop (connected to the router via ethernet) and not from the iBook (connected wirelessly)

  • Possible fix for AppleTV not appearing in devices

    Just read an article I found searching Google http://www.trick77.com/2008/03/16/apple-tv-not-being-recognized-in-itunes/
    It states that quitting mDNSresponder in Activity Monitor will force a refresh of the Bonjour scan. Finally, after 6 weeks, my AppleTV now appears in iTunes devices!
    Go to Utilities> Activity Monitor> select 'All processes' (drop down-top right) >click on mDNSresponder. Wait about 10 seconds. Then exit Activity Monitor. Close iTunes.
    Might be worth unplugging your AppleTV from the power source first (I did this recently). I then reentered my network password on my AppleTV (Settings > General > Network > Configure) and then went into Configure TCP/IP > and selected Using DHCP. I also turned Airtunes to off, Settings > Airtunes > Off. I have read that Airtunes can cause some issues.
    I then opened iTunes and waited 10 seconds and it appeared (worked on second time of opening iTunes for me).
    Then on your AppleTV go to Settings > Computer, and reconnect your library to iTunes. You should then be prompted to enter the 5 digit PIN in iTunes (on your Mac).
    I hope this works for some users!

    Oh, and obviously you need to plug your AppleTV back in after unplugging it, forcing it to reboot!

  • Business Event Does Not Appear in ESS Portal

    Hi People,
    I would like to ask for assistance on this problem:
    A user created a business event in the SAP system. But she canu2019t make a booking in this course through the ESS portal because the course canu2019t be found upon searching it. She always got this error message: u201Crestrictions, or use a different search termu201D. We already provided her a number of workaround solutions like using different search terms, changing the field period to all, etc. but still she canu2019t see this course in the portal to make a booking.
    Can you help me on this?
    Thanks in advance!

    Amir ,
    Check this link , I t will help you
    http://help.sap.com/saphelp_nw04s/helpdata/en/1e/62eae2357c4596bda2476d0a6503e3/frameset.htm
    Set the property "Add to Favourites" to Yes
    Portal Content -> Content provided by SAP -> End user Content -> Standard Portal User -> Default Framework page ---> Edit Object
    Open the Page Title Bar -> Search for the property -> Show 'Add to Browser Favorites'
    and set this property to Yes.
    Now refresh the page. It will show this option.
    Koti Reddy

Maybe you are looking for