HR-abap problem in getting wage type in 0008 infotypes

i am creating sap scripts for appointment letters in that i am coolecting data from table pa0008,
for that i am using field bet01 , bet02, etc for the diff. allowances .
if the order of allowances are changed in 0008 infotype then field form which i am getting amount is also getting changed.
E.G :- i am using perticular order in 0008
            then it gives me wage type in lga02 and corresponding amount in bet02 for first allowance
                                    wage type in lga03 and corresponding amount in bet03 for second allowance
and now if i interchange order of allowances in pa008  then t gives me
                               wage type in lga02 and corresponding amount in bet02 for first allowance
                                wage type in lga03 and corresponding amount in bet03 for second allowance
i hope you understnad my problem .
Thanks in advance

Hi,
please check thiscode
call function 'RP_FILL_WAGE_TYPE_TABLE_EXT'
       exporting
            appli                        = 'P'
            pernr                        = p0467-pernr
            infty                        = pinfty
          SUBTY                        = PSUBTY
          OBJPS                        = POBJPS
          SEQNR                        = PSEQNR            "QEAK100596
          waers                        = sy-waers          "XYMK097435
            begda                        = datum
            endda                        = datum
       tables
            pp0001                       = p0001        "input
            pp0007                       = p0007        "input
            pp0008                       = p0008        "input
            ppbwla                       = ppbwla       "output
       exceptions
            error_at_indirect_evaluation = 1.
  check sy-subrc eq 0.
  loop at ppbwla.
    if ppbwla-waers ne q0467-waer2.
      perform convert_to_local_currency using
              ppbwla-betrg ppbwla-waers
              q0467-waer2 ppbwla-betrg
              datum.
      modify ppbwla.
    endif.
  endloop.
Ref program
MP046740
Thanks and regrds
Durga.K

