Period Logic

Hi I have requirement below,
In the standard way the application includes the transaction values that belong to the calendar associated to the SOB. In Colombia, the 1st SOB has associated the corporate Fiscal Calendar (APR-MAR) and legally is necessary in Colombia detail all the information using the Annual Calendar (JAN-DEC).
SELECT A.Period_num,
A.PERIOD_NAME,A.PERIOD_YEAR,A.START_DATE,A.END_DATE,A.* FROM GL_PERIODS A
WHERE A.PERIOD_SET_NAME = 'BT CALENDAR'
AND A.PERIOD_TYPE ='1'
AND ( a.period_year = 2010 AND a.period_num BETWEEN :p_period_start AND :p_period_end-3 or a.period_year = 2009 AND a.period_num BETWEEN 10 AND 12) --) OR
--(a.period_year = 2009 AND a.period_num BETWEEN : p_period_start AND :p_period_end)
AND A.ADJUSTMENT_PERIOD_FLAG <>'Y'
This works fine when user enter with the range Period num 1 to 12,But it does not work with some scenarios like 1 to 1,etc.........
Can any one help me in this regard?
Regards
Raghavendra Nara

Hi,
Please don't post unformatted code.
You shouldn't even write unformatted code, but if you want to spend your time trying to read it, nobody can stop you. However, when you ask people on this forum for help, don't ask them to read that mess.
When posting code, or any formatted text, on this site, type these 6 characters
\(all small letters, inside curly brackets) before and after each section of formatted text.
If you format your code, one possible error becomes very clear:SELECT A.Period_num,
     A.PERIOD_NAME,
     A.PERIOD_YEAR,
     A.START_DATE,
     A.END_DATE,
     A.*
