Show GP Item Properties In UWL

Hi,
We are using Guided Procedures composed of Visual composer screens for 5-6 workflows.  When we use the standart functionality in the UWL, everything works fine.
What I mean is I can show the Subject, From, Start Date etc. properties of the tasks in the UWL(it's standart). However I want to show the item specific properties in the UWL(the properties from the Visual Composer screens).
Is it possible to add these properties to the UWL?
I saw examples about the SAP Workflows, couldn't find any about the GP.
Thank you

Thanks Abdul,
Using the APIs and writing code will be my second choice.
Therefore I'm still looking for a configuration solution like the one that people created for SAP Workflows or ABAP Objects. (CustomAttribute examples are all about these subjects not the GP).
However if I can't fix it with configuration, coding will be the only choice. Do you have any code samples regarding this?
Thank you

Similar Messages

  • Spy menu only showing some items and properties not available

    I am having some issues with the spy menu. In order to try and fix my issues I built the menu from scratch again on one of my pages. Everything works now on that page and when I upload it to the server, it is all there.
    However, when I then copy and paste the menu to all the other pages and upload the the server, the submenu doen't show anymore. When I go and troubleshoot it and highlight the menu in its entirety and click properties, no properties will show. On the working page, this ation delievers me a properties bar where I can + or - menu items. Why is this? As this must be why the submenu is not showing either?
    The page where everything works is this (See sub menu under coaching clinics) http://www.golifecoaching.com.au/go-beyond-registration-test but on every other page on this website, this submenu disappears.
    Can anyone help? I am tearing my hair out and don't fancy having to build the menu from scratch for every page. There has to be a better way.
    I use CS4 and this is my menu;
       <div id="navigation">
        <!--MENU-->
        <ul id="MenuBar2" class="MenuBarHorizontal">
          <li><a href="index.html">Home</a>        </li>
          <li><a href="what-is-coaching.html">What is Coaching</a></li>
          <li><a href="coaching-benefits.html">Coaching Benefits</a>        </li>
          <li><a href="do-you-need-a-life-coach.html">Do You Need a Life Coach</a></li>
          <li><a href="about-go-life-coaching.html">About Go Life Coaching</a></li>
          <li><a href="#" class="MenuBarItemSubmenu">Coaching Clinics</a>
            <ul>
              <li><a href="holdsworth.html">Coaching for Carers</a></li>
              <li><a href="coachingclinic.html">The Coaching Clinic</a></li>
            </ul>
          </li>
          <li><a href="contact-us.html">Contact Us</a></li>
          <li><a href="http://www.golifecoaching.com.au/blog">Blog</a></li>
        </ul>
            <!--END MENU-->
    Jen

    That is brilliant, that is exactly it! Thank you sooooo much for your suggestion. I am so relieved.
    Yes a template would be best, but I am not sure how to do that, so I am left with doubling my work evertime I make a change on this site.
    Thanks Jen
    Date: Sat, 13 Aug 2011 16:43:59 -0600
    From: [email protected]
    To: [email protected]
    Subject: Spy menu only showing some items and properties not available
    Disclaimer: I am new to coding in general and this is my first attempt to help someone.
    I think the properties bar with the + - has to do with the javascript coding that is generated when you create a new tag, and it is located near the bottom of the page just before the closing body tag. 
    looks something like this:
    <script type="text/javascript">
    var MenuBar2 = new Spry.Widget.MenuBar("MenuBar2", );
    </script>
    so dont forget to copy that over too.  Also, check the CSS that is associated within each page and make sure they are all in the same style.
    P.S. Have you considered using a template for the menu bar so you dont have to copy it over each time?
    >

  • How to dynamically changes items properties

    How to dynamically changes items properties likes position order in tabular view, width, prompt

    Many object properties can be set programmatically at runtime. For example, each window object has a Visible property that can be set to either Yes or No to show and hide the window. At runtime, you can call the built-in procedure SET_WINDOW_PROPERTY to show or hide the window dynamically, as shown here:
    Set_Window_Property('my_window',VISIBLE, PROPERTY_ON);
    The following built-in procedures are available for setting object properties at runtime:
    -     SET_BLOCK_PROPERTY
    -     SET_CANVAS_PROPERTY
    -     SET_FORM_PROPERTY
    -     SET_ITEM_PROPERTY
    -     SET_LOV_PROPERTY
    -     SET_MENU_ITEM_PROPERTY
    -     SET_PARAMETER_ATTR
    -     SET_RADIO_BUTTON_PROPERTY
    -     SET_RECORD_PROPERTY
    -     SET_RELATION_PROPERTY
    -     SET_VIEW_PROPERTY
    -     SET_WINDOW_PROPERTY
    The built-in procedure SET_ITEM_PROPERTY can be used to set the properties of any type of item, including buttons, text items, check boxes, radio groups, etc.
    Note: Radio group items include individual radio buttons; use SET_ITEM_PROPERTY to set the properties of the radio group, and SET_RADIO_BUTTON_PROPERTY to set the properties of the individual buttons in the group.
    Each built-in SET procedure has a corresponding GET function that allows you to programmatically determine the current setting of an object's properties. The following example uses GET_WINDOW_PROPERTY to determine if a window is currently hidden (VISIBLE = FALSE). If the window is hidden, SET_WINDOW_PROPERTY is called to show the window.
    If Get_Window_Property('my_window',VISIBLE) = 'FALSE' THEN
    Set_Window_Property('my_window',VISIBLE,PROPERTY_ON);
    To determine if a particular property can be set programmatically, refer to the property descriptions in online Help.

  • QUERY FOR ITEM PROPERTIES

    hello ,
    i need to know how to do a query that shows the item info
    itemcode     itemname     dept     properties
    itema           testa            acc      dining                  (qry group #_)
    itema           testa            acc      patio                    (qry group #_)
    itemb           testb            fur        entcenter            (qry group #_)
    so if itema has 5 properties list them one line each instead of one line and different columns for different property.
    as for the acc and fur does are the itemgroup name instead of the numbers.  
    any help is greatly appreciated.
    thank you.

    select src.ItemCode,src.ItemName,src.ItmsGrpNam
    from
    (select OITM.ItemCode,OITM.ItemName,OITG.ItmsGrpNam
    from OITM CROSS JOIN OITG
    where OITM.QryGroup1 = 'Y' and OITG.ItmsTypCod = 1
    union all
    select OITM.ItemCode,OITM.ItemName,OITG.ItmsGrpNam
    from OITM CROSS JOIN OITG
    where OITM.QryGroup2 = 'Y' and OITG.ItmsTypCod = 2
    union all
    select OITM.ItemCode,OITM.ItemName,OITG.ItmsGrpNam
    from OITM CROSS JOIN OITG
    where OITM.QryGroup3 = 'Y' and OITG.ItmsTypCod = 3
    union all
    select OITM.ItemCode,OITM.ItemName,OITG.ItmsGrpNam
    from OITM CROSS JOIN OITG
    where OITM.QryGroup4 = 'Y' and OITG.ItmsTypCod = 4
    union all
    select OITM.ItemCode,OITM.ItemName,OITG.ItmsGrpNam
    from OITM CROSS JOIN OITG
    where OITM.QryGroup5 = 'Y' and OITG.ItmsTypCod = 5
    union all
    select OITM.ItemCode,OITM.ItemName,OITG.ItmsGrpNam
    from OITM CROSS JOIN OITG
    where OITM.QryGroup6 = 'Y' and OITG.ItmsTypCod = 6
    union all
    select OITM.ItemCode,OITM.ItemName,OITG.ItmsGrpNam
    from OITM CROSS JOIN OITG
    where OITM.QryGroup7 = 'Y' and OITG.ItmsTypCod = 7
    union all
    select OITM.ItemCode,OITM.ItemName,OITG.ItmsGrpNam
    from OITM CROSS JOIN OITG
    where OITM.QryGroup8 = 'Y' and OITG.ItmsTypCod = 8
    union all
    select OITM.ItemCode,OITM.ItemName,OITG.ItmsGrpNam
    from OITM CROSS JOIN OITG
    where OITM.QryGroup9 = 'Y' and OITG.ItmsTypCod = 9
    union all
    select OITM.ItemCode,OITM.ItemName,OITG.ItmsGrpNam
    from OITM CROSS JOIN OITG
    where OITM.QryGroup10 = 'Y' and OITG.ItmsTypCod = 10
    union all
    select OITM.ItemCode,OITM.ItemName,OITG.ItmsGrpNam
    from OITM CROSS JOIN OITG
    where OITM.QryGroup11 = 'Y' and OITG.ItmsTypCod = 11
    union all
    select OITM.ItemCode,OITM.ItemName,OITG.ItmsGrpNam
    from OITM CROSS JOIN OITG
    where OITM.QryGroup12 = 'Y' and OITG.ItmsTypCod = 12
    union all
    select OITM.ItemCode,OITM.ItemName,OITG.ItmsGrpNam
    from OITM CROSS JOIN OITG
    where OITM.QryGroup13 = 'Y' and OITG.ItmsTypCod = 13
    union all
    select OITM.ItemCode,OITM.ItemName,OITG.ItmsGrpNam
    from OITM CROSS JOIN OITG
    where OITM.QryGroup14 = 'Y' and OITG.ItmsTypCod = 14
    union all
    select OITM.ItemCode,OITM.ItemName,OITG.ItmsGrpNam
    from OITM CROSS JOIN OITG
    where OITM.QryGroup15 = 'Y' and OITG.ItmsTypCod = 15
    union all
    select OITM.ItemCode,OITM.ItemName,OITG.ItmsGrpNam
    from OITM CROSS JOIN OITG
    where OITM.QryGroup16 = 'Y' and OITG.ItmsTypCod = 16
    union all
    select OITM.ItemCode,OITM.ItemName,OITG.ItmsGrpNam
    from OITM CROSS JOIN OITG
    where OITM.QryGroup17 = 'Y' and OITG.ItmsTypCod = 17
    union all
    select OITM.ItemCode,OITM.ItemName,OITG.ItmsGrpNam
    from OITM CROSS JOIN OITG
    where OITM.QryGroup18 = 'Y' and OITG.ItmsTypCod = 18
    union all
    select OITM.ItemCode,OITM.ItemName,OITG.ItmsGrpNam
    from OITM CROSS JOIN OITG
    where OITM.QryGroup19 = 'Y' and OITG.ItmsTypCod = 19
    union all
    select OITM.ItemCode,OITM.ItemName,OITG.ItmsGrpNam
    from OITM CROSS JOIN OITG
    where OITM.QryGroup20 = 'Y' and OITG.ItmsTypCod = 20
    union all
    select OITM.ItemCode,OITM.ItemName,OITG.ItmsGrpNam
    from OITM CROSS JOIN OITG
    where OITM.QryGroup21 = 'Y' and OITG.ItmsTypCod = 21
    union all
    select OITM.ItemCode,OITM.ItemName,OITG.ItmsGrpNam
    from OITM CROSS JOIN OITG
    where OITM.QryGroup22 = 'Y' and OITG.ItmsTypCod = 22
    union all
    select OITM.ItemCode,OITM.ItemName,OITG.ItmsGrpNam
    from OITM CROSS JOIN OITG
    where OITM.QryGroup23 = 'Y' and OITG.ItmsTypCod = 23
    union all
    select OITM.ItemCode,OITM.ItemName,OITG.ItmsGrpNam
    from OITM CROSS JOIN OITG
    where OITM.QryGroup24 = 'Y' and OITG.ItmsTypCod = 24
    union all
    select OITM.ItemCode,OITM.ItemName,OITG.ItmsGrpNam
    from OITM CROSS JOIN OITG
    where OITM.QryGroup25 = 'Y' and OITG.ItmsTypCod = 25
    union all
    select OITM.ItemCode,OITM.ItemName,OITG.ItmsGrpNam
    from OITM CROSS JOIN OITG
    where OITM.QryGroup26 = 'Y' and OITG.ItmsTypCod = 26
    union all
    select OITM.ItemCode,OITM.ItemName,OITG.ItmsGrpNam
    from OITM CROSS JOIN OITG
    where OITM.QryGroup27 = 'Y' and OITG.ItmsTypCod = 27
    union all
    select OITM.ItemCode,OITM.ItemName,OITG.ItmsGrpNam
    from OITM CROSS JOIN OITG
    where OITM.QryGroup28 = 'Y' and OITG.ItmsTypCod = 28
    union all
    select OITM.ItemCode,OITM.ItemName,OITG.ItmsGrpNam
    from OITM CROSS JOIN OITG
    where OITM.QryGroup29 = 'Y' and OITG.ItmsTypCod = 29
    union all
    select OITM.ItemCode,OITM.ItemName,OITG.ItmsGrpNam
    from OITM CROSS JOIN OITG
    where OITM.QryGroup30 = 'Y' and OITG.ItmsTypCod = 30
    union all
    select OITM.ItemCode,OITM.ItemName,OITG.ItmsGrpNam
    from OITM CROSS JOIN OITG
    where OITM.QryGroup31 = 'Y' and OITG.ItmsTypCod = 31
    union all
    select OITM.ItemCode,OITM.ItemName,OITG.ItmsGrpNam
    from OITM CROSS JOIN OITG
    where OITM.QryGroup32 = 'Y' and OITG.ItmsTypCod = 32
    union all
    select OITM.ItemCode,OITM.ItemName,OITG.ItmsGrpNam
    from OITM CROSS JOIN OITG
    where OITM.QryGroup33 = 'Y' and OITG.ItmsTypCod = 33
    union all
    select OITM.ItemCode,OITM.ItemName,OITG.ItmsGrpNam
    from OITM CROSS JOIN OITG
    where OITM.QryGroup34 = 'Y' and OITG.ItmsTypCod = 34
    union all
    select OITM.ItemCode,OITM.ItemName,OITG.ItmsGrpNam
    from OITM CROSS JOIN OITG
    where OITM.QryGroup35 = 'Y' and OITG.ItmsTypCod = 35
    union all
    select OITM.ItemCode,OITM.ItemName,OITG.ItmsGrpNam
    from OITM CROSS JOIN OITG
    where OITM.QryGroup36 = 'Y' and OITG.ItmsTypCod = 36
    union all
    select OITM.ItemCode,OITM.ItemName,OITG.ItmsGrpNam
    from OITM CROSS JOIN OITG
    where OITM.QryGroup37 = 'Y' and OITG.ItmsTypCod = 37
    union all
    select OITM.ItemCode,OITM.ItemName,OITG.ItmsGrpNam
    from OITM CROSS JOIN OITG
    where OITM.QryGroup38 = 'Y' and OITG.ItmsTypCod = 38
    union all
    select OITM.ItemCode,OITM.ItemName,OITG.ItmsGrpNam
    from OITM CROSS JOIN OITG
    where OITM.QryGroup39 = 'Y' and OITG.ItmsTypCod = 39
    union all
    select OITM.ItemCode,OITM.ItemName,OITG.ItmsGrpNam
    from OITM CROSS JOIN OITG
    where OITM.QryGroup40 = 'Y' and OITG.ItmsTypCod = 40
    union all
    select OITM.ItemCode,OITM.ItemName,OITG.ItmsGrpNam
    from OITM CROSS JOIN OITG
    where OITM.QryGroup41 = 'Y' and OITG.ItmsTypCod = 41
    union all
    select OITM.ItemCode,OITM.ItemName,OITG.ItmsGrpNam
    from OITM CROSS JOIN OITG
    where OITM.QryGroup42 = 'Y' and OITG.ItmsTypCod = 42
    union all
    select OITM.ItemCode,OITM.ItemName,OITG.ItmsGrpNam
    from OITM CROSS JOIN OITG
    where OITM.QryGroup43 = 'Y' and OITG.ItmsTypCod = 43
    union all
    select OITM.ItemCode,OITM.ItemName,OITG.ItmsGrpNam
    from OITM CROSS JOIN OITG
    where OITM.QryGroup44 = 'Y' and OITG.ItmsTypCod = 44
    union all
    select OITM.ItemCode,OITM.ItemName,OITG.ItmsGrpNam
    from OITM CROSS JOIN OITG
    where OITM.QryGroup45 = 'Y' and OITG.ItmsTypCod = 45
    union all
    select OITM.ItemCode,OITM.ItemName,OITG.ItmsGrpNam
    from OITM CROSS JOIN OITG
    where OITM.QryGroup46 = 'Y' and OITG.ItmsTypCod = 46
    union all
    select OITM.ItemCode,OITM.ItemName,OITG.ItmsGrpNam
    from OITM CROSS JOIN OITG
    where OITM.QryGroup47 = 'Y' and OITG.ItmsTypCod = 47
    union all
    select OITM.ItemCode,OITM.ItemName,OITG.ItmsGrpNam
    from OITM CROSS JOIN OITG
    where OITM.QryGroup48 = 'Y' and OITG.ItmsTypCod = 48
    union all
    select OITM.ItemCode,OITM.ItemName,OITG.ItmsGrpNam
    from OITM CROSS JOIN OITG
    where OITM.QryGroup49 = 'Y' and OITG.ItmsTypCod = 49
    union all
    select OITM.ItemCode,OITM.ItemName,OITG.ItmsGrpNam
    from OITM CROSS JOIN OITG
    where OITM.QryGroup50 = 'Y' and OITG.ItmsTypCod = 50
    union all
    select OITM.ItemCode,OITM.ItemName,OITG.ItmsGrpNam
    from OITM CROSS JOIN OITG
    where OITM.QryGroup51 = 'Y' and OITG.ItmsTypCod = 51
    union all
    select OITM.ItemCode,OITM.ItemName,OITG.ItmsGrpNam
    from OITM CROSS JOIN OITG
    where OITM.QryGroup52 = 'Y' and OITG.ItmsTypCod = 52
    union all
    select OITM.ItemCode,OITM.ItemName,OITG.ItmsGrpNam
    from OITM CROSS JOIN OITG
    where OITM.QryGroup53 = 'Y' and OITG.ItmsTypCod = 53
    union all
    select OITM.ItemCode,OITM.ItemName,OITG.ItmsGrpNam
    from OITM CROSS JOIN OITG
    where OITM.QryGroup54 = 'Y' and OITG.ItmsTypCod = 54
    union all
    select OITM.ItemCode,OITM.ItemName,OITG.ItmsGrpNam
    from OITM CROSS JOIN OITG
    where OITM.QryGroup55 = 'Y' and OITG.ItmsTypCod = 55
    union all
    select OITM.ItemCode,OITM.ItemName,OITG.ItmsGrpNam
    from OITM CROSS JOIN OITG
    where OITM.QryGroup56 = 'Y' and OITG.ItmsTypCod = 56
    union all
    select OITM.ItemCode,OITM.ItemName,OITG.ItmsGrpNam
    from OITM CROSS JOIN OITG
    where OITM.QryGroup57 = 'Y' and OITG.ItmsTypCod = 57
    union all
    select OITM.ItemCode,OITM.ItemName,OITG.ItmsGrpNam
    from OITM CROSS JOIN OITG
    where OITM.QryGroup58 = 'Y' and OITG.ItmsTypCod = 58
    union all
    select OITM.ItemCode,OITM.ItemName,OITG.ItmsGrpNam
    from OITM CROSS JOIN OITG
    where OITM.QryGroup59 = 'Y' and OITG.ItmsTypCod = 59
    union all
    select OITM.ItemCode,OITM.ItemName,OITG.ItmsGrpNam
    from OITM CROSS JOIN OITG
    where OITM.QryGroup60 = 'Y' and OITG.ItmsTypCod = 60
    union all
    select OITM.ItemCode,OITM.ItemName,OITG.ItmsGrpNam
    from OITM CROSS JOIN OITG
    where OITM.QryGroup61 = 'Y' and OITG.ItmsTypCod = 61
    union all
    select OITM.ItemCode,OITM.ItemName,OITG.ItmsGrpNam
    from OITM CROSS JOIN OITG
    where OITM.QryGroup62 = 'Y' and OITG.ItmsTypCod = 62
    union all
    select OITM.ItemCode,OITM.ItemName,OITG.ItmsGrpNam
    from OITM CROSS JOIN OITG
    where OITM.QryGroup63 = 'Y' and OITG.ItmsTypCod = 63
    union all
    select OITM.ItemCode,OITM.ItemName,OITG.ItmsGrpNam
    from OITM CROSS JOIN OITG
    where OITM.QryGroup64 = 'Y' and OITG.ItmsTypCod = 64) src
    order by src.ItemCode

  • Sent Item Properties Comment

    Two of my users have a comment showing in the sent items properties tag.
    I need to remove these comments but cannot find where they enterd them!
    Any help appreciated... Thanks Geoff

    gcorner wrote:
    > Two of my users have a comment showing in the sent items properties tag.
    Well, I have no idea what you mean :-)
    The only time I've seen comments in properties are actually for things that can
    be accepted/declined - i.e., like appointments, etc. And those comments are
    generally sent by the recipient when accepting or declining.
    Is this perhaps what you are seeing?
    Danita
    Novell Knowledge Partner
    Moving GroupWise to Linux?
    http://www.caledonia.net/gwmove.html

  • Sales Analysis by Item: Show all items

    I am trying to look for a way to get a report that will show me the Sales Analysis by item, but show me all the items even if the item wasn't sold to any Business partner.
    Example:
    I have the following items and sales for today:
    Item A, invoice $100
    Item B, Invoice $200
    Item C, no sales
    Item D, Invoice $500
    If I run the sales analysis by item they will show me
    Item A, $100
    Item B, $200
    Item D, $500
    but I want to show it
    Item A, $100
    Item B, $200
    Item C, $0
    Item D, $500
    Please let me know if there is a way or a queries that I can do to get that result.
    Thank You,

    HI,
    Sales Analysis per item only display item with records.
    You can attain by creating a query to display your desired output.
    Please try to look in the forum for the sales report.
    example:
    [Sales report for the month.|Sales report for the month.]
    [Re: sales analysis report|Re: sales analysis report]
    [Re: A query report of sales invoices|Re: A query report of sales invoices]
    thanks.
    Clint
    Edited by: Clint T. Pauyon on Sep 24, 2011 12:09 PM

  • How to  show additional items in the same window using stacked canvas

    How to show additional items in the same window using stacked canvas.
    My content canvas has 14 items, and I have to include more.
    I want to know how I can use a stacked canvas to show these additional items in the same window, so that I can scroll through horzontally , as if all the items are on one canvas.

    Well, I intially navigate into my content canvas. At this stage the stacked canvas is not visible, then how should I navigate to an item on the stacked canvas to make it visible?

  • How to show all items in the reading list? I think this option has been removed in Safari Version 7.0.2

    How to show all items in the reading list? I think this option has been removed in Safari Version 7.0.2

    Thanks. That solved it. I had my doubts since I wasn't concerned about my lost bookmarks. I was concerned about the broken functionality. In any event, restoring from a backup solved both the functionality and the lost bookmarks. I appreciate the response!

  • Items to display in list view web part not showing the items setup

    Hi, I have the following issue. I have a list view web part, but the web part is showing more items that the ones setup in the: Number of items to display in list view web part for this view.
    It is because that works when using datasheet view and not a normal view? Is there any technical documentation from Microsoft supporting this?

    thank you for your answer. It is interesting that the mobile view with the items to show in the mobile view doesn't work in the webpart, but it works when you are using datasheet view, but if you uncheck to activate the mobile view, then, the webpart doesn't
    show information, so, it works partially because one part works and not the other.

  • Why I cant view my picture on my iphoto and if I try to copy to any folder it Shows "The item on the clipboard cant be pasted to this location. (One or more of the item may have been deleted or are no longer available) "

    Why I cant view my picture on my iphoto and if I try to copy to any folder it Shows "The item on the clipboard cant be pasted to this location. (One or more of the item may have been deleted or are no longer available) "

    There are 9 different versions of iPhoto and they run on 9 different versions of the Operating System. The tricks and tips for dealing with issues vary depending on the version of iPhoto and the version of the OS. So to get help you need to give as much information as you can. Include things like:
    - What version of iPhoto.
    - What version of the Operating System.
    - Details. Describe the problem as fully as you can. For example, if you have a problem with exporting, then explain by describing how you are trying to export, and so on.
    - History: Is this going on long? Has anything been installed or deleted? - Are there error messages?
    - What steps have you tried already to solve the issue.
    - Anything unusual about your set up? Or how you use iPhoto?
    Anything else you can think of that might help someone understand the problem you have.

  • Order status no longer shows any items

    The order status area of my account no longer shows any items even going back 18 months.
    I've placed about 6 orders in that time frame including one last week. I followed the link to Pre-sign for the shipment but the order never appears, even after 5 days.

    I'm having the same problem. There was a page where one could go that had a complete listing of products purchased, including software downloads. I can't find it anywhere and it's really annoying. I own three Macs (two Macbooks and a MBP) and each time I need help I have to dig around for the serial number, etc. Plus the one machine that the Expert system shows as mine, a G4, I sold years ago. What's the big deal about maintaining customer profiles? Everyone else does it. Is there a new URL or something that no one thought to tell us customers of 30 years-standing about?

  • How to stretch background image, How to change show detail item header

    Hello all I have a few questions I would like to pose humbly to your collective wisdom, FYI I use Jdeveloper 11.1.3 and ADF Fusion
    First, how do I stretch the background Image? I have a background image in a show detail item but it is very small. 400 by 400. Thing is it's just a pic of the color red gradually moving from bright to dark in the image. So stretching it should not make it look horrible, but also repeating it makes it look silly, because you have 50 little images of dark red to bright red, instead of one big image of dark red to bright red. Can this be done and how?
    Secondly how do I change the header of the show detail item in a Panel Accordion? I have 8 Show detail items, in the middle of my page and the user can click and switch between which one is open, which makes for a nice effect, but I would like to give each of the show detail items a particular color. I did this with the backgrounds but I can't do it with the header, which are always visible, while only one background is visible at a time. I tried using the skinning technique but I wasn't able to change the header (I changed the background so the skinning was done correctly). I used
    af|panelAccordion::header
      color: blue;
      font-family: Arial, Helvetica, sans-serif;
      background: Maroon;
      background-color: Maroon;
    }Because I read in the Fusion Guide (or somewhere) that the show detail item cannot be skinned and therefore doesn't have a property like af panel Accordion.
    Can it though be achieved through some other means?
    Third when I drop the data control on the page and if I pick search form, why can't I use the CreateInsert button? Why can't I use the form to Create new rows? It keeps giving me some type of error, like Row is out of bounds or something? Is that some mistake with my database, or page, or is it not possible to do it like that?
    I welcome your words of guidance and also happy new year Huzzah!!!
    Edited by: Dino2dy on Jan 4, 2011 2:01 AM

    Thanks I haven't really had time to play around with this, as I have other concerns, but I do plan on coming back to it, and it is one of the things about ADF that really is bothersome. Creatively it means I can choose between 2 styles when making an app Blaf Rich and Fusion (the other ones are just worse versions of the two) while I will concede that the superb out of the box functionalities and things I can do declaratively probably mean I won't have a Dreamweaver type freedom of design I thought there might be a way to do some of these custom design changes.
    A few questions though
    When you skin the accordion are you able to propagate the changes to show detail item headers? Because that is one thing that I really want to change, just the color of the headers but I was unable to do so.
    Also there is a component that is not part of a panel accordion or panel tabbed called panel box. Again I changed the backgrounds to great effect but I need to change the panel header and in this I failed.
    Granted I used the css color attribute for both not a picture so maybe that is the reason. Just wondering if you succeeded.
    Cheers

  • Sap standard report for showing line items of any GL with its offsettinga/c

    Dear all,
    Is there any standard report in SAP to show line items of GL with its offsetting accounts. in short i want to see all journal entries of one specific GL account.could any of you help me in this?
    points will be rewarded for the relevant answer.
    thanks,
    hemanth

    Hi Dave,
    I have gone through the note 112312.But there it is mentioned that it relates to 4.6x versions.We are in ECC 6.0.and we have not implemented new GL accounting concept.Is there any other alternative functionality or any other OSS note which meets my requirements.Can you please suggest me on this ?
    Thanks,
    Hemanth

  • Bank Clearing Account showing open item

    Dear Experts,
    I have created two Bank Account one is Clearing Account and other one is Main Account.
    I created FF67 and perform batch input processing, and it is through, But the problem is in Clearing Account the line item transferred to Main Account is still showing as open item. It should be cleared item.
    Whether i have missed anything for which this is still showing open item.
    Regards,
    Nrusingh Pradhan

    It is resolved, i have selected wrong posting type.
    I am closing this issue.
    Resolved,
    Thanks for your reply.

  • How to show two items using $f_Show_On_Value_Item_Row

    Hi,
    I have a select list with values with Yes, No and two items(1 check box, 1 text field) below it.
    I want to show two items if i select 'Yes' in select list.
    I am able to show/hide one item using onchange="$f_Show_On_Value_Item_Row(this,'P1_A_EMAIL_PERS_REQ','Yes');"
    How can i pass two items to this function.
    Thanks for ur help in advance
    Regards,
    Ram

    Ram,
    Rather than putting the call to $f_Show... inline with the onchange handler, create a separate function and call that function does the work and call that function instead. See this thread for some more details:
    Problem when calling more than 1 Javascript function
    Regards,
    Dan
    http://danielmcghan.us
    http://sourceforge.net/projects/tapigen

Maybe you are looking for

  • Price Difference A/c is debiting instead of Raw Material A/c when MIGO

    Hi Experts, Please can any body help me regarding FI-MM integration. When do the MIGO transaction as per standard - Debit is Raw Material A/c and Credit GR/IR Clearing A/c. But in my System Debit is Price Difference A/c and Credit is GR/IR Clearing A

  • Can I share an Exchange account Calendar with another icloud user?

    How do I get my work calendar onto the my iCloud accout, and how do I share it with another iCloud user? he exchange calendar is currently on my iphone calendar, but I can't find a way to see it on my iCloud.

  • Trying to transfer from a VCR...

    I have a vcr hooked up through ElGato eye TV 250 and have recorded clips to my harddrive. According to iMovie, it can accept any format. well, guess what...it doesn't. A quicktime error comes up...the error is as follows... The file could not be impo

  • Open Items Selection  - Error Message 5593

    Hi Freinds, While clearing the open items using the T Code F-03, the items are initially selected. However, when the users try to deselect the items using the 'Deselect' option, the system gives the error message "Check Marks were removed" Message No

  • Nokia E71 hard reset and then....

    Hi community, what happens is i perform a hard reset on my nokia e71, will i lost some software (that originally came with the phone)? or everything remains the same as when i bought it brand new? Solved! Go to Solution.