"name" Field in AICustomColor Structure in CS2

Hi, does anybody know why has the "name" field disappeared from AICustomColor Structure in CS2-Vesion of Illustrator SDK?
I create new color with CustomColorSuite->NewCustomColor(handle, name, color).
After that, I cannot fetch this name using GetCustomColor() function (when trying to list all custom colors used in document). In general, the name cannot be retrieved using this suite. The corresponding field doesn't exist anymore.
Is ist possible to use ai110customcolor.h (part of 11 SDK) together with Illustrator CS2?
Thanks is advance,
Alexander

Hi Philip,
Following link will be helpful in filling field catalog.
Re: Problem with Field catalog
In changing parameters of this FM, field catalog is defined with table type SLIS_T_FIELDCAT_ALV.
Regards,
Mohaiyuddin

Similar Messages

  • Target file name as field in target structure

    Hi SDNers,
    I have a requirement where I need to populate a field in target structure with the target file name, this will be a counter.
    So if the interface is run 2 times already the third file should have name XXXXXXX_03 and also this needs to be mapped to a field in the target structure.
    Any ideas on how to achieve this?
    (Pls Note: I am aware of ASMA and variable substitution)
    Regards,
    Gautam Purohit

    Hello Gautam!
    File adapter - How to pass File name and path at runtime
    This SDN topic probably covers the requirement you mentioned!
    BR,
    Lucas

  • Name of field in a structure

    Hi all,
    hope somebody can help me.
    Is there an easy way to find out the name of a specific field in a structure?
    Example:
    data:
    begin of hugo,
    name type string,
    surname type string,
    end of  hugo.
    hugo.name = 'HUGO'.
    hugo.surname = 'WOLF'
    Now I want to write "Name", the field of the structure..
    Is there a easy way to that dynamically.
    I know in this example the easiest way would be "write 'Name'.", but it's just an example.
    Hope sb can help me
    Kind regards.
    Philip

    Hi Philip,
    Following link will be helpful in filling field catalog.
    Re: Problem with Field catalog
    In changing parameters of this FM, field catalog is defined with table type SLIS_T_FIELDCAT_ALV.
    Regards,
    Mohaiyuddin

  • Html markup for "NAME" field in APEX 4.02.00.07 tree structure

    Hi,
    I've seen countless examples of modifying the appearance of the NAME field of an APEX 4 tree, but I can't get it to work. If I create the tree as below, all I get is :
    <b>the Name</b> on each node of the tree. I can't seem to make the NAME field bold. Can you tell me what I'm doing wrong?
    Thanks.
    Susan
    Here's the code:
    select case when connect_by_isleaf = 1 then 0
    when level = 1 then 1
    else -1
    end as status,
    level,
    '<b>' || "NAME" || '</b>' as name,
    null as icon,
    "ID" as value,
    null as tooltip,
    null as link
    from "#OWNER#"."TEMP"
    start with "PID" is null
    connect by prior "ID" = "PID"
    Edited by: axiom7 on Aug 2, 2011 10:00 AM
    Just posted, and I see that my attempt to show the html markup, simply marked up the text. What I mean is that the html markup does not embolden the NAME field. I just see the bracketed html markup tags on either side of the NAME field. I hope I am being clear enough.

    Axiom,
    Unfortunately, the version of jsTree currently bundled in APEX does not include support for HTML titles. You can hack it in by using an on page load dynamic action to convert the plain-text titles to HTML (though that can get really ugly very quickly). Or you can use a PL/SQL region to create a tree using the latest jsTree build. (Demo page here.)
    -David

  • Resource name field for target oracle table

    Hi,
    I want to build a generic interface that takes data from different similar structured flat files and loads to different target table (similar structure).
    I thought I will use the resource name field for both source and target and use variables to determine the source and target names during runtime.
    the problem is it runs fine at the source when i change the file names to load from but it fails at the target when i use variable to determine the target name.
    Did anyone try this earlier? if yes, can you please help? The error I got was 911 : 42000 : java.sql.SQLSyntaxErrorException: ORA-00911: invalid character
    and the query generated was
    insert into      SCHEMANAME.#PROJREP."v_generic_interface_target_name"
         COL1,
         COL2,
         COl3
    select     
         C1_COL1,
         C2_COL2,
         C3_COL3
    from     STGSCHEMA.C$_0DEMO1
    where     (1=1)
    Edited by: sriksd on May 7, 2010 6:51 PM

    Hi,
    Which KM you are using ?
    Try to use #PROJREP.v_generic_interface_target_name into Resource name of the table in the data models.
    Regards

  • Need to add one field in standard structure???

    Hi Experts,
    I wanted to add one Z-field in standard structure. Anybody will suggest me how to do that step by step??

    open the table in se11 and press append structure in application tool bar
    press create button on pop up window.
    give the append name and include the fields u required.
    Yes, you can add the extra fields to the standard table.
    Create Z-Structure with the fields needed and append the structure to the standard table by using the option append structure within table display
    we can enhance the standard tables by using Append structures and customizing includes.
    Append structures allow you to attach fields to a table without actually having to modify the table itself. Table enhancements using append structures therefore do not have to be planned by SAP developers. An append structure can only belong to exactly one table.
    In contrast, CI_includes allow you to use the same structure in multiple tables. The include statement must already exist in the SAP table or structure. Table enhancements using CI_includes do, however, have to be planned by SAP developers
    regards.
    Rahul
    reward if useful

  • Mapping of    REGUP and REGUH  fields to the  structure FPAYP,FPAYH, FPAYHX

    Hi 
    We use  structure  FPAYP, FPAYH,  FPAYHX  in the DMEE  formats.   Now the  data in the payment run  can be seen in table REGUP  and REGUH.   All  the  payment  related  data    falls into the DMEE  generated xml file  thru  the  structure FPAYP,FPAYH, or  FPAYHX.
    My  question is  how can I  find out  which field   in  REGUP or  REGUH  is  mapped to  which  field in the  3   structures  used in DMEE.  Is there any sap  program.     I  tried  searching,  but  could not find in  sap library.
    Thanks for  your inputs.
    kamala

    Hi
    Sorry to  reply late.
    I am  doing  intermediary  bank in  international payments.
    I   need to get the intermediary bank  BIC  , clearing code   and   bank  name field data  in the DMEE format.  
    Please  tell me  which  structure and field  have  these  three  data elements.
    Thanks
    kamala

  • How to read fields of a structure or Table.

    Hi,
      I had a requirement where i will send a structure/table name into a Form(Subroutine). This form fills an internal table with all the fields in that structure/table .
          Does any one could suggest any programming method to access the field names of structure/table.
          Please don't suggest any database tables, as the structures iam going to send need not exist in database.
         A quick reply is appreciated.
    Thanks in Advance,
    Anvitha.

    HI Anvitha,
    You can use function REUSE_ALV_FIELDCATALOG_MERGE to get the field names and attributes.
    REPORT test.
    TYPE-POOLS : slis.
    DATA : BEGIN OF itab1,
           f1     LIKE vbak-vbeln,
           f2     LIKE vbap-posnr,
           f3     LIKE vbak-netwr,
           END OF itab1.
    DATA : rep TYPE sy-repid      .
    DATA : fcat TYPE  slis_t_fieldcat_alv.
    rep = sy-repid.
    CALL FUNCTION 'REUSE_ALV_FIELDCATALOG_MERGE'
    EXPORTING
       i_program_name               = rep
       i_internal_tabname           = 'ITAB1'
      I_STRUCTURE_NAME             = 'ITAB1'
       i_client_never_display       = 'X'
       i_inclname                   = rep
      I_BYPASSING_BUFFER           =
      I_BUFFER_ACTIVE              =
      CHANGING
        ct_fieldcat                  = fcat
    EXCEPTIONS
      INCONSISTENT_INTERFACE       = 1
      PROGRAM_ERROR                = 2
      OTHERS                       = 3
    IF sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    the internal table fcat will have field names and attributes of internal table.
    Reagrds,
    Gagan

  • Find Transparent table name for correspoding Dictionary Structure SRM 7.0

    Hi,
    I am not able to find Transparent table name for correspoding Dictionary Structure in Webdynpro Component for a field in  SRM 7.0.
    Please let me know.
    Thanks,
    Monica

    Hi Monica
    please tell the transaction name and the name of field seen in webdynpro
    regards
    andrea

  • ITunes puts track number in name field?

    I recently updated iTunes to 10.5 and a new issue has arisen. I loaded a new album into my library and I proceeded to apply track numbers to the songs. Usually I would click "Get Info" on the first song, enter the number in the track field, hit alt+n to go to the next song, type the next track number, etcetera. However when I hit alt+n to go to the next track, the name field gets highlighted instead of the track number field, so I have to click again on the track number field before I enter the number. This is quite a hindrance as before I could easily apply many track numbers within a short time, but this makes things so much more tedious. Is there a setting to fix this, or is this just a temporary bug that will be fixed later?

    It's supposed to be able to cope with slightly different file & folder structures, missing track numbers, all tracks in just an artist folder, everything in Unknown Artist\Unknown Album etc. Details here. Can you give me an idea of how things are set out? Maybe it needs a little tweak to cope with the way you've done things, or we could use something like MediaMonkey to reorganize what you have into something the script can work with.
    I'm going to be out for much of the day but I'll look in on this thread later.
    tt2

  • The fields of an structure

    Sometimes in a function and in an user-exit there are some parameters that are not defined, it appears only the name in the definition parameters, how can i know the fields of the structure without debugging?,
    Thanks in advance

    You are absolutely right Rich if you are talking in general terms. But in this specific case, if you give an internal table with any structure other than the structure of the table in the table parameter, it will dump.
    It looks like that when you define your operating concern in COPA and define its structure, systems internally generates several tables and structures. Since each company uses different structure, system has no way of passing the structure information to the function module other than the way it did in this function module.
    But, if this is not the case and the internal table parameter has no structure, you can pass any internal table to it. It will not give you a systax error but it will give you a dump if internally in the code somewhere, it assumes a particular structure.
    Regards,
    Srinivas

  • Reading a field symbol whose structure is dynamic

    Hi Experts,
    I have used the concept of dynamic internal tables to select data from COSS/COSP for e.g.database tables.Field symbol of type " ANY TABLE" has been used to select data , as the dynamic structure is assigned directly to the field symbol.
    To calculate the values of various fields I need to read the this field symbol for diferent line items , but I get a compilation error saying " Key not Found ". I understand that I am not able to read the field symbol because its structure is of type 'ANY TABLE' .How do I read this field symbol ?
    The field symbol gets the structure of dynamic internal table as formed initially by using class concept.Is their any way in which I could get the structure of this field symbol or any other way to read it?
    Thanks in advance.
    Regards
    Reetwika

    Hi Ritwika,
    Even if u use the concept if dynamic internal table, u can read the each of the field of ur structure,
    if u know the name of the field.
    for example:
    MATNR being one of the field of internal table
    field-symbols : <fs> type any.
    loop at <fs_it> into <fs_wa>.
    ASSIGN COMPONENT 'MATNR' OF STRUCTURE <fs_wa> to <fs_matnr>.
    " in this case matnr field value will be assigned to the field symbol <fs_matnr>, so it can be used further.
    endloop.
    " do reply if still confused.
    Rohit G
    Edited by: Rohit Gaharwar on Aug 12, 2009 11:51 AM

  • How to access a field of a structure with a field symbol?

    Dear all,
    Currently I'm trying to access the fields of a structure (called "ls_tbl") dynamicly. The code looks as follows (of course the field symbols are defined correctly ;-):
        ASSIGN lv_f1 TO <lv_f1>.
        ASSIGN lv_f2 TO <lv_f2>.
        lv_pp = ls_tbl-(<lv_f1>).
        lv_pt = ls_tbl-(<lv_f2>).
    Unfortunatly I get the following error message:
    <<The data object "LS_TBL" does not have a component called "".>>          
    I really do not understand why ABAP is trying to interpret the field symbol name as a string. Does anybody have a clue how to access the field of ls_tbl with the help of a field symbol?
    Many thanks!!!

    Hi ,
    Please check the below sample code .
    data : begin of st_table,
                myfiledname type c value '1',
                myfiledname1 type c value '2',
           end of st_table .
    data : lv_filedname(11) type c value 'MYFILEDNAME'
    filed-symbols : <fs> type any,
                    <fs_table> type any.
    assign st_table to <fs_table>.
    Assign lv_filedname to <fs> .
    assign component <fs> of structure <fs_table> to lv_pp.
    Regards,
    Ratheesh BS

  • Avoid the Name field duplicate

    I want to avoid the Name field duplicate value from my table  Say table structure
    Create table Participant (id int CONSTRAINT PK_ID PRIMARY KEY , ParticipantName varchar(50) )
    Thanks in advance

    You should use Unique key for omitting duplicate value in a specific table's field :
    Create table Participant (id int CONSTRAINT PK_ID PRIMARY KEY , ParticipantName varchar(50) unique )
    Ahsan Kabir Please remember to click Mark as Answer and Vote as Helpful on posts that help you. This can be beneficial to other community members reading the thread. http://www.aktechforum.blogspot.com/

  • Length of a field in a structure

    Hi,
    Is there any restriction on the length of the field in a structure which is CHAR type ??
    Thanks.

    Sample
    report zrich_0001
           line-size 1023.
    data: begin of s,
          a(65510) type c,
          b(25) type c,
          end of s.
          s-a = 'This is field 1 asdfkljas;dfkja;sldkjf;aslkdjf;alskdjfa' &
                'asdfkajsd;kfjas;dlkfj;aslkdjf;alksjdf;lkasjdf;lasdfasdf' &
                'asdfkljas;dlkfj;askdjf;askjdf;lkasdjf;lkasj  thd end'.
          s-b = 'This is field 2'.
          Write:/ s-a.
          write:/ s-b.
    Regards,
    Rich Heilman

