Bw is not picking up manual entries done in sap

Hi ,
Can any one guide me on this.
for copa we are getting data from 3 datasource for one cube.
z_1_copa_510_Act
0ec_pca_3
Z_1_COPA_510_PLAN
What happens if somebody did the manual entry(adjustment against something)in sap.(So BW didn't pick up units because there were no System in R3.) These data source is not picking the value.
What could be the reason?
Edited by: naman shah on Oct 24, 2008 4:37 PM

okay
and is this journal entry in the PCA tables for example
ie got to FB03 on the journal and do enviroment - doc enviroment - accounting documents - and is there a profit centre document and COPA documetn there?
ANd then does those documents exist on the base R3 tables ie GLPCA
I have 1000000 manual entries in SAP each day in FI and PCA and they do come into BW - so... some more detailed information abotu exactly the problem and examples may be helpful

Similar Messages

  • Query..for Field should not accept the manual entry

    i wann query for remarks Field in JE It should Not accept the manual entry it should accept only sys drop data.
    Thanks & Regards
    yogi

    For this field level authorization, you may only use SDK or SP to reach your goal.  SP would be difficult to use in this case.
    Thanks,
    Gordon

  • HT1296 My Outlook 2010 is not picking up calendar entries from my 4S, and the phone is not picking up calendar entries from Outlook 2010. Help, please!

    My Outlook 2010 is not picking up calendar entries from my 4S, and the phone is not picking up calendar entries from Outlook 2010. Help, please!

    Only the carrier it is locked to can authorize unlocking it. Contact them.

  • Just bought a new Airport Extreme BS. After setup my iphone4 won't find the network (not even with manual entries), but my iMac (2009) does. What is wrong?

    Just bought a new Airport Extreme BS. After setup my iphone4 won't find the network (not even with manual entries), but my iMac (2009) does. What is wrong?

    Well, after another call with Apple support and the engineers, no success.  After spending over 20 hours trying to debug this, I give up.  Apple was basically fishing for a solution with trial-and-error settings on the iphone.  Then they wanted me to plug in software to log my iphone connections to the router, etc, etc., etc., at which point I decided I no longer wanted to participate in their testing process and will simply return the router.
    25 hours of my life I'll never get back.
    Big bummer, and frustrating for all the obvious reasons.

  • Business Area & Plant not picked in CIN entries while doing MIRO

    At the time of performing MIRO, the automated entries related to cenvat clearing account for excise in CIN  are made by system.
    At the time of excise capturing the Business Area and Plant are picked up at line item for Cenvat Clearing Account.
    But at the time of MIRO the Business Area and Plant are not picked at line item for Cenvat Clearing Account.
    The client requires the segregation of the entries on the basis of Plant / Business Area.
    Regards
    Dharmveer

    GB01 is the table where you define it.
    and for documentation u can start from:
    http://help.sap.com/saphelp_47x200/helpdata/en/27/06e23954d9035de10000000a114084/frameset.htm
    use various links in this page, u can know everything abt substitution.
    Regards,
    anantha

  • MIGO_GR fill delivery note field from manual entry in bill of lading

    I have to fill header field delivery note from manual entry in bill of lading in tcode MIGO_GR for mopvement type 101.
    I searched for the exits and BADI's but header fields are not in changing parameters.
    Has anybody worked on automatically filling the delivery note field in MIGO_GR transaction from bill of lading field or a value from database?

    Hi You can use MB_MIGO_BADI Badi.
    Thanks,
    Anmol.

  • Problem in BDC: Not Picking the second entry of file

    Dear Friends,
    I have been working on a BDC and have been facing a problem. This code uploads the first entry of my file properly but repeats the same entry again second time, doesn't refresh or take the second entry of the file.
    Please have a look at the code & suggest the necessary corrections.
    Regards,
    Alok.
    report ZFBPS_BDC
           no standard page heading line-size 255.
    data: bdcdata1 like bdcdata occurs 0 with header line.
    data : vf_index type i.
    *include bdcrecx1.
    DATA: BEGIN OF ENTRIES OCCURS 0,
            RECNO(5),
            NEWBS(2),
            NEWKO(17),
            NEWNUM(1),
            WRBTR(13),
            GSBER(4),
            KOSTL(10),
            SECCO(4),
            ZFBDT(8),
            zuonr(18),
            SGTXT(50),
            FMORE(1),
            HKONT(10),
            PRCTR(10),
            AUFNR(3),
            MWSKZ(2),
            XBLNR(16),
            BKTXT(25),
    END OF ENTRIES.
    DATA: TEMP(8),
          DOCDATE(8),
          SPLGL(1),
          PKEY(2),
          GL(17),
          VCHAMT(13),
          BUSAREA(4),
          SECCODE(4),
          FBDT(8),
          zzuonr(18),
          COSTCEN(10),
          AUFNR(3),
          SGTXT(50).
    data : vf_start_col type i value '1',      "start column
           vf_start_row type i value '1',      "start row
           vf_end_col   type i value '256',    "maximum column
           vf_end_row   type i value '65536',  "maximum row
           p_text(20).                         "stores error messages
    Internal Table
    data : it_excel type  kcde_cells occurs 0 with header line.
    */ Field symbol
    field-symbols : <fs>.
    parameters: p_file   LIKE rlgrap-filename MEMORY ID M01,
                NOHEADER AS CHECKBOX.
    parameters: COMPANY(4) TYPE C DEFAULT 'SCL',
                GROUP(12) TYPE C DEFAULT 'BDCTEST',
                USER(12) TYPE C DEFAULT SY-UNAME,
                KEEP(1) TYPE C DEFAULT 'X',
                POSTDATE LIKE SY-DATUM DEFAULT SY-DATUM,
                DOC_TYPE(2) TYPE C DEFAULT 'KR',
                HOLDDATE LIKE SY-DATUM.
    ***********************************************upload data from excel
    CALL FUNCTION 'KCD_EXCEL_OLE_TO_INT_CONVERT'
      EXPORTING
        filename                      = p_file
        i_begin_col                   = VF_START_COL
        i_begin_row                   = VF_START_ROW
        i_end_col                     = VF_END_COL
        i_end_row                     = VF_END_ROW
      tables
        intern                        = IT_EXCEL
    EXCEPTIONS
       INCONSISTENT_PARAMETERS       = 1
       UPLOAD_OLE                    = 2
       OTHERS                        = 3 .
    IF sy-subrc <> 0.
              WRITE: / 'EXCEL UPLOAD FAILED :', p_file, SY-SUBRC.
    else.
      sort it_excel by row col.
          loop at it_excel.
         IF NOHEADER = 'X'
        AND It_EXCEL-row = 1.
          CONTINUE.
        ENDIF.
         vf_index = it_excel-col.
       assign component vf_index of structure ENTRIES to <fs>.
            move  it_excel-value to <fs>.
          at end of row.
            append ENTRIES.
            clear ENTRIES.
          endat.
          endloop.
      endif.
    start-of-selection.
    LOOP AT ENTRIES.
      WRITE: /  ENTRIES-RECNO,
                ENTRIES-NEWBS,
                ENTRIES-NEWKO,
                ENTRIES-NEWNUM,
                ENTRIES-WRBTR,
                ENTRIES-GSBER,
                ENTRIES-SECCO,
                ENTRIES-ZFBDT,
                ENTRIES-ZUONR,
                ENTRIES-SGTXT.
    ENDLOOP.
    WRITE: / 'THIS IS THE BDC PROGRAM FOR SAMTEL'.
    perform bdc_dynpro      using 'SAPMF05A' '0100'.
    perform bdc_field       using 'BDC_OKCODE' '/00'.
    PERFORM BDC_FIELD       USING 'BDC_CURSOR' 'RF05A-NEWKO'.
    TEMP = POSTDATE.
    DOCDATE = TEMP+6(2).
    DOCDATE2(2) = TEMP4(2).
    DOCDATE4(4) = TEMP0(4).
    *PERFORM BDC_FIELD USING 'BKPF-BLDAT' DOCDATE.
    *PERFORM BDC_FIELD USING 'BKPF-BLART' DOC_TYPE.
    *PERFORM BDC_FIELD USING 'BKPF-BUKRS' COMPANY.
    *PERFORM BDC_FIELD USING 'BKPF-WAERS' 'INR'.
    *PERFORM BDC_FIELD USING 'BKPF-BUDAT' DOCDATE.
    *PERFORM BDC_FIELD USING 'BKPF-XBLNR' 'Deepak'.
    *PERFORM BDC_FIELD USING 'BKPF-BKTXT' 'Sahib'.
    LOOP AT ENTRIES.
    REFRESH BDCDATA1.
    perform bdc_dynpro      using 'SAPMF05A' '0100'.
    perform bdc_field       using 'BDC_CURSOR'
                                  'RF05A-NEWKO'.
    perform bdc_field       using 'BDC_OKCODE'
                                  '/00'.
    PERFORM BDC_FIELD USING 'BKPF-BLDAT' DOCDATE.
    PERFORM BDC_FIELD USING 'BKPF-BLART' DOC_TYPE.
    PERFORM BDC_FIELD USING 'BKPF-BUKRS' COMPANY.
    PERFORM BDC_FIELD USING 'BKPF-WAERS' 'INR'.
    PERFORM BDC_FIELD USING 'BKPF-BUDAT' DOCDATE.
    PERFORM BDC_FIELD USING 'BKPF-XBLNR' 'Deepak'.
    PERFORM BDC_FIELD USING 'BKPF-BKTXT' 'Sahib'.
    perform bdc_field       using 'RF05A-NEWBS'
                                  ENTRIES-NEWBS.
    perform bdc_field       using 'RF05A-NEWKO'
                                  ENTRIES-NEWKO.
    perform bdc_dynpro      using 'SAPMF05A' '0300'.
    perform bdc_field       using 'BDC_CURSOR'
                                  'BSEG-SGTXT'.
    perform bdc_field       using 'BDC_OKCODE'
                                  '/00'.
    perform bdc_field       using 'BSEG-WRBTR'
                                  ENTRIES-WRBTR.
    perform bdc_field       using 'BSEG-ZUONR'
                                  ENTRIES-ZUONR.
    perform bdc_field       using 'BSEG-SGTXT'
                                  ENTRIES-SGTXT.
    perform bdc_field       using 'DKACB-FMORE'
                                  ENTRIES-FMORE.
    perform bdc_dynpro      using 'SAPLKACB' '0002'.
    perform bdc_field       using 'BDC_CURSOR'
                                  'COBL-KOSTL'.
    perform bdc_field       using 'BDC_OKCODE'
                                  '=ENTE'.
    perform bdc_field       using 'COBL-GSBER'
                                  ENTRIES-GSBER.
    perform bdc_field       using 'COBL-KOSTL'
                                  ENTRIES-KOSTL.
    perform bdc_dynpro      using 'SAPMF05A' '0300'.
    perform bdc_field       using 'BDC_CURSOR'
                                  'RF05A-NEWKO'.
    perform bdc_field       using 'BDC_OKCODE'
                                  '/00'.
    perform bdc_field       using 'BSEG-WRBTR'
                                  ENTRIES-WRBTR.
    perform bdc_field       using 'BSEG-ZUONR'
                                  ENTRIES-ZUONR.
    perform bdc_field       using 'BSEG-SGTXT'
                                  ENTRIES-SGTXT.
    perform bdc_field       using 'RF05A-NEWBS'
                                  ENTRIES-NEWBS.
    perform bdc_field       using 'RF05A-NEWKO'
                                  ENTRIES-NEWKO.
    perform bdc_field       using 'DKACB-FMORE'
                                  ENTRIES-FMORE.
    perform bdc_dynpro      using 'SAPLKACB' '0002'.
    perform bdc_field       using 'BDC_CURSOR'
                                  'COBL-GSBER'.
    perform bdc_field       using 'BDC_OKCODE'
                                  '=ENTE'.
    perform bdc_field       using 'COBL-GSBER'
                                  ENTRIES-GSBER.
    perform bdc_field       using 'COBL-KOSTL'
                                  ENTRIES-KOSTL.
    perform bdc_field       using 'COBL-PRCTR'
                                  ENTRIES-PRCTR.
    perform bdc_dynpro      using 'SAPMF05A' '0300'.
    perform bdc_field       using 'BDC_CURSOR'
                                  'RF05A-NEWKO'.
    perform bdc_field       using 'BDC_OKCODE'
                                  '/00'.
    perform bdc_field       using 'BSEG-WRBTR'
                                  ENTRIES-WRBTR.
    perform bdc_field       using 'BSEG-SGTXT'
                                  ENTRIES-SGTXT.
    perform bdc_field       using 'RF05A-NEWBS'
                                  ENTRIES-NEWBS.
    perform bdc_field       using 'RF05A-NEWKO'
                                  ENTRIES-NEWKO.
    perform bdc_field       using 'DKACB-FMORE'
                                  ENTRIES-FMORE.
    perform bdc_dynpro      using 'SAPLKACB' '0002'.
    perform bdc_field       using 'BDC_CURSOR'
                                  'COBL-GSBER'.
    perform bdc_field       using 'BDC_OKCODE'
                                  '=ENTE'.
    perform bdc_field       using 'COBL-GSBER'
                                  ENTRIES-GSBER.
    perform bdc_dynpro      using 'SAPMF05A' '0300'.
    perform bdc_field       using 'BDC_CURSOR'
                                  'BSEG-WRBTR'.
    perform bdc_field       using 'BDC_OKCODE'
                                  '/00'.
    perform bdc_field       using 'BSEG-WRBTR'
                                  ENTRIES-WRBTR.
    perform bdc_field       using 'DKACB-FMORE'
                                  ENTRIES-FMORE.
    perform bdc_dynpro      using 'SAPLKACB' '0002'.
    perform bdc_field       using 'BDC_CURSOR'
                                  'COBL-GSBER'.
    perform bdc_field       using 'BDC_OKCODE'
                                  '=ENTE'.
    perform bdc_field       using 'COBL-GSBER'
                                  ENTRIES-GSBER.
    perform bdc_dynpro      using 'SAPMF05A' '0300'.
    perform bdc_field       using 'BDC_CURSOR'
                                  'RF05A-NEWKO'.
    perform bdc_field       using 'BDC_OKCODE'
                                  '/00'.
    perform bdc_field       using 'BSEG-WRBTR'
                                  ENTRIES-WRBTR.
    perform bdc_field       using 'BSEG-SGTXT'
                                  ENTRIES-SGTXT.
    perform bdc_field       using 'RF05A-NEWBS'
                                  ENTRIES-NEWBS.
    perform bdc_field       using 'RF05A-NEWKO'
                                  ENTRIES-NEWKO.
    perform bdc_field       using 'DKACB-FMORE'
                                  ENTRIES-FMORE.
    perform bdc_dynpro      using 'SAPLKACB' '0002'.
    perform bdc_field       using 'BDC_CURSOR'
                                  'COBL-GSBER'.
    perform bdc_field       using 'BDC_OKCODE'
                                  '=ENTE'.
    perform bdc_field       using 'COBL-GSBER'
                                  ENTRIES-GSBER.
    perform bdc_dynpro      using 'SAPMF05A' '0300'.
    perform bdc_field       using 'BDC_CURSOR'
                                  'RF05A-NEWKO'.
    perform bdc_field       using 'BDC_OKCODE'
                                  '/00'.
    perform bdc_field       using 'BSEG-WRBTR'
                                  ENTRIES-WRBTR.
    perform bdc_field       using 'BSEG-SGTXT'
                                  ENTRIES-SGTXT.
    perform bdc_field       using 'RF05A-NEWBS'
                                  ENTRIES-NEWBS.
    perform bdc_field       using 'RF05A-NEWKO'
                                  ENTRIES-NEWKO.
    perform bdc_field       using 'DKACB-FMORE'
                                  ENTRIES-FMORE.
    perform bdc_dynpro      using 'SAPLKACB' '0002'.
    perform bdc_field       using 'BDC_CURSOR'
                                  'COBL-GSBER'.
    perform bdc_field       using 'BDC_OKCODE'
                                  '=ENTE'.
    perform bdc_field       using 'COBL-GSBER'
                                  ENTRIES-GSBER.
    perform bdc_dynpro      using 'SAPMF05A' '0300'.
    perform bdc_field       using 'BDC_CURSOR'
                                  'RF05A-NEWKO'.
    perform bdc_field       using 'BDC_OKCODE'
                                  '/00'.
    perform bdc_field       using 'BSEG-WRBTR'
                                  ENTRIES-WRBTR.
    perform bdc_field       using 'BSEG-SGTXT'
                                  ENTRIES-SGTXT.
    perform bdc_field       using 'RF05A-NEWBS'
                                  ENTRIES-NEWBS.
    perform bdc_field       using 'RF05A-NEWKO'
                                  ENTRIES-NEWKO.
    perform bdc_field       using 'DKACB-FMORE'
                                  ENTRIES-FMORE.
    perform bdc_dynpro      using 'SAPLKACB' '0002'.
    perform bdc_field       using 'BDC_CURSOR'
                                  'COBL-GSBER'.
    perform bdc_field       using 'BDC_OKCODE'
                                  '=ENTE'.
    perform bdc_field       using 'COBL-GSBER'
                                  ENTRIES-GSBER.
    perform bdc_dynpro      using 'SAPMF05A' '0302'.
    perform bdc_field       using 'BDC_CURSOR'
                                  'BSEG-SGTXT'.
    perform bdc_field       using 'BDC_OKCODE'
                                  '=AB'.
    perform bdc_field       using 'BSEG-HKONT'
                                  ENTRIES-HKONT.
    perform bdc_field       using 'BSEG-WRBTR'
                                  ENTRIES-WRBTR.
    perform bdc_field       using 'BSEG-MWSKZ'
                                  ENTRIES-MWSKZ.
    perform bdc_field       using 'BSEG-ZFBDT'
                                  ENTRIES-ZFBDT.
    perform bdc_field       using 'BSEG-SGTXT'
                                  ENTRIES-SGTXT.
    perform bdc_dynpro      using 'SAPLFWTD' '0100'.
    perform bdc_field       using 'BDC_CURSOR'
                                  'WITH_ITEM-WT_WITHCD(01)'.
    perform bdc_field       using 'BDC_OKCODE'
                                  '=GO'.
    perform bdc_dynpro      using 'SAPMF05A' '0700'.
    perform bdc_field       using 'BDC_CURSOR'
                                  'RF05A-NEWBS'.
    perform bdc_field       using 'BDC_OKCODE'
                                  '=BS'.
    perform bdc_field       using 'BKPF-XBLNR'
                                  ENTRIES-XBLNR.
    perform bdc_field       using 'BKPF-BKTXT'
                                  ENTRIES-BKTXT.
    perform bdc_dynpro      using 'SAPMF05A' '0700'.
    perform bdc_field       using 'BDC_CURSOR'
                                  'RF05A-NEWBS'.
    perform bdc_field       using 'BDC_OKCODE'
                                  '=BU'.
    perform bdc_field       using 'BKPF-XBLNR'
                                  ENTRIES-XBLNR.
    perform bdc_field       using 'BKPF-BKTXT'
                                  ENTRIES-BKTXT.
    perform bdc_field       using 'BDC_OKCODE'
                                  '=YES'.
    call transaction 'FB01' using bdcdata1 mode 'A'.
    ENDLOOP.
           Start new screen                                              *
    form bdc_dynpro using program dynpro.
       clear bdcdata1.
      bdcdata1-program  = program.
      bdcdata1-dynpro   = dynpro.
      bdcdata1-dynbegin = 'X'.
    append bdcdata1.
    endform.
           Insert field                                                  *
    form bdc_field using fnam fval.
       clear bdcdata1.
        bdcdata1-fnam = fnam.
        bdcdata1-fval = fval.
    append bdcdata1.
    endform.

    Hi
    You better use LSMW instaed of using BDC for FB01 Transaction. The Problem is not with REFRESH.
    Regards,
    Anji

  • Input does not take any manual entry

    hi interface masters,
    i have a screen field where i have f4 values attached to this field.
    now when the user wants to enter anything manually or when he tries to enter somthing on the input screen the screen should not allow him or write nothing on the screen.
    how can i make this in the attributes?
    can anyone help me.
    thank you,
    pasala.

    Hi Bhaskar,
    " Bhaskar I didn't Check the date of your Post, As some one updated the Very Old Thread.
    " If you still face this Use the following as this is a tested one else ignore
    Make your field Display only So that user can not enter or type any thing
    in POV
    Process on Value-Request.
    field carrid module F4_carrid.
    in Program.
    module F4_carrid.
    DATA :  begin of JTAB occurs 0,
        carrid type spfli-carrid,
    end of jtab.
      SELECT * FROM SPFLI INTO TABLE JTAB.
      CALL FUNCTION 'F4IF_INT_TABLE_VALUE_REQUEST'
        EXPORTING
          RETFIELD        = 'CARRID'
          DYNPPROG        = SY-REPID
          DYNPNR          = SY-DYNNR
          DYNPROFIELD     = 'CARRID'
          VALUE_ORG       = 'S'
          DISPLAY         = 'F'  " This Forces F4 Help for Display Field
        TABLES
          VALUE_TAB       = JTAB
        EXCEPTIONS
          PARAMETER_ERROR = 1
          NO_VALUES_FOUND = 2
          OTHERS          = 3.
    endmodule
    This is Second Option but I recommend the above method only
    Or Declare Variable in TOP Include
    data : f4_taken.
    in PAI.
    field your_field_name module Check on Input.
    in POV
    process on Value-Request.
    field Your_field module F4_for_field
    in program
    module check input.
    if F4_taken is initial.
    message 'You have to Take F4 help only to enter a Value here' type 'E'.
    else.
    clear F4_taken.
    endif.
    endmodule
    module f4_for_field.
    f4_taken = 'X'.
    endmodule
    Cheerz
    Ram

  • No manual entry in PR00 in case of Sales organization 5000 or 6000

    Hi Guru's
    My requirement is that eg if Sales organization is 1000 then user can enter PR00 amount manual while creating Sales Order
    IF is it 5000 or 6000 then PR00 will not allow any manual entry while creating Sales order
    Regards
    Arun
    Edited by: ArunSingh2010 on Mar 4, 2010 10:53 AM

    Hello,
    I am not sure but still you can try out the setting in the pricing procedure itself. Please navigate through the path as cited below:
    SPRO setting ---> Sales And Distribution ---> Basic Function ---> Pricing ---> Pricing Control --> Define and Assign Pricing Procedure.
    In the defination section where all the condition types are arranged for a Pricing Procedure, you can include a Routine in calculation type for the Condition Type PR00.
    Seek the help of ABAPer and put the logic as when the Sales Organsiation(VKORG) is 1000 then the Automatic determination should not be considered and Manual entry will be accepted.
    Kindly let me know the result of this exercise.
    Regards,
    Sarthak

  • Clearing of manual entries in GR/IR not happening

    Hi All,
    I've made two manual entries in the GR/IR account. The second entry being the reverse of the first, so basically they cancel out each other. But as these arent linked to a PO, the line items arent being cleared by F.13
    I tried manual clearing FB1s and F-04 but it picks up only one line item (the reverse line item i.e. credit item). And so I cant even manually clear these line items.
    Can you please provide a solution?
    Regards,
    Tejas

    Hi Tejas,
    Please have a look at Note : 178487, maybe it helps... it talks about several points like:
    1. In the master data of the G/L accounts, flag "Line item display" or "Open item management" was set for accounts which do not require line items.
    2. Update of FI data from the upstream modules is too detailed.
    3. Problems during clearing
    4. Data is kept too long in the system.
    But I am not very sure whether it answers your exact scenario.
    Coming to the point of clearing open line items 'easy way', as Janani mentioned, there seems to be no easy ways for clearing the open line items. As I understand, the primary reason for this could be because we are dealing with business sensitive data and the open line items are infact open because of some valid reason, and should not be closed using short cuts. What I mean is... a line item could be (or should be) open if there is some business transaction yet to be completed or it is closed if the transaction is completed and its the job of the user who is responsible for the transaction to make sure that the line item is cleared when the transaction is complete.
    In my experience, as you and Janani have experienced, it is normal that we see a lot of documents not archivable because of open items. In my previous experiences, we have handled it this way:
    1. Run the Archive run in test mode (prefarably with 'only incorrect docs in log')
    2. Give the log to the financial users/module owners to analyze the log (you can use FB99 also to see whether individual documents are archivable or not)
    3. Come up with a strategy to close the open items. Distribute the log to respective users (maybe according to doc type) and come out with a time schedule to close these items. It will definately take some time.. say weeks, to analyze each item and close it.
    4. Come up with a strategy so that so many documents are not kept open (unnecessarily) in the furture
    5. FI owners should have a relook whether the accounts managed under open item management are really required in OIM.
    In summary, no short cuts :(.
    Hope this helps,
    Naveen

  • Manual client deployment not picking up Group Policy provided registry settings

    We are having an issue with some laptops and machines that are turned off overnight not downloading necessary items for the SCCM 2012 client install.  We are going through the upgrade from 2007 to 2012 and are manually installing the client
    through the SCCM console.  Now that we have gotten the majority of our clients up to the 2012 version, we are planning to push the client going forward through WSUS.  Unfortunately, BITS is not allowing the update to come down in the time that some
    machines are on the network. 
    After some digging, we have concerns that the Group Policy setting for the command line properties are being ignored.
    We have the Group policy set as follows:
    /mp:oursccmserver.domain.com / service / forceinstall / BITSPriority:FOREGROUND SMSSITECODE=PRISITE FSP=OURFSP.domain.com
    However, the command line entry in the ccmsetup.log file on machines that have received the client as well as those not installing is showing the following:
    - Ccmsetup command line: "C\Windows\ccmsetup\ccmsetup.exe" /runservice /config:MobileClient.tcf
    - Command line parameters for ccmsetup have been specified. No registry lookup for command line parameters is required.
    Can someone tell me why it is not picking up the settings in the registry?  we have verified the settings are hitting the machines from GP, just does not seem to be using them which is why we thing it is allowing BITS to throttle the download of the
    pre-reqs.
    Thanks in advance for any suggesstions/help.

    Sorry for not updating this...
    After digging for days on this and contemplating calling MSFT support, I happened to check the Client Push installation properties and found the Install properties had been removed from each of our sites (1 primary and 2 secondary's).
    Although we do not have Client Push enabled for a variety of reasons, the properties have to be set for the manual push of the client from the console.  Once we re-entered the command line options for the Push install properties, manual installation
    from the console is working as expected.

  • Manual BRS system not picking the doc for clearing the payment

    While processing Manual bank statement if i am  using referance doc no system not picking doc no for clearing the bank payment. So that after finishing BRs I am matching the doc manually, in f-04. This is taking long time for processing. Anyone can tell me why ref doc no not working and to make it to work, or else any problem is there to use the field. please solve my query.
    Edited by: MANISFICO1 on Aug 1, 2011 11:49 AM

    Hi:
           Please follow as given and hopefully you will be able to resolve the issue.
    1...Go to SPRO...Financial Accounting....Bank...Business transactions...Payment Transactions...Manual Bank Statement..Create a new transaction with sign - and do not assign anything in posting rule for now and enter 15 in Algorithm field , save.
    2...In define posting keys and posting rules...create an account symbol for the one you did in step 1..In Assign account to account symbol please use account symbol created earlier and acc mode + and currency should be + too. In GL Account area please list the outgoing GL which you are using for outgoing postings..
    In create key for posting rule define a posting rule and now go back to step 1 and assign the posting rule you created to the transaction type
    In define posting rules please maintain posting rule as define above...in posting area assign 1. give nothing in first posting key.assign account symbol as created earlier...now give give posting key 50..give account credit Bank...and a suitable document you use for posting BRS...In posting type give 4.
    Your Manual Bank statement is ready ....
    Go to FS00 select your bank outgoing GL account there and in create/bank.interest tab double click on Field status group..in general data make assignment number mandatory for posting...
    Go to FB50....post and outgoing transaction using the GL given above it will require you to enter assignment number enter 123 and post.
    In FF67 Select the new statement , proceed with your normal data entry and give the transaction you created in above , enter value date, amount and in bank ref field enter 123 as given in FB50.
    Save and post it. Now it should work.
    Regards

  • Regarding pricing not picking from contract while creating service entry

    hello,
    we are facing a problem -we have created a contract with a service item and made a purchase order with the same reference as well. problem starts while creating service entry sheet while adopting the services its not picking the rate from the contract. please guide us how to proceed further.
    thanks,
    ritesh

    Hi Ritesh,
    please check the pricing date in the contract service item and also in the entry sheet header. The price could be probably not found due to different validity of the pricing condition in contract - the price from the contract is not valid on pricing date of   the service entry sheet.                                                                               
    The price in SES is determined on the base of the value in the                        
    field 'Price Reference Date of Entry Sheet' (ESSR-LBLDT). This field                  
    is located on 'Basic data' tab.                                                                               
    However, enhancement SRVESSR (customer exit EXIT_SAPLMLSR_010) can                    
    be used for changing this behaviour.    
    Regards,
    Edit

  • No manual entry of batch, if batch determination fails to pick batch in DO

    Dear Experts,
    I have a scenario, where I want system to stop users to pick batch manually in Delivery order creation (VL01N), if batch determination procedure fails to auto-pick batch due to any reason.
    By standard configuration, is there any-way to cater this requirement or we need user-exit only?
    PLease suggest.
    Regards,
    Praveen

    Hi Praveen
    The standard SAP allows you to change manually determined batch. When the batch is selected manually, the automatic determination has failed because the batch characteristics are not proper as per the condition set in VCH1. When you manually select the batch in the delivery, then the system would throw up a message saying Invalid batch (batch number) according to selection criteria in batch determination (Message no. VL215). This is a warning message. Try changing this to an error message in the user exit.
    Thanks
    Indranil

  • Service entry Sheet does not pick any Condition charges From Service PO

    Hi All
    Service entry Sheet does not pick any Condition charges From Service PO. What could be the reason ?

    HI,
    Please check Sap note 381030
    Along with other thing It says
    "Delivery costs are generally not supported in external services management and in case
    of blanket purchase orders, item category D or B. Instead of representing delivery
    costs via conditions, in case of service documents, freight costs and other, SAP
    recommends to add in additional service lines."
    So that is the reason you are not getting those account entry in the time of service entry sheet
    Use another service line with text ( or service master) for the additional costs as suggested by SAP
    Hope it clarifies

Maybe you are looking for

  • TNS-12535 TNS:operation timed out - Win 7 - WAN

    Hi! Database Version: Oracle 11.2.0.2 Server OS: Linux 64bit Database server "A" at different location (connecting through a 10 MBPS link - latency 15 ms). I can ping to server. When i connect to server "A" from client on Windows 7 I got TNS-12535 er

  • TNS Listener -ORA-12514 error following database shutdown - Oracle 11g

    Hi I have hit a problem with my oracle development database. When in sqlplus I executed the shutdown command, but nothing happened for several minutes and it was just hanging. No messages were displayed to the screen. The only thing was to close the

  • Is it best to import images as .psd files or .tif or another format?

    Hi, when working in the default 1080i is it best to import .psd files or go through the trouble of rendering the .psds to .tifs in Photoshop, to then import the .tifs?? It seems HDTV 1080p .psds have a different aspect ratio -- and, the black backgro

  • Smc emy2 stepper motor problems

    Hi, I am trying to set up a stepper motor to run with labview 8.2. I am pretty sure that the code I have written should work so I am trying to figure out if I have wired everything correctly, I hope this is the right place for this. I have added the

  • Automounting with udev/hal

    Hey, I've gone through this, specifically: KERNEL=="sd[a-z]", NAME="%k", SYMLINK+="usbhd-%k", GROUP="users", OPTIONS="last_rule" ACTION=="add", KERNEL=="sd[a-z][0-9]", SYMLINK+="usbhd-%k", GROUP="users", NAME="%k" ACTION=="add", KERNEL=="sd[a-z][0-9]