FROM     GL_PERIODS          A
WHERE     A.PERIOD_SET_NAME     = 'BT CALENDAR'
AND      A.PERIOD_TYPE          = '1'
AND     (      a.period_year     = 2010
     AND     a.period_num     BETWEEN     :p_period_start
                    AND     :p_period_end - 3
     or     a.period_year     = 2009
     AND     a.period_num     BETWEEN     10
                    AND      12
AND     A.ADJUSTMENT_PERIOD_FLAG     != 'Y'     -- Is this what you meant?
You are mixing AND and OR operators.  You whould never do that; always add parentheses so that the ANDs and ORs are separated.
Perhaps this is what you meant:AND     (      (     a.period_year     = 2010
          AND     a.period_num     BETWEEN     :p_period_start
                         AND     :p_period_end - 3
     or     (     a.period_year     = 2009
          AND     a.period_num     BETWEEN     10
                         AND      12
Another possible problem is that the right-operands to BETWEEN should be in order.  Perhaps you need to say:...          AND     a.period_num     BETWEEN     :p_period_start
                         AND     GREATEST ( :p_period_end - 3
                                   , :p_eriod_start
I hope that solves your problem.
If not, post a little sample data (CREATE TABLE and INSERT statements), a couple of sets of parameters (:p_period_start and :p_period_end) and the results (formatted) that you want from the sample data for each set of parameters.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

Similar Messages

  • My watches issue & rolling period logic

    Dear Concerned:
    I am unable to view my watches in control panel. I have been facing this problem since a long time , internet speed is awesome, other colleagues of mine can see their watches ,the page ends up in an error mentioned under
    Problem Report
    There was a communication problem.
    Message ID
    TCP_ERROR
    Problem Description     
    The system was unable to communicate with the server.
    Possible Problem Cause
        The Web server may be down.
        The Web server may be too busy.
        The Web server may be experiencing other problems, preventing it from responding to clients.
        The communication path may be experiencing problems.
    Possible Solution
    Try connecting to this server later.
    now in order to resolve the issue when i try to send an e mail to SAP network  using my official ID( i receive SDN correspondence on daily basis on my official ID  ) or other ID there is delivery failure and i am unable to send it to the concerned to get my issue resolved.
    Secondly i am unable to understand the rolling period logic with regard to daily decline in ranking.. I am top contributor on Financial Forum...Today my score is 662, by tomorrow it will be reduced by 20 or 30 , if the 30 days rolling logic would be applied then it should also stand true for other contributors. Rolling period logic was explained to me by Daily Decline in ranking score
    Their daily score does not decline. Why is that so? Would someone clarify the underlying logic.
    Regards

    Nilanjan,
    Thanks for your prompt reply as always.  Somehow I was able to get this thing working, please don't ask me how.  It was just a piece of bigger logic code. 
    I have awarded you full points..
    Thx,
    Rockdy

  • Open / Close Period Logic

    Hi All,
    I have developed new form with open/close periods for a organization.
    For Ex:
    Say i Jun-09, i have some lines not transfered to GL table. due to some errors. If i try to close the month it will show me error.
    if there are no lines then only forms should allow user to close the month else not?
    I need this logic, if any has done before can you please share me.
    Thanks,
    Siva

    Hi All,
    this is code i'm using in form level and calling the procedure at item level 'WHEN-LIST-CHANGED trigger.
    Block level trigger:
    declare
         l_status varchar2(1000);
    begin
         jnpp_period_control(:global.x_org_id, :ctrl_blk.inv_org_id, :jnpp_inv_period_control.period_name,
         l_status);
         if l_status !='OK' then
         ok_alr(l_status);
         return;
         set_item_property('jnpp_inv_period_control.period_status', ENABLED, PROPERTY_FALSE);
    end if;
    end;
    Procedure code:
    create or replace procedure jnpp_period_control
    (pi_org_id in number, pi_inv_org_id in number,
    pi_period_name in varchar2, pio_status in out nocopy varchar2) is
    l_chk varchar2(30);
    errexc exception;
    begin
    if pi_inv_org_id is null then
    pio_status := 'Inventory organization cannot be null [jnpp_period_control]';
    raise errexc;
    end if;
    begin
    select 1
    into l_chk
    from jnpp_interorg_header jh, jnpp_interorg_lines jl
    where jl.trx_id = jh.trx_id
    and jh.org_id = pi_org_id
    and jh.inv_org_id = pi_inv_org_id
    and jh.status = 'Open'
    and to_char(jh.creation_date,'MON-YYYY') = to_char(pi_period_name)
    and rownum = 1;
    if l_chk > 0 then
    pio_status := 'Error : you cannot close the period as some InterOrg documents are lying. Please clear before closing...'||sqlerrm;
    raise errexc;
    end if;
    end;
    exception
    when errexc then
    null;
    when others then
    null;
    end;
    but if i select the statement i'm getting the values, but it is allowing me to changes the item list in the from. it should not allow me to change if the select statement have any records.
    please can any one help me
    Thnxs,
    Siva

  • How to use variables in logical file name definition FILE

    Hi Friends,
    How can I use variables in logical file name definition (tcode FILE). The requirement is to pass value in these variables (based on selection criteria), and use it as part of file name. You quick response will be highly appreciated.
    Thanks,
    Kuldeep Joshi

    Hi,
    Thanks for your reply.
    In detail, the scenario is like I have created an Open Hub. Its working fine. Now I am planning to execute this open hub using process chain and for that I have to define the file output on application server along with logical file name (using tcode FILE). The logical file name contains two variables (defined in FILE) i.e. z_dept and z_fiscperiod.
    Filter value in DTP ( I will read these values from Ztable using routine )
    Dept = R&D
    Fisc period = 004/2009
    Variables defined in tcode FILE:
    z_dept for Dept
    z_fiscperiod for Fiscal Period
    Logical file name : <z_dept>_<z_fiscperiod>.csv
    Now the challenge is to populate filter values in these two variables so that the filter value can be used for naming the output file.
    My last option is to read/update SAP standard table used for storing variable values (i.e. PARAMVALUE)
    Please let me know if you can help me in this issue OR is there any standard method/FM to populate value in these variables
    Thanks,
    Kuldeep

  • Sanity check - Logical column named "Month"

    Logical Table: Period
    Logical Column: Month
    Version: 10.1.3.3
    - Can create a dashboard prompt on this column
    - Can create a report filter on this column, but it only works for the month of September
    - Logical SQL looks fine (WHERE Period."Month" = 'August')
    Is this some sort of reserved word weirdness?
    When I do the same report based on "Month Abbreviation" (Aug) I get data.
    Thoughts?

    I have this model and it works fine.
    If you create a new condition based on that column, and click to generate a list of values to select one, are you seeing the value 'August' in there? Could there be a space at the end of the string? ie. 'August_'

  • Logic pro crashes / freezes after running about a hour after updating

    Hope anyone can help me.
    I use G5 powermac.
    Had 10.3.x running with Pro6 with no problems (because of that I'm a big mac fan
    I updated to Pro7.2.x and also to OSX 10.4.8 when the problem started
    It's a strange problem, it seems something happens in my computer after a period of time.
    Logic is always crashing / freezes after working with it for about 1 hour (not sure exact time). When I just leave my mac on for the same period of time not running logic and start up Logic later it also freezes imidiately. But only logicpro seems to have this problem. All other programs working well.
    I need to restart my computer to start working again and then again after a period logic crashes again. I also installed logic express but express works well.
    I already reinstalled everything a few times and also working with just the basic (no plugs, interal audio, no hardware, no extra memory ect.) didn't help. I did changed discdrives, internal memory ect.
    Hope anyone has an idea what it can be
    Thanks for helping
    Powermac G5 SP 1.8   Mac OS X (10.4.9)   2GB int. mem

    hi,
    look here:
    http://docs.info.apple.com/article.html?artnum=302212
    hier you will find the right downloads for the firmware update for the late 2004 g5 1.8. choose the right updater for your system.
    it should also appear if you use the software update.
    after that it should work like before.
    hope that helps
    all the best
    andreas

  • Daily Depreciation

    Dear Experts,
    My client wants to calculate depreciation on daily basis i.e. for 360 or 365 days of a year and does not want to use period logic i.e. monthly. Now, I have a problem with configuring this requirement because in transaction AFAMP which as far as I know determines when depreciation starts there is no option for daily calculation. To clarify the case, I want a solution by which if I buy asset in 20th month, depreciation to be calculated for only 10 remaining days of month, or if I sell my asset on 8th of month, my depreciation be equivalent of 7 days of that month.
    Thanks for your time in advance,
    Regards,

    Rakesh,
    Follow the following steps:
    1. Tcode AFAMA
    2. Double click on dep key to be assigned "Dep to day" (Suggested to build a new Z Dep key)
    3. In next screen you will see the "Dep to Day" selection box as per screen attached.
    4. Period control helps decide the "Ord dep start date"
    5. No special period control is required in case business user will always update the dep start date.
    6. In general some companies like to follow 1st of the month, or half month convention etc. in that case you should open a new question, or there are some other discussion available which you can review.
    7. To verify your dep key working properly, create an asset, post some value, look up table "ANLB" field "PERFY" value should be 365 (Days)

  • CK40N -Costed and Marked but could not be released

    Hi
                 Materials got cost estimated  for 6169 materials correctly and also marked for 6,064 materials but got released for only 5 materials and rest of the material 6159 materials price not got released.
    Costing run date        18.02.2010
    Costing date from      08.03.2010
    Costing date to          04.04.2010
    Qty structure date     08.03.2010
    Valuation date            08.03.2010
                 I have tried to release from CK40N,system giving message:CK   705   Of 0 materials, 0 cost estimates were updated successfully.
                 Do i have to delete costing run through Ck44.
                 Kindly advise.
    Regards
    Dublin
    Edited by: Dublin on Mar 9, 2010 10:59 AM

    Hi All,
    Although this reply is too late for the original post, might be useful for future reference.
    CK40N will not be released in advance for the next posting period. E.g. If I am releasing my cost estimate on 29th July 2014 for August 2014, that will fall back to error message “Of 0 materials, 0 cost estimates were updated successfully Message no. CK705”
    Further even though you try to release individual cost estimate vide CK24, that would fall
    back to same message of posting period.
    This is mainly controlled by system / server date than MMPV and OB52 posting periods. For a
    change I set back MM posting period ( table MARV) to next month and FI posting
    period ( Table T001B ) to next month, still got the same message CK705 as
    mentioned above.
    I would conclude that in order to have adequate MBEW ( material price table) table control, this
    posting period logic has been hardcoded.
    Hope this helps.
    Regards
    Sushil

  • Billing in pstg perid

    Hi,
    i want to control my Billing Date as per the "Postings Periods" currently used.
    I mean it should not be Post/Pre dated beyond the posting periods.
    I know abt this user exit RV60AFZC for Invoice Date but i am confused
    on how to get the posting period logic in the user exit.
    Can anybody help me in this.
    Rgds

    Hi,
    We also have a similar requirement and use the following user exits for your requirement
    EXIT_SAPLV60B_004  of program ZXVVFU04
    or
    EXIT_SAPLV60B_008 of program ZXVVFU08
    Check in table T001B for posting periods by comparing billing date with MKOAR = D & S
    Rewards if it helps
    Regards
    Goutham

  • Logic of open cand close posting periods

    Hi Gurus
    Pls tell me the logic involved in OB52 Open and close posting periods
    Am giving Account type + only in settings then as per my knowledge system should not ask for the K or D separately to map in the settings
    Even now system is asking Account type K period 1 2009 is not opened.
    am thinking if i give Account type + in settings i need not map for other account types
    Pls guide me
    Thanks in advacne
    Sneha

    HI
    Same I maintained
    But system is asking for Acctount type D
    Scenario is we are Reversing Billing documents in the closed period
    Actual Billing happend on 10-12-08
    Same document we trying to reverse
    Same time Spl period 13 is opened for the account type +
    Then system triggering message period 13 2008 Account type is D is not opened.
    Then we opened the same finally got posted in period 13
    Here my doubts are
    1. am thinking that special period postings are only available to FI then why SD able to post in period 13
    2. If i map Account type + which is available all accounts types then why shud i map other account types
    Pls guide me
    Thanks
    Sneha

  • Logic for carry forward of previous stock to current period stock.

    Hi Experts,
    Client is using already MC.9 for see the stock analysis report, however as per there requirement we are exploring BOM as well as fetching quantity from table level as well. in my report I am experiencing  difficulty to carry forward previous period closing stock quantity to current period stock quantiy, if there is no received for current period, however the same is happens in MC.9
    Could any one tell me what is the logic behind MC.9 which is do carry forward previous period closing  stock to current period stock quantity in report.
    As per the requirement I am using S031, S032,S033, however unable to get logic for carry forward the previous month stock quantity to current month.
    have a requirement of creating a report of showing material stock period wise for each plant in below mention format.
    Header 1
    Header 2
    Header 3
    Header 4
    LFGJA/LFMON
    ROH (MT)
    HALB (MT)
    FERT (MT)
    11.2013
    100.000
    121.000
    121.00
    12.2013
    50.000
    12.000
    123.00
    01.2014
    23.231
    .23.234
    45.342
    02.2014
    23.231
    34.094
    45.098
    03.2014
    34.098
    98.983
    00.000
    04.2014
    00.000
    69.093
    98.098
    05.2014
    00.000
    89.098
    00.000
    For Example Break up of ROH material plant wise in below mention format.
    LFGJA/LFMON
    WERKS
    MENGE (MT)
    11.2013
    P001
    30.000
    11.2013
    P002
    50.000
    11.2013
    P003
    20.00
    Thanks in advance,
    SKN

    Hi,
       The last period closing stock = current period opening stock. You may get the details from MBEWH and S032 tables. Refer the doc: Material Stock and Valuation History tables - how to read them
    Regards,
    AKPT

  • How to create logical columns for current period and prior period

    Hello all.
    Is there any way in obiee to create a new logica column in BMM layer that says "CURRENT PERIOD" AND "PRIOR PERIOD" OR ONE SINGLE COLUMN THAT SAYS "PERIOD".
    In those columns what I need is if it a current period column it shoould have 03/01/2012-03/31/2012 (this month date range)
    and in prior period column I shouldhave 02/01/2012 -02/29/2012(which is previous month date range).These columns I will be using in my reports.
    Please help me if we can create any such columns with these conditions/requirements

    Hi,I have already created he dynamic variables.But I am not getting how to use those variables and create the new logical columns in bmm layer.
    this is what I am trying
    case when VALUEOF("Current Month begin date"."Current Month begin date") ='..' and VALUEOF("Current Month end date"."Current Month end date")
    ='..' then 'current period' end
    I don't really understand what I should write case when VALUEOF("Current Month begin date"."Current Month begin date") ='..'??

  • To make selection period mandatory in Logical Database Report

    Hi All,
    My report is using customized HR Report Category with selection period as Key Date.
    My requirement is to make Key Date as mandatory field and with default value as sydatum.
    Pls help .
    Regards,
    Nibha

    Hello,
    Although the selection screen will appear from the logical database you define, you can add your validation check at the event 'At selection-screen' to check if particular field is initial or not and give proper error message.
    Other way would be at the initialisation event use the following :
    loop at screen.
    if screen-name = 'P_NAME'.
    screen-input = '1'.
    endif.
    modify screen.
    endloop.
    Also at initialisation
    s_date = sy-datum.
    Regards,
    Mansi.

  • Read last period of infotype without logical database

    Hi,
    I'm looking for a FM that retrieves last period of one infotype without using logical database pnp, so rp-provide-from-last isn't a solution
    Now, I'm using a home made solucion:
    First I use HR_READ_INFOTYPE function to read all periods of infotype, then I sort the table by endda (descending) and get first register of table.
    But I really prefer using a SAP function module.
    Thanks in advance

    Hi,
    You can use the same FM "HR_READ_INFOTYPE" & pass begda = sy-datum and endda = '12/31/9999'.
    You will get only one record i.e. latest one.
    Hope this helps.
    Thanks,
    Sarika.

  • Logic - Average value for a particular Customer + Period

    Hello Experts,
    Please help me in the Logic to find out Average for the below scenario:
    This is the Output:
    Customer
    Period
    Payment Timeliness
    Cust-001
    01/97
    -4
    Cust-001
    01/97
    2
    Cust-001
    01/97
    3
    Cust-001
    04/97
    3
    Cust-001
    04/97
    5
    Cust-001
    06/97
    -4
    Cust-001
    07/97
    2
    Cust-001
    08/97
    3
    Cust-002
    09/97
    5
    Cust-002
    09/97
    4
    Cust-002
    10/97
    6
    Cust-002
    10/97
    -2
    Cust-002
    12/97
    -4
    Requirement is:
    Customer
    Period
    Payment Timeliness
    Cust-001
    01/97
    0.333
    Cust-001
    04/97
    4
    Cust-001
    06/97
    -4
    Cust-001
    07/97
    2
    Cust-001
    08/97
    3
    Cust-002
    09/97
    4.5
    Cust-002
    10/97
    2
    Cust-002
    12/97
    -4
    Display the Average of all the Payment Timeliness for a particular Month as shown above.
    My Code is:
    *&      Form  fetch_data
    FORM fetch_data .
      SELECT bukrs
             belnr
             gjahr
             blart
             bldat
             budat
             monat
       FROM  bkpf
       INTO  TABLE g_t_bkpf
       WHERE bukrs EQ '0470'
       AND   gjahr EQ p_year
       AND ( blart EQ 'EZ'
       OR    blart EQ 'DZ' )
       AND   monat IN s_month.
      IF sy-subrc EQ 0.
        SELECT bukrs
               belnr
               gjahr
               augdt
               buzei
               shkzg
               kunnr
               zfbdt
               zbd1t
               zbd2t
               zbd3t
               rebzg
         FROM  bseg
         INTO  TABLE g_t_bseg
         FOR ALL ENTRIES IN g_t_bkpf
         WHERE bukrs EQ g_t_bkpf-bukrs
         AND   belnr EQ g_t_bkpf-belnr
         AND   gjahr EQ g_t_bkpf-gjahr
         AND   kunnr IN s_kunnr.
        IF sy-subrc EQ 0.
        ELSE.
          WRITE:/'No Data Found'.
        ENDIF.
      ENDIF.
    ENDFORM.                    " fetch_data
    FORM display_paystats .
      DATA: l_due_date     TYPE faedt_fpos,
            l_timeliness   TYPE p,
            l_kunnr        type kunnr,
            l_counter      type i,
            l_period       type char5,
            l_tot_timeli   type p.
      IF g_t_bseg IS NOT INITIAL.
        WRITE: /10 'Customer ', 24 'Period ', 35 'Payment Timeliness'.
        WRITE: /10 sy-uline(44).
        LOOP AT g_t_bseg INTO g_wa_bseg.
          CLEAR l_due_date.
          CALL FUNCTION 'NET_DUE_DATE_GET'
            EXPORTING
              i_zfbdt       = g_wa_bseg-zfbdt
              i_zbd1t       = g_wa_bseg-zbd1t
              i_zbd2t       = g_wa_bseg-zbd2t
              i_zbd3t       = g_wa_bseg-zbd3t
              i_shkzg       = g_wa_bseg-shkzg
              i_rebzg       = g_wa_bseg-rebzg
           IMPORTING
             e_faedt       = l_due_date.
          READ TABLE g_t_bkpf INTO g_wa_bkpf WITH KEY
                                              bukrs = g_wa_bseg-bukrs
                                              belnr = g_wa_bseg-belnr
                                              gjahr = g_wa_bseg-gjahr.
          IF sy-subrc EQ 0.
            l_timeliness = g_wa_bkpf-budat - l_due_date.
          ENDIF.
          CLEAR g_wa_paystat.
          g_wa_paystat-kunnr = g_wa_bseg-kunnr.
          CONCATENATE g_wa_bseg-augdt+4(2) '/' g_wa_bseg-augdt+2(2) INTO g_wa_paystat-period.
          g_wa_paystat-timeli = l_timeliness.
          APPEND g_wa_paystat TO g_t_paystat.
          CLEAR : g_wa_bseg, g_wa_paystat.
        ENDLOOP.
        SORT g_t_paystat BY period.
        LOOP AT g_t_paystat INTO g_wa_paystat.
          WRITE:/10 g_wa_paystat-kunnr, 24 g_wa_paystat-period, 35 g_wa_paystat-timeli.
        ENDLOOP.
      ENDIF.
    ENDFORM.                    " display_paystats
    Where should I check the condition?
    I thought of assigning the Period / KUNNR in a Variable; then compare from the second record.
    But then how can I skip the check for 1st time inside a Loop?
    Since this is BSEG/BKPF entries; it is slow. So, please suggest some logic that doesn't affect the performance.
    Is it possible to write this logic within BSEG LOOP?
    Appreciate your help.
    Thank you!
    Thanks & Regards,
    Sowmya

    Found out by myself
    Closing the thread.
    SORT g_t_paystat BY kunnr period.
        LOOP AT g_t_paystat INTO g_wa_paystat.
          l_kunnr = g_wa_paystat-kunnr.
          l_period = g_wa_paystat-period.
          l_tot_timeli = g_wa_paystat-timeli.
          IF sy-tabix NE 1.
            READ TABLE g_t_paystat INTO g_wa_paystat1 WITH KEY kunnr  = l_kunnr
                                                               period = l_period.
            IF sy-subrc EQ 0.
              l_counter = l_counter + 1.
              l_tot_timeli = l_tot_timeli + 1.
            ELSE.
              g_wa_paystat-timeli = l_tot_timeli / l_counter.
              MODIFY g_t_paystat FROM g_wa_paystat TRANSPORTING timeli WHERE kunnr  = l_kunnr
                                                                       AND   period = l_period.
              CLEAR:
                l_counter,
                l_tot_timeli.
            ENDIF.
          ENDIF.
        ENDLOOP.
        DELETE ADJACENT DUPLICATES FROM g_t_paystat COMPARING kunnr period.
        LOOP AT g_t_paystat INTO g_wa_paystat.
          WRITE:/10 g_wa_paystat-kunnr, 24 g_wa_paystat-period, 35 g_wa_paystat-timeli.
        ENDLOOP.

Maybe you are looking for

  • ITunes on different computers with one external harddisc

    The iTunes music folder is on an external hard disc. It should be used on two Computers. And the contents of the librarys should be the same. Though the iTunes music Folder is set to the external disc,iTunes is not able to find the files. Why ? - If

  • MacBook Pro will only charge if it is completely Shut down..

    I have a 2009 MacBook Pro, and today it stopped charging while the computer was running. If i shut the computer completely off then it charges fine.

  • Problem in executing Linux command from Java Programme.

    hi everybody, can anybody help me to solve one problem i have. i want to capture the output of linux command "grep" in my java programme.but it is not working properly .(maybe this sub-process doesn't have permission to read files) here is my code an

  • Knowledge management vs. Document management.

    Hi All, When it comes to implementation of KM and DM in SharePoint, both looks similar to me. I am really confused between two when it comes to implementation. I am wondering what KM has extra that DM doesn't have when it comes in implementation in S

  • Local Director SNMP for CPU and Memory

    Is there any way to get the CPU and memory utilization from a Local Director using SNMP? When I do an SNMP walk, I don't see any objects for CPU and memory. Thank you