How to use the Precendence_rules.csv file to define the rules of priority in integration ATG-short

Hello

I'm integrating ATG 10.1.2 Catalogue of products with short. I am successfully able to publish data from ATG to store short CASE file and run the update of the base.

I used the model of integration of catalog:

http://docs.Oracle.com/CD/E35827_01/ToolsAndFrameworks.310/PDF/ProductCatalogDTGuide.PDF

The problem I am facing is, I have a dimension created from the structure of the ATG catalogue. I also have dimensions that I created in developer studio.

I want to apply priority rules on the dimension, which I created in dev studio. using the Sun. by coming to the dimval CASE record store. Because I'm not able to view the dimensions to the CASE record store I can't define the rules of priority in dev studio.

Page no. 12 of the guide above, they suggested that I use this precedence_rules.csv file in < app >/config/api - entry directory. I tried all the possible permutations and combinations to add priority rules by using this file, but they still do not work (I checked in JSP REF). All other prules I created in the studio of dev (between dims created in dev.studio) are being created.

Another doubt, I must settle prules on a Sun. Val a dimension named product.category (coming from the record store Sun). Is this format I used below correct (I used the Windows format of folklore as suggested in the guide)?

Precedence.source_dimension_name, Precedence.source_dimval_spec, Precedence.target_dimension_name, Precedence.type

response of Product.Category/Accessories, 102016, Accessories 1, sheet

Ideas/pointers would be greatly appreciated.

I have no way of knowing that my FCM/ConfigurationGeneratorForge is actuall read this file because it didn't we no log being generated.

Thank you

Arjun

I think I understood the problem I had. FCM correctly reads the precedence_rules.csv file, but it supports the priority rules for the dimensions of the root level. I could create a prule for "product.category" (it is NOT a dimension of autogen) which is a dimension created by the components of indexing of the ATG.

It supports mapping prules for dims created in dev.studio and those created from on the side of the ATG and vice versa.

When I tried to add the "product.category/accessories" as the size of the CBC in the priority rule, it does not work. "Accessories" are a dimval under "product.category" and it doesn't have an entry in the record of the CASE of the application schema store. I guess that's the problem that prevents me to add prules to the dimval.

If someone managed to create the rule of priority for a dimval, let me know.

Any help would be greatly appreciated.

Kind regards

Arjun

Tags: Oracle Applications

