Targeters item descriptor type

Hi!
I created a new property in product item... I'm trying to link a product with a specific targeter. I need to know the item descriptor type of targeters to create the appropriate link between then.
I appreciate any help.
Thanks in advance!

I created a droplet to verify if a targeter exists

Similar Messages

  • How to add new item-descriptors in ATG Merchandising 10.0.3 Browse-find tab

    Hi,
    We are using ATG 10.0.3 and Weblogic5.
    And in my project we have lots of new item descriptors in customCatalog.xml.
    We are managing Catalog using ATG BCC and it populates only ATG OOTB item descriptors. So I am finding hard to configure other item descriptors in BCC to forward my work.
    We configured item descriptors in CatalogBrowseTabConfiguration.properties file as well as taskConfiguration.xml. But its not working as expoected. Anybody have any idea how can we configure it in ATg10.0.3 mainly? The Configuration in ATg9 is not working in ATG 10.0.3, that is what I noticed.
    Thanks
    Mini

    If you're trying to modify the Merchandising view and you have custom item types in customCatalog.xml that don't extend the out of the box types (Category, Product, etc.), you may find the two links below to be helpful.
    Customizing the "Browse" view:
    [http://blog.credera.com/topic/technology-solutions/java/atg-10-merchandising-customizing-the-browse-view/|http://blog.credera.com/topic/technology-solutions/java/atg-10-merchandising-customizing-the-browse-view/]
    Customizing the "Find" view, i.e. search.
    [http://blog.credera.com/topic/technology-solutions/java/atg-10-merchandising-customizing-the-find-view/|http://blog.credera.com/topic/technology-solutions/java/atg-10-merchandising-customizing-the-find-view/]

  • Item descriptor property attribute ?

    Hi
    In Item Descriptor I have Declared one property with required="true" But while creating that Table I didnt use Not Null constraint to that Column.
    If I declare like this is it throw any Error , where exactly it will effect I mean while server start up or at that time of Inserting Data ?
    Thanks
    user8729783

    You should either make required="false" or put a not null constraint on DB column.
    You should put the property and column in sync.
    The issue will not come in startup, but definitly when you will be updating the data from BCC and trying to save.
    It will give you exceptions and not save data.
    It will not give you problem when you are having only one item present in BCC and trying to save it.
    The issue will come when you have multiple items of the above type, and you are trying to save one item, then it will give exception.
    As a workaround, In that case you ll have to update all items at once via import XL, otherwise you ll not be able to do directly via BCC.
    But this is not recommended that you have one property as required and in DB you have no not null constraint.
    ~Gurvinder

  • What is a "descriptor type mismatch" occurred?

    I'm using iMagine Photo to export some graphics and I can't for the life of me understand why I keep getting a
    "iMagine Photo got an error: A descriptor type mismatch occurred".
    Just what is a descriptor type mismatch??
    The script hangs up at the
    tell thisImporter to make exporter with properties {export folder location:exportFolder, export file name:fileName, export resolution:{72.0, 72.0}}
    command.
    Thanks.
    Pedro
    Here's the whole script:
    property gCopyrightText : ""
    property gNewExifList : {}
    property gDestFolder : missing value
    property gExifList : {}
    property unicodeType : 1
    property floatType : 2
    property intType : 3
    property float3Type : 4
    global exportFolder
    set theFolder to "Photo [OSX]:Users:home:Desktop:temp export:"
    --set folderRef to exportFolder
    --return folderRef
    if (count of gExifList) is equal to 0 then
    InitExifList()
    end if
    set fullTitleList to {}
    set theResult to gExifList
    set gNewExifList to {}
    repeat with i from 1 to the count of gExifList
    copy titleText of (item i of gExifList) to the end of fullTitleList
    end repeat
    set gNewExifList to gExifList
    tell application "Finder"
    set myFolder to ¬
    (choose folder with prompt "Where are my photos?")
    set theFiles to every file of myFolder
    set gDestFolder to myFolder
    repeat with i from 1 to count of theFiles
    set thisFile to item i of theFiles as alias
    set fileName to the name of thisFile
    tell application "iMagine Photo"
    activate
    set thisImporter to import graphic thisFile
    set exportFolder to "Photo [OSX]:Users:home:Desktop:temp export:"
    tell thisImporter to make exporter with properties {export folder location:exportFolder, export file name:fileName, export resolution:{72.0, 72.0}}
    set theExtension to the export file extension of thisImporter
    set the export file name of thisImporter to (fileName & theExtension)
    set exportedFile to exportFolder & fileName as alias
    export thisImporter
    set exifData to the exif data of thisImporter
    tell application "Preview"
    open exportedFile
    end tell
    set myInfo to the exif unicode of item 1 of exifData --something like that
    set myTID to AppleScript's text item delimiters
    set AppleScript's text item delimiters to ";"
    set theSchool to first text item of myInfo
    set theCategories to second text item of myInfo
    set theEvent to third text item of myInfo
    set theKeywords to fourth text item of myInfo
    set theID to fifth text item of myInfo
    --return theID
    set AppleScript's text item delimiters to ":"
    set theID to second text item of theID
    set AppleScript's text item delimiters to myTID
    set thePhotog to the exif unicode of item 6 of exifData
    set gArtistText to thePhotog
    display dialog ¬
    "Who are the people in the photograph (from left to right)?" default answer theID
    set theID to "ID" & ":" & space & (text returned of result)
    set gImageInfoText to theSchool & ";" & theCategories & ";" & theEvent & ";" & theKeywords & ";" & space & theID & ";"
    set firstItem to {exif type:copyright, exif unicode:gImageInfoText}
    set newExifData to {{exif type:info, exif unicode:gImageInfoText}}
    repeat with i from 1 to the count of exifData
    set thisItem to item i of exifData
    set thisItemExifType to the exif type of thisItem
    repeat with j from 1 to the count of gNewExifList
    if thisItemExifType is equal to the exif type of (item j of gNewExifList) then
    copy thisItem to the end of newExifData
    end if
    end repeat
    end repeat
    tell thisImporter to make exporter with properties {export file type:"JPEG", export folder location:(theFolder), export file name:fileName}
    set the export exif data of thisImporter to newExifData
    export thisImporter
    close thisImporter
    end tell
    end repeat
    end tell
    on InitExifList()
    using terms from application "iMagine Photo" -- iMagine Video users replace Photo with Video.
    set gExifList to {{exif type:exif make, exifData:unicodeType, titleText:"Maker"}, {exif type:exif model, exifData:unicodeType, titleText:"Model"}, {exif type:software, exifData:unicodeType, titleText:"Software"}, {exif type:orientation, exifData:unicodeType, titleText:"Orientation"}, {exif type:exposure time in seconds, exifData:floatType, titleText:"Exposure Time (sec)"}, {exif type:aperture fNum, exifData:floatType, titleText:"Aperture fNum"}, {exif type:exposure program, exifData:unicodeType, titleText:"Exposure Program"}, {exif type:ISO film speed, exifData:intType, titleText:"ISO Film Speed"}, {exif type:capture date, exifData:unicodeType, titleText:"Capture Date"}, {exif type:exposure bias EV, exifData:floatType, titleText:"Exposure Bias"}, {exif type:metering mode, exifData:unicodeType, titleText:"Metering Mode"}, {exif type:light source, exifData:unicodeType, titleText:"Light Source"}, {exif type:flash, exifData:unicodeType, titleText:"Flash"}, {exif type:focal length mm, exifData:floatType, titleText:"Focal Length"}, {exif type:capture width in pixels, exifData:intType, titleText:"Capture Width (pixels)"}, {exif type:capture height in pixels, exifData:intType, titleText:"Capture Height (pixels)"}, {exif type:gps latitude ref, exifData:unicodeType, titleText:"Latitude Reference"}, {exif type:gps longitude ref, exifData:unicodeType, titleText:"Longitude Reference"}, {exif type:gps latitude, exifData:float3Type, titleText:"Latitude"}, {exif type:gps longitude, exifData:float3Type, titleText:"Longitude"}, {exif type:gps altitude, exifData:floatType, titleText:"Altitude (m)"}, {exif type:gps altitude ref, exifData:intType, titleText:"Altitude Ref"}}
    end using terms from
    end InitExifList
    G5 Mac OS X (10.3.8)
    G5   Mac OS X (10.3.8)  

    In ...
    set CR2File to myFolder & CR2FileName
    ... you are trying to concatentate a path (myFolder) with a string (CR2FileName), into a string. Instead, AppleScript considers the 'CR3File' (after 'set') to be a list (or array) and thus the {alias ..., "..."} result.
    I do not follow your two ...
    set thisFile to item i of theFiles as alias
    ... lines, one after the other; nor the ...
    return CR2File
    ... line. Considering you are using 'return' as if to return from a user created handler. 'return' can also be used, in AppleScript, to represent a carriage return.
    Below is code, I believe - you were trying to create.
    Note the use of 'repeat with i in theFiles' and using only 'i', in place of 'repeat with i from 1 to count of theFiles' and needing to use 'item i of theFiles'.
    set myFolder to choose folder with prompt "Where are my photos?"
    tell application "Finder" to set theFiles to every file of myFolder whose name ends with ".JPG"
    set tLIst to {}
    repeat with i in theFiles
    copy ((myFolder as string) & ((characters 1 through (offset of "." in ((name of i) as string)) of ((name of i) as string)) & "CR2" as string)) to end of tLIst
    end repeat
    tLIst
      Mac OS X (10.4.4)  

  • Calculation for subcontracting item of type N (non stock) as it for type L(Stock)

    Hi Gurus,
    I have a Requirement for calculating the cost for Subcontracting  Non stock items N as it is getting calculated in standard functionality for subcontracting items of Type L.
    This will be done in CK11n ( used to calculate the standard cost estimate of the product) for header as well as component materials.
    please suggest the user exit or Badi where i can change.
    Please refer the below logic-
    BOM for the material 2000500 as Header and 1LPL0835298AB as a component and this component has an assembly with 7008508 as a component and this component is an Sub contracted item and this has an assembly with component 1LBA182151-3.
    Price calculation for the material 7008508 (Item Category as N). Since this is sub contracted item the price will picked from field EINE-NETPR.
    In EINA, pass the material (MATNR=7008508) to fetch the list of info records (INFNR) created for that material.
    Then it has to input those info records to EINE table along with Purchasing organization (EINE-EKORG=PT02).
    From the output of EINE table, it should compare the price (EINE-NETPR) of the PIR and should take the least price from those PIR`s.
    If the currency is other than PLN, then it should be converted to PLN based on conversion charges.
    For Material (MATNR=1LBA182151-3), it should pass the material number to table MBEW along with valuation area (BWKEY = WERKS).
    From the output, it should check the Price control (VPRSV) ‘V’ or ‘S’
    If ‘V’ the price will be picked from the field “VERPR”
    If ‘S’ the price will be picked from the field “STPRS”
    Also from the output, it should check the Price unit (PEINH) ‘1’ or other than ‘1’. If it is other than ‘1’ it should divide the VERPR or STPRS by PEINH. Then this is the price of the Material “1LBA182151-3”.
    The material (MATNR=1LBA182151-3) should be passed to table “MARA” and will take the Base unit of measure from that table “MEINS”.
    Br,
    Surya

    Hi Surya,
    Please put breakpoints in any of the below BADI's and check if any of them will trigger for your
    requirement:
    VALUATION_CK                            BAdI for Valuation in Product Costing
    CK_KALAMATCON2_CI                       BAdI for CI Fields for Table KALAMATCON2
    COSTINGRUN_CK                           Edit Costing Run
    COST_APPORTION_CK                       Maint Apportionment Structure Joint Production: Dist Rules
    CO_PROD_COSTING_CK                      Cost Management for Joint Products (Costing, Target Costs)
    DATA_EXTENSION_CK                       For Data Enrichment in Product Costing
    DYNPRO_EXTENSION_CK                     BAdI for Interface Enhancement in Costing
    ORDER_COSTING_CK                        Enables Header Data Changes in Preliminary Order Costing
    QUANTITY_STRUCT_CK                      Enables Quantity/Structure Changes in Costing
    SUR_STOCK_TRANSF_CK                     Overhead on Materials with Stock Transfer Between Plants
    Thanks
    Sri

  • How can i change the list of values for the items of type displaying in a ACC in ID format to Name format?

    I have 2 tables venue and concert. i have imported dummy values from xml file and data is imported to db successfully. when i go to ACC, afer select my EventsRepository->concert->click list. showing results in ID formatEventRepository:Concert:70701.
    Can anyone tel me how to show my results by name?

    You need to set the display-property="<<Your name property>>" in item-descriptor tag.
    e.g. <item-descriptor name="myItem" display-property="name" />
    Cheers
    R

  • How to dynamic set messageInputText item data type?

    Hi,
    I have a LOV and other messageInputText items on the page. I need to be able to change the messageInputText item data type based on the value selected from LOV. How can I do that?
    DD

    1)Allow PPR on the item that receives the LOV values
    2)Edit the VO query and create a SQL based column, which in turn will control the switcher. Something like –
    decode(nvl(to_char(EmployeeEO.END_DATE), 'N'), 'N', 'DataType1', 'DataType2') AS DELETE_SWITCHER
    3)Now add a switcher region with two cases in your page. Each case should represent the two possible values defined in the SQL based column ( “DataType1”, DataType2” in the above example).
    4)Add two messageTextInput items under each case, but with different datatypes.

  • Item Condition Type

    Hi Team,
    Can anyone tell me please whether in pricing we have a Item Condition Type with no access sequence( i.e no tables maintained hence no records as well which usually is contrary to Item Conditions).
    An explanation alongwith for better understanding of the same
    Thanks.
    Regards  SK

    Hi swathi
    If your question is related to header or item related condition type then the best example of  item condition type is VPRS .which doesnt have access sequence but it is an  item  condition type
    Header condtion types doesnt have access sequences
    please let me know if you have any queries
    Regards
    Srinath

  • 0crm_complaints_i doesnot extract for few item object types

    Hi Gurus,
    I need to have data records in BI box with respect to item object types BUS2000164 and BUS2000185. I have tried with 0CRM_COMPLAINTS_I. There I have data records corresponding to BUS2000160, BUS2000161 and BUS2000167. But not the above ones. I have checked other relevant datasources as well. But couldn't find one.
    It would be of great help if anybody can provide me the solution or give me some clue.
    Thanks in advance!!!

    I have the same quesiton
    Have you solved this problem?

  • Header condition types and item condition type

    Hello Gurus,
            this is a simple question. does the header condition types are totally same as item condition types ?
    thanks very much!

    hi,
    header:
    If this condition is marked as a header condition, it is possible to enter the condition type in the header condition screen. Checks for changing the condition manually are unaffected by this.
    the header conditions calculate the header value
    item :  conditions of this type are allowed to be entered in the document items. The condition is then only valid for the particular item in which it is entered.
    item condition calculate at item level
    (freight condition)for eg = HD00 is a header condition .here if you have 10 materials and this cond type calculates the freight charges for all the 10 items.
                KF00 is aitem condition.here system caliculates the freight charges only for that particular items.
    Edited by: MANI ROOPA SD/MM on Apr 24, 2008 2:32 PM

  • Item      Seller      Type      Unit Price iBlacklist - Block Unwanted Calls, v1.0 (4 ) Write a Review Report a Problem      Max Kub      App      $4.99 but show other application"secret contact" on screen .can't block any contact

    Item
    Seller
    Type
    Unit Price iBlacklist - Block Unwanted Calls, v1.0 (4 ) Write a Review Report a Problem
    Max Kub
    App
    $4.99
    but show other application"secret contact" on screen .can't block any contact. so seems tyhat i order one aplication "iBlacklist - Block Unwanted Calls, v1.0 (4 )" but get another application "secret contact "as it appear on screen ????

    Reply to n82phone:
    what you are telling i think is too much. I've read your requests and believe me some of them is out of context. One example is listening to radio while being on a call. Who would like to have such options?? It's ridiculous.
    But But it doesn't mean all of them are ridiculous! Just like the #1 concerning music, #4 concerning the camera and #5 concerning the volume, I strongly agree with you as it makes sense!
    So if I was to write to nokia, which I will do in the coming days is to write them again:
    Points #1,4,5,9,11,14,15,24! These are strong points!
    People out there, if you want the changes I specified to be done by nokia, you should write them the same points. If only one or two write, it's useless, they won't take it as a priority.
    Of course, don't copy paste or they will think the same person is spamming them. I hope it's clear. Write in your own words. Don't think changes will be done by magic or by doing nothing with arms folded. You should do a move.
    THIS IS A USER TO USER FORUM. YOU CAN POST YOUR PROBLEM HERE. WE'LL DISCUSS ABOUT IT, THEN ALL OF US SHOULD WRITE NOKIA TO CORRECT THE MATTER IF IT CONCERNS FIRMWARE. FOLLOW THE LINK "CONTACT US > CALL OR EMAIL NOKIA CARE" TO REPORT THE PROBLEM TO NOKIA.
    Thank you
    Message Edited by fafanne on 18-Oct-2008 01:51 AM

  • Item/service type

    hi all,
    In sales order content tab item/service type what is use of service type.
    in what condition we use this type
    thanks
    rahul

    Hi Rahul,
    please see the SAP Business One on-line-help file:
    Document Type and Summary Type Fields
    Item/Service Type Choose one of the following options:
    Item u2013 to create a purchasing document for items defined in the Inventory module.
    Service u2013 to create a purchasing document for a service that has not been defined as an Item in SAP Business One, such as a one-time consultation.
    The table view on this tab is different for each option.
    All the best,
    Kerstin

  • Item Source Types Explanation and Examples

    Hi all,
    I have been confused about the different type of Item Source Type and how to use them.
    I mean i understand for PLSQL Expression or Function, I can just put for example : NVL(:P3_ITEM_NAME,'Default'), GET_SOMETHING(:P0_ITEM_ID)
    But I need example for the following types :
    1. SQL Query
    --&gt; select max(date) from xxx; &lt;--- correct???
    2. PL/SQL Function Body
    3. Preference
    4. PL/SQL anonymous block
    I tried
    declare
    begin
    if :P9_LAST_SAVED is NOT NULL then
    :P9_WELCOME := 'Welcome '||:P9_ALIAS||' !';
    end if;
    end;
    not working :)
    Can anyone enlighten me about this? I tried googling this but to no avail.
    Cheers,
    Joel
    Edited by: joel2 on Mar 3, 2009 5:07 PM

    PL/SQL Function Body
    declare
    begin
    if :P9_LAST_SAVED is NOT NULL
    then
    RETURN 'Welcome '||:P9_ALIAS||' !';
    else
    return 'foo'; -- functions must return a value
    end if;
    end;
    PL/SQL Anonymous Block
    begin
    if 1=1 then
    htp.p('foo');
    else
    htp.p('bar');
    end if;
    end;
    Scott

  • Calculation of cost for subcontracting item of type N (non stock) as it calculating for type L(Stock)

    Hi Gurus,
    I have a Requirement for calculating the cost for Subcontracting  Non stock items N as it is getting calculated in standard functionality for subcontracting items of Type L.
    This will be done in CK11n ( used to calculate the standard cost estimate of the product) for header as well as component materials.
    please suggest the user exit or Badi where i can change.
    Please refer the below logic-
    BOM for the material 2000500 as Header and 1LPL0835298AB as a component and this component has an assembly with 7008508 as a component and this component is an Sub contracted item and this has an assembly with component 1LBA182151-3.
    Price calculation for the material 7008508 (Item Category as N). Since this is sub contracted item the price will picked from field EINE-NETPR.
    In EINA, pass the material (MATNR=7008508) to fetch the list of info records (INFNR) created for that material.
    Then it has to input those info records to EINE table along with Purchasing organization (EINE-EKORG=PT02).
    From the output of EINE table, it should compare the price (EINE-NETPR) of the PIR and should take the least price from those PIR`s.
    If the currency is other than PLN, then it should be converted to PLN based on conversion charges.
    For Material (MATNR=1LBA182151-3), it should pass the material number to table MBEW along with valuation area (BWKEY = WERKS).
    From the output, it should check the Price control (VPRSV) ‘V’ or ‘S’
    If ‘V’ the price will be picked from the field “VERPR”
    If ‘S’ the price will be picked from the field “STPRS”
    Also from the output, it should check the Price unit (PEINH) ‘1’ or other than ‘1’. If it is other than ‘1’ it should divide the VERPR or STPRS by PEINH. Then this is the price of the Material “1LBA182151-3”.
    The material (MATNR=1LBA182151-3) should be passed to table “MARA” and will take the Base unit of measure from that table “MEINS”.
    Br,
    Surya

    Hi Surya,
    Please put breakpoints in any of the below BADI's and check if any of them will trigger for your
    requirement:
    VALUATION_CK                            BAdI for Valuation in Product Costing
    CK_KALAMATCON2_CI                       BAdI for CI Fields for Table KALAMATCON2
    COSTINGRUN_CK                           Edit Costing Run
    COST_APPORTION_CK                       Maint Apportionment Structure Joint Production: Dist Rules
    CO_PROD_COSTING_CK                      Cost Management for Joint Products (Costing, Target Costs)
    DATA_EXTENSION_CK                       For Data Enrichment in Product Costing
    DYNPRO_EXTENSION_CK                     BAdI for Interface Enhancement in Costing
    ORDER_COSTING_CK                        Enables Header Data Changes in Preliminary Order Costing
    QUANTITY_STRUCT_CK                      Enables Quantity/Structure Changes in Costing
    SUR_STOCK_TRANSF_CK                     Overhead on Materials with Stock Transfer Between Plants
    Thanks
    Sri

  • New item-descriptor and ATG needed changes

    Hello there,
    I was facing the same problem that related on this thread (Catalog Maintanance Service and I solved it adding my custom sku on CMS.
    My question is, Is there other components that I must edit adding my custom sku item-descriptor?
    Or, is there a doc that shows what components must be updated when creating a new item-descriptor?
    Thanks.

    I don't think you will found consolidated configuration required when adding a new item. It's scattered in different Oracle manuals, like Repository configurations can be found in Repository guide, CMS configurations can be found in Commerce programming guide, Search related configuration can be found in Search Admin guide, if you wan to customize how your new item will be displayed in BCC the information can be found in BCC admin guide.

Maybe you are looking for

  • No incoming calls or texts for 9 days!!!

    My number of 15yrs ported over from tesco last week and worked fine at the start but for the past 9days I haven't received a call or text? I have been onto 150 every single day and nobody has a clue. I have had all sorts of resets, refreshes, sim swa

  • HT204065 Group text with one non iPhone not working on iPhone 6 in the group.

    Group text with one non iPhone not working on one iPhone 6 in group. SMS, MMS and iMessage as well as group messaging are all turned on. Has worked intermittently but now cannot see or respond in that particular chain. Can send independently to the n

  • F110 - Hide Bank Account Info in Proposal

    We are using F110 to generate payments for Employee Vendors.  The proposal displays the employees Bank Account Information.  Is there any user exit or Badi or any other way to suppress the Bank Information?

  • Problem when update kernel NW 7.0 To NW7.0 EHP1

    Dear ! I use OS Redhat Enterprise 4 32bit I'm upgrading or updating my Netweaver 7.0 with SPS 18/BI Patch 20 to Netweaver 7.0 EHP1 and when running tcode SAINT and selecting all the queue suggested by SAINT, the following message pops up: OCS package

  • Webcams for ipad 1?

    Hi does anyone know if there are any webcams that work with iPad 1? either using the camera connection kit/adapter or via a bluetooth? thanks.