Help wanted to build a plugin

If you are able to write a photoshop plugin. I have the algorthmn in C++ and I think it could be made into a filter. It reads a pixel in RGB and adjusts it if it is out of gamut. If you are interested send an offer to [email protected]

No worries,
Here they are in 8.5.
Rgs,
Lucither
"Everything should be made as simple as possible but no simpler"
Attachments:
Press and hold example Folder.zip ‏21 KB
Press and hold 2 example Folder.zip ‏23 KB

Similar Messages

  • I am not able to open, compile and build sample plugin projects from Indesign CS4 SDK

    Hi,
    I am new to Indesign plugin development.
    I have downloaded Indesign CS4 SDK Products version for Windows.
    I have downloaded Adobe Indesign CS4 trial version.
    I have Microsoft Visual C++ 6.0 . I want to build sample SDK examples given
    in SDK. But when I open them from visual c++ /prj folder the project is not
    getting opened.
    I want to load Dollyxs and build it and using that develop some projects.
    Also want to build and run the SDK examples .
    So can anybody help about what software I need n which version of visul c++
    is needed for this.And how to Install
    them.
    Thanks n Regards,
    Ravi Sharma

    Hi,
    Thank u very much for your response.
    Now I am getting error as :Error spawning cmd.exe. while I am building project (Indesign cs4-Windows).
    I have set properties for .fr and .rc files .Am I missing any other setting to be made.
    Can u help me?
    Regards,
    Ravi Sharma

  • Hello can anybody  help me to build an interface

    hello can you help me to build an interface that can work with this english to private talk converter code
    import java.util.Map;
    import java.util.HashMap;
    import java.util.Iterator;
    import java.io.FileNotFoundException;
    import java.io.IOException;
    import java.io.BufferedReader;
    import java.io.FileReader;
    public class Translate
    public static void main(String [] args) throws IOException
    if (args.length != 2)
    System.err.println("usage: Translate wordmapfile textfile");
    System.exit(1);
    try
    HashMap words = ReadHashMapFromFile(args[0]);
    System.out.println(ProcessFile(words, args[1]));
    catch (Exception e)
    e.printStackTrace();
    // static helper methods
    * Reads a file into a HashMap. The file should contain lines of the format
    * "key\tvalue\n"
    * @returns a hashmap of the given file
    @SuppressWarnings("unchecked")
    private static HashMap ReadHashMapFromFile(String filename) throws FileNotFoundException, IOException
    BufferedReader in = null;
    HashMap map = null;
    try
    in = new BufferedReader(new FileReader(filename));
    String line;
    map = new HashMap();
    while ((line = in.readLine()) != null)
    String[] fields = line.split("\\t", 2);
    if (fields.length != 2) continue; //just ignore "invalid" lines
    map.put(fields[0], fields[1]);
    finally
    if(in!=null) in.close(); //may throw IOException
    return(map); //returning a reference to local variable is safe in java (unlike C/C++)
    * Process the given file
    * @returns String contains the whole file.
    private static String ProcessFile(Map words, String filename) throws FileNotFoundException, IOException
    BufferedReader in = null;
    StringBuffer out = null;
    try
    in = new BufferedReader(new FileReader(filename));
    out = new StringBuffer();
    String line = null;
    while( (line=in.readLine()) != null )
    out.append(SearchAndReplaceWordsInText(words, line)+"\n");
    finally
    if(in!=null) in.close(); //may throw IOException
    return out.toString();
    * Replaces all occurrences in text of each key in words with it's value.
    * @returns String
    private static String SearchAndReplaceWordsInText(Map words, String text)
    Iterator it = words.keySet().iterator();
    while( it.hasNext() )
    String key = (String)it.next();
    text = text.replaceAll("\\b"+key+"\\b", (String)words.get(key));
    return text;
    * @returns: s with the first letter capitalized
    String capitalize(String s)
    return s.substring(0,0).toUpperCase() + s.substring(1);
    ... here's the head of my pirate_words_map.txt
    hello     ahoy
    hi     yo-ho-ho
    pardon me     avast
    excuse me     arrr
    yes     aye
    my     me
    friend     me bucko
    sir     matey
    madam     proud beauty
    miss     comely wench
    stranger     scurvy dog
    officer     foul blaggart
    where     whar
    is     be
    are     be
    am     be
    the     th'
    you     ye
    your     yer
    tell     be tellin'

    hakimade wrote:
    hello can you help me to build an interface that can work with this english to private talk converter codeYou might want to re-ask this question in such a way that it can be answered.
    Also, when posting your code, please use code tags so that your code will retain its formatting and be readable. To do this, either use the "code" button at the top of the forum Message editor or place the tag [code] at the top of your block of code and the tag [/code] at the bottom, like so:
    [code]
      // your code block goes here.
      // note the differences between the tag at the top vs the bottom.
    [/code]or
    {code}
      // your code block goes here.
      // note here that the tags are the same.
    {code}Good luck.

  • Help needed in building a demo mobile app for DRM support using Content server 4

    Hi all,
    I am building an application for the blackberry to support reading of pdf and ebuf content similar to Adobe Digital Editions with DRM support . I came to know about the Adobe RMSDK .
    Following is my understanding regarding my implementation , please correct me if i am wrong:
    The DRM implementation on a mobile device for Adobe should satisfy the following criteria:
    1. The mobile device should have a application which uses the Adobe RMSDK.
    2. The publisher or the server app should install and run the content server 4
    3. An acsm file which contains the rights data should be saved stored at the adobe server and should be downloaded by the mobile client.
    4. The urls in the acsm xml file will be used to fetch the content for the ebook.
    I have the following querries:
    1. Is there an implementation of the RMSDK for java to run on blackberry.
    2. Is Adobe content server 4 free to install, if not do we have a test server for this purpose.
    Thanks in advance for the help.

    Hi Jim,
    Thanks for your kind reply. I have some more querries
    Suppose if we have a client implementation of the Adove RMSDK in java,  please help answer these querries:
    1. How do we connect to the cs4 server (what will be the flow of data, is there a documentaion regarding the protocol to be used between the mobile client and the cs4 server in order to communicate and fetch Rights protected ebuf and pdf data.
    2. The link http://www.adobe.com/products/digitaleditions/library does not give me information of how to use this library to store by ebook data and fetch  drm data from the mobile client and the protocol/communication followed.
    3. How do i go forward in evaluating acs4( getting a test version of cs4 and using it ). We want to build a demo app in blackberry.
    thanks
    Amit

  • Error message in trying to use local content in Adobe Community Help of Flash Builder

    Hi,
    I have set my Adobe Community Help application preferences of Flash Builder to 'Display local content only'.to Yes.
    I also disabled my internet connection to use local help content only.
    I get the following error message when trying to access any of the links from Help home page.
    To view the requested page, connect to the Internet or deselect "Display Local Help content only" in Preferences.
    I understand this is due to all the links point online HTTP urls.
    But why cannot the local help content be accessed when it is already downloaded to local and the 'Display local content only' option is set to Yes?
    This saves me a lot ot time otherwise using Adobe Community Help is painful even for a short period of time.
    Thanks,
    Ram Manoj Kongara.

    Hi, Ram -
    To help troubleshoot your problem, can you please do the following:
    In the Adobe Community Help application, go to Edit > Preferences.
    Select Local Content.
    The list of Help packages downloaded locally appear. Make sure that the status of every Help packages reads “Current”. If the status of a Help package reads  "Out-of-Date”, select that Help package, and click Update to download the latest Help package. Note that to do this, you have to be connected to the Internet. Once you fully download the Help packages to your desktop, you can access Help offline.
    One other thing that I would want you to check is the Adobe Community Help Client version that you are using. To check that, in the Adobe Community Help application, go to File > About Adobe Help. The build version should be 3.2.0.610.
    Let me know if this helps. If the issue still persists, we can investigate further.
    Thanks,
    Mallika Yelandur
    Technical writer, Adobe Flash Builder

  • Can't install Flex Builder 2 plugin in Eclipse 3.3/Europa

    [I hope Adobe reads these forums. I tried to submit this as a
    customer service request, but the customer service request form
    kept telling my I had to enter my First Name, Last Name, and Email
    address, even though I _had_ entered them!]
    I can't seem to install the Flex Builder 2 plugin in Eclipse
    3.3/Europa. I had it installed fine in 3.2/Callisto. I uninstalled
    it from there, installed Europa, then tried to install the plugin.
    After I selected the Eclipse folder, I got the error:
    "Please choose an existing Eclipse folder (3.1 or greater) to
    be updated. This folder must contain eclipse.exe and the standard
    folder named "configuration"."
    All three conditions (3.1 or greater, eclipse.exe and
    configuration) hold in my case, so I don't know what the real
    problem is.

    Actually it's quite simple. But you have to be warned. This
    doesn't guarantee a bug free Eclipse setup and it isn't supported
    by Adobe in any way. It is how-ever your only shot at getting
    Eclipse with Flex Builder 2 AND php-development support, as Zend
    has stopped deploying the php-development-requirement for Eclipse
    3.2 (or at least I haven't found it in their archives.)
    Flex Builder 2 simply checks for some files to see if the
    directory you want to install to exist, so it recognizes the
    directory as an Eclipse 3.1+ directory. Eclipse 3.3 however misses
    the file startup.jar. If you simply copy startup.jar from an
    Eclipse 3.2 directory into the 3.3 directory, Flex Builder 2 will
    install in the 3.3 directory.
    Again. This is not supported in any way by Adobe.
    For more info, Google on: eclipse-3.3 Flex-builder-2
    startup.jar
    http://www.google.com/search?hl=en&q=eclipse-3.3+Flex-builder-2+startup.jar
    Kind regards.
    PS. I would still like to have an Adobe Representative answer
    the simple question: Is Adobe or is Adobe not working on getting
    Flex Builder 2 to work on Eclipse 3.3? A simple yes or no will
    suffice.

  • Please can someone help me to build a query

    Please can someone help me to build a query for getting the following results. I work with Oracle 9.
    My data is about this:
    Projectid / Activitycode / Act.DS / Earlystart / ActualStart
    {color:#ff0000}P001 / 110M / blabla / 1-1-08 / 1-1-08{color}
    {color:#3366ff}P001 / 230M / fdsfds / 31-1-09 / null{color}
    P001 / 450M / fsfsd / 1-4-09 / null
    P002 / null / null / 1-12-08 / 1-12-08
    {color:#3366ff}P002 / 110M / nhggh / 5-2-09 / null{color}
    P002 / 750M / wdwdwd / 5-2-09 / null
    P002 / 210M / plplplp / 31-12-08 / 31-12-08
    {color:#ff0000}P002 / 550M / ewdwd / 5-1-09 / null{color}
    I'd like to get one row for each Projectid with the {color:#3366ff}first next Early- or Actualstart{color} {color:#3366ff}after today{color} and one row with the {color:#ff0000}latest early-/actualstart before today{color}. When there are two or more rows with the same date then I want the first (minimum) Activitycode. This last condition makes it insoluble for me!
    I've tryed SQL with nested Select-statements in the Where-clause. But I've got still 2 rows per projectid because I select the min(nvl(Earlystart ,ActualStart ) I've tryed SQL with an Select in the FROM-claus with Partion BY, but I can't get it work right.
    Can someone show me the right way to solve my problem?

    How's this?
    with my_tab as (select 'P001' projectid,
                           '110M' activitycode,
                           'blabla' act_ds,
                           to_date('01/01/2008', 'dd/mm/yyyy') earlystart,
                           to_date('01/01/2008', 'dd/mm/yyyy') actualstart
                    from   dual
                    union all
                    select 'P001' projectid,
                           '230M' activitycode,
                           'fdsfds' act_ds,
                           to_date('31/01/2009', 'dd/mm/yyyy') earlystart,
                           null actualstart
                    from   dual
                    union all
                    select 'P001' projectid,
                           '450M' activitycode,
                           'fsfsd' act_ds,
                           to_date('01/04/2009', 'dd/mm/yyyy') earlystart,
                           null actualstart
                    from   dual
                    union all
                    select 'P002' projectid,
                           null activitycode,
                           null act_ds,
                           to_date('01/12/2008', 'dd/mm/yyyy') earlystart,
                           to_date('01/12/2008', 'dd/mm/yyyy') actualstart
                    from   dual
                    union all
                    select 'P002' projectid,
                           '110M' activitycode,
                           'nhggh' act_ds,
                           to_date('05/02/2009', 'dd/mm/yyyy') earlystart,
                           null actualstart
                    from   dual
                    union all
                    select 'P002' projectid,
                           '750M' activitycode,
                           'wdwdwd' act_ds,
                           to_date('05/02/2009', 'dd/mm/yyyy') earlystart,
                           null actualstart
                    from   dual
                    union all
                    select 'P002' projectid,
                           '210M' activitycode,
                           'plplplp' act_ds,
                           to_date('31/12/2008', 'dd/mm/yyyy') earlystart,
                           to_date('31/12/2008', 'dd/mm/yyyy') actualstart
                    from   dual
                    union all
                    select 'P002' projectid,
                           '550M' activitycode,
                           'ewdwd' act_ds,
                           to_date('05/01/2009', 'dd/mm/yyyy') earlystart,
                           null actualstart
                    from   dual)
    -- above mimics your table; main query is below:
    select mt2.projectid,
           mt2.activitycode,
           mt2.act_ds,
           mt2.earlystart,
           mt2.actualstart
    from   (select mt.projectid,
                   mt.activitycode,
                   mt.act_ds,
                   mt.earlystart,
                   mt.actualstart,
                   mt.date_col,
                   mt.before_after_today,
                   row_number() over (partition by mt.projectid, mt.before_after_today
                                      order by mt.date_col asc) rn_after,
                   row_number() over (partition by mt.projectid, mt.before_after_today
                                      order by mt.date_col desc) rn_before
            from   (select projectid,
                           activitycode,
                           act_ds,
                           earlystart,
                           actualstart,
                           coalesce(actualstart, earlystart, to_date('01/01/4000', 'dd/mm/yyyy')) date_col,
                           case when coalesce(actualstart,
                                              earlystart,
                                              to_date('01/01/4000', 'dd/mm/yyyy')) <= trunc(sysdate) then 1
                                else 2
                           end before_after_today
                    from   my_tab) mt) mt2,
            (select 1 id, 1 col_id from dual union all
             select 1 id, 2 col_id from dual) dummy
    where  dummy.id = case when mt2.before_after_today = 1 then rn_before
                           else rn_after
                      end
    and    mt2.before_after_today = dummy.col_id
    PROJECTID     ACTIVITYCODE     ACT_DS     EARLYSTART     ACTUALSTART
    P001     110M     blabla     01/01/2008     01/01/2008
    P001     230M     fdsfds     31/01/2009     
    P002     550M     ewdwd     05/01/2009     
    P002     110M     nhggh     05/02/2009     

  • Unable To Build WriteFishPrice plugin in Sample

    Hi,
    I'm trying out the WriteFishPrice plugin in the samples in CS3 SDK using the InDesign Plugin Editor. I imported the project then tried to build it but I received a "/Developer/usr/bin/../libexec/gcc/i686-apple-darwin8/4.0.1/libtool: internal link edit command failed" message. I tried building in XCode 2.5 and it tells me these:
    Beginning ODFRC
    Ld "/Users/jeffsese/InDesign CS3 SDK/build/mac/prj/../Debug/SDK/WriteFishPrice.sdk.InDesignPlugin/Versions/A/WriteFishPric e.sdk" normal i386
    cd "/Users/jeffsese/InDesign CS3 SDK/build/mac/prj"
    /Developer/usr/bin/g++-4.0 -o /Users/jeffsese/InDesign\ CS3\ SDK/build/mac/prj/../Debug/SDK/WriteFishPrice.sdk.InDesignPlugin/Versions/A/WriteFishPric e.sdk -L/Users/jeffsese/InDesign\ CS3\ SDK/build/mac/prj/../Debug/SDK -L../debug/packagefolder/contents/macos/libs -F/Users/jeffsese/InDesign\ CS3\ SDK/build/mac/prj/../Debug/SDK -F../debug/packagefolder/contents/macos -F../debug/packagefolder/contents/Frameworks -filelist /Users/jeffsese/InDesign\ CS3\ SDK/build/mac/prj/build/WriteFishPrice.sdk.build/Default/Debug.build/Objects-normal/i386/ WriteFishPrice.sdk.LinkFileList -lPublicPlugIn -framework InDesignModelAndUI -framework Carbon -arch i386 -Wl,-single_module -install_name WriteFishPrice.sdk.InDesignPlugin/Versions/A/WriteFishPrice.sdk -Wl,-Y,1455 -dynamiclib -mmacosx-version-min=10.4 -Wl,-Sp -Wl,-executable_path -Wl,../Debug/packagefolder/contents/macos -isysroot /Developer/SDKs/MacOSX10.4u.sdk
    ld: Undefined symbols:
    __Z34GetkWFPFacadeImpl_InterfaceFactoryv
    __Z36GetkWFPSuiteASBImpl_InterfaceFactoryv
    __Z40GetkWFPSuiteTextCSBImpl_InterfaceFactoryv
    __Z42GetkWFPScriptProviderImpl_InterfaceFactoryv
    __Z42GetkWFPSuiteLayoutCSBImpl_InterfaceFactoryv
    __Z44GetkWFPSuiteDefaultsCSBImpl_InterfaceFactoryv
    /Users/jeffsese/InDesign CS3 SDK/build/mac/prj/build/WriteFishPrice.sdk.build/Default/Debug.build/Objects-normal/i386/ WFPNoStrip.o reference to undefined __Z34GetkWFPFacadeImpl_InterfaceFactoryv
    /Users/jeffsese/InDesign CS3 SDK/build/mac/prj/build/WriteFishPrice.sdk.build/Default/Debug.build/Objects-normal/i386/ WFPNoStrip.o reference to undefined __Z36GetkWFPSuiteASBImpl_InterfaceFactoryv
    /Users/jeffsese/InDesign CS3 SDK/build/mac/prj/build/WriteFishPrice.sdk.build/Default/Debug.build/Objects-normal/i386/ WFPNoStrip.o reference to undefined __Z40GetkWFPSuiteTextCSBImpl_InterfaceFactoryv
    /Users/jeffsese/InDesign CS3 SDK/build/mac/prj/build/WriteFishPrice.sdk.build/Default/Debug.build/Objects-normal/i386/ WFPNoStrip.o reference to undefined __Z42GetkWFPScriptProviderImpl_InterfaceFactoryv
    /Users/jeffsese/InDesign CS3 SDK/build/mac/prj/build/WriteFishPrice.sdk.build/Default/Debug.build/Objects-normal/i386/ WFPNoStrip.o reference to undefined __Z42GetkWFPSuiteLayoutCSBImpl_InterfaceFactoryv
    /Users/jeffsese/InDesign CS3 SDK/build/mac/prj/build/WriteFishPrice.sdk.build/Default/Debug.build/Objects-normal/i386/ WFPNoStrip.o reference to undefined __Z44GetkWFPSuiteDefaultsCSBImpl_InterfaceFactoryv
    /Developer/usr/bin/../libexec/gcc/i686-apple-darwin8/4.0.1/libtool: internal link edit command failed
    How to I resolve the issue?
    Thanks in advance,
    -- Jeff

    I have not used the plugin Editor, but I am certain you can build the plugin with Xcode 2.5 or even Xcode 3.0.
    Looking at the log you posted from Xcode, it seems to be failing linking a few symbols. In particular It would appear that the linking is looking for implementations for the following interface IDs :
    kWFPFacadeImpl
    kWFPSuiteASBImpl
    kWFPSuiteTextCSBImpl
    kWFPScriptProviderImpl
    kWFPSuiteLayoutCSBImp
    kWFPSuiteDefaultsCSBImp
    Looking over that SDK sample, it appears that these interfaces are something new to the project you must have added (or perhaps added by the plugin editor?)
    If you actually have created new interface implementations for these declared interfaces, you should check to make sure the source files that define them are actually included in the project.
    If these new interfaces are not yet implemented, but you actually need them, you will have to make sure new .cpp files are created that define these particular implementations.
    If you want the sample to compile just like it shipped, you need to remove any references to these interfaces. Likely your factory list file, WFPFactoryList.h, has lines of REGISTER_PMINTERFACE(...,...) with the interface IDs noted above. You could remove those and likely get past the link errors.
    -- 23

  • I am wanting to build a native mobile app, what is the best programs to start with in CC?

    I see tutorials and have completed some simple app creations using edge animate and phone gap. The app I want to build I would like to have user sign in features, analytic (flurry) integration and use location based features within the app.
    I am fairly new to all this so I am just looking for some suggestions on how to or links for starting points.
    Thanks!

    Lut,
    Welcome to the forum.
    What are the full specs. of your MOD, and M2v files?If you do not know exactly, you can use G-Spot, or MediaInfo, to gather that info.
    That info might help pinpoint the issue.
    Good luck,
    Hunt

  • Want to build OBIEE compatible data model.

    Hi Experts,
    I want to design a data model which i use with OBIEE. Mainly my reports contain different metrics compared over time. Can any one give me some suggestions or web references that help me in building a strong data model. Sorry if this is a big topic to discuss........any web references you know will help me a lot.
    Thanks,
    DK

    Thanks Stijn,
    but there are several books written by Kimball...........which one of the below you prefer??
    The Data Warehouse Toolkit: The Complete Guide to Dimensional Modeling
    http://www.amazon.com/Data-Warehouse-Toolkit-Complete-Dimensional/dp/0471200247/ref=sr_1_1?ie=UTF8&s=books&qid=1279297864&sr=8-1
    The Data Warehouse Lifecycle Toolkit
    http://www.amazon.com/Data-Warehouse-Lifecycle-Toolkit/dp/0470149779/ref=sr_1_9?ie=UTF8&s=books&qid=1279297864&sr=8-9
    or some other book??
    Thanks once again for the reply,
    DK

  • Force flash builder 4 plugin localization

    Hello there,
    I've successfully installed the flash builder 4 plugin in a Spring Tool Suite IDE. The IDE is localized in english, but the text content related to flash builder appears in french, as my operating system is localized in french (I didn't choose that ). Could someone please tell me if there is a conventional way to set up the english localization ?
    Thanks for your help.

    Hi,
    Eclipse/java will default to the system locale settings, but you can override that by using two lines such as these at the top of your eclipse.ini file:
    -nl
    en_US
    -Chris

  • I want to build a drop down menu like the one featured here

    Hi there, I am wanting to build a drop down menu exactly like the one on this site (see college information button, top right)
    http://www.barnsley.ac.uk/index.php
    I have a lot of content, and really like the idea of hiding behind a button at the top, and when the user clicks on it it opens up and pushes the rest of the page down!
    Anyone know how?

    jQuery isn't a program as much as a collection of tools and effects built in JavaScript, a "framework".
    Here's a tutorial that will help you build what you're looking for:
    http://web-kreation.com/index.php/tutorials/nice-clean-sliding-login-panel-built-with-jque ry/

  • Help me to build the logic

    Hi experts,
    i want to build the logic as follows.
    the give fields in the ITAB are.
    F1    F2 F3
    123  546
    222  788
    222  277
    222  666
    345  431
    345  888
    777  888
    F1 AND F2 are the given fields i want to out put f3 as follow.
    F1    F2  F3
    123  546  10
    222  788  10
    222  277  20 
    222  666  30
    345  431  10
    345  888  20
    345  888  20
    if f1 abd f2 repeats the f3 will be same number.
    if f1 repeats and f2 is diff then sequence will be incremented every time by 10.
    when f1 starts with diff number then f3 starts with number 10 as above shown.
    Please build me the logic by using Internal table.
    Please help me

    Hi Ramesh,
    Please see the following test program..
    <b>REPORT ZSRITEST44 .
    DATA: BEGIN OF gt_data OCCURS 0,
            f1 TYPE i,
            f2 TYPE i,
            f3 TYPE i,
          END OF gt_data,
          BEGIN OF gt_datac OCCURS 0,
            f1(10),
            f2(10),
            f3 TYPE i,
          END OF gt_datac,
          gv_counter TYPE i.
    gt_data-f1 = 123.
    gt_data-f2 = 546.
    APPEND gt_data.
    gt_data-f1 = 222.
    gt_data-f2 = 546.
    APPEND gt_data.
    gt_data-f1 = 222.
    gt_data-f2 = 277.
    APPEND gt_data.
    gt_data-f1 = 222.
    gt_data-f2 = 666.
    APPEND gt_data.
    gt_data-f1 = 345.
    gt_data-f2 = 431.
    APPEND gt_data.
    gt_data-f1 = 345.
    gt_data-f2 = 888.
    APPEND gt_data.
    gt_data-f1 = 345.
    gt_data-f2 = 888.
    APPEND gt_data.
    gt_data-f1 = 777.
    gt_data-f2 = 888.
    APPEND gt_data.
    SORT gt_data BY f1 f2.
    LOOP AT gt_data.
      AT NEW f2.
        ADD 10 TO gv_counter.
      ENDAT.
      AT NEW f1.
        CLEAR gv_counter.
      ENDAT.
      IF gt_datac-f1 EQ gt_data-f1
      AND gt_datac-f2 EQ gt_data-f2.
        IF gv_counter GT 0.
          gv_counter = -1 * gv_counter.
        ENDIF.
      ENDIF.
      gt_datac-f1 = gt_data-f1.
      gt_datac-f2 = gt_data-f2.
      gt_datac-f3 = gv_counter + 10.
      COLLECT gt_datac.
      IF gv_counter LT 0.
        CLEAR gv_counter.
      ENDIF.
    ENDLOOP.
    LOOP AT gt_datac.
      gt_data-f3 = gt_datac-f3.
      MODIFY gt_data TRANSPORTING f3
      WHERE f1 = gt_datac-f1 AND f2 = gt_datac-f2.
    ENDLOOP.
    LOOP AT gt_data.
      WRITE: / gt_data-f1, sy-vline, gt_data-f2, sy-vline, gt_data-f3.
    ENDLOOP.</b>
    Hope this helps..
    Sri

  • Help needed to build simple BRF

    Hi,
    I am new to BRF and wanted some help from you building a simple BRF, say a look up from the database table.

    Hi,
    I guess you are trying to use BRF function from custom application and not talking about Process-Controlled Workflow.
    Yes. You can use BRF from custom application. BRF is just one of functions delivered in NetWeaver level.
    http://help.sap.com/saphelp_scm70/helpdata/EN/9a/6b67ce7c26446483af079719edf679/frameset.htm
    http://help.sap.com/saphelp_scm70/helpdata/EN/d6/38bb4006d9cc38e10000000a155106/frameset.htm
    Regards,
    Masa

  • What Acrobat SDK Technology I need to build a plugin that creates a new item to the Right-Click context menu?

    I want to develop a plugin for Adobe Reader that will be invoked through a new item in the Right-Click menu.
    What is the right SDK Technology to build this new item? Javascript, Interapplication Communication or a C/C++ plugin?
    I would feel more comfortable with JS or C#, but I don't know if I must use the C++ API to be able to build such level of integration.
    Thank you very much.

    Plugins are written in C/C++ and especially something such as adding to the UI.
    To add this to Acrobat, no license or fee is required - you can do it today with just the SDK and Acrobat.
    However, to build a plugin for Reader, you will need to obtain a license from Adobe.  Details are in the SDK under "Reader Integration Key License Agreement" (RIKLA).

Maybe you are looking for

  • Does my extended warranty cover the casing?

    Some time ago, I bought a lock for my MacBook Pro. It seemed kind of flaky, but I think it's pretty much the standard lock. You simply inserted one end of the lock into a tiny hole on the right side of the computer's exterior (I don't know if "casing

  • CSS Output Message Types

    We're syndicating spec data to an internal web service via CSS under 6.1. Specs are syndicated twice per GSM workflow to the same system, first as a "create" and then as an "update". So far in testing we haven't seen anything other than ADD types bei

  • W2 and 1099 Patches for year 2009 on E-Business Suite 11.5.10.2

    Friends - Is there any w2 and 1099 patches released for year 2009 for E-business suite 11.5.10.2 Recently we implement basic HR without any benefits. Please provide me list of patch details. Regards Satish

  • Why did my airtunes fail after updating to iOS 5.0

    I used to be able to play most anything from my iPad to either of my Airport Express units and the speakers atteched to them. After iOS 5.0 update to my iPad 1, i am no longer able to do so. The setup still works correctly with itunes on laptops in t

  • ICloud account is always full even though I have a storage of 55 GB and only 2,1 GB used !!!  HELP Please !!!!

    Hi, I got a serious problem with my iCloud account. Beside the fact that I bought extra storage up to 55 GB my account is always full and I deleted everything except my photos 2,1 GB, That's all I got and if I want to take photo or anything it would