Custom GUI meters & Cycle- Jump Area

I was going to add these to the existing threads but they are archived. (Links are below)
Color coded meters for a quick visual indication of level. The Dark version is the same. I used Edgar's numbered meters as a basis for my color coding.
http://members.cox.net/wstvd/ColorCalibration.tiff
http://members.cox.net/wstvd/CycleArea.tiff
http://members.cox.net/wstvd/JumpArea.tiff
Files are here: http://members.cox.net/wstvd/WVL8GUI.zip
I enjoy using Logic and have no complaints, so there's just no point in mentioning that I'm dying for L8.1 or whatever the upgrade number will be. Nope. I'm not gonna talk about that.
http://discussions.apple.com/thread.jspa?threadID=1137412&tstart=0
http://discussions.apple.com/message.jspa?messageID=5447752#5447752
http://homepage.mac.com/edgarrothermich/Manuals.html
http://www.soundonsound.com/forum/showflat.php?Cat=&Board=MacMus&Number=555107&S earchpage=1&Main=553719&Words=modify&topic=&Search=true#Post555107

Modifying a copy of an original Logic tiff file in Photoshop results in a larger file size that still seems to work without causing problems.
The secret to obtaining the incredibly small file size of the original is to open and then save the modified image in Preview.

Similar Messages

  • Implement Screenflow using PAPI in Custom GUI

    Hi
    We are trying to implement our custon GUI (.NET) using the PAPI api , we are able to retrieve the Views /Presentations / Inbox and other view instances . However I want some suggestions regarding how to implement the Screen flows /Process Work Items in the custom GUI using the PAPI call . Is there any API's which are already available to do these .
    I see that the API has options like runActivity etc within the session , am I on the right track (however I am unclear how to achieve the screenflow in API mode)
    Thanks

    Probably is not what you want but have you consider implement the interactive activities as external and build them in .NET?.
    I think there are other threads in this forum and product documentation that explain how you implement an interactive activity as external but let you explain in few words.
    1.- You create an external resource of type server configuration where you will have your .NET external application. The engine when executing this activity is going to redirect yo to that url adding the user, the activity id and the instance id.
    2.- You implement the interactive activity as external, main task external.
    3.- In the bottom part you put the url already defined in step 1.
    4.- You define a prepare method. This is the method that you have to execute once the execution has been redirected to your .NET external application, you have the instanceid and then you can perform the prepare with PAPIWS. With the prepare you interchange information with the engine, you can define out arguments that you take in your application and also the engine blocks that instance to prevent other user execute the same activity to the same instance. Once yo have the control of the execution in your external application you can show the process data in your .NET client, modify it...
    5.- You define a commit method, this is the method that you have to invoke, again with PAPIWS from your external application once you have finished the activity (the activity can be a .NET screenflow in your case). Performing the commit method you pass information back to the engine and the engine unblocks the instance execution.
    I think that if you want to have the interactives built in .NET this is the recommended approach.
    HTH

  • Query on rendering the Human Tasks in the customized GUI application.

    Hi All,
    In oracle11g BPEL, Is there any way to render the Human Tasks in the Customized GUI (Weblogic Portal) application rather that using the applications like "Oracle BPM WorkList"?. Does the Oracle11g BPEL supports this ?. My requirement is that, i need to render the Human tasks inside my own GUI application. I do not want to allow the end user of my application to use the other GUI applications like Work List to wotk up on the human tasks. Instead of this, User must be able to access and work up on the BPEL human tasks through my Customized GUI (Weblogic Portal) application. Is there any way in Oracle11g BPEL to achieve the required functionality?.
    Edited by: user538948 on Sep 2, 2012 11:03 PM
    Edited by: user538948 on Sep 5, 2012 2:04 AM

    Hi Naga
    http://docs.oracle.com/cd/E14571_01/apirefs.1111/e10660/toc.htm
    1. I would not recommend using APIs unless and otherwise if you do not have any other option. You can always create the TaskForms in your own custom pages using out of box generated bindings for each .TASK file. This gives more flexibility. There are lots of stuff associated with a Task apart from your own custom payload like full Task details, system attributes, headers, history, comments/attachments etc. You do not want to use APIs to get all these.
    The below 2 links should give you an overview of overall architecture of a Workflow and TaskForms.
    Re: Integrating BPM taskflows into an ADF application
    Re: deploying a large Oracle BPM Application with multiple UI projects
    Re: What exactly 'PAYLOAD' Means???
    Once you have basics covered, refer oracle docs also that shows how to reuse a single project.
    Thanks
    Ravi Jegga

  • Custom Software Metering Report

    So I'm creating some custom software metering reports and could use some pointers and before you suggest simply using the canned reports know that they simply don't provide all the information we are looking for in a format that works for us so what I have
    so far is this...
    SELECT DISTINCT
    TOP (100) PERCENT dbo.v_MeteredFiles.ProductName, COUNT(DISTINCT dbo.v_R_System.Name0) AS [Total Installations],
    SUM(dbo.v_MonthlyUsageSummary.UsageCount) AS [Total Uses], SUM(dbo.v_MonthlyUsageSummary.UsageTime) AS [Total Usage Time]
    FROM dbo.v_R_System INNER JOIN
    dbo.v_MonthlyUsageSummary ON dbo.v_R_System.ResourceID = dbo.v_MonthlyUsageSummary.ResourceID INNER JOIN
    dbo.v_MeteredFiles ON dbo.v_MonthlyUsageSummary.FileID = dbo.v_MeteredFiles.MeteredFileID
    WHERE (dbo.v_MeteredFiles.Enabled = 1)
    GROUP BY dbo.v_MeteredFiles.ProductName
    And the information gathered so far is quite helpful but I'm curious about a few things:
    1. Is UsageTime units in Days, Hours, minutes?
    2. how can I narrow the results of to the last month or two months or three or to a specific month?
    Any help would be really appreciated.

    Honestly, I'm not entirely sure how to do that...
    This is where I'm at so far.
    SELECT DISTINCT
    TOP (100) PERCENT dbo.v_MeteredFiles.ProductName, COUNT(DISTINCT dbo.v_R_System.Name0) AS [Total Installations],
    SUM(dbo.v_MonthlyUsageSummary.UsageCount) AS [Total Uses], SUM(dbo.v_MonthlyUsageSummary.UsageTime) AS [Total Usage Time],
    dbo.v_MonthlyUsageSummary.TimeKey
    FROM dbo.v_R_System INNER JOIN
    dbo.v_MonthlyUsageSummary ON dbo.v_R_System.ResourceID = dbo.v_MonthlyUsageSummary.ResourceID INNER JOIN
    dbo.v_MeteredFiles ON dbo.v_MonthlyUsageSummary.FileID = dbo.v_MeteredFiles.MeteredFileID
    WHERE (dbo.v_MeteredFiles.Enabled = 1)
    GROUP BY dbo.v_MeteredFiles.ProductName, dbo.v_MonthlyUsageSummary.TimeKey
    ORDER BY dbo.v_MonthlyUsageSummary.TimeKey, dbo.v_MeteredFiles.ProductName

  • How can I add a custom attribute to a catalog area? (CRM Isa Sales)

    Gents,
    How can I add a custom attribute to a catalog area? (CRM Isa Sales)
    Actually I would like to use the Catalog Area Type (maintained in trx COMM_PCAT_ADM on Catalog Area Header level). This field doesn't seem to be available in J2EE webshop. (The field documentation says it is for documentation purposes only so I don't expect it to be transferred).
    As this field is not readily available, I would like to add is as an attribute to the Catalog Area. BADI's PCAT_IMS_FEED_ATT and PCAT_IMS_FEED_VAL seem to indicate that it should be possible to add additional fields not only on product level, but also on Area level:
    Example implementation code:
    method IF_EX_PCAT_IMS_FEED_ATT~READ_NEW_FIELDS.
    * Example, how to add new attributes to a indexcategory
    * Possible levels are 'C'ategory and 'P'roduct.
    * Field 'VALUE' carries the attributetype ('S'tring, 'I'ntegar or
    * 'F'loat)
    * Structure 'IS_OBJECTS' carries actuall identifiers
      data: ls_fields        type comt_pcat_ims_feed_ux.
      case iv_level.
        when 'C'.                        "Category Level
    *     no new field
        when 'P'.                        "Product Level
          ls_fields-field = 'CUSTOMER_EXIT_FIELD'.
          ls_Fields-value = 'S'.
          append ls_fields to ct_fields.
    *     exproduct fields
          ls_fields-field = 'REMAN_ABL'.
          APPEND ls_fields TO ct_fields.
          ls_fields-field = 'EXCH_BUS'.
          APPEND ls_fields TO ct_fields.
      endcase.
    endmethod.
    However, when I create an implementation and add some code in the when 'C' part, the attributes do not seem to get transferred. (I've checked in the debug mode of the developer studio).
    - My example code:
    METHOD if_ex_pcat_ims_feed_att~read_new_fields.
    * Possible levels are 'C'ategory and 'P'roduct.
    * Field 'VALUE' contains the attributetype
    * ('S'tring, 'I'ntegar or * 'F'loat)
      DATA:
      ls_fields LIKE LINE OF ct_fields.
      CASE iv_level.
        WHEN 'C'.                        "Category Level
          ls_fields-value = 'S'.
          ls_fields-field = 'ZTEST'.
           APPEND ls_fields TO ct_fields.
        WHEN 'P'.                        "Product Level
      ENDCASE.
    ENDMETHOD.
    and:
    METHOD if_ex_pcat_ims_feed_val~read_new_fields.
      CASE iv_level.
        WHEN 'C'.
         ls_fields-field = 'ZTEST'.
         ls_Fields-value = 'Value 1'.
         append ls_fields to ct_fields.
        WHEN 'P'.
      ENDCASE.
    ENDMETHOD.
    In the ABAP debugger, I can see that my code is touched during initial and delta replications, however, after replication, the fields do not show up in the Java debugger.
    Any ideas?
    regards,
    Wilco Menge

    Hi,
    How can I customize the /bin/wcmcommand or how can I make use of [2] to create a custom WCMCommand?
    I think the "formUrl" is to post those input value to the jcr repository?
    var createDialog = {
            "jcr:primaryType": "cq:Dialog",
            "id": CQ.Util.createId("cq-createdialog"),
            "title":CQ.I18n.getMessage("Create Page"),
            "formUrl": CQ.shared.HTTP.externalize("/bin/wcmcommand"),
            "params": {
                "cmd":"createPage",
                "_charset_":"utf-8"
    I have added a field called "starred"
    Moreover, when I using the firebug to trace the post command, I can see that the starred value is posted also.
    :status
    browser
    _charset_
    utf-8
    cmd
    createPage
    label
    b
    parentPath
    /content/keyword_elaboration
    starred
    c
    template
    /libs/collab/commons/templates/form
    title
    a
    Source
    cmd=createPage&_charset_=utf-8&%3Astatus=browser&parentPath=%2Fcontent%2Fkeyword_elaboration&title=a&label=b&starred=c&template=%2Flibs%2Fcollab%2Fcommons%2Ftemplates%2Fform
    However, when I go to the crxde to view the node's attribute, the properity starred is not created
    Are there anything I did wrong or missing?
    Thanks.
    Message was edited by: aslkit

  • Can i view & analysis the customer report asper the sales area wise how?

    can i view & analysis the customer report asper the sales area wise how?

    Hi,
    If you are talking about FBL3N or any other FI customer subledger report, then Yes and No.  If you have customers extended to multiple sales area, then no, if there is a one to one relationship with the sales area then yes.
    Cheers.

  • Customer not extended to sales area

    Hi experts,
    Even though I have extended a particular customer to the given sales area, division and distribution channel, when I run the program I still get the error saying "Customer not extended to sales area" . What could be the reason for this? I am a ABAPER. I am new to SD transactions.I have checked in xd02. the customer has been extended. Where else should I check?
    Please explain in detail
    Regards
    kalyan

    HI,
    Which program are yout trying to run?
    How did you extend the customer? If through XD01 then try going into XD02/XD03 and enter customer and click on customer sales areas. You should be able to see the sales area that you have extended the customer into !
    Regards,
    Amit

  • Customer gui components needed?

    I require to build a program with which allows the user to add representations of objects onto the main GUI by adding a seperate square for each object. each square should be capable of being moved, resized, deleted as well as have text displayed in it, and another object associated with it (but I'm currently just dealing with the GUI side of things). Each square will also need to be connected to others by means of an arrow from one square to another. Any suggestions as to where to start as there does not seem to be any appropriate widgets provided by java for this and I am having trouble finding stuff on the net about it. Will creating my own custom GUI components be the best option? If so any tips on how to do this?
    Regards

    Hello Ravi,
    Create a Variable for 0CALMONTH, and use this code,
    ' Declare this in the top
    data : v_startmon(6) type n,
    v_endmon(6) type n,
    ' Include this in the case statement
    when 'VarName'.
    ' Step 2 will execute after the user Input
    if i_step = 2.
    v_year = sy-datum(4).
    v_mon = sy-datum+4(2) - 1.
    ' If the month is Jan
    IF v_mon = '00'.
    CONCATENATE v_year '01' INTO v_startmon.
    CONCATENATE v_year '01' INTO v_endmon.
    ELSE.
    CONCATENATE v_year '01' INTO v_startmon.
    CONCATENATE v_year v_mon INTO v_endmon.
    EndIF.
    clear l_s_range.
    l_s_range-low = v_startmon.
    l_s_range-high = v_endmon.
    l_s_range-sign = 'I'.
    l_s_range-opt = 'BT'.
    append l_s_range to e_t_range.
    Endif.
    Please see this for
    [User Exits in SAP BW|https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/23f2f094-0501-0010-b29b-c5605dbdaa45]
    [User Exit Examples|https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/6378ef94-0501-0010-19a5-972687ddc9ef]
    Also see this
    [Dependencies for Variables of Type Customer Exit |http://help.sap.com/saphelp_nw04/helpdata/en/1d/ca10d858c2e949ba4a152c44f8128a/content.htm]
    Thanks
    Chandran
    Edited by: Chandran Ganesan on Mar 17, 2008 1:57 PM

  • Customer names with cyrylic characters are wrongly shown in Bex Analyser

    Customer names with Cyrillic characters are wrongly shown in Bex Analyser. The master data is correctly maintained and extracted\loaded by BW for these customer (Master Data object is correct). This might be a Bex Designer issue.
    Furthermore, it has nothing to do with the local settings, when copying the name of the customer to Bey Analyzer the name is correctly shown.

    Hi,
    We are facing the same problem with the turkish characters, Our system is BW 3.10 (3.30 Cont) and ECC 6.0. The turkish characters are displaying correctly at the table level, but not at the RSRT or the Bex level.
    The turkish characters are displaying correctly at the table, RSRT and Bex level if we load the same record from the Non-unicode Prod system to the Non-unicode BW Dev system, but if we load from the unicode QA system the same record is not displaying correctly.
    Has anybody got a solution for this issue
    thanks
    Kalyan

  • Customer extended to wrong sales area

    Hi,
    We have 3 sales area,
    Sale area one :- 1000-10-20
    Sale area two :- 1000-10-30
    Sale area three :- 1000-10-40
    Customer is created in sales area one, we want to extend this customer to sales area two but by mistake it has been extended to sales area three. I want the customer only in sales area one and two and not in three.i.e in XD02 after entering the customer code, company code, after clicking customer's sales area only sales area one and two should be visible. How can I correct this.
    In similar way some of the views are been added in material master. How can I correct this.
    Vipin

    Hello
    You can use transaction VD06, but what you will do is you will only set a flag for deletion
    Deletion process is not that easy, because you could potentially have some documents created for that customer. so if system will allow you to delete completely, that it will create inconsistencies. If you want to delete the customer master data completely you will need to work with archiving process.
    Its better you only block the customer (please use VD05 for it)
    regards
    Rafal
    Edited by: Rafal Drezek on Jul 9, 2009 1:57 PM

  • Add columns in the existing Customer table in a Subject Area

    Hi All,
    Well I need to add two columns from Sales table(new table i created which has customer Id) and join it to the Customer Table which has the Customer Id and several columns. The Customer table was already in the RPD which has all the customer information. Now that i have this new requirement to add few columns from the Sales table to the Customer table in one Subject Area.
    What i have done so far is that I imported the sales table into the rpd, made a join in PHYSICAL LAYER on the customer ID of the Sales table to the Customer id of the Customer table and simply dragged the sales table to the Customer LTS in the BMM layer(NO MORE JOINS IN BMM)and dragged and dropped the same into the Presentation layer. The customer table is linked to one fact table in that subject area. So i thought that dragging the sales table columns in the customer table LTS will work because customer is linked to one fact in that subject area.
    Now, In the Answers when I dragged columns from customer & sales table I see only one record that is the first customer_id record from my Sales table but i know there are many common customer_ids between those two tables but its only picking the first customer id from the sales table.
    Any help will be appreciated..
    Normally if we need to add some columns to the existing tables in one subject area what is the best approach??

    Hi Balajee,
    SAPMM06E 0111 CUSTSCR1 SAPLXM06 0111 Subscreen: PO item
    for more information check with these links
    ADDING NEW FIELDS IN me21n
    ADDING NEW FIELDS IN me21n - (Screen exit / enhancment)
    hope this will useful to you.
    Regards!

  • Custom code life cycle management (CCLM)

    Hi Gurus ,
    At this moment i'm working on Custom code life cycle management concept in Solution Manager.
    If any one worked on this one previously can you please send me complete document.
    It's Urgent Plssssss
    Thanks in Advance...
    Vijay R.

    Hi Vijay,
    Check below links for CCLM
    how to guide
    https://service.sap.com/~sapidb/011000358700000426872012E
    1547234 - Technical configuration of Custom Code Lifecycle Management
    SAP Solution Manager WIKI - Custom Code Management - Solution Manager - SCN Wiki
    https://websmp206.sap-ag.de/~sapidb/011000358700000426872012E
    hope this helps
    Thanks
    Prakhar

  • Customer not maintained in sales area

    when i create sales order system is throwing a error message
    like
    customer not maintained in sales area....
    in va01, after entering sold to party i am getting this error....
    what should be configuration setting for setting this right.... kindly advise

    Hello,
    As told by Venkat, you are required to maintain the Sales Area data.
    By seeing the error there is something that you are missing in Configuration.
    Go to XD02 and extend your customer. You only must have created two segments. Extend the customer to sales are segment.
    Thanks,
    Ravi

  • I have an iphone 4 with a talkmobile contract sim. I am unable te send or receive mms. I have spoken to talkmobile customer service, my phone settings are correct. Aplle say that it is a network problem, can anyone help?

    I have n iphone 4 with a talkmobile contract sim. I cannot send or receive msm. I have spoken to talkmobile customer service, my phone settings are correct,Aple say it 8is a network problem!! Help!!

    talkmobile is not a supported carrier. It's very likely that you have the same problem suffered by people who attempt to use T-Mobile in the U.S. MMS simply will NOT work because the network is not compatible with the iPhone. If you want full functionality, you will have to switch to a supported carrier.
    A list can be found here: http://support.apple.com/kb/ht1937

  • Customizing Message "No portal roles are assigned for this user"?

    Hello,
    we would like to give the user some hint on who to speek with in case he has no portal roles assigned.
    So we would like to customize the messaage "No portal roles are assigned for this user" to some customer spezific text or to redirekt to a customer specific iView.
    I would appreciate any kind of hints.
    Best regards,
    Lutz Rottmann

    Hi,
    Check these threads.
    Customizing message "No portal roles are assigned for this user"
    No portal roles are assigned for this user
    Regards,
    Harini S

Maybe you are looking for