Unable to place a value in Flex Field in OAF page

Hi all,
I am unable to place this flex value in the flex field, but i can do this same thing in a normal "Text Field" am able to reterive that number and place in that text field .
Problem is placing the same in Flex field , please suggest me how to do this .
I have one Function Standard one that i am calling here and making use of that i can call that function and am able to get that value and place in a "Text Field" but the same thing i couldn't place in the "Flex Field" how to do this any idea am thank full to them. Its a very urgent issue i have to solve this.
MY Controller Code:
OAKeyFlexBean revenue = null;
String s8 = pageContext.getParameter("Purpose");
revenue = (OAKeyFlexBean)webBean.findIndexedChildRecursive("reveFF"); ------------------- this is the Flex Field where i have to place the output
revenue.useCodeCombinationLOV(true);
if(s8.equalsIgnoreCase("BILL_TO")) {
try {
Connection conn = pageContext.getApplicationModule(webBean).getOADBTransaction().getJdbcConnection();
String Query = "select SDS_CUST_BILL_INFO(:1,2) from dual";
PreparedStatement stmt = conn.prepareStatement(Query);
stmt.setInt(1, orgid);
ResultSet resultset = stmt.executeQuery();
if(resultset.next()) {
String revenuenum = resultset.getString(1);
revenue.mergeSegmentsWithParent(pageContext);
revenue.setStructureCode( ); ---------------------- What i have to give here
revenue.setCCIDAttributeName("GlIdRev"); ---------------------- Attribute Name
revenue.useCodeCombinationLOV(false);
revenue.setAttributeValue(FLEXFIELD_SEGMENT_LIST, revenuenum); ------------- How to use this FLEXFIELD_SEGMENT_LIST (unable to retrieve anything)
revenue.setText(revenuenum);
} catch(SQLException se) {
se.printStackTrace();
throw new OAException("Error in Staffing Query"+se, OAException.ERROR);
Standard function i have:
create or replace FUNCTION SDS_CUST_BILL_INFO(P_ORG_ID IN NUMBER,P_ACC_TYPE IN NUMBER) RETURN VARCHAR2
AS
*- Purpose: This PL/Sql program that will return GL_ID_RECEIVING_ACCOUNT or GL_ID_REVENUE_ACCOUNT
*- information for new Customer BIll_TO site
V_ACCOUNT VARCHAR2(2000);
BEGIN
BEGIN
SELECT TRUNC(SEGMENT1)||'-'||TRUNC(SEGMENT2)||'-'||SEGMENT3||'-'||TRUNC(SEGMENT4)||'-'||SEGMENT5||'-'||SEGMENT6||'-'||SEGMENT7
INTO V_ACCOUNT
FROM GL_CODE_COMBINATIONS GCC
,HR_ORGANIZATION_UNITS HOU
,RA_CUST_TRX_TYPES_ALL RCTA
WHERE HOU.ORGANIZATION_ID = RCTA.ORG_ID
AND HOU.ORGANIZATION_ID = P_ORG_ID
AND GCC.CODE_COMBINATION_ID = DECODE(P_ACC_TYPE,1,RCTA.GL_ID_REC,2,RCTA.GL_ID_REV)
AND UPPER(RCTA.NAME) = 'INVOICE'
AND HOU.ATTRIBUTE3 = 'Y';
EXCEPTION
WHEN NO_DATA_FOUND THEN
V_ACCOUNT := NULL;
WHEN OTHERS THEN
V_ACCOUNT := NULL;
END;
RETURN(V_ACCOUNT);
END;

Hi parag,
You mean to say i have to write like this :--
if (pageContext.getParameter("apply")!=null)
OAApplicationModule am = pageContext.getApplicationModule(webBean);
OAViewObject accountsViewObject =
(OAViewObject)am.findViewObject("ArBusPurAllVO");
if (accountsViewObject!=null)
OARow row = (OARow) accountsViewObject.getCurrentRow();
if (row.getAttribute("GlIdRev") == null || row.getAttribute("GlIdRev").equals(""))
//call your function here and say row.setaatribbute= revenue_acct_id from your function.
if(s8.equalsIgnoreCase("BILL_TO")) {
try {
Connection conn = pageContext.getApplicationModule(webBean).getOADBTransaction().getJdbcConnection();
String Query = "select SDS_CUST_BILL_INFO(:1,2) from dual";
PreparedStatement stmt = conn.prepareStatement(Query);
stmt.setInt(1, orgid);
ResultSet resultset = stmt.executeQuery();
if(resultset.next()) {
String revenuenum = resultset.getString(1);
row.setaatribbute(revenuenum) ;
} catch(SQLException se) {
se.printStackTrace();
throw new OAException("Error in Staffing Query"+se, OAException.ERROR);
if (row.getAttribute("GlIdRec") == null || row.getAttribute("GlIdRec").equals(""))
//call your function here and say row.setaatribbute=rec_acct_id from your function.
if(s8.equalsIgnoreCase("BILL_TO")) {
try {
Connection conn = pageContext.getApplicationModule(webBean).getOADBTransaction().getJdbcConnection();
String Query = "select SDS_CUST_BILL_INFO(:1,2) from dual";
PreparedStatement stmt = conn.prepareStatement(Query);
stmt.setInt(1, orgid);
ResultSet resultset = stmt.executeQuery();
if(resultset.next()) {
String receivablenum = resultset.getString(1);
row.setaatribbute(receivablenum) ;
} catch(SQLException se) {
se.printStackTrace();
throw new OAException("Error in Staffing Query"+se, OAException.ERROR);
super.processFormRequest(pageContext, webBean);
Am I, correct parag please tell me, if this works i will send u mail again that it is working fine .
my mail id is [email protected]

Similar Messages

  • HTML-DB 1.6 (Apex) in a JavaScript - affect a value to a field in my page

    Hi everybody,
    Is it possible to affect a value to a field in my page ?
    <script language="JavaScript1.1" type="text/javascript">
    function message()
    &P32_MESSAGE1. = 'It's a new message';
    </script>
    Thanks. Bye.

    Yes, that's what javascript is all about, making the page more interactive before the page is submitted back to the server. In addition to changing values you can change the appearance of the page, showing and hiding pieces and parts in response to user actions.
    One thing you have to do to start using javascript with ApEx is to switch mindset from the ApEx item naming standards to the javascript methods for referring to those items. For instance, instead of &32_MESSAGE_1. as in your example, you might do something like:
    function setMessage() {
    var e = html_GetElement('P32_MESSAGE_1');
    var e_value = e.value;
    if (e_value == '') {
    e.value = 'My new value';
    Many things are possible with javascript. There are lots of good examples on some of the frequent poster's sites, like Carl Backstrom and Vikas. Have fun.
    Earl

  • Add new field in OAF Page.

    I want to personalize a OAF page. My question is, Can i add new field in OAF page linked with database field and some calculations.
    I am trying to add new field in Termination page of Self service HR which will show the hiredate of employee and number of year served.

    Hi,
    As already specified by Kali..
    Step 1 - Create a new Field of type MessageStyledText using Personalization Link.
    Step 2 - Set the corresponding VO Attribute, which will fetch Hire Date.
    Step 3 - Extend the CO and calculate the Served Year, using Java Code.
    Step 4- Set the same value over the bean manually.
    Regards,
    Gyan

  • Adding a new of style Flex in a OAF Page

    Hi,
    I am facing an issue while creating a new item of style flex in a OAF page.I am able to add the flex by extending the controller but its displaying twice in the page means at the region level as well as in Page level
    If i comment the line-->oawebbean.addIndexedChild(GivBean); then its not displaying anywhere in the page
    Here is the code that i am using
    public class Class2 extends ByrAddrCO {
    public void processRequest(OAPageContext oapagecontext, OAWebBean oawebbean)
    super.processRequest(oapagecontext, oawebbean);
    OAMessageComponentLayoutBean msgCompLayout = (OAMessageComponentLayoutBean)oawebbean.findChildRecursive("Addr411RN");
    if(msgCompLayout != null)
    OAMessageLayoutBean GivBean = (OAMessageLayoutBean)createWebBean(oapagecontext,MESSAGE_LAYOUT_BEAN, null, "DFFMSG");
    GivBean.setRendered(true);
    OADescriptiveFlexBean GivFlex = (OADescriptiveFlexBean)createWebBean(oapagecontext,DESCRIPTIVE_FLEX_BEAN,null,"DescFF");
    GivFlex.setContextListRendered(false);
    GivFlex.setAttributeValue(OAWebBeanConstants.VIEW_USAGE_NAME,"SitesVO");
    GivFlex.setAttributeValue(OAWebBeanConstants.FLEXFIELD_APPLICATION_SHORT_NAME, "SQLAP");
    GivFlex.setAttributeValue(OAWebBeanConstants.REGION_APPLICATION_ID,new Integer(0));
    GivFlex.setAttributeValue(OAWebBeanConstants.FLEXFIELD_NAME, "Site Address");
    GivFlex.setAttributeValue(OAWebBeanConstants.PROMPT_ATTR,"GIV Intransit Reporting");
    GivBean.addIndexedChild(GivFlex);
    GivFlex.setRendered(true);
    msgCompLayout.addIndexedChild(GivBean);
    oawebbean.addIndexedChild(GivBean);
    Please provide the inputs how can i able to display the flex only at the region level.
    Thanks in Advance!
    Edited by: surendra on Mar 20, 2012 5:08 AM

    Thanks for your response!
    Yes..adding twice in the page
    But if we comment msgCompLayout.addIndexedChild(GivBean); and uncomment oawebbean.addIndexedChild(GivBean);-->then its adding at the end of the page this is fine
    and if i comment oawebbean.addIndexedChild(GivBean); and uncomment msgCompLayout.addIndexedChild(GivBean); -->then its not displaying any flex in the region level as well as in the page level
    Is any statement i have missed out here please suggest.
    Thanks in Advance!

  • Error While validation segments of Key flex fields in OAF Programmatically

    I have requirement to validation particular segments of Key Flex fields.
    I tried to handle it as below, But I am facing one issue and not able to fix. Please help me as soon as possible.
    public void processFormRequest( OAPageContext paramOAPageContex, OAWebBean paramOAWebBean)
              if(Function_name.equalsIgnoreCase("NWC_TICKET_REQ_HR_SIT_SS"))
              /* OAMessageTextInputBean TicketClass=(OAMessageTextInputBean)key.findChildRecursive("HrSitKeyFlex23");
               OAMessageTextInputBean CompanyShare=(OAMessageTextInputBean)key.findChildRecursive("HrSitKeyFlex16");
               OAMessageTextInputBean TSO=(OAMessageTextInputBean)key.findChildRecursive("HrSitKeyFlex14");
               OAMessageTextInputBean Flight_Reservation =(OAMessageTextInputBean)key.findChildRecursive("HrSitKeyFlex13");
            //   OAMessageDateFieldBean  Traveldate=(OAMessageDateFieldBean)key.findChildRecursive("HrSitKeyFlex11");
               paramOAPageContext.writeDiagnostics(this,"Flex Segment value is : "+TicketClass.toString()+":"+TicketClass.getAttributeMap() +" ,"+TicketClass.getValue(paramOAPageContext)+",",1);
               paramOAPageContext.writeDiagnostics(this,"Flex Segment value is : "+CompanyShare.toString()+":"+CompanyShare.getAttributeMap() +" ,"+CompanyShare.getValue(paramOAPageContext)+",",1);
               paramOAPageContext.writeDiagnostics(this,"Flex Segment value is : "+Flight_Reservation.toString()+":"+Flight_Reservation.getAttributeMap() +" ,"+Flight_Reservation.getValue(paramOAPageContext)+",",1);
               paramOAPageContext.writeDiagnostics(this,"Flex Segment value is : "+TSO.toString()+":"+TSO.getAttributeMap() +" ,"+TSO.getValue(paramOAPageContext)+",",1);
                 if(TicketClass.getValue(paramOAPageContext)!=null || CompanyShare.getValue(paramOAPageContext)!=null || TSO.getValue(paramOAPageContext)!=null)
                      throw new OAException("TravelServiceOrder , p_flight_no ,p_ticket_class,p_ticket_amount can not be left Blank. Please enter value");
    Now after first validation I could see the below error:
    Error
    Program error: Please inform your support representative that: FLEXFIELDS SERVER-SIDE VALIDATION package reports error: call_userval() exception: ORA-06508: PL/SQL: could not find program unit being called
    Please suggest me how can I avoid this. This is taking place only during validation. Its urgent for code fix.

    Hi Helios,
    We are using R12.0.6 and db is 10.2.0.3, Linux OS.
    I have checked this Doc ID, which contains following:(below is my checking please)
    Solution
    1. Follow the Note.877352.1 instructions carefully;
    2. Apply the patch 8626820:R12.JG.A;
    3. For packages OKL_... and ICX_ ... please now follow Note.754340.1;
    4. For the FV_... and FUN_.... please follow Note.758497.1;
    5. For the GR_MIGRATE_TO_12 now follow the Note.733646.1;
    (for note's step 5 about patch 6997324 open an SR with Support if you require a password)
    6. Finally, to drop the view called ICX_PO_VENDOR_SITES_V, just execute in a SQL*plus (user APPS) session: drop view ICX_PO_VENDOR_SITES_V;
    My Checking: (I have checked the file version mentioned in below patches also, having same versions of already applied patches)
    1: I have check the patch# 8348599 mentioned in 877352.1 not already applied, so should I apply it?
    2: I have check the patch# 8626820 mentioned in step#2 not already applied, so should I apply it?
    3: I have check the doc id 754340.1 which containg the following patches:
    - 7641584 -------> Already appled
    - 8201911 -------> Already Not appled ----------> Should apply this?
    - 7659470 -------> Already appled
    - 6708042 -------> Already appled
    - 7662017 -------> Already appled
    4: I have check the doc id 758497.1 which containg the following patches already appled:
    - 7376249 -------> Already appled
    - 7372270 -------> Already appled
    - 7372268 -------> Already appled
    5: I have check the patch# 6997324 mentioned in step#5 already applied.
    6: I have checked this view ( ICX_PO_VENDOR_SITES_V) is not exist. what should I do?
    Thanks,
    fazijee

  • How to set an tabbed page value in a field on another page?

    Hi,
    I am creating an Application in jdev10.3.4 ADF.i have created a tabbed page having 4 tabs
    Leeson Learned
    Best Practice
    Value Addition
    Other
    on each tabbed page i have a create button which will open a create page on that create page i need to set the value of field named category whose value
    will same as tabbed page name
    like when we press Lesson Learned tabbed page and then click create button on craete page in category field it should be set to "Leeson Learned" automatically.
    can anybody help me out how to do it ?

    Please try this - it works fine and I hope you understand it:
    You have to take a look for the binding of your radiobuttonlist here - You can change the binding value with a doubleclick, for example
    1 to ValueA
    2 to Value B
    Then you have to change your script and ask for:
    if(RadioButtonList.rawValue == ValueA)
        if (NumericField1.rawValue >= 1000 && NumericField1.rawValue <= 4999)
            NumericField1.rawValue *5/1000;
    }else
        if (NumericField1.rawValue >= 1000 && NumericField1.rawValue <= 4999)
            NumericField1.rawValue *20/1000;
    I would prefer to show the user a message:
    if(this.rawValue >=1000 && this.rawValue <=4999)
    }else
        app.alert("Please insert a value between 1000-4999. Thx.");
        this.rawValue = null;
    You have to coy this in the exit-event of the NumericField1.
    Hope it will helps you,
    Kind regards Mandy

  • Right alignment of Number Field in OAF Page

    Hi,
    I need to right align the column of the table which is of number type in OAF page. I have extended the VO of that page to add new columns. After VO extension i added the column to the page via personalization and gave the reference of view attribute name as per Extened VO. I have set the following properties for that column
    Item Sytle- Message Style Text
    Data Type- Number
    Nowrap=false
    Vertical Alignment=Middle
    View Attribute = Prior (same as Extended VO's column)
    View Instance = XXPayEmpAccrualActionInfoVO
    I need to set the value of this newly added column right align which is currently set as left align by default.
    I have tried the following links from OTN
    Re: Q: How to format number using personalization?
    Right align number field
    but while controller extension i m getting the following error-
    Message not found. Application: FND, Message Name: FND_VIEWOBJECT_NOT_FOUND. Tokens: VONAME = XXPayEmpAccrualActionInfoVO; APPLICATION_MODULE = oracle.apps.pay.selfservice.payslip.US.server.PayPayslipAM;
    The extended controller code is -
    public void processRequest(OAPageContext pageContext, OAWebBean webBean)
    super.processRequest(pageContext, webBean);
    OATableBean tableBean = (OATableBean)webBean.findIndexedChildRecursive("PayPayslip4Ss");
    tableBean.queryData(pageContext, true);
    tableBean.prepareForRendering(pageContext);
    DataObjectList aColFormat01 = tableBean.getColumnFormats() ;
    oracle.cabo.ui.data.DictionaryData ColFormat01 =(oracle.cabo.ui.data.DictionaryData)aColFormat01.getItem(pageContext.findChildIndex(tableBean, "Prior"));
    ColFormat01.put(COLUMN_DATA_FORMAT_KEY,NUMBER_FORMAT);
    Please can anyone provide me some pointer here..this is really urgent.
    Thanks in advance
    Renu
    Edited by: Renu Gupta on Jun 14, 2010 5:15 AM

    Hi Renu,
    Use the following code:
    OAMessageStyledTextBean origContSumBean = (OAMessageStyledTextBean)webBean.findIndexedChildRecursive("<FieldName>");
    if(origContSumBean!=null) {
    origContSumBean.setAttributeValue(CURRENCY_CODE,new OADataBoundValueViewObject(origContSumBean,"CurrencyCode"));
    Here CurrencyCode should be a view attribute in the VO associated to the items in the region.
    Regards
    Sumit

  • Adding new field to OAF Page

    Hi All,
    I am beginner in OAF. We want to add a new field in a OAF page. We wanted to do it by extending Standard VO i.e. present already. Now will it be sufficient if I download only View Object and XXPG.xml related to the OA Page or should I download all the class files and xml files from APPL_TOP to deploy the environment in Jdeveloper
    As I want to add a field to VO to reflect the change in OA Page, does it mean I am extending OA Page or just extending VO. Iis there any better way of doing it.
    Please advice.
    Thanks,
    Abhishek.
    Edited by: 853343 on Jan 11, 2012 6:36 AM

    Abhishek.
    please post your question in the forum {forum:id=210}
    Timo

  • How to hide mandatory field in OAF page through personalization

    Hi,
    Could u please help, that how to hide mandatory field in seeded page.
    This could be achieved through personalization only.
    Thanks,
    Ramachandra.
    Edited by: 927747 on Jun 21, 2012 2:16 AM

    yes you can hide that field by simply set the render propert to "false" using the personalization.
    Regards,
    Vijay Reddy.

  • How to attach table type value set to LOV of oaf page

    Hi everyone,
    There is a valueset created in the front end say xx_ap_valueset which is of table type and created on a table xx_ap_table having some where cluase and order by clause.
    Is there a way we can attach this value set to a LOV of oaf page? or is it just that i need to create a vo and replicate the select statement used in the valueset.
    Please help!
    Thanks
    Sunny

    Sunny,
    You cannot attach the Valueset to the Lov directly. You need to create a VO for that.
    Regards,
    Gyan

  • Unable to default a value in LOV in Expense Allocations page of iExpenses

    Hi friends,
    I am trying to default a value in a Lov (Which is a one of the segments in KFF).
    This Lov is in a HGrid region of "expense allocations page" of iExpenses.
    But i am unable to default that.
    I am using the below code.
    public void processRequest(OAPageContext pageContext, OAWebBean webBean)
    super.processRequest(pageContext, webBean);
    OAApplicationModule am = pageContext.getApplicationModule(webBean);
    OADBTransaction dbTran = am.getOADBTransaction();
    OAApplicationModule am1 = pageContext.getRootApplicationModule();
    dbTran.writeDiagnostics(this,"tnv AM, AM1 : "+am+", "+am1, 2);
    // AllocationsHeaderVO
    OAViewObject vo = (OAViewObject)am.findViewObject("AllocationsHeaderVO");// AllocationsHeaderVO
    dbTran.writeDiagnostics(this,"tnv AllocationsHeaderVO : "+vo,2);
    Row row = vo.getCurrentRow();
    dbTran.writeDiagnostics(this,"tnv AllocationsHeaderVO row: "+row,2);
    String arr[]= row.getAttributeNames();
    Object arrVal[] = row.getAttributeValues();
    for (int i = 0; i <arr.length ; i++)
    try
    dbTran.writeDiagnostics(this,"tnv arr[i] : "+arr,2);
    dbTran.writeDiagnostics(this,"tnv arrVal[i] : "+arrVal[i].toString(),2);
    }catch(Exception e)
    dbTran.writeDiagnostics(this,"tnv null Exp arrVal[i] : "+i,2);
    OAMessageLovInputBean busAreaSeg2 = (OAMessageLovInputBean)webBean.findChildRecursive("KffSEGMENT2");
    OAMessageStyledTextBean busAreaSeg2Desc = (OAMessageStyledTextBean)webBean.findChildRecursive("KffSEGMENT2Desc");
    busAreaSeg2.setText("100"); // A -- I am able to default this value, but user is having no option to change the value, if i go with this.
    busAreaSeg2.setText(pageContext, "100"); // B -- Unable to default with this....
    busAreaSeg2.setValue(pageContext, "100"); // C -- Unable to default with this...
    Could somebody please help me out, in defaulting this.
    Thanks in advance,
    Naresh

    Hi Guys,
    I am trying to Default Task LOV field based on the Project selected in Project LOV field, But i am not able to get the handle for Task LOV field in iExpenses of ExpenseAllocationDetailPG.
    Please provide me some hint to achieve the same.
    Thanks in advance.
    Regards,
    Naren.

  • Unable to set focus to login text field AUTOMATICALLY on page load

    Hi,
    I'm trying to have my flash (AS 2) login page have the
    username field start blinking right away after the page is loaded
    but so far, no success.
    I've added the following Javascript to the HTML wrapper:
    But it still doesnt work. Can anyone help?
    See whats happening by
    clicking here.

    Use the following in the Flash code:
    Selection.setFocus(username_field_instance_name);

  • Not able to fetch value of the field

    Hi
    I have created a page with some details
    Now I am trying to fetch the value of particular field in the page and Iam passing into a procedure as In parameter
    when I am trying to fetch the value I am using
    PR
    String s1 = pageContext.getParameter("ItemId")
    pageContext.putTransactionValue("ItemId",s1)
    PFR
    pageContext.getTransactionValue("ItemId")
    when I am reading the value it is showing null
    Can any body guide me In this kind of situation
    Regards
    Krishna

    You cannot get the value of MessageStyledText item like that. Check the logic of the code which populates value in the messagStyledText item. If there is a VO attribute involved then it would be easy to read the same attribute in the ProcessFormRequest. You can even pick the value from the View attribute and post it in the transaction from which you can read in the PFR. Otherwise if there are separate parameters which set the value, you check that.
    Another option you can try is
    OAMessageStyledTextBean item = (OAMEssageStyledTextBean)webBean.findIndexedChildRecursive("ItemId");
    if(item!=null)
    String val = (String) item.getValue(pageContext);
    //Now put in transaction.
    Please pick the approach which suits you. I personally recommend the View Attribute approach.
    Regards
    Sumit

  • Can't find value set in values screen of flex field

    Hi,
    I want to see values associated with a value set. This valueset is for one of the segment of Position Flex field of HRMS.
    When I go to Application>FlexField>Key>Values and query for the value set, It doesn't appear in the list of value sets. I am unable to find any value set for any segment. Both the value sets are table based.
    Can anyone tell me why I can't see them?
    Abdul Wahid

    Mark,
    You did not say whether you are using Frame 8 or not, but I use Frame 7.2 and have cross-reference elements in my documents; however, they are named XReference. I have no trouble finding them...an element is an element.
    Check to be sure your EDD includes elements named xref and that when the insertion point is inside some text that the element catalog shows that xref elements are allowed.
    If your EDD does not include xref elements or elements that serve as cross-references but are named differently, then Find will not be able to find them as elements. If you insert your cross-references NOT as elements, then again Find will not find them as elements. You must have an element that you use for cross-references. If so, Find should work.
    Van

  • How can I pass Flex Field value to the Call Wrap Up screen?

    Hello helpers,
    I am trying to get a value from the 'Flex Field' passed over to the 'Call Wrap Up' screen by using Form Personalization.
    Oracle was configured by a subcontractor and therefore I do not know what the exact name of the textfield is in the Flex Field however the label is 'Method of Contact'. When i set 'Show Custom Events' to 'On', I get the response: 'CSXXXRC.INCIDENT_TRACKING.STATUS_CODE:WHEN-NEW-ITEM-INSTANCE' When i enter a value in the Method of Contact field in the Flex Field.
    Can anyone help?
    I am a complete Newbie to Oracle.... I only know a bit about Oracle Form Personalization.
    Any help would be much appreciated,
    S

    Seems like you're talking about a from from the eBusiness-suite. There are special rules for that, ask your question in the eBusiness-suite-forum OA Framework

Maybe you are looking for

  • Tcode FB01

    I m populating FB01 tcode...using BAPI BAPI_ACC_DOCUMENT_POST..in my flat file for populating Fb01..i have two fields vendor and account...but where r these fields in BAPI structure...but while entering values in FB01 i m entering both vendor and acc

  • Mac OS X update, what update is the one that includes the Mac App Store.?

    help

  • Time and date clock for web site

    hi all I am very new and mean very new I am building my first wed page and I am looking for a date/time clock thing to add to the site So the question has any one got one I can use or how do you write th tag for it Cheers Det

  • Photoshop CS6 - Video Editing Facility

    Does anybody know if thePhotoshop CS6 (Standard Version) video editor can do the following:- Steam video from a camcorder  Correct camcorder or camera shake I rang Adobe Customer Services, who transferred me to the "Sales Department", who transferred

  • Create prompt inisde the report not the dashboard promt

    Hi All, I had this rek today saying that i need to create a prompt inisde the report not the dashboard prompt.can anybody help me how to create the prompt inisde the report.