To get last year Net Value by fiscal period

Dear experts,
Since yesterday am trying to get solution where still unable to succeed.The report requirement is that they need Planned sales and actual sales qty of current fiscal year/period wise and in first column to get last year Actual sales for same period.(Ex:009.2006 to 011.2006 is input and in first coloumn 009.2005 to 011.2005)
This is the situation:
I have kept restricted W2 for fiscal year varient in filter and have created quantity sales(for last year) RKF with variable as "From fiscal year/period-13 and To Fiscal year/period-1"(with offset) and have placed in Key Figure structure in column section.Above this Structure have kept Fiscal year/period info object with variable "From Fiscal Year/period to To Fiscal year/period.This is because i need period wise breakup.
I understand that above we have "From Fiscal year/period infoobject" and below that in key figure structure u have the above quoted key figure with quantity sales of previous year.I want period wise it has to show me last year(period wise) quantity with current year Planned aty and sales Qty
Have gone through all threads and now it feels that i should to for variable exit ?...Do i have any option apart from variable exit?...If so could anybody can provide code for the same...Kindly gimme solution.
Maximum points will be awarded..
Thanks and Rgds
Chandru

Hi,
I hope, you are entering  values 009.2006 to 011.2006 for the variable "From Fiscal Year/period to To Fiscal year/period". Am I right?
If so, Donot restrict the fiscal year period with "From Fiscal Year/period to To Fiscal year/period like as you mentioned:--
<i>Above this Structure have kept Fiscal year/period info object with variable "From Fiscal Year/period to To Fiscal year/period.This is because i need period wise breakup.</i>
To get the break up Priod wise, taking Fiscal year period characterstics above  the structure is sufficient with ou any restriction.
Under the characterstic fiscal year period take two KF (same kf called SALES QTY two times with different heading like " last year Actual sales" and "current year Actual sales ") . First KF will be restricted with customer exit varible on Fiscal year period characterstic. Second KF will be restricted with user entry varible on Fiscal year period characterstic.
In case if you enter the value 009.2006 to 011.2006 as the iput to user entry varible, the code should generate the value 009.2005 to 011.2005 to Customer exit varible.
With rgds,
Anil Kumar Sharma .P
With rgds,
Anil Kumar Sharma. P