Similar Questions

  • How to use the rule in WordPad for Windows 7

    Aid for the revised new WordPad for Windows 7 does not mention rule. There is no indication as to the definition of the margins of sovereign or how to click on the settings tab.

    The margin for Wordpad settings are stored in the Page layout dialog box. Access it from the "file" menu (icon just to the right of the home tab).

    Change tabs is a matter of clicking on the rule itself. Once a custom tab has been created, the tab spaces by default in 0.5 are replaced until the tabs custom custom tab can be moved left and right to improve positioning, or dragged the rule to remove. The rule also allows to change the body and the first indents of line from any point.

    If you prefer to work with dialog boxes for the settings section/tab, right-click on any paragraph and select the paragraph menu item. It can also be raised with the paragraph buttonon the home Ribbon, then on the right-most button tab in the second row or paragraph section. The tabs button is at the bottom left of this new dialog box.

    Using WordPad
    http://Windows.Microsoft.com/en-CA/Windows7/using-WordPad

    If you use the Internet to find more information, do not forget to include Windows7 in your search terms so that you get the appropriate information. (for example 'tab in Windows 7 wordpad settings')

    • If this proposal of solution solves your problem, please go back and mark as answer for others to consider.
  • Qosmio F20-155: how to use BT to share files with the mobile phone

    Hello
    I HAVE TOSHIBA QOSMIO F20-155, BUT I DON'T NO HOW TO USE BLUETOOTH TO SHARE FILES WITH MY CELL PHONE
    PLEASE HELP ME

    Hello

    First a simple question: are you sure that your laptop supports Bluetooth?
    AFAIK the Qosmio F20-155 was delivered without the BT module.

    In addition, if you are not sure if the phone has BT then you can check the bottom of the unit. It should be placed a label BT if the Bluetooth has been installed.

  • I can't find a newer version of adobe flash player for ubuntu 14.04, I tried to use the apt version but it wouldn't work and I don't know how to use the tar.gz files and install, I think the current version to .deb

    I can't find a newer version of adobe flash player for ubuntu 14.04, I tried to use the apt version but it wouldn't work and I don't know how to use the tar.gz files and install, I think the current version to .deb

    Hi LF12,.

    The latest version of Flash Player for Linux is 11.2.202.400.  The current versions of Flash Player are displayed here http://www.adobe.com/software/flash/about/. The versions on the page are updated with each new version.

    --

    Maria

  • SQL Loader loading data into two Tables using a single CSV file

    Dear all,

    I have a requirement where in I need to load the data into 2 tables using a simple csv file.

    So I wrote the following control file. But it loads only the first table and also there nothing in the debug log file.

    Please suggest how to achieve this.

    Examples of data

    Source_system_code,Record_type,Source_System_Vendor_number,$vendor_name,Vendor_site_code,Address_line1,Address_line2,Address_line3

    Victor, New, Ven001, Vinay, Vin001, abc, def, xyz

    Control file script

    ================

    OPTIONS (errors = 0, skip = 1)
    load data
    replace
    in the table1 table:
    fields ended by ',' optionally surrounded "" "
    (
    Char Source_system_code (1) POSITION "ltrim (rtrim (:Source_system_code)),"
    Record_type tank "ltrim (rtrim (:Record_type)),"
    Source_System_Vendor_number tank "ltrim (rtrim (:Source_System_Vendor_number)),"
    $vendor_name tank "ltrim (rtrim (:Vendor_name)),"
    )
    in the Table2 table
    1 = 1
    fields ended by ',' optionally surrounded "" "
    (
    $vendor_name tank "ltrim (rtrim (:Vendor_name)),"
    Vendor_site_code tank "ltrim (rtrim (:Vendor_site_code)),"
    Address_line1 tank "ltrim (rtrim (:Address_line1)),"
    Address_line2 tank "ltrim (rtrim (:Address_line2)),"
    Address_line3 tank "ltrim (rtrim (:Address_line3)).
    )

    the problem here is loading into a table, only the first. (Table 1)

    Please guide me.

    Thank you

    Kumar

    When you do not provide a starting position for the first field in table2, it starts with the following after a last referenced in table1 field, then it starts with vendor_site_code, instead of $vendor_name.  So what you need to do instead, is specify position (1) to the first field in table2 and use the fields to fill.  In addition, he dislikes when 1 = 1, and he didn't need anyway.  See the example including the corrected below control file.

    Scott@orcl12c > test.dat TYPE of HOST

    Source_system_code, Record_type, Source_System_Vendor_number, $vendor_name, Vendor_site_code, Address_line1, Address_line2, Address_line3

    Victor, New, Ven001, Vinay, Vin001, abc, def, xyz

    Scott@orcl12c > test.ctl TYPE of HOST

    OPTIONS (errors = 0, skip = 1)

    load data

    replace

    in the table1 table:

    fields ended by ',' optionally surrounded "" "

    (

    Char Source_system_code (1) POSITION "ltrim (rtrim (:Source_system_code)),"

    Record_type tank "ltrim (rtrim (:Record_type)),"

    Source_System_Vendor_number tank "ltrim (rtrim (:Source_System_Vendor_number)),"

    $vendor_name tank "ltrim (rtrim (:Vendor_name)).

    )

    in the Table2 table

    fields ended by ',' optionally surrounded "" "

    (

    source_system_code FILL (1) POSITION.

    record_type FILLING,

    source_system_vendor_number FILLING,

    $vendor_name tank "ltrim (rtrim (:Vendor_name)),"

    Vendor_site_code tank "ltrim (rtrim (:Vendor_site_code)),"

    Address_line1 tank "ltrim (rtrim (:Address_line1)),"

    Address_line2 tank "ltrim (rtrim (:Address_line2)),"

    Address_line3 tank "ltrim (rtrim (:Address_line3)).

    )

    Scott@orcl12c > CREATE TABLE table1:

    2 (Source_system_code VARCHAR2 (13),)

    3 Record_type VARCHAR2 (11),

    4 Source_System_Vendor_number VARCHAR2 (27),

    5 $vendor_name VARCHAR2 (11))

    6.

    Table created.

    Scott@orcl12c > CREATE TABLE table2

    2 ($vendor_name VARCHAR2 (11),)

    3 Vendor_site_code VARCHAR2 (16).

    4 Address_line1 VARCHAR2 (13),

    5 Address_line2 VARCHAR2 (13),

    Address_line3 6 VARCHAR2 (13))

    7.

    Table created.

    Scott@orcl12c > HOST SQLLDR scott/tiger CONTROL = test.ctl DATA = test.dat LOG = test.log

    SQL * Loader: release 12.1.0.1.0 - Production on Thu Mar 26 01:43:30 2015

    Copyright (c) 1982, 2013, Oracle and/or its affiliates.  All rights reserved.

    Path used: classics

    Commit the point reached - the number of logical records 1

    TABLE1 table:

    1 row loaded successfully.

    Table TABLE2:

    1 row loaded successfully.

    Check the log file:

    test.log

    For more information on the charge.

    Scott@orcl12c > SELECT * FROM table1

    2.

    RECORD_TYPE SOURCE_SYSTEM_VENDOR_NUMBER $VENDOR_NAME SOURCE_SYSTEM

    ------------- ----------- --------------------------- -----------

    Victor Ven001 new Vinay

    1 selected line.

    Scott@orcl12c > SELECT * FROM table2

    2.

    $VENDOR_NAME VENDOR_SITE_CODE ADDRESS_LINE1 ADDRESS_LINE2 ADDRESS_LINE3

    ----------- ---------------- ------------- ------------- -------------

    Vinay Vin001 abc def xyz

    1 selected line.

    Scott@orcl12c >

  • Tecra A8 - how to use the Clipboard?

    How to use the Clipboard?

    I don't know is it instaled when I use the recovery disc.

    After 3 years I do not know how to us it.

    Can help the somebady by PFIC step-by-step instructions

    Hello

    I have no idea of what you want to do and what should I Clipboard Viewer tell you exactly, but AFAIK the Clipboard Viewer are a part of Win XP.
    It s located in the folder C:\Windows\system32
    The file named clipbrd or clipbrd.exe

    You can also start typing Clipboard Viewer CLIPBRD in RUN.

    Welcome them

  • How to use the prtsc button please, so I can capture Bank to receive the shipment?

    How to use the prtsc button please, so I can capture Bank to receive the shipment?

    If you can view receipts from the Bank to the screen... just left
    Click on your print screen button to copy the screen of your
    Windows Clipboard. Then... Open Windows Paint and
    Reach... Editing / paste. Then go to... File / save as / JPEG.

    If the file needs cropping... you can use the 'Fix' edition
    option in the Windows Photo Gallery.

    Another option:

    If you run any version of Vista Basic...
    the capture tool can be a better tool for the job:

    Use capture tool to capture screenshots
    http://Windows.Microsoft.com/en-us/Windows-Vista/use-Snipping-Tool-to-capture-screen-shots
    (Vista Home Premium, Business, Ultimate, Enterprise)

    Windows Vista - activate the Vista Snipping Tool
    http://www.PCWorld.com/article/137099/activate_vistas_snipping_tool.html

    Vista tutorial - How to use the tool captures of Vista
    http://www.Vistax64.com/tutorials/148532-how-use-Snipping-Tool-Vista.html

  • Help... How to use the recovery on Pavilion g4 2014tx partition

    Hi all... Would like to ask how to use the recovery partition and what is the effect if I used it... ?

    Thank you...

    Hello:

    You normally start the PC, and at the beginning of the HP welcome screen, you press the F11 key to start the Recovery Manager program.

    Then follow the instructions to restore your PC to its state of software "out of the box.

    In so doing you re-partition and reformat the hard drive.

    All THE data you have on the PC will be lost.

    So make sure that you copy the files that you want to keep on a portable hard drive before proceeding.

    It is also for if you have created a storage partition. You must copy all the files from that too.

    All partitions are erased and redone.

  • How to use the background rim start page: allowInvokeParams

    Hello

    How to use the element of the rim: background? what it is?

    1. To run javascript? openBISPushListener?
    2. Can you pass parameters between it and the content page?
    3. How to pass parameters between it and the content page?

    It defines a page will be loaded in the background when your application starts.  This page is intended to run any startup logic (for example starting listeners - Push is an excellent example) that your application may need to depend on, without any user interface.

    This background page is WITHOUT user interface.  Any attempt to interact with the user interface (for example change the DOM, calling alert() statements, etc.) will result in no action.  Nor will calls to redirect, since the background page does not interact with the pages of foregroud - if no query string.

    To answer your question - ' How do you pass parameters between it and the content page.  I suggest using a technique of storage like localStorage, WebDB, or same file offline.

  • How to use the device as a simulator.

    Hi all

    Can someone tell me how to use the device (with my development pc) as Simulator.

    Whenever I need to check the appilcation in device of signed files .cod that is compiled in the Simulator.

    Because I got the outofmemory error in the device rather than simulator.

       

    Thus, any solution which signed without how can I check my direct request to the device itself. Any setting in preferences or etc...

    Thank you

    Tejas

            

    The only way you should not sign the cod is if no controlled classes/interfaces are used. The easy way to find out is to open the SignatureTool and see if your application requires signature. Otherwise this says icefrost1 's good enough solution.

  • How to use the digitizer pen

    Hello

    I just got my new X230T and I can't find how to use the pen from the digitizer.

    Is it possible to write directly on word or a PDF file?

    This video shows that we can configure the stylus but I don't know where!

    http://www.YouTube.com/watch?v=Dy1bg7jRiAE

    I've also heard the box tools Lenovo think Vantage. Where can I download it?

    If anyone can help me, I would be grateful.

    Lenovo X230T with 64 bit of Windows 8

    Toolbox ThinkVantage... She shouldve is preinstalled on your system. You can check support.lenovo.com and look at the driver downloads, however, im not sure if they have eliminated this program. the program that the guy has been used on youtube is called windows journal.

    but other programs that you can write directly on grahl pdf annotator, a single note of microsoft office, microsoft word and office outlook (However, users only for outlook office outlook can see each other drawings).

    personally, I use grahl pdf annotator and there is more to school

  • How to use the camera application

    original title: using the camera application

    According to me, that there is a photo on Metro Screen App.  Is there a documentation or a tutorial on how to use it and what it is for?

    When I click it, I see three small icons in the bottom right...  Camera, Timer and video options.  I don't know what to do with them.

    I see me, looking me in the opposite direction, that seems odd.  I found a folder in my pictures, to my surprise, with pictures of me and two videos! I think that pictures should occur when I click on the screen, but I have no idea how I created a video or how to do it again.

    This looks like a fun app but I need help to use.  I couldn't find anything in the help files.

    Any help would be greatly appreciated.

    MaryLou

    Note: I probably don't not select the category of app so if not, please move this where it needs to go.

    Dena, regardless on the computer because it is an external Kodak camera.  I know how to use the camera itself, but the camera application that appears on the screen of metro is NOT just easy to use.  It shows 3 small icons, one is a timer, the other is for the videos and I forgot what the other one was for.

    In any case, I finally thought to it.  To use the camera, you click on it, then you must click on the screen to start the camera going.   I'm not sure that the timer is for, but again, once you click on the timer icon, you click on the screen to start the timer.

    My camera screen is not screen mode have won 8 metro.  The camera works fine via desktop applications.  I have it working in the version of Win 8 of Skype as well.

    I like to win 8 but it is so lacking in the documentation that it is difficult to learn to use the new ways of doing.

    Thanks for the reply but as I said... has been resolved.

  • How to use the global variable in the table target?

    Hello

    I am trying to load several files into a single interface. the data is loaded successfully. 92. the files are there. for this I used variables and package.

    My requrement is 92 files of data loaded into the target table. I want to know what data from file.

    to this I added a column (filename) to the existing target table.

    If I used joints (not same condition), its totally wrong. all file names are coming.

    Please see the following screenshots.

    err27.jpg

    exit; target table.

    err26.jpg

    in fact in the target table. first 10 lines are coming from file.i.e first _ACCOUNT_LIMIT_511.TXT. but all the files names are coming.

    I'm confuse. After the first data file inserted then insert second data file. in that all file names are coming. Please help me.

    I thought that the global variable is preferable to identify the data came from which file.

    to do this, the global variable is used in the target table. I don't always have my exit.

    Please help me.

    Thanks in advance.

    err25.jpg

    Hello

    You can use the same way, how you use the project variable, just you have to do a thin is #GLOBAL.variable_name for example: #GLOBAL. SMART_AL_FILE_NAME_S

    Note: Make sure you that while you use one variable overall in interface, indicator should be staged as you chose above the screen

    hope this helps you

    Kind regards

    Phanikanth

  • How to use the platform of character even in the same scene several backgrounds without looping the platform of character chronology

    How to use the platform of character even in the same scene several backgrounds without looping chronology of the platform of character? Is it still possible without having to do the scene with another background on another file? To better explain the situation, I have a flash file which has a background and a rig which passes to another context and drilling on another layer and keyframe, but when I go back to the previous background and chronology of this drilling rig repeats, rather than leave, you are doing a new time for this platform. Do I need more than one file?

    In order to reuse assets to animate, you need to duplicate each symbol in the scene who will be the new animation. So, copy and paste the stage on a new layer, right-click on it and select double symbol, then double-click inside the symbol and select each symbol that is going to change, so that the background and the rigging and also select symbol duplicated for those files as well. usually, when I animation I do not use the main platform in the scenes, duplicate as 'Guy1_sc 1', then place it in the scene so that the path I never uses the master file. 'Guy1_sc 2' is a different file. Also if you lipsync and stalled the head separately you will need to reproduce, so, for each scene, is also unique. I hope this makes sense.

  • How to use a hyperlink (hyperlink, file - PDF to PDF) in MS Reader on Android?

    How to use a hyperlink (hyperlink, file - PDF to PDF) in MS Reader on Android?

    Hi vaclavt6237654,

    I'm sorry, but it is not possible to add hyperlinks to a PDF file in MS Reader on Android.

    You could do the same thing using the Adobe Acrobat software.

    Reference: https://helpx.adobe.com/acrobat/using/links-attachments-pdfs.html

    Hope it will be useful.

    Kind regards

    Ana Maria