Maybe you are looking for

  • My iphone 4 is not recognized by itunes when i connect it, wants me to restore to factory settings

    my iphone 4 is not recognized by itunes when i connect to it, wants me to restore to factory settings. do i have to or is there a better way to fix it?

  • Creating next/previous buttons problem

    I am creating next & previous buttons on my main scene. I have created a scrolling photo gallery as well as a random button to randomly select images. I have a photos layer that has 15 images tagged in the AS "img1" "img2"....hopefully this all makes

  • Problem while creating Billing Document.

    Hi, I'm creating a Sales order(VA01) and then creating a billing document(VF01) with the created sales order, the system is running for a longer period(this time we will check with SM66. Sales order is creating with limitted time.But Billing Document

  • Web-Frontend

    Hallo, we have to create a web-based frontend over an existing MS-SQL- Server db (only a few forms first). Now we have to decide, which tool to use... Oracle Developer (WebForms) seems a bit oversized for this task and i guess it's tricky to access a

  • To execute the query after getting connected to db from a unix shell script

    How the variable "output" can be used in the sql query after getting connected to database. Code: #!/bin/bash sort shipments | uniq > test1.txt sed "s/.*/'TESCO.&',/;$ s/,//" test1.txt | paste -s -d '' > output sqlplus glo/glo@tcot select * from xx w