Adding info blocks in a custom class for Factsheet

Hi Experts,
I need to create a custom class by copying the standard class 'CL_CRM_CCKPT_PROCESS_OPEN'  which should accept input as Activity Types. At present this class only accepts Number of months as Input. This added input field should accept individual multiple values & Ranges and F4 help also needs to be attached for the field.
I would like to know how to add this new input field to the class 'CL_CRM_CCKPT_PROCESS_OPEN' .
Any valuable help would be appreciated & points would be rewarded generously for the same.
Regards,
Sangeeta.

Hi,
You can copy and include your fields in the class using transaction SE24.
According to your subject  line you are trying to modify an existing factsheet display you own data. I would suggest instead of creating a modifying an existing class, implement your own function module and call this function module directly from the smartform used to for factsheet. This is an easier way to implement modification of factsheets instead of using the classes and displaying the data.
Reward with points if this helps.
Regards,
Gaurav Gera

Similar Messages

  • Default Code Generation for a Custom Class for an Application Module

    hi all
    Oracle® Fusion Middleware
    Fusion Developer’s Guide for Oracle Application Development
    Framework
    11g Release 1 (11.1.1)
    with Jdeveloper TP3 ,
    By default, the application module Java class will look similar to what you see in
    Example below when you've first enabled it. Of interest, it contains:
    ■ Getter methods for each view object instance in the data model
    ■ A main() method allowing you to debug the application module using the
    Business Components Browser
    [package devguide.model;
    import devguide.model.common.StoreServiceAM;
    import oracle.jbo.server.ApplicationModuleImpl;
    import oracle.jbo.server.ViewLinkImpl;
    import oracle.jbo.server.ViewObjectImpl;
    // --- File generated by Oracle ADF Business Components Design Time.
    // --- Custom code may be added to this class.
    // --- Warning: Do not modify method signatures of generated methods.
    public class StoreServiceAMImpl extends ApplicationModuleImpl {
    /** This is the default constructor (do not remove) */
    public SRServiceImpl() { }
    /** Sample main for debugging Business Components code using the tester */
    public static void main(String[] args) {
    launchTester("devguide.model", /* package name */
    "SRServiceLocal" /* Configuration Name */);
    /** Container's getter for YourViewObjectInstance1 */
    public ViewObjectImpl getYourViewObjectInstance1() {
    return (ViewObjectImpl)findViewObject("YourViewObjectInstance1");
    // ... Additional ViewObjectImpl getters for each view object instance
    // ... ViewLink getters for view link instances here
    when i try this i didn't find the default generation for main method
    have i do something before enable custom java file for Application module
    hope to hear from you soon

    hi nonStop
    Since you are using Jdeveloper TP3, this might be a better place to ask your question:
    "JDeveloper and OC4J 11g Technology Preview"
    JDeveloper and OC4J 11g Technology Preview
    success
    Jan Vervecken

  • 9.7.3 Default Code Generation for a Custom Class for an Application Module

    hi all
    Oracle® Fusion Middleware
    Fusion Developer’s Guide for Oracle Application Development
    Framework
    11g Release 1 (11.1.1)
    with Jdeveloper TP3 ,
    By default, the application module Java class will look similar to what you see in
    Example below when you've first enabled it. Of interest, it contains:
    ■ Getter methods for each view object instance in the data model
    ■ A main() method allowing you to debug the application module using the
    Business Components Browser
    [package devguide.model;
    import devguide.model.common.StoreServiceAM;
    import oracle.jbo.server.ApplicationModuleImpl;
    import oracle.jbo.server.ViewLinkImpl;
    import oracle.jbo.server.ViewObjectImpl;
    // --- File generated by Oracle ADF Business Components Design Time.
    // --- Custom code may be added to this class.
    // --- Warning: Do not modify method signatures of generated methods.
    public class StoreServiceAMImpl extends ApplicationModuleImpl {
    /** This is the default constructor (do not remove) */
    public SRServiceImpl() { }
    /** Sample main for debugging Business Components code using the tester */
    public static void main(String[] args) {
    launchTester("devguide.model", /* package name */
    "SRServiceLocal" /* Configuration Name */);
    /** Container's getter for YourViewObjectInstance1 */
    public ViewObjectImpl getYourViewObjectInstance1() {
    return (ViewObjectImpl)findViewObject("YourViewObjectInstance1");
    // ... Additional ViewObjectImpl getters for each view object instance
    // ... ViewLink getters for view link instances here
    when i try this i didn't find the default generation for main method
    have i do something before enable custom java file for Application module
    hope to hear from you soon

    hi nonStop
    Since you are using Jdeveloper TP3, this might be a better place to ask your question:
    "JDeveloper and OC4J 11g Technology Preview"
    JDeveloper and OC4J 11g Technology Preview
    success
    Jan Vervecken

  • How to create custom class for Swing compnents

    import java.awt.Color;
    import java.awt.Font;
    import javax.swing.JLabel;
    import javax.swing.*;
    public class SampleJFrame extends JFrame {
        public static void main(String[] args) {
            SampleJFrame frame      =      new SampleJFrame();
            JPanel panel = new JPanel();
            panel.setLayout(null);
            getLabel label;
            Color     color, color1;
            color                    =      new Color(   120 ,      120  ,     160            );
              color1                    =      new Color( 135  ,     38 ,      87);          
            label                     =       new getLabel( "Hiiiiii", 150, 700, 800, 50, color1, "Serif", Font.BOLD, 28 );
                panel.add(label);      
                frame.add(panel);      
            frame.setSize(700, 770);
             frame.setVisible(true);
            frame.setDefaultCloseOperation(DISPOSE_ON_CLOSE);
    import java.awt.Color;
    import java.awt.Font;
    import javax.swing.JLabel;
    public class getLabel extends JLabel {
          *     This method create and return the JLabel with necessary parameter
          *     @param     labelName
          *     @param      x coordinate
          *      @param      y coordinate
          *      @param      width
          *      @param     height
          *      @param     foreground color
          *      @param     fontName
          *      @param     fontStyle
          *  @param     fontSize
          *      @return     JLabel
         public getLabel( String labelName, int x, int y, int width, int height, Color foreGround,
                                   String fontName, int fontStyle, int fontSize ){          
                   JLabel      label     = new      JLabel(labelName);
                   label.setBounds( x, y, width, height);
                   label.setForeground(foreGround);
                   label.setFont(new Font(fontName, fontStyle, fontSize));               
              }                                   // End of getLabel block     
    }I want to use customs JLabel class where I can add necessay element to JLabel comonent
    But in above case the getLabel class compiles but when I am add label using getLabel class
    to my JFrame class it doesnt shows anything.
    I dont get what is the error please help
    Edited by: harshal_2010 on Apr 29, 2010 6:43 AM
    Edited by: harshal_2010 on Apr 29, 2010 7:01 AM

    I don't understand, Why you try to create new Label in getLabel constructor?
    You get label class already extended from JLabel and don't necessary to create new JLabel.
    public getLabel( String labelName, int x, int y, int width, int height, Color foreGround,
                                   String fontName, int fontStyle, int fontSize ){          
                   super(labelName);
                   this.setBounds( x, y, width, height);
                   this.setForeground(foreGround);
                   this.setFont(new Font(fontName, fontStyle, fontSize));               
              }I think, you need to create ControlsFactory and use it for creating custom controls. It's best solution for you.

  • Custom Class for movie clips

    Hello AS2 Forum,
    I am being forced to use AS2.0. (prefer AS3). I am using
    Captivate 3, and want to add some Flash created swfs as animations
    to a slide or slides in my Captivate project (Captivate 3 supports
    AS2 only at this time).
    I would like to create a class file that has symbol in it. By
    symbols I mean MovieClips that are converted drawings.
    My test case is just one item, a "plus" sign for addition. I
    will want to add a minus, a divide (slash), and a multiply
    (asterisk) once I get my class working.
    I have a nice plus sign that I created using the Flash
    drawing tools. Is there some way I can add this created symbol to
    my class? I mean without putting a bunch of code in the class that
    actually draws the plus sign using "lineto" this and "lineto" that,
    etc. My thought is create a class called "Operator", and have the
    signs in the class, and instantiate a sign using something like:
    var plus:Operator = new Operator("plus");
    The thought of creating the math to draw an asterisk is not
    exciting!
    Or should I just create the symbols in my fla file, convert
    to movieclips, and add to the stage using the attachMovie scenario
    (which is easier).
    Tips???
    Thanks,
    eholz1

    Hello Kglad,
    Thanks for the info. I might be getting "smarter" as the
    thought did occur to me, but did not try it. can I assume that I
    would build a swf of the "image" and then use attachMovie to bring
    the swf into my class file, and the when the class is instantiated
    in my other flash file, I will have the object?
    I will experiment.
    Thanks
    eholz1

  • Custom class for GRC provisioning framework 2 on IDM 7.2

    Hello,
    I am currently trying to modify the GRC provisioning framework validation workflow in order to validate privileges on roles rather than each privilege individualy. After reading through the code, I tried to create a class which would extract the list of privileges of the role and send it to GRC for validation. But I am faced with a problem integrating it in IDM 7.2.
    The provisioning framework use "Execution Task" to call a static java methods. This is the process I tried to work with, thus I created my own java class based on those in com.sap.idm.grc.ac, and replaced the call to a call to my class. The problem is, when starting the job, the dispatcher thrown an exception:
      Could not carry out method (com.inventy.idm.grc.ACPrepRequestRole.exec)
    The produced .jar should be in the DSECLASSPATH of the dispatcher (I check the .prop file directly, after adding it to the MMC), it still work with any other file in the same folder (grcfr.jar, among other), it just seem like it can't recognize mine.
    Is there any other place where I need to register my .jar? Is it even possible to modify a Java Execution Task like this, or I will need to redo half the framework in Javascript?
    Attached are the task created, the classpath extension and the folder where the jar is located.

    Julien,
    I'd probably open a note on this one.
    Regards,
    Matt

  • Custom class for playing system prompts

    Hi,
    I wanted to know is there any class file to play the system prompts from the user folder . Is there any reference or sample file to develop custom prompts.
    Best Regards
    Vinay

    None of the available releases allow you to mess with the system prompts folder. In every scenario I can think of it is possible to modify your script to manually choose user repo prompts instead of the system repo file; it just takes more effort.
    Is there a specific task that you're trying to accomplish? We can talk out what extra code you need to make it pull from the user repo.

  • How do I resolve a ClassNotFoundException for a custom class

    I am new to Java and am having frustrating problems. I am creating a Desktop application and want the application to have the capability to read from the file system.
    I created a custom class to hold mapping data and stored the object to file using ObjectOutputStream writeObject. I read it back into the program to make sure it worked. All was well and fine. I am trying to mimic the C capability to read and write entire data structures at a time. I ensured that the class (and all classes that it relied on) were serializable.
    Now back to the Desktop app. I am trying to read the object into that same custom class in my program. The program compiles fine. I have set my classpath up in Netbeans 6.1 to look to the other apps classes, have imported the classes. Again no problem.
    I also set my classpath (in the run section) to look at the jar file in the other section that contains my class. I have tried setting this runtime classpath many ways. I will get a ClassNotFoundException: MyClass at URLClassLoader ... on and on.
    I really am trying to do something simple here by just reading in a structure (class in Java). I was told previously that it is a classpath problem. How can I resolve this? I don't think that I should have to write a binary or text file that contains all of the various parameters (easier to do in one hop using
    MyClass c = (MyClass) in.readObject();
    Help is appreciated. Jay A

    jaya wrote:
    I am new to Java and am having frustrating problems. I am creating a Desktop application and want the application to have the capability to read from the file system.Very good.
    I created a custom class to hold mapping data and stored the object to file using ObjectOutputStream writeObject. I read it back into the program to make sure it worked. All was well and fine. I am trying to mimic the C capability to read and write entire data structures at a time. I ensured that the class (and all classes that it relied on) were serializable.I'm not sure why you think Object streams are the way to go here. Why aren't a text representation and a toString call good enough? Sounds like you just want a simple persistence mechanism without a relational database. Writing a Map of <key, value> pairs using a PrintWriter would seem enough to me and parsing each pair on a line to read it back in would seem sufficient to me.
    Now back to the Desktop app. I am trying to read the object into that same custom class in my program. Why? What are you trying to do? Why can't your Desktop app instantiate an instance of the custom class and be done with it?
    The program compiles fine. I have set my classpath up in Netbeans 6.1 to look to the other apps classes, have imported the classes. Again no problem.So does your NetBeans classpath include your custom class?
    I also set my classpath (in the run section) to look at the jar file in the other section that contains my class. Why do you have to package the other class in a JAR? Why can't that package just be part of your current project? Or are they separate projects, and you want to treat the first one like a 3rd party JAR?
    I have tried setting this runtime classpath many ways. I will get a ClassNotFoundException: MyClass at URLClassLoader ... on and on.You aren't setting CLASSPATH correctly. You don't need a URL class loader. You're making this far too complicated. It's a much easier thing than this.
    I really am trying to do something simple here by just reading in a structure (class in Java). I was told previously that it is a classpath problem. How can I resolve this? I don't think that I should have to write a binary or text file that contains all of the various parameters (easier to do in one hop using
    MyClass c = (MyClass) in.readObject();This is not the way to do it.
    CNF exception means one thing: a .class that you need to load isn't in the CLASSPATH. That advice you got is correct. You need to figure out how to make it so.
    Your description is confusing.
    I think your mistake is assuming that serialization is the best way to persist that mapping data. Without knowing more about the details, I think adding two method to the "custom class" that encapsulated the mapping data should be sufficient. Create a static read() method that takes a java.io.Reader and returns a populated instance of your class. Create a static write() method that accepts a java.io.Writer and an instance of your class and returns void. Have them read and write plain text. Then either make that source code part of your NetBeans project or package it into a JAR and put that in your CLASSPATH. Either way, if you don't do it properly you'll get that CNF exception. Keep plugging until you get it right.
    %

  • Creating custom class instances for XML nodes

    Hi guys,
    I'm trying to load an external XML document in my application
    and create an instance of a custom class for each node in the XML
    based on the value of some of their elements. The instances created
    will eventually end up in a DataGrid by the way. The problem I'm
    having is there seems to be many ways of doing small parts of this
    and I have no idea how to make them all gel. Initially I'm using
    HTTPService to load the XML file but I've seen people just use an
    XML object. Then, after that, I initially set the loaded XML to an
    ArrayCollection but others have used XMLList or XMLListCollection.
    I've no idea what's the best way to do this.
    Eventually, when I've created all of these instances by
    looping over the XML and creating them how will I make them
    bindable to the data grid? I'm guessing I'll have to group them
    somehow...
    Any help would be greatly appreciated. Thanks

    Hey Tracy,
    That is exactly what I was talking about in a previous post
    you replied to
    http://www.adobe.com/cfusion/webforums/forum/messageview.cfm?catid=585&threadid=1344350
    Anyhow, Below is some code I created to do what your saying
    somewhat dynamically. The idea being you can have many different
    object types that you may want to populate with data from XML. In
    my case I am using e4x as the result type from my web services. At
    present I have about 6 different classes that call this function.
    I'd love to get some opinions on the function. Good bad or
    ???? Any improvements etc????
    package . . . .
    import flash.utils.describeType;
    import flash.utils.getDefinitionByName;
    import flash.utils.getQualifiedClassName;
    import mx.utils.ObjectUtil;
    * Utility class to convert xml based Objects to class
    instances.
    * Takes a value object as the destination and an xmlList of
    data
    * Look through all the items in the value object. Note we
    are using classInfo..accessor since
    * our objects are bound all variables become getter /
    setter's or accessors.
    * Also note, we can handle custom objects, arrays and
    arrayCollections.
    * History
    * 03.11.2008 - Steven Rieger : Created class
    public final class XMLToInstance
    public static function xmlToInstance( destinationObject :
    Object, sourceXMLList : XMLList ) : void
    // Get the class definition in XML, from the passed in
    object ( introspection so to speak )
    var classInfo : XML = describeType( destinationObject );
    // Loop through each variable defined in the class.
    for each ( var aVar : XML in classInfo..accessor )
    // If this is String, Number, etc. . . Just copy the data
    into the destination object.
    if( isSimple( aVar.@type ) )
    destinationObject[aVar.@name] = sourceXMLList[aVar.@name];
    else
    // Dynamically create a class of the appropriate type
    var className : String = aVar.@type;
    var ObjectClass : Class = getDefinitionByName( className )
    as Class;
    var newDestObject : Object = Object( new ObjectClass());
    // If this is a custom type
    if( isCustomType( className ) && ObjectClass != null
    // Recursively call itself passing in the custom data type
    and the data to store in it.
    // I haven't tested nested objects more than one level. I
    suppose it should work.
    // Note to self. Check.
    xmlToInstance( newDestObject, sourceXMLList[aVar.@name] );
    else
    // Must be some sort of Array, Array Collection . . .
    if( ObjectClass != null )
    var anXMLList : XMLList = new XMLList(
    sourceXMLList[aVar.@name] );
    for each( var anItem : XML in anXMLList )
    // I'm sure there are more types, just not using any of them
    yet.
    if( newDestObject is Array )
    newDestObject.push( anItem )
    else
    newDestObject.addItem( anItem );
    // Add the data to the destination object. . . .
    destinationObject[aVar.@name] = newDestObject;
    } // end function objectToInstance
    public static function isSimple( dataType : String ) :
    Boolean
    * This function is pretty self explanatory.
    * Check to see if this is a simple data type. Did I miss
    any?
    * History
    * 03.11.2008 - Steven Rieger : Created function
    switch( dataType.toLowerCase() )
    case "number":
    case "string":
    case "boolean":
    return true;
    return false;
    } // end isSimple
    public static function isCustomType( className : String ) :
    Boolean
    * This function is pretty self explanatory.
    * Check to see if this is a custom data type. Add them here
    as you need. . .
    * History
    * 03.11.2008 - Steven Rieger : Created function
    var aClassName : String = className.replace( "::", "."
    ).toLowerCase();
    aClassName = aClassName.substr( aClassName.lastIndexOf( "."
    ) + 1, aClassName.length - aClassName.lastIndexOf( "." ) );
    switch( aClassName )
    case "ndatetimevo":
    case "expenselineitemvo":
    return true;
    return false;
    } // end isCustomType
    } // end class
    } // end package

  • Arrays within custom Classes - same array for different instances?

    Hello all,
    I have made a very simple custom class for keeping track of groups of offices for a company.  The class has a Number variable to tell it how many different offices there are, and an Array to store the individual offices by name.  It looks like this.
    class officeCluster
        static var _className:String = "officeCluster";
        // variables
        var numOffices:Number;
        var locationArray:Array = new Array();
        // functions
        function officeCluster()
            trace("officeCluster constructor");
    Very simple!
    Now, it is my understand that when I create different instances of the class, they will each have their own version of "numOffices" and their own version of "locationArray".
    When I run traces of "numOffices", this seems to be true.  For example,
    trace(manufacturingOfficeCluster.numOffices);
    trace(servicesOfficeCluster.numOffices);
    yields
    5
    4
    In the output panel, which is correct.  However, there is trouble with the locationArray.  It seems that as I assign different values to it, regardless of what instance I specify, there is only ONE array- NOT one for each instance.
    In other words,
    trace(manufacturingOfficeCluster.locationArray[1].theLocation);   // theLocation is a String.  The locationArray itself holds Objects.
    trace(servicesOfficeCluster.locationArray[1].theLocation);
    yields
    New Haven, CT
    New Haven, CT
    even though I have defined elsewhere that they are different!
    Is anyone aware of any issues partaining to using Arrays within Class instances?  Any help would be appreciated!
    note:  I've been able to work around this by creating multiple arrays within the class and using a different one for each instance, but this seems very sloppy.

    Unfortunately, the code segment you attached results in:
    12
    12
    in the output panel.   So the problem must lie elsewhere!  Let me give some more detail...
    There are several files involved. The "officeCluster" class file looks like this:
    class officeCluster
         static var _className:String = "officeCluster";
         // variables
         var numOffices:Number;
         var locationArray:Array = new Array();
         // functions
         function officeCluster()
            trace("officeCluster constructor");
    I have two actionscript files which contain object data for the individual offices.  They look like this...
    var servicesOfficeCluster = new officeCluster();
    servicesOfficeCluster.numOffices = 4;
    var newHope:Object = new Object();
    newHope.locationName = "New Hope Office";
    newHope.theLocation = "New Hope, NJ";
    //more data
    servicesOfficeCluster.locationArray[0] = newHope; //array index is incremented with each entry
    //more Objects...
    and like this...
    var manufacturingOfficeCluster = new officeCluster();
    manufacturingOfficeCluster.numOffices = 5;
    var hartford:Object = new Object();
    hartford.locationName = "Hartford Office";
    hartford.theLocation = "Hartford, CT";
    //more data
    manufacturingOfficeCluster.locationArray[0] = hartford; //array index is incremented with each entry
    //more Objects...
    As you can see, the only difference is the name of the officeCluster instance, and of course the Object data itself.  Finally, these are all used by the main file, which looks like this- I have commented out all the code except for our little test -
    import officeCluster;
    #include "manufacturingList.as"
    #include "servicesList.as"
    /*lots of commented code*/
    manufacturingOfficeCluster.locationArray[1].theLocation = "l1";
    servicesOfficeCluster.locationArray[1].theLocation = "l2";
    trace(manufacturingOfficeCluster.locationArray[1].theLocation);
    trace(servicesOfficeCluster.locationArray[1].theLocation);
    Which, unfortunately, still yields
    12
    12
    as output :\  Any ideas?  Is there something wrong with the way I have set up the class file?  Something wrong in the two AS files?  I'm really starting to bang my head against the wall with this one.
    Thanks

  • Problem Using Custom Classes in UCCX8.5.1 SU3

    Dear All,
    My team is facing problem in using Java custom classes for UCCX 8.5.1 SU3
    The problem is that we have created some conditional prompts for currency in different languages, our custom java class contains two mathods GetEnglishString(parameter set) and GetUrduString(parameter set). We are able to use/call both methods one by one and both at same time in CCX Editor and validate the script successfully but when we set the script as application it failed.
    We tried to use both methods one by one and found that script with GetEnglishString is working ok but when we place GetUrduString (alone as well) MIVR logs say that method is unknown altough CCX Editor does not give us any error. We triend to restard Administration and Engine Services several time but to no avail. If somebody know the reason and solution kindly share it ASAP.
    Regards
    Kashif Surhio

    Hi
    In that case I would double check you have uploaded the file, and restart the server completely. In testing we found that restarting the engine didn't always reload the classes.
    Aaron

  • Custom class trouble

    I created two custom classes for a project. The excerpt of
    code attached refers to the event handler from my first class. In
    the event handler it creates a new instance of my second class.
    This works fine. Unfortunately I cannot figure out how to make the
    existing instance (before a new one is created using the same event
    handler) use a fade out function (or do any other property value
    change) I created, then have the new instance display after the
    property value change of the original instance has been
    triggered.

    I get this when putting the following line just before the
    creation of var loadMyImage
    quote:
    TypeError: Error #1009: Cannot access a property or method of
    a null object reference.
    at BotMenu/downClick()

  • Create New Info Block in ECC for CRM Customer Fact Sheet

    Hi,
    we have a requirement to add a new info block in Customer Fact Sheet to display Equipment master from ECC. the info block required somehow is not listed in standard ECC info block.
    is there any way i can configure the info block in ECC so i can call it from CRM? or do i need to develop it using ABAP in ECC?
    thanks in advance

    What I really really need is an example of how a new Assignment block can be created so that it appears in the PDF fact sheet.
    I'm aware that the interface within the Smartform will need to be changed, along with the coding to process any new data being parsed in. The copied class, now called ZCL_UIU_PRN_ACCOUNT has a method called Collect_data which populates the itabs and forwards to the appropriate Smartform. I'm currently looking through this code to see what needs to be done.
    The collect_data method loops through the data in the CRMT_BSP_PRINT table and retrieves the data structure and class, and I assume it calls them, but I have no idea what these classes have in common as I can't see common theme with them.
    The data sources are:
    CRMT_BSP_ACTIVITY2_BP
    COMT_BSP_BP_ADDRESS
    CRMT_BSP_CONTACT_OBJ_BP
    CRMT_BSP_INT_HISTORY_BP
    CRMT_BSP_OPPORTUNITY_BP
    CRMT_BSP_ACC_R3_FACT_SHEET
    CRMT_BSP_ACC_RELATION
    CRMT_BSP_SALES_AREA_BP
    and their associated class/interface is:
    CL_BSP_ACC_ACCMOD_ACTIVITY
    CL_BSP_BP_ACCMOD_ADDR_MIX
    CL_BSP_ACC_ACCMOD_CONTACT
    CL_BSP_ACC_ACCMOD_INT_HISTORY
    CL_BSP_ACC_ACCMOD_OPPORTUNITY
    CL_BSP_ACC_ACCMOD_PRN_R3DATA
    CL_BSP_ACC_ACCMOD_RELATIONS
    CL_BSP_ACC_ACCMOD_SALES_AREA
    It would look like a lot of these classes are based on CL_BSP_*ACCMOD classes, but that's guesswork on my part.
    I am unhappy that I seem to be pioneering here as there's no guide/help on exactly what needs to be done to add new AB's/sections to the PDF fact sheet. I find that strange as most areas are well documented, except this area as far as I know.
    Sure, there is a note which identifies some of the objects that need to be changed, but misses out a vital table, but there are no guides. There are many people who produce videos on how to achieve the easier stuff, like adding fields to AB's via the UI configurator, but there seems to nothing in the area of extending the PDF fact sheet.
    Jas
    Edited by: Jason Stratham on Apr 29, 2010 10:22 AM

  • OAAM 11g R2: Unable to load java class for custom configurable action

    Need to configure a Configurable Action to get triggered for a particular action at a given checkpoint.
    Steps Followed:
    1. Created a java class implementing com.bharosa.vcrypt.tracker.dynamicactions.intf.DynamicAction, getParameters() and execute() methods were implemented in that java class.
    2. Added necessary jars from $ORACLE_IDM_HOME\oaam\cli\lib to the build classpath.
    3. Compiled and created a jar with it.
    4. Extracted the oracle.oaam.extensions.war file into a working folder.
    5. Added the Custom Jar created in step 3 into <working folder>/WEB-INF/lib/
    6. Changed the following in MANIFEST.MF in <working folder>/META-INF/:
    Specification-Version:11.1.2.0.1
    Implementation-Version:11.1.2.0.1
    7. Rejar-ed the oracle.oaam.extensions.war from the working folder using following command:
    jar -cvfm oracle.oaam.extensions.war <working folder>\META-INF\MANIFEST.MF -C <working folder>/ .
    8. Stopped the oaam_admin_server1, oaam_offline_server1 and oaam_server_server1.
    9. Deleted the oracle.oaam.extensions deployment from the weblogic.
    10. Deployed the newly created oracle.oaam.extensions as a shared library for oaam_admin_server1 and oaam_server_server1.
    11. Started all managed servers.
    But when I tried to create an action template with the java class I just created, it was throwing following error
    +java.lang.ClassNotFoundException: *+
    Unable to load configurable action class *. Ensure the class is made available in the class path.
    Referred following documents:
    1.      http://docs.oracle.com/cd/E27559_01/admin.1112/e27207/cfgactions.htm
    2.     http://docs.oracle.com/cd/E27559_01/dev.1112/e27206/cfg-action.htm
    3.     http://docs.oracle.com/cd/E27559_01/dev.1112/e27206/extend.htm
    Kindly help me. Thanks in advance.
    Edited by: 917717 on Dec 12, 2012 7:16 PM

    This thread is a bit stale but I thought it might help to clarify one point about custom jar files on UCCX.
    To properly load a custom jar:
    Upload it into the classpath directory in the document repository. 
    Select it under System | Custom Classes Configuration
    Finally you need to restart the CCX Engine and the CCX Administration services.  If you have HA you need to restart them on both servers. 
    Other notes:
    When referencing your class in the CCX Editor, use the fully qualified name of the class.  Lots of other classes use things like Element or Document so you need to be explicit. The editor only knows about the 20 native classes by their object names.  If you create a Document object in the editor you are really creating a com.cisco.doc.Document object.  If you loaded jdom.jar and you wanted a jdom document then you need to create an object of type org.jdom.Document.
    When compiling your custom jar files, be sure to compile for the version of Java that the CCX Engine runs.  In general UCCX 7.X and older use Java 1.4.  UCCX 8.X and higher use Java 1.6.  Several of the core Java classes had significant changes between 1.4 and 1.6. If you ran your code on UCCX 7 or earlier and now it fails in UCCX 8.X or higher, recomplile for Java 1.6 and you classes will likely work again.
    Finally, check for security violations in UCCX 8.X or higher.  Cisco has restricted some of the things you can do.  These URL's have more information:
    http://docwiki.cisco.com/wiki/Engine
    http://docwiki.cisco.com/wiki/Troubleshooting_Tips_for_Unified_CCX_8.0
    -Steven
    Please help us make the communities better.  Rate helpful posts!

  • Work Manager 6.1: Adding custom field for notification creation

    Hi,
    I already added new fields in the past, and also in WM6.1 for fetch BAPIs, but now I'm trying to do it for the NotificationAdd Transaction and I'm not able to make it work. I guess I forgot some step but I don't know which, so I will describe what I did:
    Agentry:
    Added new field to the Notification object
    Added new field to the NotificationAdd Transaction
    Added new field to the NotificationAdd Detail Screen
    Java:
    Created class Notification.java extending com.syclo.sap.component.lam.notification.object.Notification
    Added new field to the new Notifciation class
    Copied constructors calling super method.
    Override method setProperties(User u, NotificationPostBAPI bapi). Now is calling the super method and afterwards setting the new field. Here is where I have the error when I debug, the u.getString("transaction.Z_NewField")) i returning an empty string because it's not finding the value when reading from the transaction.
    Created class NotificaitonPostBAPI extending from com.syclo.sap.component.lam.notification.bapi.NotificationPostBAPI.Override method setHeaderParameters to set the value in the ABAP structure for the new field after calling the super method.
    Configuration Portal:
    Changed global parameter to assign the customer NotificationPostBAPI class
    Created global parameter to assign a BAPI wrapper to the new customer NotificationPostBAPI class
    Change the global parameter to assign the class for Notification object in order to use the new customer class
    Do you know why during the setProperties method created in Java, Step1 the transaction value for the Z field is empty? It seems I'm forgetting something quite simple here.
    Thanks in advance.

    Hi,
    May be the setter and getter methods, the value from transaction is not captured in the properties
    public void setProperties(User u, NotificationPostBAPI bapi)
    throws Exception
       setABC(u.getString("transaction.notification.ABC"));
    public String getABC()
      return this.ABC;
    public void setABC(String ABC)
         this.ABC= ABC;
    Regards,
    Sravanthi

Maybe you are looking for

  • BLOB Column Query

    Hi, I have a CLOB column defined NOT NULL with data in it. Its a huge database of almost 2 TB and the management wants it to be reduced. If I need to SHRINK the contents of this column only on selected rows what are my options ? I will be given speci

  • [Solved] UEFI - Do I have to remake the arch .iso?

    Hi I am really struggling getting Arch to install in UEFI mode. I have read https://wiki.archlinux.org/index.php/Un - _Interface - however I still don;t know what i'm doing.... I have Fedora17 installed in UEFI mode already, my partition layout is /d

  • Older .mov files have no previews

    Trying to see if ANYONE else has seen this problem: I was digging through my media archive disk and noticed something very odd: maybe three quarters of my older .mov files show only a generic icon in the finder, and trying to use the Quick Look (or p

  • Not able to manually add music now that I've got icloud and match.

    Now, when I attempt to drag and drop, I get the red circle icon and am not able to put the track on my phone. Curiously, I am still able to drag and drop with my ipod nano.

  • Which games have you done?

    Hi If you have made any games in java and have them hosted , please put a link below. My first game was this: http://www.pbhome.se/alltomallt/html/Little%20Quester.html And my question is: Which is the most common way on how to paint the game on an a