Fiscal QTD and Fiscal QTD - Same Quarter, Prior Year

Hello,
I am having some issues creating the DAX formulas in my Tabular model for Fiscal QTD.  Our fiscal period ends on Feb 28th (or 29th).  I managed to get the Fiscal QTD working by using the following formula:
Transaction $ Fiscal QTD:=CALCULATE (
    [Transaction $ Current Day],
    FILTER (
        ALL ( 'Dates' ),
        'Dates'[Fiscal Year] = VALUES(Dates[Fiscal Year])
            && 'Dates'[Fiscal Quarter] = VALUES ( 'Dates'[Fiscal Quarter] )
            && 'Dates'[Calendar Date] <= MAX ( 'Dates'[Calendar Date] )
However when I try to use this formula for Fiscal QTD, Same Quarter-Prior Year, I get an incorrect total:
Transaction $ Fiscal QTD Prior Year:=CALCULATE (
    [Transaction $ Current Day],
   FILTER (
        ALL ( 'Dates' ),
        'Dates'[Fiscal Year] = VALUES(Dates[Fiscal Year]) - 1
            && 'Dates'[Fiscal Quarter] = VALUES ( 'Dates'[Fiscal Quarter] )
            && 'Dates'[Calendar Date] <= MAX ( 'Dates'[Calendar Date])
Values in the Fiscal Quarter and Fiscal Year columns of the date dimension are integers.
Does anyone have any insight into Fiscal QTD DAX formulas?
Cheers,
Stan

Does anyone have a suggestion for Stan?
Thanks!
Ed Price, Azure & Power BI Customer Program Manager (Blog,
Small Basic,
Wiki Ninjas,
Wiki)
Answer an interesting question?
Create a wiki article about it!

Similar Messages

  • CURRENT YEAR SALES DATE PARAMATER AND PRIOR YEAR SAME DATE RANGE

    I am pulling data from a SQL view dbo.view that has current and historical SOP data by line.  The date paramater is a date range,  uppr date and lower date formulas are in the report.  I need to include prior year SOP data for the same prior year date range in the detail.  I have tried adding the view in twice with no luck, just duplications.  Ultimately I want to supress the detail and only show the totals by customer so it is comparitive.  Thanks for your help.  Jayne

    OK
    lets simplify it
    get a test data source with some simple dates in it.
    get the report logic working.
    it looks like you have the right formula ideas but lets go for
    @upperthisyear
    @upperlastyear
    @lowerthisyear
    @lowerlastyear
    then assuming a date field of {table1.date}
    the record selection would be
    if (@upperthisyeare > {table1.date} and @lowerthisyear < {table1.date}) or (@upperlastyeare > {table1.date} and @lowerlastyear < {table1.date}) then 1 else 0
    I would test this by using it as a formula field with the test data.

  • Calculate total and average for same key figure

    Hi Experts,
    I have a requirement where I need to calculate total and average for same key figure no of employees.
    eg:                
    If I enter 03,2009 as Input the reuslt should give from financiual year starting to current month.
         11.2008      12.2008     1.2009     2.2009     3.2009        average
             11          10       12       10        10         10.6
             10         10       11       12        10         10.6
    total         21         20       23       22        20          21.2
    we have only one characteristic in rows... companycode.
    Waiting for your Inputs.
    Regards
    Prasad Nannuri

    no it will work for u
    you have to use variable on 0calmonth or fiscal period depending on what Time characteristic u are using.
    lets say that variable is zcalmonth
    it is based on 0calmonth for e.g.
    now u restrict keyfigure with this variable zcalmonth with time char. = 0CALMONTH
    copy and paste the restricted keyfigure
    now set offset for variable in  variable selection screen dialog box = -1
    repeat this until u want
    make this variable mandatory
    now at query execution user will select any value for month/year
    and u will see all 5 months in result set
    now there can be maximum 12 months in a year, so u end up creating only 12 restricted keyfigures.
    use YEAR in restricted keyfigure too, and restrict it with YEAR VARIABLE processing by CUSTOMER EXIT = CURRENT YEAR
    in this case it will automatically removes any additional values...
    for e.e.g
    YEAR = 2008 only
    User entered 6/2008
    so lets say ur financial year starts in  april 2007 and ends in april 2008
    so u expect to see
    4/08
    5/08
    6/08
    but u created 12 restricted keyfigures , so it will show upto
    4,5,6 months only

  • Convert the 0CALQUARTER into previous year same quarter

    Hi All,
    How to conver the 0CALQURTER to Previous year same quarter in User exit (CMOD).
    Please give a sample code.
    Thanks

    Hi Chakri,
    The Sample code is:
    DATA: L_S_RANGE TYPE RSR_S_RANGESID.
    DATA: LOC_VAR_RANGE LIKE RRRANGEEXIT.
    Data: v_loc_year(4) TYPE n.
    Data: v_pre_year(4) TYPE n.
    Data: v_month(2) TYPE c.
    CASE I_VNAM.
    to calculate "Year to Last month" from fiscal year/period with user entry
      WHEN 'ZCAL_QUAR'.
        IF I_STEP = 2. "after the popup
          LOOP AT I_T_VAR_RANGE INTO LOC_VAR_RANGE
        WHERE VNAM = 'ZCAL_QUAR1'.
            CLEAR L_S_RANGE.
            v_month = LOC_VAR_RANGE-LOW+4(2).
            v_loc_year = LOC_VAR_RANGE-LOW+0(4).
            v_pre_year = v_loc_year - 1.
           CONCATENATE v_pre_year v_month INTO result.
          ENDLOOP.
        ENDIF.
    ENDCASE.
    **ZCAL_QUAR is your User Exit Variable, ZCAL_QUAR1 is your normal selection variable where user enter the value.
    Hope this helps.
    Let me know if it doesnt work.
    Regards,
    Ravi Kanth
    Edited by: Ravi kanth on Apr 27, 2009 10:08 AM

  • Need to apply MTD logic for actual and prior year

    Hi Team,
    We are facing an issue with MTD calculation based on formula variables,
    Issue: MTD Only (Actual and Prior Year) – show the same value for MTD. 
    Requirement:
    When the query is run for a selected month, the query should be run for that month based on the Last TECO Date (Input Variable).
    • For example, dashboard is run for January 2014, the calculation of MTD should be based on the Last TECO Date : i.,e if I enter older date/month (not current date)[ 1/20/2014 means it should calculate for 1/1/2014 – 1/31/2014]
    • If the dashboard is run for the current month, the MTD calculation should be on Last TECO Date = 1st day of month – Current Day
    The above same calculation logic should be applicable for MTD prior year: instead of the input variable value, the value for previous year should be considered
    Final Calculation:
    If Last Labour Date is blank, 0, else Last TECO Date – Last Labour Date (by individual line item)
    Here we created two formula variables for last teco date and last labour date.
    Also created 2 Customer Exit variable for MTD Actual calculation.
    We have pulled the formula variable and CE variable into the selection and created a new CKF (Teco date).
    We have done the final calculation on the basis of the ( (labour date ==0)*0 + last teco date-last labour date )for MTD ACTUAL.
    MTD Prior Year-
    when have done calculation on the basis of the( (labour date ==0)*0 + last teco date-last labour date )for MTD Prior year by giving offset -12 to the value.
    Here for MTD Actual and MTD Prior year values are coming same  ,we tried with by doing customer exit variables as well, Still values are coming same.
    please give your valuable inputs/suggestions to proceed for this requirement .

    I assume the Sales measure is a monthly measure. The Prior year calculation as I described will give you the sales for the same month in the previous year when selecting month in your report. When selecting year it will add up all months of the prior year until now and you will indeed see the Prior year YTD.
    If you want to see the total sales for the previous year you have to use the same calculation as 'Prior year' and map it to the year level of your time dimension. This will work as a 'partition by year'.

  • Querying the PRIOR YEAR Quarter QTy

    Hi Friends and All,
    I need your help in querying the PRIOR YEAR Quarter QTy.Please suggest me
    Year     Qrt     QTY
    1970     Q1     100
    1970     Q2     75
    1970     Q3     36
    1970     Q4     46
    1971     Q1     99
    1971     Q2     20
    1971     Q3     49
    1971     Q4     60
    1972     Q1     80
    1972     Q2     39
    1972     Q3     50
    1972     Q4     49
    2008     Q1     100
    2008     Q2     200
    2008     Q3     300
    2008     Q4     400
    2009     Q1     345
    2009     Q2     456
    2009     Q3     178
    suppose if the user select year 2008, then the prvious year 2007 last quarter values should be displayed
    Thanks in Adv,
    Claoker
    Edited by: user12146923 on Nov 4, 2009 10:53 AM

    Hi,
    Perhaps the best way is a self-join, where you act like one table (c in the example) containes the current year's data, and another table (p) contains the previous year's data, if any.
    SELECT       c.year
    ,       c.qrt
    ,       c.qty
    ,       p.year
    ,       p.qty
    FROM          table_x     c
    LEFT OUTER JOIN     table_x     p     ON     p.year     = c.year - 1
                                AND     p.qrt     = c.qrt
    ORDER BY  c.year
    ,            q.qrt
    ;

  • Server 2008R2 and Exchange on Same server

    Hello Everyone,
    I have taken over the IT Department for a small County Government and have found that the prior contractor installed Exchange 2010 on the same server that is running Active Directory. This machine is also acting as the DC. I would really appreciate any help
    in figuring out which one will be easier to move. I am planning on ordering a new server but it will have Server 2012 on it. I am looking for any help and instructions of which one would be the best to move and what is the best way to accomplish this.
    Thanks in advance.

    Hello,
    once a DC has Exchange installed demoting this DC is NOT SUPPORTED operation!!!
    First you MUST move Exchange to another machine. Therefore ask the Exchange experts in the already mentioned forum.
    Best regards
    Meinolf Weber
    MVP, MCP, MCTS
    Microsoft MVP - Directory Services
    My Blog: http://blogs.msmvps.com/MWeber
    Disclaimer: This posting is provided AS IS with no warranties or guarantees and confers no rights.
    Twitter:  

  • Previous and Prior Year Date Values

    How do I get the Previous, Prior year month and Prior year previous month values from a given date?
    Ex: Input would be: 05/01/2008
    The output should be:
    05/01/2008 - Current Month
    04/01/2008 - Previous Month for the Current Year
    05/01/2007 - Prior year current Month
    04/01/2007 - Prior Year Previous Month
    Please let me know..

    Hi,
    Then you'll probably do a self-join. In one copy of the table, you'll get the data from date d1, and in the other copy, you'll get the data from date ADD_MONTHS (d1, -12).
    If, ultimately, you are going to show four sets of figures (from four different rows representing four different dates) on the same output line, then you may find it more convenient to do a pivot rather than a self-join. Search for the buzz word "pivot" and you'll get lots of examples. You might start by selecting four rows:
    WHERE   dt IN
            ( d1
            , ADD_MONTHS (d1, -1)
            , ADD_MONTHS (d1, -12)
            , ADD_MONTHS (d1, -13)
            ) ...and then pivoting that data into four columns:
    SELECT  ...
    ,       MAX (CASE WHEN dt = d1                   THEN val END) AS this_month
    ,       MAX (CASE WHEN dt = ADD_MONTHS (d1, -1)  THEN val END) AS one_month_ago
    ,       MAX (CASE WHEN dt = ADD_MONTHS (d1, -12) THEN val END) AS one_year_ago
    ,       MAX (CASE WHEN dt = ADD_MONTHS (d1, -13) THEN val END) AS thirteen_months_ago
    ...

  • Translating at Prior Year and Plan Rates

    I have a rule with a few accounts that are populated by values out of the P&L rollup. Here is an example: in my Calculate Sub, I have:
    If pov_TransCur = False then          
    HS.Exp "A#NetSales_PYRates=A#NetSales.I#[ICP Top]"
    End If
    Where pov_TransCur = HS.Value.IsTransCur
    And in my Sub Translate, I have:
    PY_Avg_Rate = HS.GetRate("A#AverageRate.Y#Prior")
    HS.Clear"A#NetSales_PYRates"
    HS.TransPeriodic "A#NetSales_PYRates","",PY_Avg_Rate,""
    The Results in my Child Entity are:
    Entity Currency USD
    Net Sales 7.194 Mill. 7.203 Mill
    NetSales_PYRates 7.194 Mill. 6.144 Mill.
    Which is Great, that is what I want.
    However at the Parent Level I get:
    Entity Currency USD
    Net Sales 7.203 Mill. 7.203 Mill
    NetSales_PYRates 7.203 Mill. 7.203 Mill.
    I need to see the 6.144 Million in USD in the NetSales_PYRates accounts , the other child entities don't have any data.
    Any ideas in how to correct this issue?
    Thanks in advance

    Wow, it took me a while to set this reply, I was stuck on Rich Text format, and I did not have a box for the body of the message. Anyway, thanks; however, I keep getting the same results. My rules are quite simple, in the calculate sub routine I only have the population of Beginning Balances for Rollforward accounts, plus these Prior Year and Plan Rate accounts. While there is more than just the net sales account, there is nothing else in it. Here is What I have
    If HS.Entity.IsBase("", "") = True And HS.Value.Member() = "<Entity Currency>" Then
              HS.Exp "A#NetSales_PYRates=A#NetSales.I#[ICP Top]"
              HS.Exp "A#Material_PYRates=A#CosMat+A#DirMatVar"
              HS.Exp "A#DirLabor_PYRates=A#CosLabor+A#DirLaborVar"
              HS.Exp "A#FactoryOH_PYRates=A#CosOH+A#Manufacturing"
              HS.Exp "A#OthCostOps_PYRates=A#OtherCostOfOps"
              HS.Exp "A#InvProv_PYRates=A#ShrinkProv+A#ObsolProv+A#LIFOFIFOProv"
              HS.Exp "A#ShipHand_PYRates=A#ShipHand"
              HS.Exp "A#Engin_PYRates=A#Engineering"
              HS.Exp "A#Sell_PYRates=A#Selling"
              HS.Exp "A#Admin_PYRates=A#Admin"
              HS.Exp "A#GLSPPE_PYRates=A#GainLossSalePPE"
              HS.Exp "A#MiscIncExp_PYRates=A#MiscIncExp"
              HS.Exp "A#ONon_PYRates=A#NonOpIncExp-A#GainLossSalePPE-A#MiscIncExp"
              HS.Exp "A#NetSales_PLRates=A#NetSales.I#[ICP Top]"
              HS.Exp "A#Material_PLRates=A#CosMat+A#DirMatVar"
              HS.Exp "A#DirLabor_PLRates=A#CosLabor+A#DirLaborVar"
              HS.Exp "A#FactoryOH_PLRates=A#CosOH+A#Manufacturing"
              HS.Exp "A#OthCostOps_PLRates=A#OtherCostOfOps"
              HS.Exp "A#InvProv_PLRates=A#ShrinkProv+A#ObsolProv+A#LIFOFIFOProv"
              HS.Exp "A#ShipHand_PLRates=A#ShipHand"
              HS.Exp "A#Engin_PLRates=A#Engineering"
              HS.Exp "A#Sell_PLRates=A#Selling"
              HS.Exp "A#Admin_PLRates=A#Admin"
              HS.Exp "A#GLSPPE_PLRates=A#GainLossSalePPE"
              HS.Exp "A#MiscIncExp_PLRates=A#MiscIncExp"
              HS.Exp "A#ONon_PLRates=A#NonOpIncExp-A#GainLossSalePPE-A#MiscIncExp"
    End If
    End Sub
    and for the Translate Sub I have:
    Sub Translate ()
    Plan_Avg_Rate = HS.GetRate("A#AverageRate.S#Plan")
    PY_Avg_Rate = HS.GetRate("A#AverageRate.Y#Prior")
    'HS.Clear"A#NetSales_PYRates"
    HS.TransPeriodic "A#NetSales_PYRates","",PY_Avg_Rate,""
    'HS.Clear"A#Material_PYRates"
    HS.TransPeriodic"A#Material_PYRates","",PY_Avg_Rate,""
    'HS.Clear"A#DirLabor_PYRates"
    HS.TransPeriodic"A#DirLabor_PYRates","",PY_Avg_Rate,""
    'HS.Clear"A#FactoryOH_PYRates"
    HS.TransPeriodic"A#FactoryOH_PYRates","",PY_Avg_Rate,""
    'HS.Clear"A#OthCostOps_PYRates"
    HS.TransPeriodic"A#OthCostOps_PYRates","",PY_Avg_Rate,""
    'HS.Clear"A#InvProv_PYRates"
    HS.TransPeriodic"A#InvProv_PYRates","",PY_Avg_Rate,""
    'HS.Clear"A#ShipHand_PYRates"
    HS.TransPeriodic"A#ShipHand_PYRates","",PY_Avg_Rate,""
    'HS.Clear"A#Engin_PYRates"
    HS.TransPeriodic"A#Engin_PYRates","",PY_Avg_Rate,""
    'HS.Clear"A#Sell_PYRates"
    HS.TransPeriodic"A#Sell_PYRates","",PY_Avg_Rate,""
    'HS.Clear"A#Admin_PYRates"
    HS.TransPeriodic"A#Admin_PYRates","",PY_Avg_Rate,""
    'HS.Clear"A#GLSPPE_PYRates"
    HS.TransPeriodic"A#GLSPPE_PYRates","",PY_Avg_Rate,""
    'HS.Clear"A#MiscIncExp_PYRates"
    HS.TransPeriodic"A#MiscIncExp_PYRates","",PY_Avg_Rate,""
    'HS.Clear"A#ONon_PYRates"
    HS.TransPeriodic"A#ONon_PYRates","",PY_Avg_Rate,""
    'HS.Clear"A#NetSales_PLRates"
    HS.TransPeriodic"A#NetSales_PLRates","",Plan_Avg_Rate,""
    'HS.Clear"A#Material_PLRates"
    HS.TransPeriodic"A#Material_PLRates","",Plan_Avg_Rate,""
    'HS.Clear"A#DirLabor_PLRates"
    HS.TransPeriodic"A#DirLabor_PLRates","",Plan_Avg_Rate,""
    'HS.Clear"A#FactoryOH_PLRates"
    HS.TransPeriodic"A#FactoryOH_PLRates","",Plan_Avg_Rate,""
    'HS.Clear"A#OthCostOps_PLRates"
    HS.TransPeriodic"A#OthCostOps_PLRates","",Plan_Avg_Rate,""
    'HS.Clear"A#InvProv_PLRates"
    HS.TransPeriodic"A#InvProv_PLRates","",Plan_Avg_Rate,""
    'HS.Clear"A#ShipHand_PLRates"
    HS.TransPeriodic"A#ShipHand_PLRates","",Plan_Avg_Rate,""
    'HS.Clear"A#Engin_PLRates"
    HS.TransPeriodic"A#Engin_PLRates","",Plan_Avg_Rate,""
    'HS.Clear"A#Sell_PLRates"
    HS.TransPeriodic"A#Sell_PLRates","",Plan_Avg_Rate,""
    'HS.Clear"A#Admin_PLRates"
    HS.TransPeriodic"A#Admin_PLRates","",Plan_Avg_Rate,""
    'HS.Clear"A#GLSPPE_PLRates"
    HS.TransPeriodic"A#GLSPPE_PLRates","",Plan_Avg_Rate,""
    'HS.Clear"A#MiscIncExp_PLRates"
    HS.TransPeriodic"A#MiscIncExp_PLRates","",Plan_Avg_Rate,""
    'HS.Clear"A#ONon_PLRates"
    HS.TransPeriodic"A#ONon_PLRates","",Plan_Avg_Rate,""
    End Sub
    There is nothing in here that can cause the results I have. I don't understand why yours will work and my won't, but I will keep looking for a solution.

  • How to use the Time Variants PYTD and Prior Year Annual?

    Hi,
    We have a time dimension which has the generic columns i.e Month, Year.
    We need to calculate the Time variants for the Facts Say Sales. I was able to calculate the Prior Month, Current YTD
    I have some doubts regarding the other variants:
    1. Prior Year : Does this include the Prior Year Annual?
    2. Prior YTD: How to calculate it?
    Somehow I am getting the same results for PYTD and Prior Year.
    The formula used are :
    Prior Year:
    AGO(Sales, Year, 1)
    PYTD:
    AGO(Sales CYTD, Year, 1)
    Has anybody encountered similar issue?

    I assume the Sales measure is a monthly measure. The Prior year calculation as I described will give you the sales for the same month in the previous year when selecting month in your report. When selecting year it will add up all months of the prior year until now and you will indeed see the Prior year YTD.
    If you want to see the total sales for the previous year you have to use the same calculation as 'Prior year' and map it to the year level of your time dimension. This will work as a 'partition by year'.

  • To upload a RTF and a PDF file to SAP R/3 and print the same through SAP

    Hi,
    I have a requirement to upload a PDF file and a RTF file to SAP R/3 and print the same.
    I wrote the following code for uploading a RTF file to SAP R/3 and print the same. However, the problem is , the formatting present in the RTF document( bold/italics..etc) is not being reflected when I do the 'print-preview' after the executing the code below :
    report z_test_upload .
    data: begin of itab occurs 0,
             rec type string,
          end of itab.
    data: options like itcpo.
    data: filename type string,
          count type i.
    data: filetype(10) type c value 'ASC'.
    DATA: HEADER  LIKE THEAD    OCCURS   0 WITH HEADER LINE.
    DATA: NEWHEADER  LIKE THEAD    OCCURS   0 WITH HEADER LINE.
    DATA: ITFLINE LIKE TLINE    OCCURS   0 WITH HEADER LINE.
    DATA: RTFLINE LIKE HELP_STFA OCCURS   0 WITH HEADER LINE.
    DATA:   string_len TYPE i,
            n1 TYPE i.
    selection-screen begin of block b1.
      parameter: p_file1(128) default 'C:\test_itf.rtf'.
    selection-screen end of block b1.
    AT SELECTION-SCREEN ON VALUE-REQUEST FOR p_file1.
      CALL FUNCTION 'F4_FILENAME'
           IMPORTING
                file_name = p_file1.
    start-of-selection.
    move p_file1 to filename.
    call function 'GUI_UPLOAD'
         EXPORTING
              filename                = filename
              filetype                = filetype
         TABLES
              data_tab                = itab
         EXCEPTIONS
              file_open_error         = 1
              file_read_error         = 2
              no_batch                = 3
              gui_refuse_filetransfer = 4
              invalid_type            = 5
              no_authority            = 6
              unknown_error           = 7
              bad_data_format         = 8
              header_not_allowed      = 9
              separator_not_allowed   = 10
              header_too_long         = 11
              unknown_dp_error        = 12
              access_denied           = 13
              dp_out_of_memory        = 14
              disk_full               = 15
              dp_timeout              = 16
              others                  = 17.
    if sy-subrc <> 0.
      message id sy-msgid type sy-msgty number sy-msgno
                with sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
    endif.
    loop at itab.
      string_len = strlen( itab-rec ).
      n1 = string_len DIV 134.
      ADD 1 TO n1.
      DO n1 TIMES.
        rtfline-line = itab-rec.
        APPEND rtfline.
        SHIFT itab-rec BY 134 PLACES.
      ENDDO.
    endloop.
    HEADER-TDSTYLE = 'S_DOCUS1'.
    HEADER-TDFORM = 'S_DOCU_SHOW'.
    header-tdspras = 'E'.
    CALL FUNCTION 'CONVERT_TEXT'
      EXPORTING
      CODEPAGE               = '0000'
        DIRECTION              = 'IMPORT'
        FORMAT_TYPE            = 'RTF'
       FORMATWIDTH            = 72
        HEADER                 = header
        SSHEET                 = 'WINHELP.DOT'
        WITH_TAB               = 'X'
        WORD_LANGU             = SY-LANGU
        TABLETYPE              = 'ASC'
      TAB_SUBSTITUTE         = 'X09  '
      LF_SUBSTITUTE          = ' '
      REPLACE_SYMBOLS        = 'X'
      REPLACE_SAPCHARS       = 'X'
      MASK_BRACKETS          = 'X'
      IMPORTING
        NEWHEADER              = NEWHEADER
      WITH_TAB_E             =
      FORMATWIDTH_E          =
      TABLES
        FOREIGN                = RTFLINE
        ITF_LINES              = ITFLINE.
      LINKS_TO_CONVERT       =
    if sy-subrc <> 0.
    endif.
    CALL FUNCTION 'PRINT_TEXT_ITF'
      EXPORTING
         HEADER        = newheader
         OPTIONS       = options
    IMPORTING
      RESULT        =
      TABLES
        LINES         = itfline.
    if sy-subrc <> 0.
    endif.
    Any hints or suggestions to solve this problem will be highly appreciated.
    Thanks,
    Avra

    Hi Vishwas,
    Check out the thread [Efficient way of saving documents uploaded|Re: Efficient way of saving documents uploaded by users; and check the blog by Raja Thangamani.
    Also check the thread [Export Images through Function Modules   |Export Images through Function Modules;.
    Hope it helps you.

  • How to send IP Addr in an alert and receive the same?

    1. I have an 'alert handler' process that's sending an alert using 'Create Alert' activity.
    2. I have a listening/receiving process that get's triggered by this alert from the 'alert handler' process.
    3. The listening/receving process telnet's to a router. I want the listening/receiving process to extract the IP Address of the router from the alert that triggered this listening proecess.
    4. I tried sending the IP address of the router as 'Parameter 1' using the 'Create Alert' activity in the 'alert handler' process.
    5. In the receiving process, in order to telnet to the router, I chose 'Execute on this target reference' option for the 'Open Terminal' acitivity, but was unable to access 'Paramter 1' of the alert. It shows greyed out.
    Question:
    What is the best way to send the IP address of the router in the alert and receive the same in the listening process such that I can telnet to that router in the listening process?
    Please note: tried creating a 'terminal target'...there is no way for me to supply IP address info from outside into terminal target...looks like terminal target only takes a hard coded IP address or host name.
    Will appreciate your prompt response please.
    thanks,
    Jamal

    We discussed this, but just to post here. To view alert or other tasks parameters via the reference variable fields you have to select the show advanced checkbox.

  • HT201272 I have always had and used the same Apple ID, so where are the rest of the songs I bought from itunes? I've bought at least 400 songs and I only am being able to download 178. Where are the rest of my purchases?!

    I have always had and used the same Apple ID. I have changed credit card information on my Apple ID account several times though. Does that make a difference when downloading past purchases? I'm very angry at Apple and Itunes because I have been using itunes since 05/2005 and I do not have even close to the amount of songs and albums that I have purchased from itunes. If the credit card info does make a difference even though the account is the same one then itunes needs to make sure to notify users of this because I am not the only one who is wondering this same thing. I have numerous friends who i've talked to about this and they say the same thing, that they too have songs purchased in the past that have disappeared when trying to download past purchased items. It should not make a difference. $12 is $12. Especially since I have ALWAYS used the same account. If itunes does not change their ways, I will not be purchasing songs or anything else for that matter from them ever again. I will go back to buying CDs where I KNOW that it will always be with me and I don't have to deal with this. I will also make sure to find a better more reliable source to download music from and will make sure everyone I know and come in contact with knows what it is and how much better it is than itunes. There should be no experation date on the music I PURCHASE, nor should there be any other little loop holes that allow itunes to rob us of rightfully purchased products. What's the deal itunes?? 

    mannyace wrote:
    Thanks for the response.
    So I basically won't run into any trouble? I
    There should be no issues. Its designed to work like that.  You don't change Apple IDs just because you get a new device.
    mannyace wrote:
    Thanks for the response.
    Is there any chance that the phones can fall out of sync?
    Unlikely. But nothing is impossible.   Though I don;t see how that would happen. As long as both are signed into the Same Apple ID / iCloud Account they will be N'Sync. (Bad Joke)
    mannyace wrote:
    Thanks for the response.
    If I get a message or buy an app or take a photo on the iPhone 5, how do I get those things onto the iPhone 6?
    If you buy an App, you have 2 ways to get it to the iPhone6: If Automatic Downloads is enabled in Settings->iTunes & App Store, it will automatically download to the iPhone 6 when you buy it on the 5 and vice versa if you buy it on the 6, it will download to the 5.
    Alternatively, you can simply go to the App Store App->Updates->Purchased and look for the App there and download it. Purchased Apps will not require payment again. i.e They'll be free to download to the iPhone 6 once purchased.
    SMS Messages will sync over using Continuity as long as they are on the same Wifi network. Otherwise, restoring the iPhone 5 backup to the iPhone 6 will transfer all messages received up until the backup was made onto the iPhone 6.
    Images, can be transferred either through Photo Stream
    My Photo Stream FAQ - Apple Support
    Or any Cloud service you want such as Dropbox, or One Drive.
    mannyace wrote:
    Also, something i forgot to ask initially: Should I update the iPhone 5 to iOS 8 first or does that not matter?
    If you want the Continuity features as explained above you need to update the iPhone 5 to iOS 8. Otherwise its not all that important.

  • I am using a work laptop and have the same problem. When I try to change the "configure proxy", they only available option is "use this proxy server for all protocols". Could it be that my system administrator blocked me from changing it since they don'

    I am using a work laptop and have the same problem. When I try to change the "configure proxy", they only available option is "use this proxy server for all protocols". Could it be that my system administrator blocked me from changing it since they don't want us to use Firefox.
    == User Agent ==
    Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; GTB6.4; FNGP_SYS)

    Start Firefox in [[Safe Mode]] to check if one of your add-ons is causing your problem (switch to the DEFAULT theme: Tools > Add-ons > Themes).
    See [[Troubleshooting extensions and themes]] and [[Troubleshooting plugins]]
    If it does work in Safe-mode then disable all your extensions and then try to find which is causing it by enabling one at a time until the problem reappears.
    You can use "Disable all add-ons" on the ''Safe mode'' start window.
    You have to close and restart Firefox after each change via "File > Exit" (on Mac: "Firefox > Quit")

  • I tried to install yosemite yesterday and my computer goes through the whole installation process and then to a blank white screen.  I've rebooted, I've reinstalled several times and get the same result.  Two days wasted!

    I tried to install yosemite yesterday and my computer goes through the whole installation process and then to a blank white screen.  I've rebooted, I've reinstalled several times and get the same result.  Two days wasted and I can't use my computer!!

    I don't know if you've already resolved your problem, but I had the same thing, it took me 6 hours to fix it. I had the exact same as you, installed the update and then it went to a white screen. After trying start up holding down cmmd r or holding down the alt key to try to install it again, nothing worked, same result every time. Then an angel came to me here somewhere but I can't find it now to thank him. Start in safe mode, press shift once you hear the start up chime and hold it down until you hear it again. Installation completion box came up and it was working. turn off computer and start up again normally and all is well. Except my final cut pro x doesn't work with it, have to update that now too. same as when I updated to mavericks.
    Hope this helps.

Maybe you are looking for

  • Satellite C855D-S5205 need to install win7 32bit

    Dear All, Please help me.. I need to install windows 7 32 bit on this laptop but not successful and Now I've been delete Drive C: tell me some solution for solve this problem Thank you in Advance

  • SAPscript MAIN Window ITEM TEXT Printing in NEXT PAGE

    Hi, I need to print the Item Text (Item Description or Column Description) if the Item Values (Lines) goes to the NEXT page in the Form. I have TEXT ELEMENTS defined for ITEM TEXT and ITEM VALUES in the MAIN Window. There is no issue with Printing th

  • I can't add my handwrite signature

    From my form I would like sign it but not with ID signature only by handwrite. Acrobat pro XI don' t propose me this option. Thanks for your assistance.

  • Account balance draining? Need help!

    This morning, I noticed my account balance was slowly draining, at about 5 cents per three seconds. When I checked my account activity, it says I've made a bunch of SMSs. The only way I found of stopping it was to turn airplane mode on. Is this somet

  • CC&B daily data rate change

    Hi, I'm trying to estimate the daily rate of data change against our total estimated data volumes for year 5. Currently total volumes for CC&B is about 800gb. Is there any tools out there I can used to estimate this? I understand there are loads of v