Source SPM template for CURR_DS (Z_SADSECC6TCURR) to map

anyone have idea what is source SPM template  for CURR_DS (Z_SADSECC6TCURR) to map, I have extracted the data to BI and maintained necessary tables in BI as well, but i  am unable to find standard template to map the CURR data source .. Neither create new template.
For others its direct templates are available not CURR? Can someone give me tips to build CURR template?
Regards,
Mahesh

Hi Mahesh,
SPM uses the standard currency tables for any currency conversion in the application.  If you already have currency populated in the standard BW tables you don't have to load the same data again using the SPM data load mechanism.
Having said this if you want to load data using flat files, you need 2 files one for the currency conversion rate and second file for currency conversion factor.
Regards,
Rohit

Similar Messages

  • Problem in Creating Source Files (Templates) for Original Application Files

    Dear Friends,
    I am trying to ccreate "Source Files (Templates) for Original Application Files" . I checked the link
    http://wiki.sdn.sap.com/wiki/display/PLM/Templates-Document+Management
    I created a new DOc. type TMP with no statuses, checked in KPO, assigned no. ranges.
    Created  DIR & assigned the template file, checked into storage category. DIR no. 10000000390 created.
    In Workstation application "DOX" in define templates for originals : doc. type: ZGA, application: DOX; language- EN; no - 01; In source doc- entered doc. type- TMP, doc. no.- 10000000390, part & version
    Assigned for required source file copy" ZGA doc. type. -- Default Appl. as "DOX" workstation application.
    Now created a DIR with ZGA doc. type, when clicking on originals , DOX prompted and clicking on "create with template" . TMP doc. 10000000390 template open in a new window. I edited & saved. close the MS word window. When comes to DIR, it prompted, Original was changed Do you want to save the original?.
    clicked on yes.
    Saved the ZGA DIR. When I saw the new ZGA DIR created it didn't capture. Where I went wrong ?
    Regards,
    Sai Krishna

    Dear Ravindra,
    By going this below link, it seems we can use template for creating ne wdocument & attach the same.
    http://wiki.sdn.sap.com/wiki/display/PLM/Templates-Document+Management
    Following messages if you read, it may be clear.
    By having templates in place we can utilize the pre-defined documents instead creating right from scratch.
    Entries can be done in the Template and save the document.
    Templates are used for standardization and uniformity. By using templates time consumption for creation of documents will reduce as most of the details are maintained in the master template and the same can be utilize by using the template when creating documents.
    If in DMS editing functionality is not there what is the use of templates- documentation?
    Regards,
    Sai Krishna

  • Controlling the Behavior of Multi SQL source Data Templates for Bursting

    I have a scenario where we are trying to generate a data template from 10 separate data queries. We want the results of this to be bursted out into 700 separate reports (per account). Right now, the report is generating 700 x 10 (7000) queries against the database. I want to instead just run each report 1 time, and have the results parsed out at run time from the XML generated by the data template. Is this possible? Here is my data template code as it exists today...I'm assuming that I'll need to project Wslr."Wslr Nbr" in each of my queries, and remove the prompts in each (i.e. AND (Wslr."Wslr Nbr" = :Wslr_Nbr1)). Can anyone provide guidance on where to go from there?
    Thanks,
    Mark
    <dataTemplate name="DATA" description="Testing Data Templates" dataSourceRef="Oracle BI EE" Version="1.0">
    <properties>
    <property name="include_rowsettag" value="true"/>
    </properties>
    <dataQuery>
    <sqlStatement name="Q1" dataSourceRef="Oracle BI EE">
    <![CDATA[
    SELECT Wslr."Wslr Nbr" Wslr_Nbr1,
    Wslr."Wslr Description" Wslr_Description,
    Wslr.State State1
    FROM "AB Core"
    WHERE "- Planogram Accuracy"."Year Month" = VALUEOF("V_MonthsAgo1_2DD")
    ORDER BY 1
    ]]>
    </sqlStatement>
    <sqlStatement name="Q22" datasourceRef="Oracle BI EE">
    <![CDATA[
    SELECT "Outstanding Facts"."# Of Reqd" Num_Reqd,
    IFNULL("Outstanding Facts"."# Of Rcvd",0) Num_Rcvd,
    "- Planogram Outstanding Fact"."# of Outstanding" Num_Outstanding,
    "- Planogram Outstanding Fact"."Pct Outstanding" Pct_Outstanding,
    "Outstanding Facts"."Pct Complete" Pct_Complete
    FROM "Sales - Shelf Verification"
    WHERE (("Retail Outlet"."Wslr Cust Typ Cd" IN ('11', '21', '23', '24'))
    AND ("Retail Outlet"."Alcohol Lic Cd" IN ('20', '30', '40'))
    AND (("Retail Outlet"."Pkg Cnsmp Cd" IN ('22', '23'))
    OR ("Retail Outlet"."Primary Cnsmp Cd" = '20')
    OR ("Retail Outlet"."Draught Cnsmp Cd" IN ('12', '13')))
    AND ((("Retail Outlet"."Chain Acct Typ Cd" = '10')
    AND ("Retail Outlet"."Indus Vol Class Cd" IN ('10', '11', '12', '13')))
    OR ("Retail Outlet"."Chain Acct Typ Cd" = '21'))
    AND ("Retail Outlet"."Open Close Status Cd" NOT IN ('40', '60')))
    AND ((("Retail Outlet"."Planogrammable Cd" = 'Y')
    OR ("Retail Outlet"."Planogrammable Cd" IS NULL)))
    AND (Wslr."Wslr Nbr" = :Wslr_Nbr1)
    ORDER BY "Outstanding Facts"."Pct Complete" DESC
    ]]>
    </sqlStatement>
    <sqlStatement name="Q23" datasourceRef="Oracle BI EE">
    <![CDATA[
    SELECT "Retail Outlet"."Wslr Assigned Cust Nbr" Wslr_Asgnd_Cust_Nbr,
    "- Outstanding Retail Outlets"."Outstanding Retail Outlet Name" Acct_Name,
    "Retail Outlet".Address Address,
    "Retail Outlet"."City Name" City,
    "Retail Outlet".State State,
    "Retail Outlet"."Chain Store Nbr" Chain_Store_Nbr,
    "Retail Outlet"."Account Classification" Acct_Class,
    Case when "Retail Outlet"."Primary Cnsmp Name" = 'Off Premise Consumption' then 'Off Premise'
    when "Retail Outlet"."Primary Cnsmp Name" = 'On Premise Consumption' then 'On Premise' End Pri_Cnsmp,
    "Retail Outlet"."Pkg Cnsmp Name" Pkg_Cnsmp,
    "Retail Outlet"."Draught Cnsmp Name" Draught_Cnmp,
    Case when "Retail Outlet"."Open Close Status Cd" = '10' then 'Open'
    when "Retail Outlet"."Open Close Status Cd" = '20' then 'Open Seasonal'
    when "Retail Outlet"."Open Close Status Cd" = '30' then 'Temporary'
    when "Retail Outlet"."Open Close Status Cd" = '50' then 'Closed Temporary' End Open_Status,
    Case when "Retail Outlet"."Alcohol Lic Cd" = '20' then 'Licensed 3.2%'
    when "Retail Outlet"."Alcohol Lic Cd" = '30' then 'Full License'
    when "Retail Outlet"."Alcohol Lic Cd" = '40' then 'Licensed 5.0% and Below' End License_Status
    FROM "Sales - Shelf Verification"
    WHERE (("Retail Outlet"."Wslr Cust Typ Cd" IN ('11', '21', '23', '24'))
    AND ("Retail Outlet"."Alcohol Lic Cd" IN ('20', '30', '40'))
    AND (("Retail Outlet"."Pkg Cnsmp Cd" IN ('22', '23'))
    OR ("Retail Outlet"."Primary Cnsmp Cd" = '20')
    OR ("Retail Outlet"."Draught Cnsmp Cd" IN ('12', '13')))
    AND ((("Retail Outlet"."Chain Acct Typ Cd" = '10')
    AND ("Retail Outlet"."Indus Vol Class Cd" IN ('10', '11', '12', '13')))
    OR ("Retail Outlet"."Chain Acct Typ Cd" = '21'))
    AND ("Retail Outlet"."Open Close Status Cd" NOT IN ('40', '60')))
    AND (Wslr."Wslr Nbr" = :Wslr_Nbr1)
    ORDER BY Acct_Name
    ]]>
    </sqlStatement>
    <sqlStatement name="Q24" datasourceRef="Oracle BI EE">
    <![CDATA[
    SELECT "Retail Outlet"."Wslr Assigned Cust Nbr" Wslr_Asgnd_Cust_Nbr,
    "- Retail Outlet"."Retail Outlet" Retail_Outlet,
    "- Retail Outlet".Address Address,
    "- Retail Outlet".City City,
    "- Retail Outlet".State State,
    "- Retail Outlet"."Expected Account Flag" Expected_Account
    FROM "Sales - Shelf Verification"
    WHERE ((("Retail Outlet"."Primary Cnsmp Cd" = '20')
    OR ("Retail Outlet"."Pkg Cnsmp Cd" IN ('22', '23'))
    OR ("Retail Outlet"."Draught Cnsmp Cd" IN ('12', '13')))
    AND ("Retail Outlet"."Alcohol Lic Cd" IN ('20', '30', '40'))
    AND ("Retail Outlet"."Planogrammable Cd" = 'N')
    AND ("Retail Outlet"."Wslr Cust Typ Cd" IN ('11', '21', '23', '24'))
    AND ("Retail Outlet"."Open Close Status Cd" IN ('10', '20', '30', '50'))) AND ("Retail Outlet"."Open Close Status Cd" NOT IN ('40', '60'))
    AND (Wslr."Wslr Nbr" = :Wslr_Nbr1) ORDER BY "- Retail Outlet"."Expected Account Flag" DESC, "- Retail Outlet"."Retail Outlet"
    ]]>
    </sqlStatement>
    <sqlStatement name="Q25" datasourceRef="Oracle BI EE">
    <![CDATA[
    SELECT "- Planogram Accuracy"."% Accurate RO" Pct_Accurate_Accts,
    "- Planogram Accuracy"."Avg Accuracy" Avg_Accuracy,
    "- Planogram Accuracy"."Nbr of Accurate ROs" Num_Accurate_Accts,
    "- Planogram Accuracy"."Nbr of ROs" Num_Accts,
    "- Planogram Accuracy"."Year Month" Year_Month
    FROM "AB Core"
    WHERE ("- Planogram Accuracy"."Year Month" = VALUEOF(V_MonthsAgo1_2DD)) AND (Wslr."Wslr Nbr" = :Wslr_Nbr1)
    ORDER BY "- Planogram Accuracy"."Year Month"
    ]]>
    </sqlStatement>
    <sqlStatement name="Q26" datasourceRef="Oracle BI EE">
    <![CDATA[
    SELECT "Retail Outlet"."Route - Package" Route_Pkg,
    "Retail Outlet"."Wslr Assigned Cust Nbr" Wslr_Asgnd_Cust_Nbr,
    "Retail Outlet"."Retail Outlet Name" Acct_Name,
    "Retail Outlet".Address Address,
    "Retail Outlet"."City Name" City,
    "Retail Outlet".State State,
    "Retail Outlet"."Chain Store Nbr" Chain_Store_Num,
    "Retail Outlet"."Account Classification" Acct_Class,
    "- Planogram Accuracy"."Avg Accuracy" Avg_Accuracy,
    "- Planogram Accuracy"."Outstanding Planogram" Outstanding_POG
    FROM "AB Core"
    WHERE (Wslr."Wslr Nbr" = :Wslr_Nbr1)
    AND ("- Planogram Accuracy"."Year Month" = VALUEOF(V_MonthsAgo1_2DD))
    AND ("- Planogram Accuracy"."Avg Accuracy" < 80)
    AND (BOTTOMN("- Planogram Accuracy"."Avg Accuracy",20) <= 20)
    ORDER BY "- Planogram Accuracy"."Avg Accuracy", "Retail Outlet"."Route - Package"
    ]]>
    </sqlStatement>
    <sqlStatement name="Q27" datasourceRef="Oracle BI EE">
    <![CDATA[
    SELECT Wslr."Wslr Nbr" Wslr_Nbr,
    Wslr."Wslr Description" Wslr_Description,
    "- Planogram Accuracy"."% Accurate RO" Pct_Accurate_Accts
    FROM "AB Core" WHERE (Wslr.State = :State1)
    AND ("- Planogram Accuracy"."Year Month" = VALUEOF(V_MonthsAgo1_2DD))
    AND (Wslr."Wslr Typ Cd" IN ('BB', 'WB', 'WS'))
    AND (("Retail Outlet"."Wslr Cust Typ Cd" IN ('11', '21', '23', '24'))
    AND ("Retail Outlet"."Alcohol Lic Cd" IN ('20', '30', '40'))
    AND (("Retail Outlet"."Pkg Cnsmp Cd" IN ('22', '23'))
    OR ("Retail Outlet"."Primary Cnsmp Cd" = '20')
    OR ("Retail Outlet"."Dft Cnsmp Cd" IN ('12', '13')))
    AND ((("Retail Outlet"."Chain Acct Typ Cd" = '10')
    AND ("Retail Outlet"."Indus Vol Class Cd" IN ('10', '11', '12', '13'))) OR ("Retail Outlet"."Chain Acct Typ Cd" = '21'))
    AND ("Retail Outlet"."Open Close Status Cd" NOT IN ('40', '60')))
    ORDER BY "- Planogram Accuracy"."% Accurate RO"
    ]]>
    </sqlStatement>
    <sqlStatement name="Q28" datasourceRef="Oracle BI EE">
    <![CDATA[
    SELECT "- Planogram Accuracy"."Year Month" Year_Month,
    "- Planogram Accuracy"."% Accurate RO" Pct_Accurate_Accts
    FROM "Sales - Shelf Verification"
    WHERE (Wslr.State <> 'PR')
    AND ("- Planogram Accuracy"."Year Month" >= VALUEOF("V_MonthsAgo13_2DD")) AND (Wslr."Wslr Type Cd" IN ('WB', 'WS', 'BB'))
    AND (Wslr."Wslr Nbr" = :Wslr_Nbr1)
    ORDER BY "- Planogram Accuracy"."Year Month"
    ]]>
    </sqlStatement>
    <sqlStatement name="Q29" datasourceRef="Oracle BI EE">
    <![CDATA[
    SELECT "Retail Outlet"."Account Classification" Acct_Class,
    "- Planogram Accuracy"."Avg Accuracy" Avg_Accuracy,
    "- Planogram Accuracy"."% Accurate RO" Pct_Accurate_Accts,
    "- Planogram Accuracy"."Nbr of Accurate ROs" Num_Accurate_Accts,
    "- Planogram Accuracy"."Nbr of ROs" Num_Accts
    FROM "AB Core"
    WHERE (Wslr."Wslr Typ Cd" IN ('BB', 'WB', 'WS'))
    AND (Wslr."Wslr Nbr" = :Wslr_Nbr1)
    AND ("- Planogram Accuracy"."Year Month" = VALUEOF(V_MonthsAgo1_2DD)) ORDER BY "- Planogram Accuracy"."% Accurate RO"
    ]]>
    </sqlStatement>
    <sqlStatement name="Q30" datasourceRef="Oracle BI EE">
    <![CDATA[
    SELECT "Retail Outlet"."Route - Package" Route_Pkg,
    "- Planogram Accuracy"."Avg Accuracy" Avg_Accuracy,
    "- Planogram Accuracy"."% Accurate RO" Pct_Accurate_Accts,
    "- Planogram Accuracy"."Nbr of Accurate ROs" Num_Accurate_Accts,
    "- Planogram Accuracy"."Nbr of ROs" Num_Accts
    FROM "AB Core"
    WHERE (Wslr."Wslr Typ Cd" IN ('BB', 'WB', 'WS'))
    AND (Wslr."Wslr Nbr" = :Wslr_Nbr1)
    AND ("- Planogram Accuracy"."Year Month" = VALUEOF(V_MonthsAgo1_2DD)) ORDER BY "- Planogram Accuracy"."% Accurate RO"
    ]]>
    </sqlStatement>
    <sqlStatement name="Q31" datasourceRef="Oracle BI EE">
    <![CDATA[
    SELECT "Retail Outlet"."Wslr Assigned Cust Nbr" Wslr_Asgnd_Cust_Nbr,
    "Retail Outlet"."Retail Outlet Name" Acct_Name,
    "Retail Outlet".Address Address,
    "Retail Outlet"."Chain Store Nbr" Chain_Store_Nbr,
    "Retail Outlet"."City Name" City,
    "Retail Outlet".State State,
    "- Planogram Aging Fact"."Selling Location" Selling_Loc,
    "- Planogram Aging Fact"."Temperature Type" Temp_Type,
    "- Planogram Aging Fact"."Submission Dt" Submsn_Dt,
    "- Planogram Aging Fact"."Effective Dt" Eff_Dt,
    TIMESTAMPDIFF(SQL_TSI_DAY, "- Planogram Aging Fact"."Submission Dt", CURRENT_DATE) Days_Old
    FROM "AB Core"
    WHERE ("Retail Outlet"."Open Close Status Cd" IN ('10', '20', '30', '50')) AND (Wslr."Wslr Nbr" = :Wslr_Nbr1)
    AND (TIMESTAMPDIFF(SQL_TSI_DAY, "- Planogram Aging Fact"."Submission Dt", CURRENT_DATE) > 210)
    ]]>
    </sqlStatement>
    </dataQuery>
    <dataStructure>
    <group name="WSLR_INFO_ROW" source="Q1">
    <element name="Wslr_Nbr" value="Wslr_Nbr1"/>
    <element name="Wslr_Description" value="Wslr_Description"/>
    <element name="State" value="State1"/>
    <group name="TOT_OUTSTANDING_POGS_ROW" source="Q22">
    <element name="Num_Reqd" value="Num_Reqd"/>
    <element name="Num_Rcvd" value="Num_Rcvd"/>
    <element name="Num_Outstanding" value="Num_Outstanding"/>
    <element name="Pct_Outstanding" value="Pct_Outstanding"/>
    <element name="Pct_Complete" value="Pct_Complete"/>
    </group>
    <group name="PLANOGRAM_OUTSTANDING_LIST_ROW" source="Q23">
    <element name="Wslr_Asgnd_Cust_Nbr" value="Wslr_Asgnd_Cust_Nbr"/>
    <element name="Acct_Name" value="Acct_Name"/>
    <element name="Address" value="Address"/>
    <element name="City" value="City"/>
    <element name="State" value="State"/>
    <element name="Chain_Store_Nbr" value="Chain_Store_Nbr"/>
    <element name="Acct_Class" value="Acct_Class"/>
    <element name="Cust_Type" value="Cust_Type"/>
    <element name="Open_Status" value="Open_Status"/>
    <element name="Pri_Cnsmp" value="Pri_Cnsmp"/>
    <element name="Pkg_Cnsmp" value="Pkg_Cnsmp"/>
    <element name="Draught_Cnmp" value="Draught_Cnmp"/>
    <element name="License_Status" value="License_Status"/>
    </group>
    <group name="NONPOG_ACCTS_ROW" source="Q24">
    <element name="Wslr_Asgnd_Cust_Nbr" value="Wslr_Asgnd_Cust_Nbr"/>
    <element name="Retail_Outlet" value="Retail_Outlet"/>
    <element name="Address" value="Address"/>
    <element name="City" value="City"/>
    <element name="State" value="State"/>
    <element name="Expected_Account" value="Expected_Account"/>
    </group>
    <group name="POG_ACCURACY_ROW" source="Q25">
    <element name="Pct_Accurate_Accts" value="Pct_Accurate_Accts"/>
    <element name="Avg_Accuracy" value="Avg_Accuracy"/>
    <element name="Num_Accurate_Accts" value="Num_Accurate_Accts"/>
    <element name="Num_Accts" value="Num_Accts"/>
    <element name="Year_Month" value="Year_Month"/>
    </group>
    <group name="BOTTOM_20_ACCTS_ACCURACY_ROW" source="Q26">
    <element name="Route_Pkg" value="Route_Pkg"/>
    <element name="Wslr_Asgnd_Cust_Nbr" value="Wslr_Asgnd_Cust_Nbr"/>
    <element name="Acct_Name" value="Acct_Name"/>
    <element name="Address" value="Address"/>
    <element name="City" value="City"/>
    <element name="State" value="State"/>
    <element name="Chain_Store_Num" value="Chain_Store_Num"/>
    <element name="Acct_Class" value="Acct_Class"/>
    <element name="Avg_Accuracy" value="Avg_Accuracy"/>
    <element name="Outstanding_POG" value="Outstanding_POG"/>
    </group>
    <group name="STATE_WSLRS_ACCURACY_ROW" source="Q27">
    <element name="Wslr_Nbr" value="Wslr_Nbr"/>
    <element name="Wslr_Description" value="Wslr_Description"/>
    <element name="Pct_Accurate_Accts" value="Pct_Accurate_Accts"/>
    </group>
    <group name="ACCURACY_OVER_TIME_ROW" source="Q28">
    <element name="Year_Month" value="Year_Month"/>
    <element name="Pct_Accurate_Accts" value="Pct_Accurate_Accts"/>
    </group>
    <group name="ACCURACY_BY_ACCT_CLASS_ROW" source="Q29">
    <element name="Acct_Class" value="Acct_Class"/>
    <element name="Avg_Accuracy" value="Avg_Accuracy"/>
    <element name="Pct_Accurate_Accts" value="Pct_Accurate_Accts"/>
    <element name="Num_Accurate_Accts" value="Num_Accurate_Accts"/>
    <element name="Num_Accts" value="Num_Accts"/>
    </group>
    <group name="ACCURACY_BY_ROUTE_ROW" source="Q30">
    <element name="Route_Pkg" value="Route_Pkg"/>
    <element name="Avg_Accuracy" value="Avg_Accuracy"/>
    <element name="Pct_Accurate_Accts" value="Pct_Accurate_Accts"/>
    <element name="Num_Accurate_Accts" value="Num_Accurate_Accts"/>
    <element name="Num_Accts" value="Num_Accts"/>
    </group>
    <group name="AGING_OVER_210_DAYS_ROW" source="Q31">
    <element name="Wslr_Asgnd_Cust_Nbr" value="Wslr_Asgnd_Cust_Nbr"/>
    <element name="Acct_Name" value="Acct_Name"/>
    <element name="Address" value="Address"/>
    <element name="Chain_Store_Nbr" value="Chain_Store_Nbr"/>
    <element name="City" value="City"/>
    <element name="State" value="State"/>
    <element name="Selling_Loc" value="Selling_Loc"/>
    <element name="Temp_Type" value="Temp_Type"/>
    <element name="Submsn_Dt" value="Submsn_Dt"/>
    <element name="Eff_Dt" value="Eff_Dt"/>
    <element name="Days_Old" value="Days_Old"/>
    </group>
    </group>
    </dataStructure>
    </dataTemplate>

    Looks like this query is against Answers and not direcdtly to DB Instance. Answers must be contributing to create these 7000 queries against the DB instance.

  • RFx sourced without Templates Used Report

    Hello,
    Though we have created several RFx's without templates, the report runs empty with the selection criteria, is this a bug?
    The report we are talking about is the
    Documents Sourced without Templates
    For a selected time period and breakdown (such as yearly, quarterly, monthly), this report shows the number of sourcing documents and chart including Projects, RFxs, Auctions, and Agreements that were created without using a best practices' template document.
    FCI-DocsNoTemplatesreport
    Thanks
    Tridip

    Opened an OSS message and waiting for a fix, will post to the thread once the solution is available, thanks Tridip

  • Numbers template for bed & breakfast

    Does anyone know of a good source of templates for Numbers that may have something suitable for running a bed & breakfast?
    Thanks in advance.

    Have you tried a general search on "numbers templates"? You can also use almost any excel template that does not include macros.
    Jason

  • Data Mapping Templates for NON-RTA Systems

    Hi all,
    I'm designing n extractor for my NON-SAP System.
    I've been reading the Appendix B: Data Mapping Templates for Non-RTA Systems from Configuration Guide - SAP GRC AC 5.3.
    I have a couple of questions regarding the size of two fields in table ACTION PERMISSION OBJECTS TEMPLATE
    Is correct the size that the documents says about fields:
    ACTION (document says it's 20 but in other tables is 50)
    PERMISSION (document says it's 10 but in other tables is 100
    ACTVT (document says it's 10but in other tables is 50)
    Thank you in advanced.

    Hi Luis,
    Yeah i will follow the recomendations but i'm updating some files to RAR and i've seen another kind of inconsistency such as in the table User File Template. Recomendation says that both FNAME field and LNAME field are 50 size each one but in my case i can update a FNAME 51 size and a LNAME 49, i mean between FNAME and LNAME it's 100 size.
    Cheers.

  • When they un-upgrade iPhoto email templates? Along with Apple Maps, another software I won't use anymore.

    When they un-upgrade iPhoto email templates? Along with Apple Maps, another software I won't use anymore.

    You can go back by restoreing your backup of the iPhoto library from the previous version a installing the previous version for its original source
    Of course I use iPhoto - and I have not idea what
    Do you use iPhoto? What version are you using and have you sent photos using it from the iPhoto and used the older templates?
    means
    one last time if you want help you have to start by being percise and shaing information - for example "older version" is of no help since there are 40 or 50 older versions
    again
    Sorry but if you have a question then you need to provide information  - what are you talking about? What version of iPhoto and what OS version do you have? What upgrade are you talking about? what e-mail client are you using?
    LN

  • Managed property value is not returned in item template for ArticleStartDateOWSDATE

    Environment: SharePoint 2013 online
    Related parts: Search Result web part (OOB), Display template for search result items
    Base type: article page
    I have a search result page, it has a search result web part on it, for the display template, it is using a default for list, using  "single template to display items" option to point to a custom item template.
    The search returns list of articles, just title and abstract, it works fine. 
    We need to add "Article Date" to be displayed. "Article Date" is a OOB site column under "Publishing Columns".
    I found its field name is ArticleStartDate, then from search schema, I found the corresponding managed property name is "ArticleStartDateOWSDATE", the mapped crawled property is "ows_q_DATE_ArticleStartDate".
    In order to display it, I added managed property mapping to the item template to map to ArticleStartDateOWSDATE.
    The code is like,
    <mso:ManagedPropertyMapping msdt:dt="string">&#39;Title&#39;:&#39;Title&#39;,&#39;,&#39;MyArticleStartDate&#39;:&#39;ArticleStartDateOWSDATE&#39;</mso:ManagedPropertyMapping>
    var ArticleDate = $getItemValue(ctx, "MyArticleStartDate");
    The value of variable (ArticleDate) is empty when try to display it.
    Please let me know if you re-create this issue or have a solution to display the value. 
    BTW, on "Content search" web part, I can map ArticleStartDateOWSDATE to "Line 3", and display its value. So I know the managed property itself should be fine.
    Thanks in advance,
    John
    John Architect

    I think your input value is wrong,, when I did HTML decode of your Managed properties :
    &#39;Title&#39;:&#39;Title&#39;,&#39;,&#39;MyArticleStartDate&#39;:&#39;ArticleStartDateOWSDATE&#39;
    It gives :
    'Title':'Title',','MyArticleStartDate':'ArticleStartDateOWSDATE'
    i.e. wrong, if you see there is extra comma in between.
    try giving :
    &#39;Title&#39;:&#39;Title&#39;,&#39;MyArticleStartDate&#39;:&#39;ArticleStartDateOWSDATE&#39;
    or directly 'Title':'Title','MyArticleStartDate':'ArticleStartDateOWSDATE'
    get2pallav
    Please click "Propose As Answer" if this post solves your problem or "Vote As Helpful" if this post has been useful to you.

  • How to correct SpryAssets/SpryMenuBar paths in template for sub-directories?

    I recently converted my real estate web site to CSS using Dreamweaver CS4. I use a primary template for most of my pages, which have both a horizontal and a vertical spry menu bar. When I create a page with the template and save it in a sub-directory (not at root level), after a page view,  I get errors on the server such as:
    File does not exist: /home/I_DELETED_THIS/public_html/homes_for_sale/SpryAssets, referer: http://locatehome.com/homes_for_sale/10-2264.htm
    (I replaced part of the URL with "I_DELETED_THIS" since this is posted publicly)
    The SpryAssets directory is at the root level of my site. The template includes the code further below at the bottom of the source code in a non-editable area of the template, which I think is the source of the problem, especially since I get two error messages for each page view and the SpryAssets directory is referenced twice in the following code after the last div. Part of the code is commented out:
    <script type="text/javascript">
    <!--
    var MenuBar1 = new Spry.Widget.MenuBar("MenuBar1", {imgRight:"SpryAssets/SpryMenuBarRightHover.gif"});
    var MenuBar2 = new Spry.Widget.MenuBar("MenuBar2", {imgDown:"SpryAssets/SpryMenuBarDownHover.gif", imgRight:"SpryAssets/SpryMenuBarRightHover.gif"});
    //-->
    </script>
    </body>
    Can I delete this code from the template or will my menu bars not function if they have sub-menus?
    The template changes the file path for other CSS scripts in the head of the template and links, etc. in the body, but not for this section of code. Is there a way to modify my template so that the path files will be correct when a create new pages in sub-directories?
    I saw one suggestion in the Forum to another user with a related problem that he should manually change the code in this section of the template to have a file path relative to the root, but it seems that the program should automatically be taking care of things like that.
    Many thanks,
    Dave K.

    <script type="text/javascript">
    <!--
    var MenuBar1 = new Spry.Widget.MenuBar("MenuBar1", {imgRight:"SpryAssets/SpryMenuBarRightHover.gif"});
    var
    MenuBar2 = new Spry.Widget.MenuBar("MenuBar2",
    {imgDown:"SpryAssets/SpryMenuBarDownHover.gif",
    imgRight:"SpryAssets/SpryMenuBarRightHover.gif"});
    //-->
    </script>
    No you cannot delete the menu constructors, they are the ones that call the menus. The comment tags are purely for browsers that do not have JavaScript enabled.
    As far as template behaviours are concerned, I am afraid that this is not a very helpful forum. You will need to go to the Dreamweaver Forum for that http://forums.adobe.com/community/dreamweaver/dreamweaver_general
    I hope this helps.
    Ben

  • How to remove target node if source field value is empty SAP PI Mapping

    Hello,
    how to remove target node if source field value is empty in graphical Mapping.
    Like if
    MIddle name in source filed is empty, I would like to eliminate target field from out put XML.
    Thank you
    John

    Hi Jhon,
    If you want to remove all empty tags and you dont to complicate your message mapping, you can use a XSL, after the message mapping,  to remove all the empty tags:
    <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
        <xsl:template match="node()|@*">
            <xsl:copy>
                <xsl:apply-templates select="node()|@*"/>
            </xsl:copy>
        </xsl:template>
        <xsl:template match="*[not(@*|*|comment()|processing-instruction())
         and normalize-space()='' ]"/>
    </xsl:stylesheet>
    Regards

  • PDF Template for XML Report

    We are trying to create a PDF Template for an XML Publisher Report using Adobe Acrobat Profession Version. The PDF Template works fine for one employee but when the start and end body tags are inserted in the template, the concurrent process to submit this reports completes in warning.
    The OPP Log shows the below details
    [6/30/08 1:26:36 PM] [102436:RT20660155] XML Publisher post-processing action complete.
    [6/30/08 1:26:36 PM] [102436:RT20660155] Completed post-processing actions for request 20660155.
    [6/30/08 2:29:59 PM] [OPPServiceThread0] Post-processing request 20660180.
    [6/30/08 2:29:59 PM] [102436:RT20660180] Executing post-processing actions for request 20660180.
    [6/30/08 2:29:59 PM] [102436:RT20660180] Starting XML Publisher post-processing action.
    [6/30/08 2:29:59 PM] [102436:RT20660180]
    Template code: Test123
    Template app: XBOL
    Language: en
    Territory: US
    Output type: PDF
    [6/30/08 2:29:59 PM] [UNEXPECTED] [102436:RT20660180] oracle.apps.fnd.cp.opp.PostProcessorException: XML Publisher output file not created
    at oracle.apps.fnd.cp.opp.XMLPublisherProcessor.process(XMLPublisherProcessor.java:281)
    at oracle.apps.fnd.cp.opp.OPPRequestThread.run(OPPRequestThread.java:157)
    I think this is do which how i am creating the PDF Template. When i am not inserting the repearting group tootips then the PDF Template works abosoultey fine for one employee
    the text inserted in the Toottip for the start of the repeating group - @{rep_field="BODY_START"}@
    Tootip for each repeating row @{rep_field="T1_G1"}@ ,@{rep_field="T1_G2"}@ and so on.
    Tootip for end of the repating group @{rep_field="BODY_END"}@

    XML Data
    <?xml version="1.0"?>
    <!-- Generated by Oracle Reports version 6.0.8.11.3 -->
    <MODULE1>
    <LIST_G_HGL>
    <G_HGL>
    <EMPLOYER>HWS</EMPLOYER>
    <BOX_1>YEN</BOX_1>
    </G_HGL>
    <G_HGL>
    <EMPLOYER>HGL</EMPLOYER>
    <BOX_1>YE</BOX_1>
    </G_HGL>
    </LIST_G_HGL>
    </MODULE1>
    Further when i tried using the Template Viewer of XML Publisher Desktop with the above XML File and the template i created in Adobe Acrobat Professional (i am mailing the template to [email protected]) , i got the following error
    [070808_093926007][][STATEMENT] MergerEngine.modify : template forms value is being changed......
    [070808_093926007][][STATEMENT] MergerEngine.modify(String, String, String) block ::: FieldName -> Start , FieldValue ->
    [070808_093926007][][STATEMENT] MergerEngine.modify(String, String, String) block ::: FieldName -> End , FieldValue ->
    [070808_093926038][][STATEMENT] MergerEngine.modify(String, String, String) block ::: FieldName -> EMPLOYER , FieldValue -> HGL
    [070808_093926054][][STATEMENT] MergerEngine.modify : template forms value is changed......
    [070808_093926054][][EXCEPTION] java.lang.ArrayIndexOutOfBoundsException: 0 >= 0
         at java.util.Vector.elementAt(Unknown Source)
         at oracle.apps.xdo.template.pdf.RepeatEngine.getGapBetweenGroups(RepeatEngine.java:449)
         at oracle.apps.xdo.template.pdf.RepeatEngine.<init>(RepeatEngine.java:154)
         at oracle.apps.xdo.template.pdf.RepeatEngine.<init>(RepeatEngine.java:101)
         at oracle.apps.xdo.template.FormProcessor.processRepeatableFields(FormProcessor.java:1742)
         at oracle.apps.xdo.template.FormProcessor.processRepeatableFields(FormProcessor.java:1684)
         at oracle.apps.xdo.template.FormProcessor.process(FormProcessor.java:1445)
         at oracle.apps.xdo.template.FormProcessor.process(FormProcessor.java:1583)
         at oracle.apps.xdo.runner.PDFFormRunThread.runFormProcessor(PDFFormRunThread.java:131)
         at oracle.apps.xdo.runner.PDFFormRunThread.runFormProcessor(PDFFormRunThread.java:73)
         at oracle.apps.xdo.runner.PDFFormRunThread.run(PDFFormRunThread.java:45)
    [070808_093926054][][STATEMENT] <--- before calling createContents() --->
    [070808_093926086][][STATEMENT] <--- before calling addFontInfoToResources() --->
    [070808_093926086][][EXCEPTION] oracle.apps.xdo.template.pdf.exception.FatalException: page Key can't be found to duplicate page......
         at oracle.apps.xdo.template.pdf.RepeatEngine.getDupPageKey(RepeatEngine.java:1421)
         at oracle.apps.xdo.template.pdf.RepeatEngine.composePages(RepeatEngine.java:827)
         at oracle.apps.xdo.template.FormProcessor.processRepeatableFields(FormProcessor.java:1743)
         at oracle.apps.xdo.template.FormProcessor.processRepeatableFields(FormProcessor.java:1684)
         at oracle.apps.xdo.template.FormProcessor.process(FormProcessor.java:1445)
         at oracle.apps.xdo.template.FormProcessor.process(FormProcessor.java:1583)
         at oracle.apps.xdo.runner.PDFFormRunThread.runFormProcessor(PDFFormRunThread.java:131)
         at oracle.apps.xdo.runner.PDFFormRunThread.runFormProcessor(PDFFormRunThread.java:73)
         at oracle.apps.xdo.runner.PDFFormRunThread.run(PDFFormRunThread.java:45)
    End of Process.
    Time: 0.251 sec.
    FO Formatting failed.

  • How do I know the source of 0DOC_CATEG in a report since mapped from 3 diff

    Hi,
    How do I know the source of 0DOC_CATEG in a report since mapped from 3 different sources
    I have in report a 2 chars, 0DOC_CATEG and 0DOC_TYPE which are in a dimension Dim1 in the multiprovider Mult1.
    In the Identification for the multiprovider, it shows that the 2 fields come from the cube, Cube1.
    Now in the 4 update rules from the underlying 4 ODS’s to the cube1, the characteristic mappings show that 0DOC_CATEG and 0DOC_TYPE are being mapped from 3 different ODS’s(Order Header, Billing Item and Billing header) to the cube1.
    So now, if in a report I see 0DOC_CATEG and 0DOC_TYPE, how do I know whether it came from the Order Header ODS, Billing Item ODs or Billing header ODS?
    Thanks

    hi,
    it is from the same cube then you can do for analysis  by adding the request id from the datapackage dimension and chk the corressponding req id in the manage tab of you cube/monitor screen.
    Ramesh

  • Process/templates for gathering information about existing BI functinality

    Hi everyone - Excuse me for posting this question to the thread, it is more of a bus analysis question. I need to document an existing BI / reporting system and identify:
    1. Usage of the reports
    2. Business units using it
    3. Can the reports be consolidated
    4. Sources being used
    5. Business rules being applied
    6. Can these reports be deleted
    Can you suggest a process or a set to templates, if you have participated in similar initiatives ?
    Much appreciated,
    Iliya

    Thanks, this helps with the usage aspect, looking into it, but my question had more to do with a business analysis process or document templates for gathering information, documenting sources, rules, etc.I would think this goes a bit too far from their knowledge for most people in this forum and you might be better going to BA specialized forums or searching in Google. I could give some sample docs but we don't have templates where I work so it will take me ages to go through them to remove any confidential or sensitive data.

  • Radius accounting for QoS pppoe policy-map

    Hi folks
    I have a radius pushing an AVPAIR ip:sub-qos-policy-out to a virtual template for clients connected to a BRAS through PPPOE.
    The AVPAIR is correctly applied to each and every pppoe session but the following link  http://www.cisco.com/c/en/us/td/docs/ios/12_2sb/feature/guide/sbbbrs1c.html  is indicating that I should be able to push back to the RADIUS some traffic info per class-map/policy map. This would allow some Quota stuff and getting some info about traffic used per customer
    From what I have been able to configure, i'm not getting any of this stats back to the RADIUS
    the debug radius accounting :
    *Mar 12 05:29:00.419: RADIUS/ENCODE(0000000E):Orig. component type = PPPoE
    *Mar 12 05:29:00.419: RADIUS/ENCODE(0000000E): Acct-session-id pre-pended with Nas Port = 0/0/3/0
    *Mar 12 05:29:00.419: RADIUS(0000000E): Config NAS IP: 0.0.0.0
    *Mar 12 05:29:00.419: RADIUS(0000000E): sending
    *Mar 12 05:29:00.419: RADIUS/ENCODE: Best Local IP-Address 192.168.38.133 for Radius-Server 192.168.38.131
    *Mar 12 05:29:00.419: RADIUS(0000000E): Send Accounting-Request to 192.168.38.131:1813 id 1646/55, len 299
    *Mar 12 05:29:00.419: RADIUS:  authenticator ED 94 CF EE BD 73 30 7E - 93 07 A4 C3 50 A6 03 DE
    *Mar 12 05:29:00.419: RADIUS:  Acct-Session-Id     [44]  18  "0/0/3/0_00000005"
    *Mar 12 05:29:00.419: RADIUS:  Framed-Protocol     [7]   6   PPP                       [1]
    *Mar 12 05:29:00.419: RADIUS:  Framed-IP-Address   [8]   6   10.10.10.2
    *Mar 12 05:29:00.419: RADIUS:  User-Name           [1]   9   "olivier"
    *Mar 12 05:29:00.419: RADIUS:  Vendor, Cisco       [26]  35
    *Mar 12 05:29:00.419: RADIUS:   Cisco AVpair       [1]   29  "connect-progress=LAN Ses Up"
    *Mar 12 05:29:00.419: RADIUS:  Vendor, Cisco       [26]  29
    *Mar 12 05:29:00.419: RADIUS:   Cisco AVpair       [1]   23  "nas-tx-speed=10000000"
    *Mar 12 05:29:00.419: RADIUS:  Vendor, Cisco       [26]  29
    *Mar 12 05:29:00.419: RADIUS:   Cisco AVpair       [1]   23  "nas-rx-speed=10000000"
    *Mar 12 05:29:00.419: RADIUS:  Acct-Session-Time   [46]  6   2582
    *Mar 12 05:29:00.419: RADIUS:  Acct-Input-Octets   [42]  6   7232
    *Mar 12 05:29:00.419: RADIUS:  Acct-Output-Octets  [43]  6   7232
    *Mar 12 05:29:00.419: RADIUS:  Acct-Input-Packets  [47]  6   517
    *Mar 12 05:29:00.419: RADIUS:  Acct-Output-Packets [48]  6   517
    *Mar 12 05:29:00.419: RADIUS:  Acct-Authentic      [45]  6   RADIUS                    [1]
    *Mar 12 05:29:00.419: RADIUS:  Acct-Status-Type    [40]  6   Watchdog                  [3]
    *Mar 12 05:29:00.419: RADIUS:  NAS-Port-Type       [61]  6   Virtual                   [5]
    *Mar 12 05:29:00.419: RADIUS:  Vendor, Cisco       [26]  15
    *Mar 12 05:29:00.419: RADIUS:   cisco-nas-port     [2]   9   "0/0/3/0"
    *Mar 12 05:29:00.419: RADIUS:  NAS-Port            [5]   6   50331648
    *Mar 12 05:29:00.419: RADIUS:  NAS-Port-Id         [87]  9   "0/0/3/0"
    *Mar 12 05:29:00.419: RADIUS:  Vendor, Cisco       [26]  41
    *Mar 12 05:29:00.419: RADIUS:   Cisco AVpair       [1]   35  "client-mac-address=aabb.cc00.6430"
    *Mar 12 05:29:00.419: RADIUS:  Service-Type        [6]   6   Framed                    [2]
    *Mar 12 05:29:00.419: RADIUS:  NAS-IP-Address      [4]   6   192.168.38.133
    *Mar 12 05:29:00.419: RADIUS:  Ascend-Session-Svr-K[151] 10
    *Mar 12 05:29:00.419: RADIUS:   37 39 38 32 45 41 38 30          [ 7982EA80]
    *Mar 12 05:29:00.419: RADIUS:  Acct-Delay-Time     [41]  6   0
    *Mar 12 05:29:00.419: RADIUS(0000000E): Started 5 sec timeout
    *Mar 12 05:29:00.419: RADIUS: Received from id 1646/55 192.168.38.131:1813, Accounting-response, len 20
    *Mar 12 05:29:00.419: RADIUS:  authenticator A7 0E 79 40 C5 B5 CF DC - 09 46 27 48 52 BE 01 7D
    What I get in the freeradius log :
    Tue Mar 11 22:30:04 2014
            Acct-Session-Id = "0/0/3/0_00000005"
            Framed-Protocol = PPP
            Framed-IP-Address = 10.10.10.2
            User-Name = "olivier"
            Cisco-AVPair = "connect-progress=LAN Ses Up"
            Cisco-AVPair = "nas-tx-speed=10000000"
            Cisco-AVPair = "nas-rx-speed=10000000"
            Acct-Session-Time = 2646
            Acct-Input-Octets = 7428
            Acct-Output-Octets = 7428
            Acct-Input-Packets = 531
            Acct-Output-Packets = 531
            Acct-Authentic = RADIUS
            Acct-Status-Type = Interim-Update
            NAS-Port-Type = Virtual
            Cisco-NAS-Port = "0/0/3/0"
            NAS-Port = 50331648
            NAS-Port-Id = "0/0/3/0"
            Cisco-AVPair = "client-mac-address=aabb.cc00.6430"
            Service-Type = Framed-User
            NAS-IP-Address = 192.168.38.133
            X-Ascend-Session-Svr-Key = "7982EA80"
            Acct-Delay-Time = 0
            Acct-Unique-Session-Id = "523eac6ae326a778"
            Timestamp = 1394602204
            Request-Authenticator = Verified
    user config in the users file on the freeradius server :
    olivier Cleartext-Password := "olivier"
            Service-Type = Framed-User,
            Cisco-AVPair += "ip:addr-pool=pppoepool",
            Cisco-AVpair += "ip:sub-qos-policy-out=TEST"
    I see that the policy map name is pulled correctly from the radius server and applied to the session :
    #sh policy-map session uid 14
     SSS session identifier 14 -
      Service-policy output: TEST
        Class-map: TEST (match-all)
          0 packets, 0 bytes
          5 minute offered rate 0 bps, drop rate 0 bps
          Match: any
          police:
              cir 8000 bps, bc 1500 bytes
            conformed 0 packets, 0 bytes; actions:
              transmit
            exceeded 0 packets, 0 bytes; actions:
              drop
            conformed 0 bps, exceed 0 bps
        Class-map: class-default (match-any)
          0 packets, 0 bytes
          5 minute offered rate 0 bps, drop rate 0 bps
          Match: any
    Any input very welcome

    Cisco sever is working fine. When you do use non-standard or non-RFC requests from your NAS to the AAA server for instance, you have to configure your server accordingly to instruct it how to handle this kind of requests.
    This is typically done with something called "dictionary", which should be included in your radius server. The server typically decodes all RFC 2865 VSAs (or should), but when a new NAS model is introduced into the network, you can modify it to add any VSAs not appearing in the dictionary, which is your case.
    As an example, imagine you want to change the attribute cisco-vsa-port-string to tagged-string, your dictionary will look somethign similar than:
    And finally you will have to modify with a text editor, or XML editor and change type="tagged-string" supposing your device comply with RFC 2868. Probably
    the AAA server will have to restarted for taking this
    changes into account.
    Also,since this does apply to all devices for this vendor, you've got other option more, which is define your own dictionary for a specific vendor, or even if you wish for a specific NAS or group or NASes.
    In NavisRadius you could associate a dictionary to a
    device adding a client-class:
    # Client-IP Client-Secret Client-Class
    10.0.0.1 secret taos-old
    And then specifying the dictionary later in client_properties for this device:
    # This file contains information about client classes # and is used to set per-client specific information.
    # TAOS Devices in OLD mode with RFC conflicts
    taos-old
    Client-Dictionary=max_dictionary
    # Other devices now, etc.
    Hope it helps

  • Source selection is empty due to inverse mapping

    Hi Experts,
    When execute data collection task, one of Cons unit got the below error.
    "Source selection is empty due to inverse mapping" Message no. UCT8250.
    I checked BI mapping rules and also compare mapping rules in LDS with other cons unit.  There is no change in mapping rules in LDS and nothing had changed in BI mapping rules.
    This is error is shown for one cons unit only, for all remaining task run successfully.  Please explain me how to overcome from this.
    NB: Data collection method was Load from data streams.

    Hi Madhu,
    Please could you elaborate on the master data field in BI (RSA1) as I could see SAP note 751686 to bypass the error message, as the error could be due to incomplete data for the respective company.
    Awaiting your early response
    Regards,

Maybe you are looking for

  • Beginner's question:  Using Time Machine with a WD External Drive

    Hello folks, Could someone help me with some basic questions? I have a MacBook with Mac OSX 10.5.5. It has Time Machine but I've never used it before. I've just obtained a Western Digital External Hard Drive which is Mac compatible but, I'm told, may

  • -ve values when using record mode in ODS delta

    Hi We have an ODS where we are calculating the number of items using update routine.  I'm not sure if the below code is correct. I'm getting -ve values in my item count for delta loads from ODS to cube. ODS data (active) looks correct. But Cube data

  • About MIRO and MIGO

    Hello, I am new for FI module.I want to know about MIRO and MIGO relation and what is it.and from which tables i can find values of it? thanks soniya

  • External Audio Editor ???

    Hi, and thanks in advance for any assistance. I am a relatively new FCP user, but advanced in A/V production overall. I want to export audio clips from FCP into STP. I have it set up correctly so STP is my external editor, and when I click a clip in

  • I would like to know if it is possible to upgrade my graphics card? I am trying to use graphic intensive programs...

    Chipset Model: NVIDIA GeForce 9400   Type: Display   Bus: PCI   VRAM (Total): 256 MB   Vendor: NVIDIA (0x10de)   Device ID: 0x0867   Revision ID: 0x00b1   ROM Revision: 3379   Displays: iMac:   Resolution: 1920 x 1200   Depth: 32-Bit Color   Core Ima