Similar Messages

  • Getting last year column value from a single table

    I am having the following columns in my table
    BRANCH_CD
    YYMM
    VNDR#
    VGROUP#
    SALES_TRGT_AMT
    SALES_ACTL_AMT
    CUM_TRGT_AMT
    CUM_ACTL_AMT
    i need to get sales_actl_amt from this year and sales_actl_amt from last year from a single table
    pls help
    thank you
    Edited by: 960991 on Nov 19, 2012 11:13 PM

    Hi ashish,
    but i can't use unions in my reports.
    once view my query :
    select t.branch_cd,b.branch_e_name,t.vndr#,v.vndr_name,
    sum(nvl(t.sales_actl_amt,0)) sales_actl_amt
    from inv_sales_trgt_val t,branches b,vendor v where
    t.branch_cd=b.branch_cd and
    t.vndr#=v.vndr# and
    (t.yymm between :fiscal_month and :fiscal_month2) and
    (:fiscal_month<>trunc(:fiscal_month2,-2)) and :fiscal_month2<>trunc(:fiscal_month2,-2)) and t.branch_cd between :from_branch and to_branch and
    t.vndr# between :from_vndr and :to_vndr
    group by t.vndr#,v.vndr_name,t.branch_cd,b.branch_e_name
    order by t.vndr#,t.branch_cd;
    how can i get last year sales_actl_amt .

  • Using Fiscal/Year Period to get last year all months data

    Hi,
    Had a requirement to get Last Years 1-12 months data based on Fiscal/Year Period. So here i am using Fiscal/Year period as my input. Please let me know with code.
    Regards,
    Vishnu

    Hi ,
    Where you want to write code ?
    Well the basic logic will be like :
    TYPES: BEGIN OF ty_range,
    sign TYPE c LENGTH 1,
    option TYPE c LENGTH 2,
    low TYPE c LENGTH 8,
    high TYPE c LENGTH 8,
    END OF ty_range.
    DATA : t_range TYPE TABLE OF ty_range,
    w_range LIKE LINE OF t_range.
    DATA :v_lastyear type c length 4  .
    v_lastyear = sy-datum(4) - 1 .
    w_range-sign = 'I'.
    w_range-option = 'EQ'.
    concatenate  v_lastyear '001'  t into w_range-low.
    concatenate  v_lastyear '012'  t into w_range-high.
    APPEND w_range TO t_range.
    ****it will select data from source package for last one year .Internally year and period store like YYYYPPP  (2011001)
    select  SOURCE_PACKAGE WHERE 0fiscper  IN t_range.
    you can modify selection statement as per your requirement .
    hope this will be helpful .
    Regards,
    Jaya Tiwari

  • Getting last year sale , this year sale and getting there percentage

    Hi,
    I am using three query in my report
    first query : to get this year actual sales
    second query : to get last year actual sales
    third query : to get target sales
    my first query is
    select t.branch_cd,b.branch_e_name,t.vndr#,v.vndr_name,
    sum(nvl(t.sales_actl_amt,0)) sales_actl_amt
    from inv_sales_trgt_val t,branches b,vendor v where
    t.branch_cd=b.branch_cd and
    t.vndr#=v.vndr# and
    (t.yymm between :fiscal_month and :fiscal_month2) and
    (:fiscal_month<>trunc(:fiscal_month2,-2)) and :fiscal_month2<>trunc(:fiscal_month2,-2)) and t.branch_cd between :from_branch and to_branch and
    t.vndr# between :from_vndr and :to_vndr
    group by t.vndr#,v.vndr_name,t.branch_cd,b.branch_e_name
    order by t.vndr#,t.branch_cd;
    my second query
    select t.branch_cd,b.branch_e_name,t.vndr#,v.vndr_name,
    sum(nvl(t.sales_actl_amt,0)) sales_actl_amt0 ,
    sum(nvl(t.sales_actl_amt,0)) last_year_sales_actl_amt
    from inv_sales_trgt_val t,branches b,vendor v where
    t.branch_cd=b.branch_cd and
    t.vndr#=v.vndr# and
    (t.yymm between :fiscal_month-100 and :fiscal_month2-100) and
    (:fiscal_month<>trunc(:fiscal_month2,-2)) and :fiscal_month2<>trunc(:fiscal_month2,-2)) and t.branch_cd between :from_branch and to_branch and
    t.vndr# between :from_vndr and :to_vndr
    group by t.vndr#,v.vndr_name,t.branch_cd,b.branch_e_name
    order by t.vndr#,t.branch_cd;
    and my third query is
    select t.branch_cd,b.branch_e_name,t.vndr#,v.vndr_name,
    sum(nvl(t.sales_actl_amt,0)) sales_actl_amt ,
    sum(nvl(t.sales_trgt_amt,0)) sales_trgt_amt
    from inv_sales_trgt_val t,branches b,vendor v where
    t.branch_cd=b.branch_cd and
    t.vndr#=v.vndr# and
    (t.yymm between :fiscal_month and :fiscal_month2) and
    (:fiscal_month<>trunc(:fiscal_month2,-2)) and :fiscal_month2<>trunc(:fiscal_month2,-2)) and t.branch_cd between :from_branch and to_branch and
    t.vndr# between :from_vndr and :to_vndr
    group by t.vndr#,v.vndr_name,t.branch_cd,b.branch_e_name
    order by t.vndr#,t.branch_cd;
    in second query i am created two summary column and one place holder column and one formula column to get the percentage % :
    cs_3=sales_actl_amt
    cs_4=last_year_sales_actl_amt
    cp_2
    cf_1(example :cp_2=cs_3/cs_4)
    I am getting all 100 percentage.
    in the third query i created two summary column and one place holder column and one formula column to get the percentage % :
    cs_1=sales_actl_amt
    cs_2=last_year_sales_trgt_amt
    cp_1
    cf_1(example :cp_1=cs_1/cs_2)
    Here i am getting correct percentage
    I need to get cf_1 percentage but it is getting 100 for all
    its urgent please help.
    thank you.

    Create three restricted key figures.
    In one restrict month by current month.
    In other use offset of -12 and -24 while restricting current month.

  • How to get Last Year Sales and YTD Sales without using AGO and TODATE?

    Hi all,
    I have got Company and Time dimensions and Sales Fact. My requirement is to get Last Year sales for each company without using AGO function and YTD without using TODATE function. (Due to performance issue as AGO and TODATE do not insert a Cache entry).
    Can someone please help me to achieve my requirement? Thanks in advance.

    Hi Satya,
    Thanks again for your reply. To start with I don't have data for the years 2012 and 2011 to test as I am using SH sample schema from Oracle. I have applied your solution but it does not seem to be working for the previous years like 2000, 2001. My requirement is to have a dashboard prompt "YEAR" and let the user choose whatever year he wants.
    Please have a look at the column formulas of my analysis (As per your solution) :
    ***here B_YEAR is replaced by CALENDAR_YEAR.  
    Amount: "F1 Sales"."Amount"
    AmountYTD:  FILTER("F1 Sales"."Amount" USING "D1 Time"."CALENDAR_YEAR" =YEAR(CURRENT_DATE))
    Amount LY: FILTER("F1 Sales"."Amount" USING "D1 Time"."CALENDAR_YEAR" =YEAR(CURRENT_DATE)-1)and the physical query generated by BI Server: (as you can see I have got a filter CALENDAR_YEAR= 2000)
    WITH
    SAWITH0 AS (select sum(T1074.AMOUNT_SOLD) as c1,
         sum(case  when T1035.CALENDAR_YEAR = TO_NUMBER(TO_CHAR(TO_DATE('2012-05-03' , 'YYYY-MM-DD'), 'yyyy'), '9999') then T1074.AMOUNT_SOLD end ) as c2,
         sum(case  when TO_NUMBER(TO_CHAR(TO_DATE('2012-05-03' , 'YYYY-MM-DD'), 'yyyy'), '9999') - 1 = T1035.CALENDAR_YEAR then T1074.AMOUNT_SOLD end ) as c3,
         T1035.CALENDAR_MONTH_DESC as c4,
         T1035.CALENDAR_YEAR as c5,
         T1035.CALENDAR_MONTH_ID as c6
    from
         TIMES T1035 /* D1 Time */ ,
         SALES T1074 /* F1 Sales */
    where  ( T1035.CALENDAR_YEAR = 2000 and T1035.TIME_ID = T1074.TIME_ID )
    group by T1035.CALENDAR_MONTH_DESC, T1035.CALENDAR_MONTH_ID, T1035.CALENDAR_YEAR)
    select distinct 0 as c1,
         D1.c4 as c2,
         D1.c5 as c3,
         D1.c1 as c4,
         D1.c2 as c5,
         D1.c3 as c6,
         D1.c6 as c7
    from
         SAWITH0 D1
    order by c3, c2 Thanks in advance.

  • Batch Job for ME59N getting error SE133 - Net value could not be determined

    HI,
    We can convert the PO automatically when run manually tcode ME59N  successfully.
    But when We schedule a batch job to run ME59N (RM06BB30) to create AUTO Purchase order for services item Purchase requistion.
    Getting error message SE133 "Net value could not be determined".  PO canot be converted automatically.

    Hi,
    Price/ Net value not picking!
    Check  info record  based on  Material Group for your service PR which need to be converted to PO.
    Also check activation of  Automatic Purchase order creation for Service requisitions in t.code: ML91.
    Check vendor master , schema group of vendor and check MM pricing procedure, the availability of condition type for service master for service PO.
    For more please read note 635511
    Regards,
    Biju K

  • Getting Last Year in @Range

    I know that using @CurrMbr here is extraneous, however I wanted to make sure it worked.
    @Range(Revenue->Dollars->@CurrMbr("Years"),@Children("Full Year"))
    This returns the specified slice of data for the current year and the children of full year, which are four quarters.
    However, this does not return last year:
    @Range(Revenue->Dollars->@Member(@PrevSibling(@CurrMbr("Years"))),@Children("Full Year"))
    I get the error:
    attempt to cross null member in function
    So how would I return the previous member in years, i.e., last year?
    Edit:
    When I use this:
    Revenue->Dollars->@Member(@PrevSibling("2012")),
    Instead of passing @CurrMbr("Years"), 2011 is passed correctly with PrevSibling. So I'm guessing that @CurrMbr("Years") is probably not returning the right type for the parameter PrevSibling needs.
    Edited by: user12268822 on Mar 10, 2013 6:31 PM

    Hi Marvin,
      For the momento you can't create MDX Dimension, only MDX Measures.
      You can create a variable in WEBI report, for the user perpective looks like a normal dimension.
      If the 0CALDAY.LEVEL01 has the name dimension DATE, you can create a variable using  the formula RelativeDate
    date RelativeDate(start_date;num_days)
    start_date: The start date
    num_days: The number of days from the start date, The num_days parameter can be negative to return a date earlier than start_date
    RelativeDate[Reservation Date];2) returns 17 December 2005 when [Reservation Date] is 15 December 2005.
    RelativeDate[Reservation Date];-3) returns 9 January 2007 when [Reservation Date] is 12 January 2007.
    106
    If you want to use MDX MEasures you can:
    Year To Date= <EXPRESSION>SUM(YTD(@Select(Key Figures\Billed Quantity)))</EXPRESSION>
    Measure on previous Member= <EXPRESSION>(@Select(Key Figures\BilledQuantity), [0CALMONTH].PrevMember)</EXPRESSION>
    Best regards,
       Fede

  • How to get last year records in P&L

    Hii gurus,
    I am creating Profit & Loss report.
    I need to show last year records.
    Please explain.....
    Thanks in advance......
    Moderator message: please do more research before asking, show what you have done yourself when asking.
    Edited by: Thomas Zloch on Sep 27, 2011 2:11 PM

    Hi,
    Better still if you want this to be easily changeable, i.e. not without a repository migration, put the search spec on the Applet in the Application - Personalization screen. In this way you can change the Search Spec in case of Business Requirement change without needing to go through a development cycle. Do not forget to do a Reload Personalization Rules after changing Search Spec to bring this in effect.
    If you have a standard requirement then do it preferably on the Applet so that you can use the BusComp at other locations also without having to deal with the search spec coming in uninvited.
    Thanks and Regards,
    Tanmay Jain.

  • Values by fiscal period

    Hi,
    I have a column "Total Cost To Date" which gets all costs per project.
    The actual value should be =Cummilated cost to last month. Say I am running the report in AUG any time the report should get the total cost till July.
    I have used offsetting but does not work and have also used Variable 0FYTLFP but not getting the correct values.
    the report gets only values for July not cummilayed values.
    Please help.
    Thanks
    Niren

    Use 0FPER  variable.
    Assuming you need to display the value till date and not Year till date.
    Create a Restricted Key Figure and select your key figure and the 0FISCPER characteristic.
    Right click on 0FISCPER and select restrict.
    Select value range and Between from the Selection Drop down
    Select Fixed value tab and transfer the lowest Fiscal period (e.g. Period 12 2006) available to the right. So you can see something like []012/2006; 012/2006
    Select Variables tab and drag 0FPER on the second 012/2006 range. So now you can see the value like [ ]012/2006; 0FPER. Right click on that and select Specify variable offsets and select -1.So now the value looks like [ ]012/2006; 0FPER-1.
    Save and execute the query.

  • Customer  exit to get the result in between two fiscal periods

    Hi Guys,
    I have a requirement  to write customer exit, in which i have to get the result for a range of fiscal periods,
    that is in Between   fiscal period1 and fiscal period3,
    and i am getting this Fiscal period from other variable called version in which it consists of combination of fiscalperiod and text
    and now i have filtered the fiscal period and stored in Final_val ( this is an interger), but  how can i use dynamically this Final_val to get the results in between Final_val1 and Final_val3 ( that means if the Final_val is 2008010 then i have to get the results in between 2008011 and 2009001).
    Please provide me the solution, with the possible piece of code

    Hi Diogo,
    Here is the code
    WHEN 'ZC_PVR'.
        DATA: FIN_YEAR(4) TYPE C,
              FIN_DATE(3) TYPE C,
              FIN_VAL(7) TYPE C.
        IF I_STEP = 2.
          READ TABLE I_T_VAR_RANGE INTO LT_VAR_RANGE WITH KEY VNAM = 'ZC_VCS'.
          IF SY-SUBRC EQ 0.
            CONCATENATE '20' LT_VAR_RANGE-LOW+2(2) INTO FIN_YEAR.
            CONCATENATE '0' LT_VAR_RANGE-LOW+4(2) INTO FIN_DATE.
            CONCATENATE FIN_YEAR FIN_DATE INTO FIN_VAL.
            CLEAR L_S_RANGE.
            L_S_RANGE-LOW =  FIN_VAL.
            L_S_RANGE-HIGH =  ''.
            L_S_RANGE-SIGN = 'I'.
            L_S_RANGE-OPT = 'BT'.
            APPEND L_S_RANGE TO E_T_RANGE.
          ENDIF.
        ENDIF.
    which i am using for Filter the fiscal period, after this when i tried to restrict on this "ZC_PVR" vairable and  set the offset like
    zc_pvr 1 to zc-pvr3 under value of ranges, but i am facing an error saying the " variable may be deleted or used incorreclty",
    could u plz suggest

  • Not getting Last year data in query

    Hi All
    i have created one query on cost element cube.i have two col in the query i.e amount(present year) and amount (past year).
    For getting the past year data I have set the offset -12 for the fiscalyear/ period variable in the query i also restricted the fiscal year variant v3 in the amount. but i am not getting the corect value  for the past year . if i run for 2011 and 2010 for the same period i am getting right value in Amount(present year) but if i run the query for 2011 for same period i am not geting right value in amount previous year data. Kindly help me how to  get right data.

    Hi Atul,
    There are certain restrictions when you are reporting over multiple time frames,
    1) You should not put the global restriction of the time period on which you want to display data e.g. 0CALMONTH or 0FISCPER etc.
    you can put the global restriction but it should be at high granularity. for e.g. when you are reporting on Present month and last month then you can put restriction on Year, here you should take care when you are giving input as first month then last month of previous year data will not be displayed untill year is restricted for current as well as previous year.
    Another thing is
    2) You should not put time characteristic in drill down otherwise data aggregation doesn't happen.
    If you want to take any time characteristic input then it should be included in the specific RKF only, though Input ready variables.
    Regards,
    Durgesh.

  • How to Get Prior Year Month Value in Query

    I have a query requirement to get the Sales and Sales Previous Year in the result line for a Product.
    Calendar Month is also in the rows of the query.
    Example - I would need Sales for 10/2009 and Sales Previous Year for 10/2008.
    I'm using the variable CMONTH as an interval with offsets to get 24 months before and after the current month.
    How can I get Sales Previous Year on the same line as using variable offsets on 0CMONTH does not work as
    0CMONTH is always considered to be the current month ?

    Yes, I understand - sorry, I was thinking about 0calmonth2 or is it 3 ??, the one with just the month, not the year, being in the rows.... it will give you the breakdown by months for each column.
    if you want to be able to select on the months, create an interval variable on the 0calmonth2 like mentioned already - you wont need to offset on that one though, because you already got the offset on the year...
    regards
    jacob
    Edited by: Jacob Jansen on Oct 8, 2009 7:18 PM
    Edited by: Jacob Jansen on Oct 8, 2009 7:20 PM

  • Last year value

    I am having a table inv_sales_trgt_val and columns
    branch_cd number(3),
    vndr# number(3),
    yymm number(6) ,
    vgroup# number(3),
    sales_trgt_amt number(11,2),
    sales_actl_amt number(11,2),
    cuml_trgt_amt number(11,2),
    cuml_actl_amt number(11,2),
    last_yr_yymm_amt number(11,2)
    In report i need to get sum(sales_actl_amt) which is present year and sum(last_yr_yymm_amt) which is last year ,i am getting sum(sales_actl_amt) correct value but sum(last_yr_yymm_amt) getting different value .so from sales_actl_amt can i get last year value in report.
    please help me
    thank you.

    Hi Joss,
    In SQL Server Analysis Services, we can can compare revenue with the hierarchy periods (year, month, day) by using the PARALLELPERIOD function, and now you want to compare with custom periods. (NOTE: We cannot compare it with the PARALLELPERIOD function
    since
    PARALLELPERIOD function returns a member from a prior period in the same relative position as a specified member. So if the first time span not equal to the second one (such as the first period is 3 days, and the second period is 2 month)).  Here
    is a sample query about PARALLELPERIOD function for your reference.
    with
    set Hotels as
    [Hotels].[Hotel ID].&[1015],
    [Hotels].[Hotel ID].&[5640],
    [Hotels].[Hotel ID].&[8800]
    set Period as [Arrival Date].[Date].[Month].&[2012]&[1]:[Arrival Date].[Date].[Month].&[2012]&[12]
    member [Arrival Date].[Date].[0] as sum({ Period })
    member [Total Amount N-1] as (PARALLELPERIOD([Arrival Date].[Date].[Year], 1, [Arrival Date].[Date].[Year].&[2012]), [Measures].[Total Amount])
    select
    [Measures].[Total Amount],
    [Measures].[Total Amount N-1]
    } on 0,
    nonemptycrossjoin
    Hotels,
    Hotels.[Hotel].children,
    *{[Arrival Date].[Date].[0]}
    } on 1
    from [Booking_Cube]
    Regards,
    Charlie Liao
    TechNet Community Support

  • Last Year Asset Depreciation Value Does not Accumulate in Jan2010

    Hi Experts,
    One asset Capitalization and Depreciation Start date is same.
    We Run the Depreciation up to last year the value is 800.
    In Jan Depreciation is 100.
    In Feb System is not Displaying the Accumulated Balance in Asset Explorer. (800 + 100).
    Please Advise me How can i get that accumulated Balance.

    The most tabs are based on yearly simulation In Feb System is not Displaying the Accumulated Balance in Asset Explorer. (800 + 100).
    Have a look to the tab posted values

  • PO net value

    Hi,
    I am trying to get the PO net value . me23n - header section -  tab 'Conditions' - field 'Net'
    on reading old threads i got some function modules
    ME_FILL_KOMK_PO
    ME_FILL_KOMP_PO
    ME_DETERMINE_NET_PRICE
    MM_NET_PRICE_CALCULATE
    ME_GET_PRICE_CONDITION
    ME_DETERMINE_SALES_PRICE
    ME_PRICING_MARKET_PRICE
    ME_SELECT_SOURCE_BY_PRICE
    CALCULATE_TAX_ITEM
    I am stil trying to figure out how to use these to get the PO Net value.
      I am not MM functional, I am an ABAPer
    Could you please give any guidance ?
    thank you in advance
    dipti

    Hi Dipti,
    Please check this
    ME_DETERMINE_NET_PRICE
      DATA:    BEGIN OF xa068 OCCURS 10.
              INCLUDE STRUCTURE a068.
      DATA:    END OF xa068.
    CALL FUNCTION 'ME_DETERMINE_NET_PRICE'
            EXPORTING
              i_kotabnr = '068'
              i_komg    = komg
              i_komk    = komk
              i_komp    = komp
              i_kappl   = 'M'
              i_date    = sy-datlo
              i_kschl   = xa068-kschl
            IMPORTING
              e_komp    = komp.
    MM_NET_PRICE_CALCULATE
    DATA: T_KONP LIKE KONP OCCURS 0 WITH HEADER LINE.
    CALL FUNCTION 'MM_NET_PRICE_CALCULATE'
        EXPORTING
          I_KOMK = KOMK
          I_KOMP = KOMP
        IMPORTING
          E_KOMP = KOMP
        TABLES
          T_KONP = T_KONP
        EXCEPTIONS
          OTHERS = 0.
    ME_DETERMINE_SALES_PRICE
    DATA: gtkomp TYPE t_stab_gtkomp WITH HEADER LINE.
    CALL FUNCTION 'ME_DETERMINE_SALES_PRICE'
             EXPORTING
                  I_EKKO                = EKKO
                  I_EKPO                = EKPO
                  I_T001                = T001
                  I_BUDAT               = PREISDATUM  "= Buchungsdatum
                  I_ONLY_LOCAL_CURRENCY = 'X'
             IMPORTING
                  E_VKWRT               = GTKOMP-VKWRT
                  E_VKWRA               = GTKOMP-VKWRA
             TABLES
                  I_TKOMV               = TKOMV.
    Best regards,
    raam

