CREATING SELECTONECHOICE PROGRAMATICALLY

Hi,
My requirement is to programatically create SELECTONECHOICE bean and
use databinding to get the values dynamically from backing bean.
The backing bean can be populated from VO or any source.
Can anybody help me with the sample code.
Regards
Ravi

Hi,
here's an example to run it from a command button in a backing bean. Note that this doesn't contain teh component value binding but just the how to create the list
In faces-config.xml, create
<managed-bean>
<managed-bean-name>yourBeanname</managed-bean-name>
<managed-bean-class>yourBean</managed-bean-class>
<managed-bean-scope>request</managed-bean-scope>
<managed-property>
<property-name>bindings</property-name>
<value>#{bindings}</value>
</managed-property>
</managed-bean>
private DCBindingContainer bindings;
public void setBindings(DCBindingContainer bindings)
this.bindings = bindings;
public DCBindingContainer getBindings()
return bindings;
public String commandButton1_action()
Application apps = FacesContext.getCurrentInstance().getApplication();
CoreSelectOneChoice choice = (CoreSelectOneChoice)apps.createComponent(CoreSelectOneChoice.COMPONENT_TYPE);
choice.setId("choice");
choice.setLabel("Functional Area");
choice.setRendered(true);
choice.setRequired(true);
this.getForm1().getChildren().add(2,choice);
CoreSelectItem selectITem = null;
DCBindingContainer bc = (DCBindingContainer)getBindings();
DCIteratorBinding dcib = bc.findIteratorBinding("DepartmentsViewLOV1Iterator");
int looptime = new Long(dcib.getEstimatedRowCount()).intValue();
for (int runner = 0; runner < looptime; runner++)
selectITem = (CoreSelectItem)apps.createComponent(CoreSelectItem.COMPONENT_TYPE);
selectITem.setId("selectITem"+runner);
selectITem.setLabel((String)dcib.getRowAtRangeIndex(runner).getAttribute("DepartmentName"));
selectITem.setValue(dcib.getRowAtRangeIndex(runner).getAttribute("DepartmentId"));
choice.getChildren().add(0,selectITem);
return null;
I am using the department name as a display value and the department Id as the value. Note that you need to create the pageDef file and the iterator binding to make this work. This can be done by dragging a component from the data control palette to the page and then deleting it without removing the iterator.
Frank