Similar Messages

  • How to get wage type for every time record

    Hi Pros,
          I am using DS 0CA_TS_IS_1, it includes report time type (0REPTT), but not have wage type. in CATSDB, I fied fields for attendance/absence type and wage type. but not every time record has wage type. can you please tell me how to get wage type for every time record? what is relation between reporting time type, attendance/absence type and wage typs?

    Hello,
    Can you talk to your HR/T&E functional consultant if they populate these values in CATSDB table using standard way or if there are custom fields that are in CATSDB OR any other table which can be used to meed the requirements
    Thanks
    Abhishek Shanbhigue

  • @Creating a new wage type in an Infotype

    Hi,
    How do we go about creating a new Wage Type for an Infotype?
    (HR module)

    Hi,
    First of all read the existing wage types for the PERNR using the BAPI BAPI_BASICPAY_GETDETAIL into the internal table. Append the new wages to that internal table and use the BAPI_BASICPAY_CHANGE.
    Regards

  • Default Wage Type Values in Infotype 8 screen using  exit EXIT_SAPFP50M_002

    Hi Experts,
    I am facing an issue with defaluting few of the Wage Type Amount/Percent values in Infotype 8 when PAI gets triggered while chnaging the record.
    I have implemented the custom logic and updating Wage Type amount for IT0008 sturcture in PAI ( PBAS0001 -> EXIT_SAPFP50M_002) and again rewriting the data back to screen by using cl_hr_pnnnn_type_cast=>pnnnn_to_prelp. But the changed data is not getting shown on the screen. Can some one help me out on this issue.
    I have tried with SHOW_DATA_AGAIN = 'X', but this is leading to non functioning of SAVE button. No BADI will suit for this requirement. How to acheive the solution for this issue?.
    This is an high priority issue for us and would appreciate your help in resolving this issue.
    Thanks and regards,
    Srikanth Reddy.

    Hi Srikanth
    Try updating IT0008 by submitting a report, as mentioned below:
    IF
    UR CONDITION
    SUBMIT ZHR0008 (for example)
    ENDIF.
    In ZHR0008
    CALL FUNCTION 'HR_EMPLOYEE_ENQUEUE'
    CALL FUNCTION 'HR_INFOTYPE_OPERATION'
    CALL FUNCTION 'HR_EMPLOYEE_DEQUEUE'
    Hope this helps
    Best Regards
    Reddy

  • Function module for assigned wage types

    Hi experts,
    We need wage type wise count and sum of the amount for each wage type defined in infotype '0008' for the given from and to dates. Is there any function module available for the same.
    Please suggest.
    Regards,
    Kaustubh Kabre.

    Hi,
    <li>I do not look for function module for this case as i know that we can or have to read wage types and corresponding amount in the program. LDB PNP should be given in program attributes.
    REPORT RPABAP06.
    TABLES:PERNR.
    INFOTYPES:0008.
    DATA: BEGIN OF WAGETYPES,
       LGA LIKE P0008-LGA01,
       BET LIKE P0008-BET01,
       ANZ LIKE P0008-ANZ01,
       EIN LIKE P0008-EIN01,
       OPK LIKE P0008-OPK01,
      END OF WAGETYPES.
    DATA:total type P0008-BET01.
    GET PERNR.
    RP_PROVIDE_FROM_LAST P0008 SPACE PN-BEGDA PN-ENDDA.
    DO 20 TIMES VARYING WAGETYPES-LGA FROM P0008-LGA01 NEXT P0008-LGA02
                VARYING WAGETYPES-BET FROM P0008-BET01 NEXT P0008-BET02.
    IF WAGETYPES-LGA IS INITIAL.
    EXIT.
    ELSE.
    TOTAL = TOTAL + WAGETYPES-BET.
    WRITE: / WAGETYPES-LGA, WAGETYPES-BET.
    ENDIF.
    ENDDO.
    WRITE TOTAL.
    Thanks
    Venkat.O

  • Wage type in basic pay (0008) group

    Hi
    How to add one wage type (newly added) in to payroll schema, which forms the basic pay element. It is already included in wage type group 0008
    Regards
    DInabandhu

    Dear Dinabandhu,
    1) The WT needs to be added to WT Model and LGMST Feature
    2) IF India, thn it also need to be added in Allowance Grouping and A9 table.
    3) can u tel mewhat do u mean by "We want the this wage type to be included in a calculation which is inturn update another wage type".
       do u mean, say XXXX=200 u assign in IT8, then calculate YYYY=XXXX/20 ? for such kind of calculation u can use INVAL B in V_T511 table, and this can be achived at Infotype maitnaince level only.
    But, if u want this to happen at Paryoll Process level, you may then need to use some PCR's. this is not adivisable until unless there is no alternative.
    Regards
    ...SAdhu

  • How to Calculate Basic Salary by Calculating 2 Wage Type

    Hi SAP Gurus
    I want to calculate basic pay = norm salary * RSP %.
    RSP% is just a wage type for an employee.
    If we configure RSP % as a wage type  and Norm salaray as a wage type, is it possible to set-up basic-pay = Norm salary * RSP %, Both these values will be entered in Infotype 0008. (RSP% is different for each employee. It will be entered in IT0008 directly).
    The SUMME and PRZNT modules use percentage stored in the summe and prznt table and not the number entered in wage type in 0008. Is it possible to use UNITS Module for that, IF yes then How let me know pls.
    Thanks in Advance
    Regards
    Rajiv Maheshwari

    The other way coming to mymind is - configure annual wage type or total salary wage type  - then you can define the % of basic and other WT you want to include in IT0008.
    hope this helps...
    Bas

  • Wage type 559 in HR ABAP

    hi guru,
    i am new to hr abap,
    i have been assigned with an new project related to hr abap.
    my requirement is to display a list containing following fields with data.
    EMPLOYEE NO.                  NAME                   BANK NAME                   BANK A/C NO.                 AMOUNT
    i am getting first four fields from infotypes 0001 and 0009  but field AMOUNT is wage type /559 is to be retrieved from some RT table..
    can someone help how to get that AMOUNT field data which is a net amount in  /559  ?

    Hello,
    In declaration part of yr internal table of report, declare it:
    pernr     TYPE pernr-pernr,         " emp id
    ename   TYPE p0001-ename,     " Emp Name
    bname   TYPE bnka-banka,        " Name of Bank
    ac_no     TYPE p0009-bankn,     " Bank Account No
    w1001    TYPE q0008-betrg,       " Amount (Basic Pay)
    Now go to rt OR trt table
    Loop at trt
       make the case of that particular infotype
         say Amount(Basic Pay)
    when'1001'.
      ty_final-w1001 = trt-betrg.
    .. .. similarly for other wage types whatsoever the requirement is..
    Endloop.
    Now to go fieldcatalogs in the ALV display criteria... and declaretha wage type variable Like.
      CLEAR wa_fieldcat.
      ADD 1 TO col_pos.
      wa_fieldcat-row_pos = 1.
      wa_fieldcat-col_pos = col_pos.
      wa_fieldcat-fieldname = 'w1001'.
      wa_fieldcat-seltext_l = 'Amount(Basic Pay)'.
      APPEND wa_fieldcat TO it_fieldcat.
    .... I think that completely resolvs yr problem... no help is more required on that.
    All tha Best
    Regards,
    Akg

  • Problem in posting Er PF Wage Types generated through Retro

    Hello all,
    I am running India Payroll in ECC 6.0 with HR Package level 52.
    We have revised wages for two employees in the month of June with effect from 13.04.2010.
    Retro has run successfully for two months April & May and all the wage types are calculated and passed on for FI Posting correctly except Employer PF Wage Types.
    I am getting error while posting wages to FI as Employer PF Contribution & Employer Pension Contribution generated for April & May are not considered for FI Posting.  Only current month values are taken into account.  Whereas I don't have any problem with Employee Contribution.  /ZF5 is generated with total of past two months contribution and also passed on to FI.
    What might be the problem with Er PF Wage Types /3F3 & /3F4?
    We have not posted June salary till now due to above said posting error.  Now July Payroll is also started.
    Experts, please help me to sort out the issue.
    Thanks in advance.
    Regards,
    Hema

    Hi,
    Thanks for quick reply.
    The error is "Posting balance not cleared".
    We have changed all the components including basic salary.  Payroll program has taken PF Basis correctly and calculated PF amounts, both for Employee & Employer contribution correctly for individual months.
    As I mentioned for all the three months Employee Contribution is considered for FI posting through regular wage type for current month and through /ZF5 for last two months.
    But for Employer Contribution only June amount is considered for posting even though the correct amounts are shown for other two months in RT (three lines for /3F3 & /3F4 each).
    Due to this, total amount for Balance Sheet Accounts is less where as Expense Accounts is shown higher as Employer Contribution is not considered for April & May, causing imbalance in Accounting entries.
    GL Accounts are mapped correctly.  Otherwise even the current month amount will not be carried to FI.
    Hope my explanation is clear.
    Thanks & Regards,
    Hema

  • Wage type report problem

    Hello to all
    I am getting a problem.
    In 190(Development)..
    In PA30 and infotype 8 some wage types are included for employees.
    But these wagetypes are not refelecting in PA0008 table.
    When i went into change mode of PA30 and then save ... then these values are
    reflecting in PA0008.
    But in 300 when i am doing this it is not coming..
    Plz guide me..
    I am using these wage types...
    BASIC  LIKE PC207-BETRG,                              "1000 Baisc
          HRA    LIKE PC207-BETRG,     "1002 House Rent Allowance- Del
          PERPAY LIKE PC207-BETRG,     "1001 Personal Pay
          HRA2  LIKE PC207-BETRG,      "1003 House Rent Allowance -Oth
          SPL_ALL LIKE PC207-BETRG,    "1004 Special Allowance
          PRS_ALL LIKE PC207-BETRG,    "1005 Personal Allowance
          CANTEEN LIKE PC207-BETRG,    "1007 Canteen Allowance
          WASHING LIKE PC207-BETRG,    "1008 Washing Allowance
          SPL_PMT LIKE PC207-BETRG,    "1009 Special Payment
          TRANS_ALL LIKE PC207-BETRG,  "1010 Transport Allowance
          STIPEND LIKE PC207-BETRG,    "1011 Stipend
          HRA3    LIKE PC207-BETRG,    "1012 House Rent Allowance -Trn
          SPRT_ALL LIKE PC207-BETRG,   "1014 Supporting Allowance
          OVRS_ALL LIKE PC207-BETRG,   "1015 Overseas Allowance
          VAR_DA  LIKE  PC207-BETRG,   "1016 Variable Dearness Allow.
          CLA     LIKE  PC207-BETRG,   "1017  company leased accom
          COA     LIKE  PC207-BETRG,   "1018 Company owned accom
          FS      LIKE  PC207-BETRG,   "1019 Furniture Scheme
          WAT_DED LIKE PC207-BETRG,    "2000 Water charges deduction
          TRN_DED LIKE PC207-BETRG,    "2001 Transport deduction
          SCH_DED LIKE PC207-BETRG,    "2002 School fees
          SH_REM LIKE PC207-BETRG,     "1023 SHOE REIMBURSEMENT "SOC BY ANUBHAV
          OFF_ALL LIKE PC207-BETRG,    "1064 OFFICIATING ALLOWANCE
          CHLD_ALL LIKE PC207-BETRG,   "1065 CHILD EDUCATION ALLOWANCE
         TWRNTMM_ALL LIKE PC207-BETRG, "1066 TOWNSHIP ALL MM
         TWRNTNM_ALL LIKE PC207-BETRG, "1067 TOWNSHIP ALL NM "EOC BY
          LIC     LIKE PC207-BETRG,                             "2008 LIC
          ADV_ADJ LIKE PC207-BETRG,    "2009 Advance/Adjustment
    and then fetching this values using....
    do 31 times varying lga from p0008-lga01 next p0008-lga02
                 varying bet from p0008-bet01 next p0008-bet02.
        CASE lga.
    *-- Read the value and stored in internal table
          WHEN '1000'.
            ITAB-BASIC = ITAB-BASIC + BET.
          WHEN '1002'.
            ITAB-HRA = ITAB-HRA + BET.
          WHEN '1001'.
            ITAB-PERPAY = ITAB-PERPAY + BET.
          WHEN '1003'.
            ITAB-HRA2 =  ITAB-HRA2 + BET.
          WHEN '1004'.
            ITAB-SPL_ALL = ITAB-SPL_ALL + BET.
          WHEN '1005'.
            ITAB-PRS_ALL = ITAB-PRS_ALL + BET.
          WHEN '1007'.
            ITAB-CANTEEN = ITAB-CANTEEN + BET.
          WHEN   '1008'.
            ITAB-WASHING = ITAB-WASHING + BET.
          WHEN '1009'.
            ITAB-SPL_PMT = ITAB-SPL_PMT + BET.
          WHEN '1010'.
            ITAB-TRANS_ALL = ITAB-TRANS_ALL + BET.
          WHEN '1011'.
            ITAB-STIPEND = ITAB-STIPEND + BET.
          WHEN '1012'.
            ITAB-HRA3    = ITAB-HRA3 + BET.
          WHEN '1016'.
            ITAB-VAR_DA = ITAB-VAR_DA + BET.
          WHEN '1017'.
            ITAB-CLA = ITAB-CLA + BET.
          WHEN '1018'.
            ITAB-COA = ITAB-COA + BET.
          WHEN '1019'.
            ITAB-FS = ITAB-FS + BET.
          WHEN '1023'.                                 "SOC BY ANUBHAV
          ITAB-SH_REM = ITAB-SH_REM + BET.
          WHEN '1064'.
          ITAB-OFF_ALL = ITAB-OFF_ALL + BET.
          WHEN '1065'.
          ITAB-CHLD_ALL = ITAB-CHLD_ALL + BET.
          WHEN '1066'.
          ITAB-TWRNTMM_ALL = ITAB-TWRNTMM_ALL + BET.
          WHEN '1067'.
          ITAB-TWRNTNM_ALL = ITAB-TWRNTNM_ALL + BET.    "EOC BY ANUBHAV
           WHEN '1014'.                               "added for support allowance and overseas allowance
            ITAB-SPRT_ALL = ITAB-SPRT_ALL + BET.
          WHEN '1015'.
            ITAB-OVRS_ALL = ITAB-OVRS_ALL + BET.
        ENDCASE.
      enddo.
      rp-read-infotype pernr-pernr 0014 p0014 p_begda p_endda.
      loop at p0014.
        CASE P0014-subty.
          WHEN '2000'.
            ITAB-WAT_DED = ITAB-WAT_DED + p0014-BETRG.
          WHEN '2001'.
            ITAB-TRN_DED = ITAB-TRN_DED + p0014-BETRG.
          WHEN '2002'.
            ITAB-SCH_DED = ITAB-SCH_DED + p0014-BETRG.
          WHEN '2008'.
            ITAB-LIC = ITAB-LIC + p0014-BETRG.
        ENDCASE.
      ENDLOOP.
    Plz guide me....
    Thanks
    Anubhav

    I suppose Error in HRA info type is because i have not maintained the basic pay info type so far.Once i get able to save the basic pay info type i think i would also be able to save the 581 info type.
    i am still not qable to resolve the issue of basic pay info type.whenever i try to save the basic pay info type system  gives the message "wage type model changed".detail message is as follows
    Wage type model changed on 01.07.2007
    Message no. RP129
    Diagnosis
    You must use the new wage type model as of 01.07.2007 when copying a 'Basic Pay' record (0008). This model depends on the feature 'LGMST'.
    You can display the old record with the overview function.
    System Response
    The new wage type model is displayed.
    Regards

  • Wage types in Payroll Process getting doubled.

    Hi,
    experts i have an issue while running Payroll.
    An employee is having a change in shift schedules in mid of the month and while running the payroll the salary is getting doubled with same wage types twice as attached.
    Here the payable month days are fixed for a group of employees i.e.26 days a month. This days are given in IT 15 as no of days and this no is converted to RTE in payroll.
    in  (Indian Payroll Schema) INBD sub schema Function WPBP is creating Splits as per the master data change in IT 7 and in payroll iam getting salary doubled can anything be done to eliminate / delete the splits 01 or 02 as per the requirement to calc salary only on the required split.

    I think you must have written a rule to calculate the amount for 26 days use operation ELIMI * in the rule then check it once eliminated again you wanted the amount with splits you can use operation WPALL.
    Use operation ELIMI * as first line of rule.
    Regards
    Venkatesh

  • Net Pay calculation is wrong, allowance wage type is not getting added to net amount..

    Hi Dears,
    We are doing payroll configurations for one of our client in india, Regarding our requirement ,we jus tried in test system, we have written a pcr rule stating 01st feb 2015, new allowance need to paid to employees belonging to L&T1 pa and LT ESG.. Allowance will be percent based on gross pay..allowance percentage differs according to the ESG..
    Before writing the PCR, Allowance percentage has been maintained in T511K.. And have configured as payroll constant ZTST 1 should be calculated with a value 2%.
    i have created a new wage type 9021 allowance wage type and this wage type amount should be automatically generated in payslip based on the pcr i have written while running payroll for an employee.
    EARNINGS                                                       DEDUCTIONS
    l&t basic pay 9000             54838.71                    INCOME TAX
    l&t conveyance 9100            2741.94                   12394.00
    l&t hra           9200               4387.10
    l&t allownace 9021                1239.36
    TOTAL Gross amount          63,207.11              Take Home pay (net pay)  49,573.75
    But the actual net amount should be 50,813.11..Based on the allowance wagetype i have created which is automatically generting using the pcr i have written , is getting calculated in the gross amount..
    but not getting added in net amount .so please help me out guys on how to solve this issue???
    Regards,
    Surya Prabha

    Hi Remi,
    Thanks for your kind reply, yes these values are taken from the remuration statement of a  particular pernr whom am running the payroll..
    i have checked the processing classs and i have maintained 5 and 70 which add this new allowance amount to my net amount.  now the net amount is proper.
    EARNINGS                                                       DEDUCTIONS                   perks/other income/exemptions
    l&t basic pay 9000             54838.71                NCOME TAX                       l&t leave encashment    1239.36
    l&t conveyance 9100         2741.94                   12416.00
    l&t hra           9200               4387.10
    TOTAL Gross amount          61,967.75             Take Home pay (net pay)  50 791.11
      Regards,
    Surya Prabha

  • Wage Type is not getting defaulted in it 0008

    Dear Sirs,
    Just now I have seen the forum on wage type errors.
    I am also getting the same error while trying the configuration.
    I have checked a lot on forum however none  of them seems to work for my issue.
    the error is
    IndVal of wage type 5800: No entry in table T510 for key '10Z1ZA3MGR     015800' on 09.08.2014
    Message no. RP032.
    I have checked all table and still the same issues.
    Please go through the screen shots and advise me some measures to over come this issue.

    Dear Sumana,
    I suspect some where in your config start date & end date's are wrong because I've seen your total screen shots in all screen shots Date's are delimited so recheck once again are do one thing delete that wage type and re-maintain the wage type effective date from 01.01.1900 to 31.12.9999.

  • Problem in getting parameter value from selection screen in web dynpro abap

    Hi,
    I am facing problem in getting parameter value from selection screen.
    Please find my code below:
    DATA LT_PAR_ITEM TYPE IF_WD_SELECT_OPTIONS=>TT_SELECTION_SCREEN_ITEM.
    FIELD-SYMBOLS:<FS_PAR_ITEM> LIKE LINE OF LT_PAR_ITEM,
                                 <FS_OBJ_USAGE>    TYPE REF TO data.
      WD_THIS->M_HANDLER->GET_PARAMETER_FIELDS( IMPORTING ET_FIELDS = LT_PAR_ITEM ).
      LOOP AT LT_PAR_ITEM ASSIGNING <FS_PAR_ITEM>.
        CASE <FS_PAR_ITEM>-M_ID.
          WHEN `OBJ_USAGE`.
             ASSIGN <FS_PAR_ITEM>-M_VALUE->* TO <FS_OBJ_USAGE>.      
    [ Here, sy-subrc is 4,  <FS_OBJ_USAGE> is not assigning.]
        ENDCASE.
      ENDLOOP. 
    So, can any one solve this problem.
    Thanks in advance,
    Radhika

    Hi Radhika,
    Try using GET_RANGE_TABLE_OF_SEL_FIELD...
    Please Refer below code..
       DATA: NODE_FLIGHTS TYPE REF TO IF_WD_CONTEXT_NODE.
      DATA: RT_CARRID TYPE REF TO DATA.
      DATA: ISFLIGHT TYPE TABLE OF SFLIGHT.
      DATA: WSFLIGHT TYPE SFLIGHT.
      FIELD-SYMBOLS: <FS_CARRID> TYPE TABLE.
    Retrieve the data from the select option
      RT_CARRID = WD_THIS->M_HANDLER->GET_RANGE_TABLE_OF_SEL_FIELD( I_ID = 'S_CARR_ID' ).
    Assign it to a field symbol
      ASSIGN RT_CARRID->* TO <FS_CARRID>.
      CLEAR ISFLIGHT. REFRESH ISFLIGHT.
      SELECT * INTO CORRESPONDING FIELDS OF TABLE ISFLIGHT FROM SFLIGHT
                           WHERE CARRID IN <FS_CARRID>.
      NODE_FLIGHTS = WD_CONTEXT->GET_CHILD_NODE( NAME = `FLIGHTS` ).
      NODE_FLIGHTS->BIND_ELEMENTS( ISFLIGHT ).
    Thanks,
    Regards,
    Kiran

  • Problem in Wage Type Creation

    Dear Gurus,
    I am going to configure wage types in IDES ECC6. I want to configure Wage Types for Infotype 0014 for Recurring Payments & Deductions. When I configure these wage types, it does not appear in infotype 0014 instead it appears in infotype 0015. I use country grouping 99 and select Recurring Payments and Deductions in SPRO. When I check the wage types in infotype 0014, there only appears CM01,CM02, CM03. Such type of problem has never occured in production servers. Please advise me what is the cause of missing wage type in infotype 0014.
    Best Regards.
    Ali

    Brother I just opened the table  VV_52D7_B_0014_AL0 and then created a wage type again with description of your name (Sikandar"
    Now the wage type appears in info14. Thanks for your kind guidance and hope for the same in my future issues.
    Your brother
    Ali Rahman

Maybe you are looking for

  • Install Windows 8 on FreeDos

    Hi Sir, I bought HP Pavilion Laptop yesterday with freedos and i want to install Windows 8 Pro 64 Bit on it I found 3 partions 1) System 2) Primary 3) Unallocated Partions All of them i haven't a permission to install the windows on, Can you tell me

  • CUP - Customizing Security & Roles

    Hello, Using the GRC AC 5.3 Security Guide, we've been customizing our front-end CUP roles to fit our needs. We're having trouble customizing one particular area, however. Example: When an approver (AEApprover role) or administrator (AEAdmin role) lo

  • T430 vs T430s

    Hi,        A year ago I purchased a T420 and was very happy with it until a week ago that my notebook was stolen. I'm looking for a replacement now and I'm undecided between the T430 and T430s. As I understand the T430 has serious problems regarding

  • Outlook anywhere settings, in Autodiscover?

    So in Outlook, I got all my Outlook Anywhere settings configured, great! But where do I go to edit them on the server? I don't have a GPO for any of this and I gather Outlook Anywhere is configured in Autodiscover? Is it EMS?

  • My video not streaming via Skype

    Hi, I have an Intel iMac, my friend has a new MacBook. When we Skype, I see him, but he can't see me. My built in iSight camera does not come on automatically when I call, so I choose Skype>Preferences>Video. Then the green light next to the camera c