SPL in new GL

Hi All
I wanted to take a P&L report based on both profit center and cost centers. I am thinking of using  SPL for that requirement. But we are on NEW GL. DO we still use SPL or is there any new functionality from where I can get one report which is based on both cost centers and profit center..
Edited by: Steve williams on Jun 22, 2010 8:19 PM

Yes, I understand that (ours too). Based on your diagram, migration will be some time after 7/1/2011.
Actually, I think what SAP recommends is complete migration before opening the new FY for posting. In any case, if you want to add a new split characteristic and you are already using SPL, I think it is better to add it to SPL before NewGL migration because SAP handles migration with SPL and without SPL (from classic GL) differently. With SPL is a lot more straight forward.
Regards,
Ming

Similar Messages

  • New GL or Special Ledger

    We are in the midst of upgrading our environment to ECC 6.0 but we are taking on a Financial Re-design effort  - I am looking to leverage the NEW GL to remove some of our dependency on a CO-PA reporting design and I am hearing from some colleagues that they would like to use  - the Special Ledger to support the new Financial reporting requirements u2013 but I feel the NEW GL is the way to go with the design since it is more integrated with standard reporting u2013 What are your thoughts about continuing to use the Special Ledger functionality over the New GL functionality in ECC 6.0 ?
    Moderator: Please, search SDN

    Hi,
    Definitely, switching over to New GL rather than continuing in conventional SPL.  New GL has lots of advantage and flexibility.  Please go thru the documentation AC210 - New General Ledger Accounting for more details or refer below mentioned link.
    http://help.sap.com/saphelp_erp60_sp/helpdata/en/2d/830e405c538f5ce10000000a155106/frameset.htm
    Best Regards,
    Madhu

  • SPL and Parallel Ledger

    I am new to SAP. Could someone highlight the major differences between parallel ledger and special purpose ledger in terms of features and usability?

    I don't understand.  Special purpose ledger itself is a parallel ledger.  Special purpose ledger was used earlier to ECC 5.0.  ECC 5.0 onwards, if you activate new GL, you can have non-leading ledgers as parallel ledgers (similar to erstwhile special purpose ledger).
    In the old SPL world, you had to do a lot of configuration yourself - like generating table structures, creating special purpose ledgers and assigning line item and totals tables to the ledgers, assigning activities and field movements to special purpose ledgers.
    A lot of that configuration is automated in new GL; saves you a lot of work, believe me.  New GL is old wine (SPL) in new bottle - the wine just tastes better!

  • BAPI: bapi or RFC for t-code f-28

    Hi all,
            can any one tell me bapi or rfc available for t-code f-28
           please help me...
    Regards,
    devika G.

    Hi,
    i dont think there is a BAPI for this Transaction...
    you can do  BDC on F-28
    FORM fill_bdc_data_f-28_9005 USING p_i_mult_doc TYPE c.
    **BDC from screen 9005
    DATA : l_amt_bdc(13), l_amt_bdc_remain(13), l_amt_bdc_mult(13),
    l_amt_bdc_mult_remain(13), l_assignment(14), l_period(2),
    l_amount(13).
    CLEAR t_bdcdata.
    REFRESH t_bdcdata.
    PERFORM bdc_dynpro USING 'SAPMF05A' '0103'.
    PERFORM bdc_field USING 'BDC_OKCODE' '=AB'. "OK CODE - doc overview
    **get user default date format and pass date in that format
    PERFORM convert_date_to_user_format USING bkpf-bldat.
    PERFORM bdc_field USING 'BKPF-BLDAT' w_date. "cheque date
    CLEAR w_date.
    PERFORM bdc_field USING 'BKPF-BLART' i_blart. "doc type
    PERFORM bdc_field USING 'BKPF-BUKRS' i_bukrs. "comp code
    **get user default date format and pass date in that format
    PERFORM convert_date_to_user_format USING bkpf-budat.
    PERFORM bdc_field USING 'BKPF-BUDAT' w_date. "posting date
    CLEAR w_date.
    l_period = sy-datum+4(2).
    PERFORM bdc_field USING 'BKPF-MONAT' l_period. "period
    PERFORM bdc_field USING 'BKPF-WAERS' 'INR'. "currency
    PERFORM bdc_field USING 'BKPF-BKTXT' i_bankl. "doc. hdr. text
    PERFORM bdc_field USING 'BKPF-XBLNR' i_xblnr. "Ref. Document No.
    PERFORM bdc_field USING 'BSEG-ZUONR' i_zuonr. "Assignment(Depot Code)
    PERFORM bdc_field USING 'RF05A-KONTO' i_bank_gl. "Bank GL acc
    PERFORM bdc_field USING 'BSEG-GSBER' i_gsber. "Business Area
    l_amount = bseg-wrbtr.
    PERFORM bdc_field USING 'BSEG-WRBTR' l_amount. "Amount
    PERFORM bdc_field USING 'BSEG-PRCTR' ''. "Profit Center
    **open items data
    PERFORM bdc_field USING 'RF05A-AGKOA' 'D'. "Acc type (D=customers)
    PERFORM bdc_field USING 'RF05A-XNOPS' 'X'. "Std OIs check box
    **end of first screen
    **document overview screen
    PERFORM bdc_dynpro USING 'SAPMF05A' '0700'. "Overview Screen
    PERFORM bdc_field USING 'BDC_CURSOR' 'RF05A-AZEI1(01)'. "cursor
    PERFORM bdc_field USING 'BDC_OKCODE' '/00'. "OK CODE
    PERFORM bdc_field USING 'RF05A-NEWBS' '19'. "posting key
    PERFORM bdc_field USING 'RF05A-NEWKO' i_kunnr. "customer
    PERFORM bdc_field USING 'RF05A-NEWUM' 'B'. "Spl GL Indicator
    **for single document selected
    CLEAR l_amt_bdc.
    IF p_i_mult_doc = ''.
    ***new screen - next line item
    PERFORM bdc_dynpro USING 'SAPMF05A' '0303'.
    PERFORM bdc_field USING 'BDC_OKCODE' '=BU'. "OK CODE
    **for single document, use the bouncing amount calculated earlier
    l_amt_bdc = w_amt_ant_bouncing.
    PERFORM bdc_field USING 'BSEG-WRBTR' l_amt_bdc. "amount
    **due date - same as posting date on screen
    **get user default date format and pass date in that format
    PERFORM convert_date_to_user_format USING bkpf-budat.
    PERFORM bdc_field USING 'BSEG-ZFBDT' w_date. "due date
    CLEAR w_date.
    **assignment
    CLEAR l_assignment.
    CONCATENATE t_seldoc_ant_bouncing-belnr
    t_seldoc_ant_bouncing-gjahr INTO l_assignment.
    PERFORM bdc_field USING 'BSEG-ZUONR' l_assignment. "assignment
    PERFORM bdc_field USING 'BSEG-GSBER' i_gsber.
    **if there is some remaining amount, then go for another line item
    IF w_rem_amt_ant_bouncing > 0.
    PERFORM bdc_field USING 'RF05A-NEWBS' '15'. "posting key
    PERFORM bdc_field USING 'RF05A-NEWKO' i_kunnr. "customer
    **new screen
    PERFORM bdc_dynpro USING 'SAPMF05A' '0301'.
    PERFORM bdc_field USING 'BDC_CURSOR' 'BSEG-ZTERM'. "CURSOR
    PERFORM bdc_field USING 'BDC_OKCODE' '=BU'. "OK CODE-ENTER
    l_amt_bdc_remain = w_rem_amt_ant_bouncing.
    PERFORM bdc_field USING 'BSEG-WRBTR' l_amt_bdc_remain.
    PERFORM bdc_field USING 'BSEG-ZTERM' '0001'.
    **AGAIN
    PERFORM bdc_dynpro USING 'SAPMF05A' '0301'.
    PERFORM bdc_field USING 'BDC_CURSOR' 'BSEG-WRBTR'. "CURSOR
    PERFORM bdc_field USING 'BDC_OKCODE' '=BU'. "OK CODE-SAVE
    PERFORM bdc_field USING 'BSEG-WRBTR' l_amt_bdc_remain.
    PERFORM bdc_field USING 'BSEG-ZTERM' '0001'. "pmt term -hardcoded
    PERFORM bdc_field USING 'BSEG-SKFBT' l_amt_bdc_remain.
    ENDIF.
    **multiple documents
    ELSE.
    **initialize remaining amount to amt entered on screen
    l_amt_bdc_mult_remain = bseg-wrbtr.
    LOOP AT t_seldoc_ant_bouncing.
    IF l_amt_bdc_mult_remain > 0.
    IF bseg-wrbtr > t_seldoc_ant_bouncing-rem_amt.
    l_amt_bdc_mult = t_seldoc_ant_bouncing-rem_amt.
    ELSE.
    l_amt_bdc_mult = bseg-wrbtr.
    ENDIF.
    **remaining amt = screen amt - amt calculated above.
    l_amt_bdc_mult_remain = l_amt_bdc_mult_remain - l_amt_bdc_mult.
    PERFORM bdc_dynpro USING 'SAPMF05A' '0303'.
    PERFORM bdc_field USING 'BDC_OKCODE' '=BU'. "OK CODE
    PERFORM bdc_field USING 'BSEG-WRBTR' l_amt_bdc_mult. "amount
    PERFORM bdc_field USING 'BSEG-GSBER' i_gsber. "Business Area
    **due date - same as posting date on screen
    **get user default date format and pass date in that format
    PERFORM convert_date_to_user_format USING bkpf-budat.
    PERFORM bdc_field USING 'BSEG-ZFBDT' w_date. "due date
    CLEAR w_date.
    **assignment
    CLEAR l_assignment.
    CONCATENATE t_seldoc_ant_bouncing-belnr
    t_seldoc_ant_bouncing-gjahr INTO l_assignment.
    PERFORM bdc_field USING 'BSEG-ZUONR' l_assignment. "assignment
    **posting key 19 for all but last document
    PERFORM bdc_field USING 'RF05A-NEWBS' '19'. "posting key
    PERFORM bdc_field USING 'RF05A-NEWKO' i_kunnr. "customer
    PERFORM bdc_field USING 'RF05A-NEWUM' 'B'. "Spl GL
    ENDIF.
    ENDLOOP.
    ENDIF.
    **post remaining amount
    IF p_i_mult_doc = 'X'.
    **new screen if there is some amount left
    IF l_amt_bdc_mult_remain > 0.
    **posting key 15 with remaining amount
    PERFORM bdc_field USING 'RF05A-NEWBS' '15'. "posting key
    PERFORM bdc_field USING 'RF05A-NEWKO' i_kunnr. "customer
    PERFORM bdc_field USING 'RF05A-NEWUM' ''. "Spl GL
    **new screen
    PERFORM bdc_dynpro USING 'SAPMF05A' '0301'.
    PERFORM bdc_field USING 'BDC_OKCODE' '=BU'. "OK CODE
    PERFORM bdc_field USING 'BSEG-WRBTR' l_amt_bdc_mult_remain.
    PERFORM bdc_field USING 'BSEG-ZTERM' '0001'. "pmt term - hardcoded
    ELSE.
    **if no amount is left, no need for a further line item
    PERFORM bdc_field USING 'RF05A-NEWBS' ''. "posting key
    PERFORM bdc_field USING 'RF05A-NEWKO' ''. "customer
    PERFORM bdc_field USING 'RF05A-NEWUM' ''. "Spl GL
    ENDIF.
    ENDIF.
    **clear variables
    CLEAR : l_amount, l_assignment, l_amt_bdc,
    l_amt_bdc_remain,l_amt_bdc_mult, l_amt_bdc_mult_remain.
    ENDFORM. " fill_bdc_data_F-28_9005
    Regards

  • BDC / Bapi For  Post Incoming Payment (F-28)

    Hi
    Im creating BDC for F-28. But it got error coming out.
    >> It says DB05B-PSZAH(02) is not an input field.
    What I do is: First, I search for Line Item then Document Number. Then It return to basic list. Then I loop again for the second Line Item Number and Document Number.
    I can activate the first amount but cannot for the next amount and so on.
    Anybody could help me on this??
    Is there any BAPI for Post Incoming Payment (F-28)?
    Thank you.
    Regards.

    i dont think there is a BAPI for this Transaction...
    i have done a BDC on F-28 myself....pasting the code....hope it helps you....
    *******NOTE********
    the parameter in the subroutine is to see if there is a single document or multiple documents being posted.
    FORM fill_bdc_data_f-28_9005 USING p_i_mult_doc TYPE c.
    **BDC from screen 9005
      DATA : l_amt_bdc(13), l_amt_bdc_remain(13), l_amt_bdc_mult(13),
             l_amt_bdc_mult_remain(13), l_assignment(14), l_period(2),
             l_amount(13).
      CLEAR t_bdcdata.
      REFRESH t_bdcdata.
      PERFORM bdc_dynpro USING 'SAPMF05A' '0103'.
      PERFORM bdc_field USING 'BDC_OKCODE' '=AB'.   "OK CODE - doc overview
    **get user default date format and pass date in that format
      PERFORM convert_date_to_user_format USING bkpf-bldat.
      PERFORM bdc_field USING 'BKPF-BLDAT' w_date.  "cheque date
      CLEAR w_date.
      PERFORM bdc_field USING 'BKPF-BLART' i_blart.  "doc type
      PERFORM bdc_field USING 'BKPF-BUKRS' i_bukrs.  "comp code
    **get user default date format and pass date in that format
      PERFORM convert_date_to_user_format USING bkpf-budat.
      PERFORM bdc_field USING 'BKPF-BUDAT' w_date.  "posting date
      CLEAR w_date.
      l_period = sy-datum+4(2).
      PERFORM bdc_field USING 'BKPF-MONAT' l_period. "period
      PERFORM bdc_field USING 'BKPF-WAERS' 'INR'.    "currency
      PERFORM bdc_field USING 'BKPF-BKTXT' i_bankl.  "doc. hdr. text
      PERFORM bdc_field USING 'BKPF-XBLNR' i_xblnr.  "Ref. Document No.
      PERFORM bdc_field USING 'BSEG-ZUONR' i_zuonr.  "Assignment(Depot Code)
      PERFORM bdc_field USING 'RF05A-KONTO' i_bank_gl. "Bank GL acc
      PERFORM bdc_field USING 'BSEG-GSBER' i_gsber.  "Business Area
      l_amount = bseg-wrbtr.
      PERFORM bdc_field USING 'BSEG-WRBTR' l_amount. "Amount
      PERFORM bdc_field USING 'BSEG-PRCTR' ''.  "Profit Center
    **open items data
      PERFORM bdc_field USING 'RF05A-AGKOA' 'D'.     "Acc type (D=customers)
      PERFORM bdc_field USING 'RF05A-XNOPS' 'X'.     "Std OIs check box
    **end of first screen
    **document overview screen
      PERFORM bdc_dynpro USING 'SAPMF05A' '0700'.    "Overview Screen
      PERFORM bdc_field USING 'BDC_CURSOR' 'RF05A-AZEI1(01)'.     "cursor
      PERFORM bdc_field USING 'BDC_OKCODE' '/00'.     "OK CODE
      PERFORM bdc_field USING 'RF05A-NEWBS' '19'.    "posting key
      PERFORM bdc_field USING 'RF05A-NEWKO' i_kunnr. "customer
      PERFORM bdc_field USING 'RF05A-NEWUM' 'B'.     "Spl GL Indicator
    **for single document selected
      CLEAR l_amt_bdc.
      IF p_i_mult_doc = ''.
    ***new screen - next line item
        PERFORM bdc_dynpro USING 'SAPMF05A' '0303'.
        PERFORM bdc_field USING 'BDC_OKCODE' '=BU'.    "OK CODE
    **for single document, use the bouncing amount calculated earlier
        l_amt_bdc = w_amt_ant_bouncing.
        PERFORM bdc_field USING 'BSEG-WRBTR' l_amt_bdc. "amount
    **due date - same as posting date on screen
    **get user default date format and pass date in that format
        PERFORM convert_date_to_user_format USING bkpf-budat.
        PERFORM bdc_field USING 'BSEG-ZFBDT' w_date.  "due date
        CLEAR w_date.
    **assignment
        CLEAR l_assignment.
        CONCATENATE t_seldoc_ant_bouncing-belnr
                    t_seldoc_ant_bouncing-gjahr INTO l_assignment.
        PERFORM bdc_field USING 'BSEG-ZUONR' l_assignment. "assignment
        PERFORM bdc_field USING 'BSEG-GSBER' i_gsber.
    **if there is some remaining amount, then go for another line item
        IF w_rem_amt_ant_bouncing > 0.
          PERFORM bdc_field USING 'RF05A-NEWBS' '15'.    "posting key
          PERFORM bdc_field USING 'RF05A-NEWKO' i_kunnr. "customer
    **new screen
          PERFORM bdc_dynpro USING 'SAPMF05A' '0301'.
          PERFORM bdc_field USING 'BDC_CURSOR' 'BSEG-ZTERM'. "CURSOR
          PERFORM bdc_field USING 'BDC_OKCODE' '=BU'.    "OK CODE-ENTER
          l_amt_bdc_remain = w_rem_amt_ant_bouncing.
          PERFORM bdc_field USING 'BSEG-WRBTR' l_amt_bdc_remain.
          PERFORM bdc_field USING 'BSEG-ZTERM' '0001'.
    **AGAIN
          PERFORM bdc_dynpro USING 'SAPMF05A' '0301'.
          PERFORM bdc_field USING 'BDC_CURSOR' 'BSEG-WRBTR'. "CURSOR
          PERFORM bdc_field USING 'BDC_OKCODE' '=BU'.    "OK CODE-SAVE
          PERFORM bdc_field USING 'BSEG-WRBTR' l_amt_bdc_remain.
          PERFORM bdc_field USING 'BSEG-ZTERM' '0001'. "pmt term -hardcoded
          PERFORM bdc_field USING 'BSEG-SKFBT' l_amt_bdc_remain.
        ENDIF.
    **multiple documents
      ELSE.
    **initialize remaining amount to amt entered on screen
        l_amt_bdc_mult_remain = bseg-wrbtr.
        LOOP AT t_seldoc_ant_bouncing.
          IF l_amt_bdc_mult_remain > 0.
            IF bseg-wrbtr > t_seldoc_ant_bouncing-rem_amt.
              l_amt_bdc_mult = t_seldoc_ant_bouncing-rem_amt.
            ELSE.
              l_amt_bdc_mult = bseg-wrbtr.
            ENDIF.
    **remaining amt = screen amt - amt calculated above.
            l_amt_bdc_mult_remain = l_amt_bdc_mult_remain - l_amt_bdc_mult.
            PERFORM bdc_dynpro USING 'SAPMF05A' '0303'.
            PERFORM bdc_field USING 'BDC_OKCODE' '=BU'.    "OK CODE
            PERFORM bdc_field USING 'BSEG-WRBTR' l_amt_bdc_mult. "amount
            PERFORM bdc_field USING 'BSEG-GSBER' i_gsber.  "Business Area
    **due date - same as posting date on screen
    **get user default date format and pass date in that format
            PERFORM convert_date_to_user_format USING bkpf-budat.
            PERFORM bdc_field USING 'BSEG-ZFBDT' w_date.  "due date
            CLEAR w_date.
    **assignment
            CLEAR l_assignment.
            CONCATENATE t_seldoc_ant_bouncing-belnr
                        t_seldoc_ant_bouncing-gjahr INTO l_assignment.
            PERFORM bdc_field USING 'BSEG-ZUONR' l_assignment. "assignment
    **posting key 19 for all but last document
            PERFORM bdc_field USING 'RF05A-NEWBS' '19'.    "posting key
            PERFORM bdc_field USING 'RF05A-NEWKO' i_kunnr. "customer
            PERFORM bdc_field USING 'RF05A-NEWUM' 'B'.     "Spl GL
          ENDIF.
        ENDLOOP.
      ENDIF.
    **post remaining amount
      IF p_i_mult_doc = 'X'.
    **new screen if there is some amount left
        IF l_amt_bdc_mult_remain > 0.
    **posting key 15 with remaining amount
          PERFORM bdc_field USING 'RF05A-NEWBS' '15'.    "posting key
          PERFORM bdc_field USING 'RF05A-NEWKO' i_kunnr. "customer
          PERFORM bdc_field USING 'RF05A-NEWUM' ''.     "Spl GL
    **new screen
          PERFORM bdc_dynpro USING 'SAPMF05A' '0301'.
          PERFORM bdc_field USING 'BDC_OKCODE' '=BU'.    "OK CODE
          PERFORM bdc_field USING 'BSEG-WRBTR' l_amt_bdc_mult_remain.
          PERFORM bdc_field USING 'BSEG-ZTERM' '0001'. "pmt term - hardcoded
        ELSE.
    **if no amount is left, no need for a further line item
          PERFORM bdc_field USING 'RF05A-NEWBS' ''.    "posting key
          PERFORM bdc_field USING 'RF05A-NEWKO' ''. "customer
          PERFORM bdc_field USING 'RF05A-NEWUM' ''.     "Spl GL
        ENDIF.
      ENDIF.
    **clear variables
      CLEAR : l_amount, l_assignment, l_amt_bdc,
              l_amt_bdc_remain,l_amt_bdc_mult, l_amt_bdc_mult_remain.
    ENDFORM.                    " fill_bdc_data_F-28_9005

  • Record button only available for AUDIO TRACK, not for AUDIO INST.

    Hi -- For some reason Logic Express 7.1.1 is only giving me the opportunity to record enable tracks that are AUDIO TRACKS. All of my other tracks (mainly software synths) using the AUDIO INSTRUMENTS don't have the ability to record.
    I opened previous files where I'd recorded on these tracks, but even on older files, the option still is not there.
    Any thoughts?
    As for setup, I just have an MAudio keystaton attached via USB, and it's playing the software instruments fine. Also, I sometimes have an MBox hooked up (although not right now.) I updated this recently for TIGER, and I didn't know if this messed it up.
    Powerbook G4, 1.5 GHz   Mac OS X (10.4.5)  

    don't know if on Logic express there's the key command 'Capture Last Take as Recording'.
    If yes,during playback you can play anything you like on your keyboard and by pressing the keys that you have assigned for this key command you can have everything that you played as events on the specific audio instrument as if you were in record mode.
    If you move the SPL the new information will delete the previous one.
    powerbook G4   Mac OS X (10.4.5)   logic pro 7.1.1,FW410 m-audio

  • Sonnox Plugs and Logic - do they like each other?

    Hi All,
    I'm thinking about getting into Sonnox Plug Ins and just wanted to ask people who are using them with Logic, if Logic's Plug In Delay Compensation works tight with those Plugs. If it didn't it would be a major reason for me not to get them.
    Thank's

    hi,
    yes the Sonnox plugs are good with logic, and you should also try SPL's new lot as well.
    the SPL's aren't really mastering types, but the quality is simply excellent.
    they are very similar is response to a lot of my vintage valve gear, and simple to use.
    also one that's good is Softube's FET comp/lim. only problem is that it can't report it's delay to logic.
    best,
    DR9.

  • Balance trasnfer from old spl G/L account to New spl G/L account

    Hi,
    We need to transfer the balance from old spl G/L to new spl G/L, please note these spl G/L are mapped to Reconciliation accounts. What is best way or practice for doing this activity?
    we need to transfer balances of only spl G/L and not the reconciliation accounts.
    spl G/L are used with spl G/L indicator during advance or down payment.
    For exmaple:- Old settings
    Recon account       spl g/l Account
    1000000000            150000000
    For exmaple:- New  settings
    Recon account       spl g/l Account
    1000000000            250000500
    How do i transfer balance from spl G/L 150000000 to 2500000500? becuase there is no change in the recon account.
    Thanks,
    Radhakrishna

    Dear,
    There is no way you can transfer this without using vendor/customer...........so for example if this SP GL is for customer then
    Use transaction F-02 and pass following entry......if customer 1000 has 1000 cr for Old SP Gl then...
    Posting Key....................Account...........................Amount...................Sp GL
    09...................................1000.................................1000.......................Old
    19...................................1000.................................1000.......................New
    So by this way you will have to do this for every customer which has balance for Old Sp GL...
    Regards,
    Chintan Joshi

  • Activate Profit Center Accounting with Splitter in SPL / New GL

    ...............New G/L go live date.....................Migration Point (after this cannot post back)
    ...............I<--old G/L--
    >I
    ...............I..(using old G/L till Migration).........I
    I--I>---
    ...............I...................................................I
    ...............I...................................................I
    ...............07/01/2011
    ...............PCA (activating it with splitter)
    We are Public Sector and are on ECC 6.0, we have been splitting Document based on Business Area and Fund. Before migrating to New GL functionality, we are also thinking to use the feature of document splitting with characteristic profit center. To do that we are thinking of the two following scenarios, but want to understand the possibility, the benefits and impact on the system
    Scenario A. Activating Profit Center Accounting with Splitter in Special Purpose Ledger on the GO-live date and populate Profit Center field in Classical G/L.
    Scenario B. Activating Profit Center Accounting with Splitter In New G/L on the GO-live date and populate Profit Center field in New G/L.

    Yes, I understand that (ours too). Based on your diagram, migration will be some time after 7/1/2011.
    Actually, I think what SAP recommends is complete migration before opening the new FY for posting. In any case, if you want to add a new split characteristic and you are already using SPL, I think it is better to add it to SPL before NewGL migration because SAP handles migration with SPL and without SPL (from classic GL) differently. With SPL is a lot more straight forward.
    Regards,
    Ming

  • SPL screening of HCM Empoyees  with new legal regulation

    Hello GTS Experts,
    I have SPL Screening in place for Logistics Business partners.
    Our affiliate wants to do HR Data screening with different SPL list. I have configured new Legal Regulation.
    We are screening employees successfully.
    However, when a logistics BP(Vendors/Customers) address change is done on Feeder system, the BP gets screened against Both Legal Regulations.
    I don't want any Logistics BPs screened against the New Legal Regulation for SPL Screening of employees.In the new legal regulation, we have the following setting for Check logic for Docs.
    1. Status Check of Unchanged Addresses(Partner Address)
    Is there a way to prevent logistics BPs screening against the New Legal Regulation which is only for HCM Employees screening ?
    Thank you,
    Ram

    Hi Dhilipan,
    The new legal regulation was for European countries data security requirement and providing advance authorization.
    What you suggest is to check the BAdIs and make enhancement. I will check it out and work with our technical team. I was hoping to avoid the custom development.
    Thanks.
    Ram.

  • New flash player release breaks old installed flash player

    Hi there all
    I work in a school in the UK and we have a very odd problem with flash player. When a new flash player is released it will stop the older flash player from working.
    This happens on IE 7 and 8 (all XP)
    For example on one of our PCs it states that "You have version 10,0,42,34 installed" if you go to http://www.adobe.com/software/flash/about/ (latest version being 10.0.45.2 at time of post), but this has stopped any flash content from working.
    On youtube it states "Hello, either you have JavaScript turned off or an old version of Adobe's Flash Player. Get the latest Flash player. "
    On BBC iPlayer it states "You need to install Flash to play [name of video]"
    We have given all staff restricted accounts and all students very restricted accounts so they cannot simply install itself.
    We currently deploy the flash player via group policy but that doesn't help us when we have people baying for our blood because some teaching resources will not work
    Anybody seen anything like this before? Could it be a group policy setting perhaps???
    Thanks in advance
    BMCC

    Hey to everyone
    i found the answer in terms of allowing staff to upgrade themselves.
    I have made a GPO with the following registry and file perms settings. I have given permission to members of office and staff sec groups which covers all of our staff. Then apply this gpo either the top level domain or to each OU where you have PCs that you would like staff to be able to upgrade flash for you.
    2010 - Enable users to install/update flash
    Data collected on: 08/07/2010 14:01:27
    hide all
    Generalhide
    Detailshide
    Domain
    broadoak.school
    Owner
    BROADOAK\Domain Admins
    Created
    01/07/2010 13:48:18
    Modified
    08/07/2010 10:08:26
    User Revisions
    0 (AD), 0 (sysvol)
    Computer Revisions
    102 (AD), 102 (sysvol)
    Unique ID
    {A30BAAAA-8194-4205-B19B-59E74826E45D}
    GPO Status
    User settings disabled
    Linkshide
    Location
    Enforced
    Link Status
    Path
    Laptops
    No
    Enabled
    broadoak.school/Laptops
    Office Workstations
    No
    Enabled
    broadoak.school/Office Workstations
    Heads-PA
    No
    Enabled
    broadoak.school/Office Workstations/Heads-PA
    Staff Netbooks
    No
    Enabled
    broadoak.school/Staff Netbooks
    Staff Workstation
    No
    Enabled
    broadoak.school/Staff Workstation
    Teaching Workstations
    No
    Enabled
    broadoak.school/Teaching Workstations
    This list only includes links in the domain of the GPO.
    Security Filteringhide
    The settings in this GPO can only apply to the following groups, users, and computers:
    Name
    NT AUTHORITY\Authenticated Users
    Delegationhide
    These groups and users have the specified permission for this GPO
    Name
    Allowed Permissions
    Inherited
    BROADOAK\Domain Admins
    Edit settings, delete, modify security
    No
    BROADOAK\Enterprise Admins
    Edit settings, delete, modify security
    No
    NT AUTHORITY\Authenticated Users
    Read (from Security Filtering)
    No
    NT AUTHORITY\ENTERPRISE DOMAIN CONTROLLERS
    Read
    No
    NT AUTHORITY\SYSTEM
    Edit settings, delete, modify security
    No
    Computer Configuration (Enabled)hide
    Policieshide
    Windows Settingshide
    Security Settingshide
    File Systemhide
    %SystemRoot%\System32\Macromedhide
    Configure this file or folder then: Propagate inheritable permissions to all subfolders and files
    Owner
    Permissions
    Type
    Name
    Permission
    Apply To
    Allow
    CREATOR OWNER
    Full Control
    Subfolders and files only
    Allow
    BROADOAK\Office
    Full Control
    This folder, subfolders and files
    Allow
    BROADOAK\OfficeA
    Full Control
    This folder, subfolders and files
    Allow
    NT AUTHORITY\SYSTEM
    Full Control
    This folder, subfolders and files
    Allow
    BROADOAK\Staff
    Full Control
    This folder, subfolders and files
    Allow
    BROADOAK\StaffA
    Full Control
    This folder, subfolders and files
    Allow
    BUILTIN\Administrators
    Full Control
    This folder, subfolders and files
    Allow
    BUILTIN\Users
    Read and Execute
    This folder, subfolders and files
    Allow inheritable permissions from the parent to propagate to this object and all child objects
    Disabled
    Auditing
    No auditing specified
    %SystemRoot%\SysWOW64\Macromedhide
    Configure this file or folder then: Propagate inheritable permissions to all subfolders and files
    Owner
    Permissions
    Type
    Name
    Permission
    Apply To
    Allow
    CREATOR OWNER
    Full Control
    Subfolders and files only
    Allow
    BROADOAK\Office
    Full Control
    This folder, subfolders and files
    Allow
    BROADOAK\OfficeA
    Full Control
    This folder, subfolders and files
    Allow
    NT AUTHORITY\SYSTEM
    Full Control
    This folder, subfolders and files
    Allow
    BROADOAK\Staff
    Full Control
    This folder, subfolders and files
    Allow
    BROADOAK\StaffA
    Full Control
    This folder, subfolders and files
    Allow
    BUILTIN\Administrators
    Full Control
    This folder, subfolders and files
    Allow
    BUILTIN\Users
    Read and Execute
    This folder, subfolders and files
    Allow inheritable permissions from the parent to propagate to this object and all child objects
    Disabled
    Auditing
    No auditing specified
    Registryhide
    CLASSES_ROOT\.mfphide
    Configure this key then: Propagate inheritable permissions to all subkeys
    Owner
    Permissions
    Type
    Name
    Permission
    Apply To
    Allow
    CREATOR OWNER
    Full control
    Subkeys only
    Allow
    BROADOAK\Office
    Full control
    This key and subkeys
    Allow
    BROADOAK\OfficeA
    Full control
    This key and subkeys
    Allow
    NT AUTHORITY\SYSTEM
    Full control
    This key and subkeys
    Allow
    BROADOAK\Staff
    Full control
    This key and subkeys
    Allow
    BROADOAK\StaffA
    Full control
    This key and subkeys
    Allow
    BUILTIN\Administrators
    Full control
    This key and subkeys
    Allow
    BUILTIN\Users
    Read
    This key and subkeys
    Allow inheritable permissions from the parent to propagate to this object and all child objects
    Disabled
    Auditing
    No auditing specified
    CLASSES_ROOT\.solhide
    Configure this key then: Propagate inheritable permissions to all subkeys
    Owner
    Permissions
    Type
    Name
    Permission
    Apply To
    Allow
    CREATOR OWNER
    Full control
    Subkeys only
    Allow
    BROADOAK\Office
    Full control
    This key and subkeys
    Allow
    BROADOAK\OfficeA
    Full control
    This key and subkeys
    Allow
    NT AUTHORITY\SYSTEM
    Full control
    This key and subkeys
    Allow
    BROADOAK\Staff
    Full control
    This key and subkeys
    Allow
    BROADOAK\StaffA
    Full control
    This key and subkeys
    Allow
    BUILTIN\Administrators
    Full control
    This key and subkeys
    Allow
    BUILTIN\Users
    Read
    This key and subkeys
    Allow inheritable permissions from the parent to propagate to this object and all child objects
    Disabled
    Auditing
    No auditing specified
    CLASSES_ROOT\.sor hide
    Configure this key then: Propagate inheritable permissions to all subkeys
    Owner
    Permissions
    Type
    Name
    Permission
    Apply To
    Allow
    CREATOR OWNER
    Full control
    Subkeys only
    Allow
    BROADOAK\Office
    Full control
    This key and subkeys
    Allow
    BROADOAK\OfficeA
    Full control
    This key and subkeys
    Allow
    NT AUTHORITY\SYSTEM
    Full control
    This key and subkeys
    Allow
    BROADOAK\Staff
    Full control
    This key and subkeys
    Allow
    BROADOAK\StaffA
    Full control
    This key and subkeys
    Allow
    BUILTIN\Administrators
    Full control
    This key and subkeys
    Allow
    BUILTIN\Users
    Read
    This key and subkeys
    Allow inheritable permissions from the parent to propagate to this object and all child objects
    Disabled
    Auditing
    No auditing specified
    CLASSES_ROOT\.spl hide
    Configure this key then: Propagate inheritable permissions to all subkeys
    Owner
    Permissions
    Type
    Name
    Permission
    Apply To
    Allow
    CREATOR OWNER
    Full control
    Subkeys only
    Allow
    BROADOAK\Office
    Full control
    This key and subkeys
    Allow
    BROADOAK\OfficeA
    Full control
    This key and subkeys
    Allow
    NT AUTHORITY\SYSTEM
    Full control
    This key and subkeys
    Allow
    BROADOAK\Staff
    Full control
    This key and subkeys
    Allow
    BROADOAK\StaffA
    Full control
    This key and subkeys
    Allow
    BUILTIN\Administrators
    Full control
    This key and subkeys
    Allow
    BUILTIN\Users
    Read
    This key and subkeys
    Allow inheritable permissions from the parent to propagate to this object and all child objects
    Disabled
    Auditing
    No auditing specified
    CLASSES_ROOT\.swf hide
    Configure this key then: Propagate inheritable permissions to all subkeys
    Owner
    Permissions
    Type
    Name
    Permission
    Apply To
    Allow
    CREATOR OWNER
    Full control
    Subkeys only
    Allow
    BROADOAK\Office
    Full control
    This key and subkeys
    Allow
    BROADOAK\OfficeA
    Full control
    This key and subkeys
    Allow
    NT AUTHORITY\SYSTEM
    Full control
    This key and subkeys
    Allow
    BROADOAK\Staff
    Full control
    This key and subkeys
    Allow
    BROADOAK\StaffA
    Full control
    This key and subkeys
    Allow
    BUILTIN\Administrators
    Full control
    This key and subkeys
    Allow
    BUILTIN\Users
    Read
    This key and subkeys
    Allow inheritable permissions from the parent to propagate to this object and all child objects
    Disabled
    Auditing
    No auditing specified
    CLASSES_ROOT\CLSID\{1171A62F-05D2-11D1-83FC-00A0C9089C5A} hide
    Configure this key then: Propagate inheritable permissions to all subkeys
    Owner
    Permissions
    Type
    Name
    Permission
    Apply To
    Allow
    CREATOR OWNER
    Full control
    Subkeys only
    Allow
    BROADOAK\Office
    Full control
    This key and subkeys
    Allow
    BROADOAK\OfficeA
    Full control
    This key and subkeys
    Allow
    NT AUTHORITY\SYSTEM
    Full control
    This key and subkeys
    Allow
    BROADOAK\Staff
    Full control
    This key and subkeys
    Allow
    BROADOAK\StaffA
    Full control
    This key and subkeys
    Allow
    BUILTIN\Administrators
    Full control
    This key and subkeys
    Allow
    BUILTIN\Users
    Read
    This key and subkeys
    Allow inheritable permissions from the parent to propagate to this object and all child objects
    Disabled
    Auditing
    No auditing specified
    CLASSES_ROOT\CLSID\{19114156-8E9A-4D4E-9EE9-17A0E48D3BBB}hide
    Configure this key then: Propagate inheritable permissions to all subkeys
    Owner
    Permissions
    Type
    Name
    Permission
    Apply To
    Allow
    CREATOR OWNER
    Full control
    Subkeys only
    Allow
    BROADOAK\Office
    Full control
    This key and subkeys
    Allow
    BROADOAK\OfficeA
    Full control
    This key and subkeys
    Allow
    NT AUTHORITY\SYSTEM
    Full control
    This key and subkeys
    Allow
    BROADOAK\Staff
    Full control
    This key and subkeys
    Allow
    BROADOAK\StaffA
    Full control
    This key and subkeys
    Allow
    BUILTIN\Administrators
    Full control
    This key and subkeys
    Allow
    BUILTIN\Users
    Read
    This key and subkeys
    Allow inheritable permissions from the parent to propagate to this object and all child objects
    Disabled
    Auditing
    No auditing specified
    CLASSES_ROOT\CLSID\{D27CDB6E-AE6D-11cf-96B8-444553540000}hide
    Configure this key then: Propagate inheritable permissions to all subkeys
    Owner
    Permissions
    Type
    Name
    Permission
    Apply To
    Allow
    CREATOR OWNER
    Full control
    Subkeys only
    Allow
    BROADOAK\Office
    Full control
    This key and subkeys
    Allow
    BROADOAK\OfficeA
    Full control
    This key and subkeys
    Allow
    NT AUTHORITY\SYSTEM
    Full control
    This key and subkeys
    Allow
    BROADOAK\Staff
    Full control
    This key and subkeys
    Allow
    BROADOAK\StaffA
    Full control
    This key and subkeys
    Allow
    BUILTIN\Administrators
    Full control
    This key and subkeys
    Allow
    BUILTIN\Users
    Read
    This key and subkeys
    Allow inheritable permissions from the parent to propagate to this object and all child objects
    Disabled
    Auditing
    No auditing specified
    CLASSES_ROOT\CLSID\{D27CDB70-AE6D-11cf-96B8-444553540000}hide
    Configure this key then: Propagate inheritable permissions to all subkeys
    Owner
    Permissions
    Type
    Name
    Permission
    Apply To
    Allow
    CREATOR OWNER
    Full control
    Subkeys only
    Allow
    BROADOAK\Office
    Query Value
    This key only
    Allow
    BROADOAK\OfficeA
    Query Value
    This key only
    Allow
    NT AUTHORITY\SYSTEM
    Full control
    This key and subkeys
    Allow
    BROADOAK\Staff
    Full control
    This key and subkeys
    Allow
    BROADOAK\StaffA
    Full control
    This key and subkeys
    Allow
    BUILTIN\Administrators
    Full control
    This key and subkeys
    Allow
    BUILTIN\Users
    Read
    This key and subkeys
    Allow inheritable permissions from the parent to propagate to this object and all child objects
    Disabled
    Auditing
    No auditing specified
    CLASSES_ROOT\CLSID\{D4304BCF-B8E9-4B35-BEA0-DC5B522670C2}hide
    Configure this key then: Propagate inheritable permissions to all subkeys
    Owner
    Permissions
    Type
    Name
    Permission
    Apply To
    Allow
    CREATOR OWNER
    Full control
    Subkeys only
    Allow
    BROADOAK\Office
    Full control
    This key and subkeys
    Allow
    BROADOAK\OfficeA
    Full control
    This key and subkeys
    Allow
    NT AUTHORITY\SYSTEM
    Full control
    This key and subkeys
    Allow
    BROADOAK\Staff
    Full control
    This key and subkeys
    Allow
    BROADOAK\StaffA
    Full control
    This key and subkeys
    Allow
    BUILTIN\Administrators
    Full control
    This key and subkeys
    Allow
    BUILTIN\Users
    Read
    This key and subkeys
    Allow inheritable permissions from the parent to propagate to this object and all child objects
    Disabled
    Auditing
    No auditing specified
    CLASSES_ROOT\FlashFactory.FlashFactoryhide
    Configure this key then: Propagate inheritable permissions to all subkeys
    Owner
    Permissions
    Type
    Name
    Permission
    Apply To
    Allow
    CREATOR OWNER
    Full control
    Subkeys only
    Allow
    BROADOAK\Office
    Full control
    This key and subkeys
    Allow
    BROADOAK\OfficeA
    Full control
    This key and subkeys
    Allow
    NT AUTHORITY\SYSTEM
    Full control
    This key and subkeys
    Allow
    BROADOAK\Staff
    Full control
    This key and subkeys
    Allow
    BROADOAK\StaffA
    Full control
    This key and subkeys
    Allow
    BUILTIN\Administrators
    Full control
    This key and subkeys
    Allow
    BUILTIN\Users
    Read
    This key and subkeys
    Allow inheritable permissions from the parent to propagate to this object and all child objects
    Disabled
    Auditing
    No auditing specified
    CLASSES_ROOT\FlashFactory.FlashFactory.1hide
    Configure this key then: Propagate inheritable permissions to all subkeys
    Owner
    Permissions
    Type
    Name
    Permission
    Apply To
    Allow
    CREATOR OWNER
    Full control
    Subkeys only
    Allow
    BROADOAK\Office
    Full control
    This key and subkeys
    Allow
    BROADOAK\OfficeA
    Full control
    This key and subkeys
    Allow
    NT AUTHORITY\SYSTEM
    Full control
    This key and subkeys
    Allow
    BROADOAK\Staff
    Full control
    This key and subkeys
    Allow
    BROADOAK\StaffA
    Full control
    This key and subkeys
    Allow
    BUILTIN\Administrators
    Full control
    This key and subkeys
    Allow
    BUILTIN\Users
    Read
    This key and subkeys
    Allow inheritable permissions from the parent to propagate to this object and all child objects
    Disabled
    Auditing
    No auditing specified
    CLASSES_ROOT\FlashProp.FlashProphide
    Configure this key then: Propagate inheritable permissions to all subkeys
    Owner
    Permissions
    Type
    Name
    Permission
    Apply To
    Allow
    CREATOR OWNER
    Full control
    Subkeys only
    Allow
    BROADOAK\Office
    Full control
    This key and subkeys
    Allow
    BROADOAK\OfficeA
    Full control
    This key and subkeys
    Allow
    NT AUTHORITY\SYSTEM
    Full control
    This key and subkeys
    Allow
    BROADOAK\Staff
    Full control
    This key and subkeys
    Allow
    BROADOAK\StaffA
    Full control
    This key and subkeys
    Allow
    BUILTIN\Administrators
    Full control
    This key and subkeys
    Allow
    BUILTIN\Users
    Read
    This key and subkeys
    Allow inheritable permissions from the parent to propagate to this object and all child objects
    Disabled
    Auditing
    No auditing specified
    CLASSES_ROOT\FlashProp.FlashProp.1hide
    Configure this key then: Propagate inheritable permissions to all subkeys
    Owner
    Permissions
    Type
    Name
    Permission
    Apply To
    Allow
    CREATOR OWNER
    Full control
    Subkeys only
    Allow
    BROADOAK\Office
    Full control
    This key and subkeys
    Allow
    BROADOAK\OfficeA
    Full control
    This key and subkeys
    Allow
    NT AUTHORITY\SYSTEM
    Full control
    This key and subkeys
    Allow
    BROADOAK\Staff
    Full control
    This key and subkeys
    Allow
    BROADOAK\StaffA
    Full control
    This key and subkeys
    Allow
    BUILTIN\Administrators
    Full control
    This key and subkeys
    Allow
    BUILTIN\Users
    Read
    This key and subkeys
    Allow inheritable permissions from the parent to propagate to this object and all child objects
    Disabled
    Auditing
    No auditing specified
    CLASSES_ROOT\Interface\{2E4BB6BE-A75F-4DC0-9500-68203655A2C4}hide
    Configure this key then: Propagate inheritable permissions to all subkeys
    Owner
    Permissions
    Type
    Name
    Permission
    Apply To
    Allow
    CREATOR OWNER
    Full control
    Subkeys only
    Allow
    BROADOAK\Office
    Full control
    This key and subkeys
    Allow
    BROADOAK\OfficeA
    Full control
    This key and subkeys
    Allow
    NT AUTHORITY\SYSTEM
    Full control
    This key and subkeys
    Allow
    BROADOAK\Staff
    Full control
    This key and subkeys
    Allow
    BROADOAK\StaffA
    Full control
    This key and subkeys
    Allow
    BUILTIN\Administrators
    Full control
    This key and subkeys
    Allow
    BUILTIN\Users
    Read
    This key and subkeys
    Allow inheritable permissions from the parent to propagate to this object and all child objects
    Disabled
    Auditing
    No auditing specified
    CLASSES_ROOT\MacromediaFlashPaper.MacromediaFlashPaperhide
    Configure this key then: Propagate inheritable permissions to all subkeys
    Owner
    Permissions
    Type
    Name
    Permission
    Apply To
    Allow
    CREATOR OWNER
    Full control
    Subkeys only
    Allow
    BROADOAK\Office
    Full control
    This key and subkeys
    Allow
    BROADOAK\OfficeA
    Full control
    This key and subkeys
    Allow
    NT AUTHORITY\SYSTEM
    Full control
    This key and subkeys
    Allow
    BROADOAK\Staff
    Full control
    This key and subkeys
    Allow
    BROADOAK\StaffA
    Full control
    This key and subkeys
    Allow
    BUILTIN\Administrators
    Full control
    This key and subkeys
    Allow
    BUILTIN\Users
    Read
    This key and subkeys
    Allow inheritable permissions from the parent to propagate to this object and all child objects
    Disabled
    Auditing
    No auditing specified
    CLASSES_ROOT\MIME\Database\Content Type\application/futuresplashhide
    Configure this key then: Propagate inheritable permissions to all subkeys
    Owner
    Permissions
    Type
    Name
    Permission
    Apply To
    Allow
    CREATOR OWNER
    Full control
    Subkeys only
    Allow
    BROADOAK\Office
    Full control
    This key and subkeys
    Allow
    BROADOAK\OfficeA
    Full control
    This key and subkeys
    Allow
    NT AUTHORITY\SYSTEM
    Full control
    This key and subkeys
    Allow
    BROADOAK\Staff
    Full control
    This key and subkeys
    Allow
    BROADOAK\StaffA
    Full control
    This key and subkeys
    Allow
    BUILTIN\Administrators
    Full control
    This key and subkeys
    Allow
    BUILTIN\Users
    Read
    This key and subkeys
    Allow inheritable permissions from the parent to propagate to this object and all child objects
    Disabled
    Auditing
    No auditing specified
    CLASSES_ROOT\MIME\Database\Content Type\application/x-shockwave-flashhide
    Configure this key then: Propagate inheritable permissions to all subkeys
    Owner
    Permissions
    Type
    Name
    Permission
    Apply To
    Allow
    CREATOR OWNER
    Full control
    Subkeys only
    Allow
    BROADOAK\Office
    Full control
    This key and subkeys
    Allow
    BROADOAK\OfficeA
    Full control
    This key and subkeys
    Allow
    NT AUTHORITY\SYSTEM
    Full control
    This key and subkeys
    Allow
    BROADOAK\Staff
    Full control
    This key and subkeys
    Allow
    BROADOAK\StaffA
    Full control
    This key and subkeys
    Allow
    BUILTIN\Administrators
    Full control
    This key and subkeys
    Allow
    BUILTIN\Users
    Read
    This key and subkeys
    Allow inheritable permissions from the parent to propagate to this object and all child objects
    Disabled
    Auditing
    No auditing specified
    CLASSES_ROOT\ShockwaveFlash.ShockwaveFlashhide
    Configure this key then: Propagate inheritable permissions to all subkeys
    Owner
    Permissions
    Type
    Name
    Permission
    Apply To
    Allow
    CREATOR OWNER
    Full control
    Subkeys only
    Allow
    BROADOAK\Office
    Full control
    This key and subkeys
    Allow
    BROADOAK\OfficeA
    Full control
    This key and subkeys
    Allow
    NT AUTHORITY\SYSTEM
    Full control
    This key and subkeys
    Allow
    BROADOAK\Staff
    Full control
    This key and subkeys
    Allow
    BROADOAK\StaffA
    Full control
    This key and subkeys
    Allow
    BROADOAK\Domain Admins
    Full control
    This key and subkeys
    Allow
    BUILTIN\Administrators
    Full control
    This key and subkeys
    Allow
    BUILTIN\Users
    Read
    This key and subkeys
    Allow inheritable permissions from the parent to propagate to this object and all child objects
    Disabled
    Auditing
    No auditing specified
    CLASSES_ROOT\ShockwaveFlash.ShockwaveFlash.1hide
    Configure this key then: Propagate inheritable permissions to all subkeys
    Owner
    Permissions
    Type
    Name
    Permission
    Apply To
    Allow
    CREATOR OWNER
    Full control
    Subkeys only
    Allow
    BROADOAK\Office
    Full control
    This key and subkeys
    Allow
    BROADOAK\OfficeA
    Full control
    This key and subkeys
    Allow
    NT AUTHORITY\SYSTEM
    Full control
    This key and subkeys
    Allow
    BROADOAK\Staff
    Full control
    This key and subkeys
    Allow
    BROADOAK\StaffA
    Full control
    This key and subkeys
    Allow
    BUILTIN\Administrators
    Full control
    This key and subkeys
    Allow
    BUILTIN\Users
    Read
    This key and subkeys
    Allow inheritable permissions from the parent to propagate to this object and all child objects
    Disabled
    Auditing
    No auditing specified
    CLASSES_ROOT\ShockwaveFlash.ShockwaveFlash.10 hide
    Configure this key then: Propagate inheritable permissions to all subkeys
    Owner
    Permissions
    Type
    Name
    Permission
    Apply To
    Allow
    CREATOR OWNER
    Full control
    Subkeys only
    Allow
    BROADOAK\Office
    Full control
    This key and subkeys
    Allow
    BROADOAK\OfficeA
    Full control
    This key and subkeys
    Allow
    NT AUTHORITY\SYSTEM
    Full control
    This key and subkeys
    Allow
    BROADOAK\Staff
    Full control
    This key and subkeys
    Allow
    BROADOAK\StaffA
    Full control
    This key and subkeys
    Allow
    BUILTIN\Administrators
    Full control
    This key and subkeys
    Allow
    BUILTIN\Users
    Read
    This key and subkeys
    Allow inheritable permissions from the parent to propagate to this object and all child objects
    Disabled
    Auditing
    No auditing specified
    CLASSES_ROOT\ShockwaveFlash.ShockwaveFlash.3hide
    Configure this key then: Propagate inheritable permissions to all subkeys
    Owner
    Permissions
    Type
    Name
    Permission
    Apply To
    Allow
    CREATOR OWNER
    Full control
    Subkeys only
    Allow
    BROADOAK\Office
    Full control
    This key and subkeys
    Allow
    BROADOAK\OfficeA
    Full control
    This key and subkeys
    Allow
    NT AUTHORITY\SYSTEM
    Full control
    This key and subkeys
    Allow
    BROADOAK\Staff
    Full control
    This key and subkeys
    Allow
    BROADOAK\StaffA
    Full control
    This key and subkeys
    Allow
    BUILTIN\Administrators
    Full control
    This key and subkeys
    Allow
    BUILTIN\Users
    Read
    This key and subkeys
    Allow inheritable permissions from the parent to propagate to this object and all child objects
    Disabled
    Auditing
    No auditing specified
    CLASSES_ROOT\ShockwaveFlash.ShockwaveFlash.4 hide
    Configure this key then: Propagate inheritable permissions to all subkeys
    Owner
    Permissions
    Type
    Name
    Permission
    Apply To
    Allow
    CREATOR OWNER
    Full control
    Subkeys only
    Allow
    BROADOAK\Office
    Full control
    This key and subkeys
    Allow
    BROADOAK\OfficeA
    Full control
    This key and subkeys
    Allow
    NT AUTHORITY\SYSTEM
    Full control
    This key and subkeys
    Allow
    BROADOAK\Staff
    Full control
    This key and subkeys
    Allow
    BROADOAK\StaffA
    Full control
    This key and subkeys
    Allow

  • Issue in New FTO creation

    Dear All,
    I am trying to create a new FTO. I am able to maintain all the details.
    But on the GTS tab page I am facing issue.
    SAP GTS Tab page > Sanctioned Party List  Screening Status > SPL  Screening Status - There is no 'Procedure' as well as 'Reason'
    My queries are -
    1. In the old FTO these fields are having required values. Then why it is not available for the new FTO?
    2. If these details are not available then will it affect the SPL screening?
    3. How to fetch desired values in the new FTO?
    Thanks in advance.
    Piyush

    Hi Piyush,
    Actually from your post it is no that clear as of what exact issue you are facing. Anyways please find below the correct step by step procedure for creating FTO in GTS.
    Create FTO (Foreign Trade Organizations) in GTS system
    Path: SPRO->SAP GTS ->General Settings->Organizational Structure->Define FTO
    We can also us the transaction u2018BPu2019 for creating FTO.
    Click on the tab u2018Organizationu2019
    Select BP role as SLLFTO foreign trade, address details should be given the same as that of corresponding Company code in R3 system.
    Once the FTO is created, assign it to corresponding Company Code. Path: SPRO->SAP GTS->General Settings->Organizational Structure->Assignment of organizational units from feeder system to FTO
    Assignment of created FTO to R3 Company code , select Manually assign Company code
    Thanks and Regards,
    Dhan

  • REG: FI-AR Open item clearning (with Spl GL transaction)

    Hi Folks!!
    I am stuck in a very difficult situation of resolving a scenario in FI. I am basically an ABAPPER.
    I am explaining you the FI-Functionality/Functional scenario below:
    I need to process a refund to customer pre-paid account towards "Subscription Paid in Advance".  The payment method being used is Credit Card. When there is a authorisation failure during refund, I need process this payment for manual check payment.
    Business need - to transfer Advance Receipts (Spl GL indicator A) to normal open items. Next populate with Refund Code and change the payment method to "Check". The Automatic Payment Program (APP), will generate payments in the next cycle with Customer open items with Refund Code and Check payment method.
    I need solution for -
    1. transfer to open items with Spl GL indicator to normal item
    2. to populate the field values for Refund Code and new Payment Method
    3. any standard BAPI/BTE which can be explored to meet this business requirement.
    Please do come up with any sorts of technical inputs. It shall be highly greatful in doing so.
    Thanks and Regards
    Srikanth.P

    Hi Jake,
    When did you do de init?
    In datasources FI-AR and FI-AP delta not only depends on time, it depends on the date, what I mean is that for these kind of datasources changes that are performed today would be ready to be uploaded by delta not before tomorrow.
    regards,
    Sebatián.-

  • Report on New vendor transfer from ECC to GTS

    Hi we have run the batch job daily basis to transfer new vendors from ECC to GTS system, my client want to know that list of the venodors(Business Partners) has been transfered today in GTS system on particular day to screening SPL. where i can see this, or any possible solution saying that get mail notification  to users - once vendors are transfered based on job batch runs.
    regards
    Satish

    Satish,
    You can see the log  in System Monitoring > Transfer logs for business partners or by executing the transaction:  /SAPSLL/PARTNER_APPL.
    However in order to see the required logs,  you need to  configure the  u2018Control Profile for Loggingu2019 in IMG.
    Hope this helps.

  • New G/L vs. Special Purpose Ledger

    Dear Experts,
    I am looking for information regarding the pros and cons of New G/L compared vs. Special purpose ledger (FI-SL). We need to adopt either a special ledger or new non-leading ledger. What is the best approach.
    Thanks for reply.
    Regards René

    In special purpose ledger, you need to do a lot of config. manually (like field movement, ledger selection, etc.) which you do not need to in new GL.  At the same time, you lose some of the flexibility that you have in SPL, when you opt for new GL.  Given a choice, I would go for new GL.

Maybe you are looking for

  • How to troubleshoot apache

    What are some steps to troubleshoot to see if apache is working?

  • I can't sync my contacts to gmail because the "sync contacts with" option doesn't show up

    This is what I see in itunes. I have the latest version and I have turned icloud off, but I still can't see it. I am getting an android phone soon, so I need to sync it to gmail contacts. Is there another way to do this? Thanks.

  • [HELP] No satellite signal being received - No issue with box or satellite?

    Hi there, I have the error of no satellite signal being received however on my first Sky+ HD box I was getting this error so I switched back to our older Sky+ box and this worked fine. However on a new Sky+ HD box it is still giving me this error, de

  • STWB_WORK and eCATT start options

    Hi, starting eCatt execution from test plan (STWB_WORK) the variants tab is missing in start options screen. This is the scenario under which we face the problem described above: 1. start transaction STWB_WORK - Test organizer 2. select a test packag

  • ORA-01428: argument '-1' is out of range

    hi   here is the details: - Select walkin_id, applying_for from walkins where walkin_id =197 WALKIN_ID     APPLYING_FOR 197             CLASS1:CLASS2:OTHER /*stored colon seprated classification*/ Select program_id, program_name, classification from