Maybe you are looking for

  • Satego X 200 - XP Display Driver (Nvidia Geforce 8600 M GT)

    Hello Finally, I managed to install XP on my 2. HDD - next to Vista (in order to get rid of Vista later). What I still need is a proper display driver, as Toshiba offers only one for ATI. I found lots of posts with similar topics in the www (laptopvi

  • Card driver Wifi HP Pavilion 15-n002sk moved (8.1 to Windows 64 - bit)

    Hello world I've already installed Windows 8.1 64 bit on my laptop and the card Wifi is not already installed. I tried to download the Wifi card driver and I found 3 drivers: MediaTek (Ralink) 802.11 (WLAN) wireless LAN adapter http://h10025.www1.HP.

  • I have Windows VISTA, but need Windows 2000 or XP

    I can not activate the fax or scan operations of my HP 4315 all-in-one with windows vista which is standard on this dell. What can I do to activate these features?

  • Copy and paste Menu

    Hello Is it possible to disable copy and paste it on certain pages? Also, is it possible to add items to this menu? (One seen when click and hold on a bit of text) Thank you Phil

  • Cannot uninstall HP Image Zone express

    using Windows XP Home Edition & need to uninstall HP Image Zone Express - by clicking 'delete' in Add / Remove programs has no effect?  Could not find an uninstall any program among the progs of area of the Image. -Suggestions?