Maybe you are looking for

  • XML error when invoking a form created by live cycle

    I have created a pdf form with Live Cycle Designer 8.0. When I open the pdf document in the firefox browser, in many times I get an error message: XML analys error. This does not happen with Internet Explorer. Is there anything I can set in Live Cycl

  • Current Gen 2 iPod Touch on new Macbook Pro - will restore work?

    I backed up my ipod touch on the new macbook pro computer (right clicked on my ipod on the left nav in iTunes). I want to (1) update my ipod touch from 3.1.2 to the new 4.2 OS and (2) use my new macbook pro from this point forward. My question, if I

  • Problems during creation of journalling triggers

    Hi, I'm using headstart 6.5.1.13 and when I try to create journalling triggers with the HSU, the utility proceeds normal, but when I view the log there's an error, "Exception; Note that the text for this element may have been corrupted". Result, the

  • Lightroom installing problem

    I have problems installin Lightroom from Creative Cloud, some help please, I'm using a Mac....

  • SCXI-1001 will not test properly

    I have a SCXI-1001 chassis with two SCXI-1102 modules on board. I have one in slot 1 and one in slot 12. I have the chassis cabled to a DAQCard-AI-16E-4 PCMCIA card on a Dell laptop. Whenever I look at the PC Card Manager, it shows that the DAQCard i