Similar Messages

  • How to create selectOneChoice with option to write value in field?!

    Hi. I want to know how can I create SelectOneChoice object in my form, so that if I do not have value in SOC defined then I can write value in it, when running my app. Hope You understand me.
    Best regards, Debuger.

    Hi, Cvele! Can You please give me full example what I need to do to solve my problem. Where I need to put this function (in Jspx page?) What I need to change in this function and what I need to change in this method:
        public String onCreateNewDepartment() {
            BindingContainer bindings = this.getBindings();
            OperationBinding create = (OperationBinding) bindings.get("Create");
            create.execute();
            //bring up the popup
            RichPopup.PopupHints hints = new RichPopup.PopupHints();
            createDepartmentPopup.show(hints);
            return null;
        }Best regards, Debuger!

  • Can anyone explain how to create lov programatically?

    Hi to all,
    Can anyone explain to me how to create lov programatically?.
    Actually i created a region and items usig code and i want to know how to create lov and mapping also.
    Suppose anyone knows plz let me know. its urgent one.
    Thanks in Advance.
    by
    senthur

    Hi,
    public void processRequest(OAPageContext pageContext, OAWebBean webBean)
    super.processRequest(pageContext, webBean); OAMessageLovInputBean lovInput =
    (OAMessageLovInputBean)createWebBean(pageContext, LOV_TEXT, null,"inputTest");
    webBean.addIndexedChild(lovInput);
    // Specify the path to the base page.
    lovInput.setAttributeValue(REGION_CODE, "/oracle/apps/dem/webui/Basic");
    // Specify the application id of the base page.
    lovInput.setAttributeValue(REGION_APPLICATION_ID, new Integer(20001));
    // Specify the LOV region definition.
    lovInput.setLovRegion("/oracle/apps/fnd/framework/toolbox/tutorial/webui/EmployeesLovRN", 0);
    // Validation should be enabled for LOVs unless it's essential for the field to allow a partial value (in a "Search" region, for example).
    lovInput.setUnvalidated(false);
    // Configure the LOV mappings.
    // Note that you must call this method after you add the messageLovInput item
    // to the web bean hierarchy.
    lovInput.addLovRelations(pageContext, "inputTest", // base page item
    "Empname", // lov item
    LOV_RESULT, // direction
    LOV_REQUIRED_NO);
    lovInput.addLovRelations(pageContext, "inputTest", // base page item
    "Empname", // lov item
    LOV_CRITERIA, // direction
    LOV_REQUIRED_NO);
    Read more in Dev Guide. Chapter List of Values & Search forums.
    Thanks
    --Anil                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

  • Creating iViews Programatically

    Hi all,
    I have got a requirement to create iviews programatically.
    The detailed requirement is :
    Intially an excel file which is placed in clients pc will have all the information related to the kind of iViews required, like the name, properties, PCD , of which type etc., Now from portal we need to have the facility to access this excel file and read the information mentioned and create appropriate iViews.
    If anyone has already implemented such a kind of requirement or has got any bit of idea on the same can pls share.
    Thanks In Advance,
    Vipin.

    Hi Vipin,
    You could instead create an excel sheet with macros which use the data in the excel sheet to create an XML file and then upload that file into the portal to create PCD Content.
    Refer to this document, it talks about "How to Automate Content Creation via XML (XML Content and Actions) (NW 7.0)"
    https://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/207a2141-c870-2910-e080-90c920b24f47
    Thanks,
    GLM

  • Need a code to create filed programatically

    Hi All,
    Thanks in Advance to all.
    I need a OAF code to create a filed programatically.
    Will u please help me on this.
    Zaheer...

    Hi Zaheer,
    There are few steps to create a control prgramatically
    Step1. Import required Package
    Step2. Create Control
    Step3. Set Properties
    Step4 Add contrl to its Parent
    Sample code:
    OAMessageTextInputBean mtb = (OAMessageTextInputBean) pageContext.getWebBeanFactory().createWebBean(pageContext,MESSAGE_TEXT_INPUT_BEAN,OAWebBeanConstants.VARCHAR2_DATATYPE,"Col");
    mtb.setViewAttributeName(vo.getAttributeDef(i).getName());
    mtb.setPrompt(vo.getAttributeDef(i).getName());
    Hope this will give you idea.
    Regards,
    Reetesh Sharma

  • Creating iviews programatically - getting OperationFailedException

    Hi,
    While creating a iViews programatically I am getting
    OperationFailedException exception.
    This is the piece of code which is throwing the exception
    NewObjectDescriptor IVtoCreate = null ;
    try
    IVtoCreate = (NewObjectDescriptor) iViewSrv.instantiateDescriptor(CreateMethod.NEW,
    "pcd:portal_content/com.sap.pct/every_user/general/iViews/com.sap.km.iviews/com.sap.km.NewsBrowser" ,
    request.getUser()); }
    catch( ObjectNotFoundException ex)
    ex.getMessage() ;
    catch( OperationFailedException ex)
    ex.getMessage();
    I am using EP SP9. and
    I want to create a iview from NewsBrowser.
    I tried with NEW as well as DELTA_LINK way , still I am getting the same error.
    can anyone please help on this
    thanks
    pk

    Hi,
      Check the code snippet below.
    Object user = request.getUser();
    Hashtable env = new Hashtable();
    env.put("java.naming.factory.initial", "com.sapportals.portal.pcd.gl.PcdInitialContextFactory");
    env.put("java.naming.security.principal", user);
    INewObjectDescriptor iDesc = null;
    IiViews iSrv = (IiViews) PortalRuntime.getRuntimeResources().getService("com.sap.portal.ivs.iviewservice.iViewsSrv");
    try {
         Context iCtx = new InitialContext(env);
         Context iviewCtx = (Context) iCtx.lookup("portal_content/sample/iViews);
         iDesc =     (INewObjectDescriptor) iSrv.instantiateDescriptor(
              CreateMethod.DELTA_LINK, sampleiViewName ,
              (IPrincipal) user);
    catch (NamingException ne) {
          //logger component statements
    Regards,
    S.Divakar

  • Strong concerns about creating users programatically vs. through Portal GUI

    Hi,
    I am working with a Portal install right now where we have created some portal users through the Portal GUI, and some users using PORTAL30_SSO.WWSSO_API_USER_ADMIN.CREATE_USER procedure.
    The strong concerns come when I select the USER_NAME from WWSEC_PERSON$ connected as PORTAL30, and I only get the users created through the portal GUI.
    However, if I connect as PORTAL30_SSO I get all the users created programatically, as well as the users created through the GUI.
    Is there a reasonable explanation for this?
    Thanks.
    null

    Daniel,
    I was in the same quandry. But, you will notice a record automatically created in portal30's wwsec_person$ table, when the user logs in the first time. It is almost as if the Login server checks for the existence of the record. No one in Portal Dev. confirmed this, but it seems like the most logical explanation. Try it. Create a user programmatically, you should see the new user in SSO, but not in portal30. Login as the new user and then see the diff.
    hth
    Sanjay

  • Create Image programatically

    Hi,
    I am using JDeveloper Studio 11.1.1.6.0
    how i need to create the image programatically in managed bean and i need to attach it to popup.
    and need to add image dynamically.
    pls suggest you have any idea.

    Do you have the static image in your project and just need to show it up ?
    Then you can use the following -
    UIComponent parent=uiComponent.getParent(); // where this might be the popup id in which you need to show the image or a component inside the popup
            UIComponent oldImg=parent.findComponent("img1");
            RichImage img=new RichImage();
            img.setId("img1");
            img.setSource(/images/strong.png);  // have an image called strong.png stored in public_html/resources/images
            parent.getChildren().add(img);
            AdfFacesContext.getCurrentInstance().addPartialTarget(parent);

  • [JS] create textframe programatically?

    hello,
    I'm trying to programatically build up a new textframe and populate it with text, paragraph/character styles. Is this possible? So for I've tried:
    var newTextFrame = new TextFrame; //This works
    newTextFrame.contents = 'hello'; //This also works
    but if I try to use:
    newTextFrame.insertionPoints[-1].contents = 'hello'; // "Error: Undefined is not an object"
    I get the same error if I try and set pointsize, font, or fill color using the InsertionPoints[-1] method. is there a better way to do this, or is it even possible?
    I should mention that these are snippets I've used before, only for existing text frames in a document, i.e. updating a current text frame. But now I need to be able to create a new one on the fly.
    thanks in advance!

    function(){return A.apply(null,[this].concat($A(arguments)))}
    Actually its looking like the styles from one text frame aren't copied into another if you just assign the contents.
    Yeah, I thought so much ... It's not a problem if you were using your default style anyway, because it'll be assigned automatically to new text frames. But anything else is discarded.
    To copy/move text with all the trimmings, use the 'move' command. From memory:
    tempTextFrame.texts[0].move (LocationOptions.AT_BEGINNING, myTextFrame.texts[0]);
    (note: it's the reverse of assigning, you must move what you have to the new location)

  • Is it possible to create class programatically?

    I want to create a class from a string that contains java code.
    For example: I have the following string
    String code = "class HelloWorld{
    public static void main(String [] args){
    System.out.println("Hello World");
    I wonder if I can convert it to java class programatically on runtime and use it.

    * Main.java
    package sometest;
    import java.io.FileOutputStream;
    import java.lang.Runtime;
    * @author Ganesh
    public class Main {
    /** Creates a new instance of Main */
    public Main() {
    * @param args the command line arguments
    public static void main(String[] args) throws Exception{
    // TODO code application logic here
    FileOutputStream fos = new FileOutputStream("HelloWorld.java");
    String code = "class HelloWorld{ " +
    "public static void main(String [] args){"+
    "System.out.println(\"Hello World\"); " +
    fos.write(code.getBytes());
    java.lang.Runtime rt = java.lang.Runtime.getRuntime();
    try {
    rt.exec("javac HelloWorld.java");
    System.out.println("Compile OK");
    }catch (Exception e) {
    System.out.println("Compile not OK");
    try {
    rt.exec("java HelloWorld");
    System.out.println("Run OK");
    }catch (Exception e) {
    System.out.println("Run not OK");
    System.out.println("OK");
    this would work?

  • Using list items to create sites programatically

    Hello All,
    I am looking to programatically create sites based on items in a SharePoint list. The list has 4 columns, Name, Email, ManagerName, ManagerEmail.
    The aim is to use PowerShell to create a foreach loop, that creates a site (using the "Name" column as the site title/URL) based on the #STS01 teamsite template, breaks permission inheritance, and then gives the Manager ("ManagerName")
    contribute access to the site.
    Not sure where to start with this, any advice would be appreciated!
    Cheers!

    Hi,
    Here is the complete PowerShell code to create site with unique permissions and assign manager with contribute permissions.
    I have created a list with following columns as shown in the screenshot.
    Add-PSSnapin Microsoft.SharePoint.PowerShell -ErrorAction SilentlyContinue
    $sourceWebURL = "http://sp2013"
    $sourceListName = "MySites"
    $spSourceWeb = Get-SPWeb $sourceWebURL
    $spSourceList = $spSourceWeb.Lists[$sourceListName]
    $spSourceItems = $spSourceList.GetItems()
    foreach($item in $spSourceItems)
    $siteTitle = $item["Title"]
    $siteName = $siteTitle -replace " ", ""
    $NewSiteUrl = $sourceWebURL+"/"+$siteName
    write-host "Title:"$siteTitle
    write-host "Url:"$NewSiteUrl
    #Create User Object from the List Item
    $userWithContribute = New-Object Microsoft.SharePoint.SPFieldUserValue($spSourceWeb,$item["ManagerName"].ToString());
    #Create Sub-site with Unique Permissions
    $newWeb = New-SPWeb -Url $NewSiteUrl -Name $siteTitle -Template "STS#0" -UniquePermissions
    #Assign Manager with Contribute permission
    Set-SPUser -Identity $itemUser.User -Web $newWeb -AddPermissionLevel "Contribute"
    https://gallery.technet.microsoft.com/PowerShell-Script-to-d888fcdd
    Please don't forget to mark it answered, if your problem resolved or helpful.

  • Creating Portlet programatically in Portal 4 as in WLCS3.5

    Can i create a portlet through some APIs in Portal4.0 ?
    I guess this is possible in WLCS 3.5.

    Hi Mere!
    It is not an API but I am using PORTAL.WWV_THINGSAVE.saveitemCan you also tell me how to display item programmaticaly?
    Thanks in advance,
    Ervin!

  • Creating instances programatically

    Hi,
    I would like to create some instances with addinstance when a pdf is opened (without user interaction). I´m using this code at the layout ready event of the main form object. However, the cursor starts blinking as it was in a loop...
    form1.P1.ItemSet.instanceManager.addInstance();
    Thank you

    Layout ready occurs after the layout manager determines the layout of the form. Adding an instance forces the layout manager to recalculate the layout of the form, causing layout ready event to occur. Etc etc, you're in an infinite loop. Try moving your script to doc:ready.
    Chris
    Adobe Enterprise Developer Support

  • How to Create OAViewObject programatically

    I need Create OAViewObject from SQL string. I found, that is possible with OAViewDef, but in OAViewDef i must create AttributeDefs with parameters like sqltype, colname .. but i don't know this, my definition is select string only. I must manually parse SQL string for obtain this informations ? ... please help me ...

    this is my stack .. i haven't any suggestion where i can look for error ...
    Error Page
    Exception Details.
    oracle.apps.fnd.framework.OAException: java.lang.ClassCastException at oracle.apps.fnd.framework.OAException.wrapperException(OAException.java:888) at oracle.apps.fnd.framework.webui.OAPageErrorHandler.prepareException(OAPageErrorHandler.java:1145) at oracle.apps.fnd.framework.webui.OAPageErrorHandler.processErrors(OAPageErrorHandler.java:1408) at oracle.apps.fnd.framework.webui.OAPageBean.processRequest(OAPageBean.java:2344) at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:1711) at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:497) at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:418) at OA.jspService(OA.jsp:40) at oracle.jsp.runtime.HttpJsp.service(HttpJsp.java:139) at oracle.jsp.runtimev2.JspPageTable.service(JspPageTable.java:317) at oracle.jsp.runtimev2.JspServlet.internalService(JspServlet.java:465) at oracle.jsp.runtimev2.JspServlet.service(JspServlet.java:379) at javax.servlet.http.HttpServlet.service(HttpServlet.java:853) at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:727) at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:306) at com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:767) at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:259) at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:106) at EDU.oswego.cs.dl.util.concurrent.PooledExecutor$Worker.run(PooledExecutor.java:803) at java.lang.Thread.run(Thread.java:534) ## Detail 0 ## java.lang.ClassCastException at oracle.apps.fnd.framework.webui.OAPageBean.createAndAddHiddenPKFields(OAPageBean.java:5546) at oracle.apps.fnd.framework.webui.OATableHelper.prepareForRendering(OATableHelper.java:430) at oracle.apps.fnd.framework.webui.beans.table.OATableBean.prepareForRendering(OATableBean.java:1215) at oracle.apps.fnd.framework.webui.OAWebBeanTableHelper.processRequestAfterController(OAWebBeanTableHelper.java:199) at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequest(OAWebBeanHelper.java:639) at oracle.apps.fnd.framework.webui.OAWebBeanTableHelper.processRequest(OAWebBeanTableHelper.java:2084) at oracle.apps.fnd.framework.webui.beans.table.OATableBean.processRequest(OATableBean.java:1030) at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequestChildren(OAWebBeanHelper.java:932) at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequestChildren(OAWebBeanHelper.java:899) at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequest(OAWebBeanHelper.java:640) at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.processRequest(OAWebBeanContainerHelper.java:247) at oracle.apps.fnd.framework.webui.OAPageLayoutHelper.processRequest(OAPageLayoutHelper.java:1095) at oracle.apps.fnd.framework.webui.beans.layout.OAPageLayoutBean.processRequest(OAPageLayoutBean.java:1569) at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequestChildren(OAWebBeanHelper.java:932) at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequestChildren(OAWebBeanHelper.java:899) at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequest(OAWebBeanHelper.java:640) at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.processRequest(OAWebBeanContainerHelper.java:247) at oracle.apps.fnd.framework.webui.beans.form.OAFormBean.processRequest(OAFormBean.java:385) at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequestChildren(OAWebBeanHelper.java:932) at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequestChildren(OAWebBeanHelper.java:899) at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequest(OAWebBeanHelper.java:640) at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.processRequest(OAWebBeanContainerHelper.java:247) at oracle.apps.fnd.framework.webui.beans.OABodyBean.processRequest(OABodyBean.java:353) at oracle.apps.fnd.framework.webui.OAPageBean.processRequest(OAPageBean.java:2298) at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:1711) at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:497) at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:418) at OA.jspService(OA.jsp:40) at oracle.jsp.runtime.HttpJsp.service(HttpJsp.java:139) at oracle.jsp.runtimev2.JspPageTable.service(JspPageTable.java:317) at oracle.jsp.runtimev2.JspServlet.internalService(JspServlet.java:465) at oracle.jsp.runtimev2.JspServlet.service(JspServlet.java:379) at javax.servlet.http.HttpServlet.service(HttpServlet.java:853) at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:727) at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:306) at com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:767) at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:259) at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:106) at EDU.oswego.cs.dl.util.concurrent.PooledExecutor$Worker.run(PooledExecutor.java:803) at java.lang.Thread.run(Thread.java:534) java.lang.ClassCastException at oracle.apps.fnd.framework.webui.OAPageBean.createAndAddHiddenPKFields(OAPageBean.java:5546) at oracle.apps.fnd.framework.webui.OATableHelper.prepareForRendering(OATableHelper.java:430) at oracle.apps.fnd.framework.webui.beans.table.OATableBean.prepareForRendering(OATableBean.java:1215) at oracle.apps.fnd.framework.webui.OAWebBeanTableHelper.processRequestAfterController(OAWebBeanTableHelper.java:199) at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequest(OAWebBeanHelper.java:639) at oracle.apps.fnd.framework.webui.OAWebBeanTableHelper.processRequest(OAWebBeanTableHelper.java:2084) at oracle.apps.fnd.framework.webui.beans.table.OATableBean.processRequest(OATableBean.java:1030) at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequestChildren(OAWebBeanHelper.java:932) at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequestChildren(OAWebBeanHelper.java:899) at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequest(OAWebBeanHelper.java:640) at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.processRequest(OAWebBeanContainerHelper.java:247) at oracle.apps.fnd.framework.webui.OAPageLayoutHelper.processRequest(OAPageLayoutHelper.java:1095) at oracle.apps.fnd.framework.webui.beans.layout.OAPageLayoutBean.processRequest(OAPageLayoutBean.java:1569) at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequestChildren(OAWebBeanHelper.java:932) at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequestChildren(OAWebBeanHelper.java:899) at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequest(OAWebBeanHelper.java:640) at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.processRequest(OAWebBeanContainerHelper.java:247) at oracle.apps.fnd.framework.webui.beans.form.OAFormBean.processRequest(OAFormBean.java:385) at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequestChildren(OAWebBeanHelper.java:932) at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequestChildren(OAWebBeanHelper.java:899) at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequest(OAWebBeanHelper.java:640) at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.processRequest(OAWebBeanContainerHelper.java:247) at oracle.apps.fnd.framework.webui.beans.OABodyBean.processRequest(OABodyBean.java:353) at oracle.apps.fnd.framework.webui.OAPageBean.processRequest(OAPageBean.java:2298) at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:1711) at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:497) at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:418) at OA.jspService(OA.jsp:40) at oracle.jsp.runtime.HttpJsp.service(HttpJsp.java:139) at oracle.jsp.runtimev2.JspPageTable.service(JspPageTable.java:317) at oracle.jsp.runtimev2.JspServlet.internalService(JspServlet.java:465) at oracle.jsp.runtimev2.JspServlet.service(JspServlet.java:379) at javax.servlet.http.HttpServlet.service(HttpServlet.java:853) at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:727) at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:306) at com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:767) at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:259) at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:106) at EDU.oswego.cs.dl.util.concurrent.PooledExecutor$Worker.run(PooledExecutor.java:803) at java.lang.Thread.run(Thread.java:534)

  • How to create segments programatically?

    Hi Folks,
         Anyone has any idea on how to create fatwire segments programmatically?
         Is there any fatwire tags or asset API methods are available for it?
    Thanks

    Segments are basic asset types. Creating a segment should be equivalent to creating a basic asset.
    Have you tried with the usual asset:create, asset:set and asset:save tags?
    -Regards,
    DFy

Maybe you are looking for

  • Problem when Provisioning Users using EBS Connector (Enable SSO)

    Hi expert, We do provisioning users to EBS through EBS connector Version 9.1.0.4.0 Normally, we can provisioning users if we set value of SSO enable = NO, but by the scope of this project, We have to let EBS using Single sign-on by authentication fro

  • Incorrect display of HTML document in UWL

    Hi experts, we are using SRM 5.0 with UWL integration. If a workitem is rejected the requestor gets a notification in his SAP Business Workplace (SBWP). This notification contains a link to the SRM shopping cart. The notification is also available in

  • Participant cannot log into workspace In BPM 10.3.1.0

    Hi, I create a project and want to test it on the workspace. I try to click on button START -> Launch workspace. The IE bring me to the page which require me to key in the username. I keyed in the username and click on button Log in. I cannot log int

  • How can i get itunes to put music on my mini

    I have windows 2000, i downloaded itunes off of the enternet because i lost the cd. When I tried to get all of my music onto the ipod, itunes didn't read my ipod. I already restored it, now what can I do? Is there a way to reinstall it w/ out loosing

  • How to insert the file name to the start and the end of a SQL file by a powershell script

    I just began to learn powershell script and I have a problem that I cannot figure out. I have a lot of .sql files. I need to insert its file name to the beginning of the file (After USE statement) and the end of the file (before the last END statemen