Use VO to get DB value and set attribute

Hi,
I am working a page to create new order. I need some information populate. This is my code, which somehow not work
public void createOrder() //(String[] args)
OAViewObject vo = (OAViewObject)getxxMobileOrderVO1();
if (!vo.isPreparedForExecution())
vo.executeQuery();
Row row = vo.createRow();
vo.insertRow(row);
row.setNewRowState(Row.STATUS_INITIALIZED);
// Populate support information
xxMobileSupportVOImpl sptVo = (xxMobileSupportVOImpl)getxxMobileSupportVO1();
if (sptVo == null)
MessageToken[] errTokens = {new MessageToken("OBJECT_NAME", "xxMobileSupportVO1")};
throw new OAException("PER", "XXBOL_OAF_OBJECT_NOT_FOUND", errTokens);
sptVo.initSupport();
Row sptRow = sptVo.getCurrentRow();
if (sptRow != null) {
row.setAttribute("SupportPersonId", sptRow.getAttribute("PersonId"));
row.setAttribute("SptName", sptRow.getAttribute("FullName"));
row.setAttribute("SptEmail", sptRow.getAttribute("EmailAddress"));
The VO xxMobileSupportVO is a simple select returns one records:
SELECT ppx.person_id
, ppx.employee_number
, ppx.full_name
, ppx.email_address
--, lk.tag
FROM fnd_lookup_values lk
, per_people_x ppx
WHERE lk.lookup_type = 'XXXX'
AND lk.lookup_code = ppx.employee_number
AND lk.enabled_flag = 'Y'
AND lk.LANGUAGE = USERENV('LANG')
AND lk.tag =
( SELECT MAX(NVL(tag, 0))
FROM fnd_lookup_values
WHERE lookup_type = 'XXXX'
AND TRUNC(SYSDATE) BETWEEN lk.start_date_active
AND NVL(lk.end_date_active, hr_general.END_OF_TIME)
The VO is correctly attached to AM. I use Test feature to be sure it does get value.
However, when the page is opened and createOrder method is called. The field does not get value populated.
Does anyone can tell what is the issue?
Thanks in advance.
Rudoph

Are you executing the VO query?
I suppose you are executing it in sptVo.initSupport();
If not first execute the VO using sptVo.executeQuery()
After executing the query, do sptVO.first().
This will give you the row of the VO.
Then do your work based on that.
Regards,
Peddi.

Similar Messages

  • How to get the kerning value and set it to back use script?

    hi,guys
    I come back again.
    I encountered a kerning problem.
    how to get the kerning value and set it to back use script?
    Thanks very much!

    For both cases, the filename can be found on the FILE.ReceivedFileName Context Property.  You can access this Property in a Pipeline Component or Orchestration and take any action you want, such as apply to a database.
    The value is accessed by: MyReceivedMessage(FILE.ReceivedFileName)
    In the case of a duplicate EDI Interchange, you would use the Failed Message Routing feature to capture the error message with either an Orchestration or Send Port.

  • Bex Query - How to capture characteristic value and set it as filter value?

    Dear Experts,
    I would like to create a tricky report that listed sales quantity by companis. Companies consists of production plant as well as trading company.
    Company / Sales Quantity / Sales Quantity 2 (which produced by Company itself)
    A            / 100                  / 50                     (50 was produced by company A)
    B            /  80                   / 0                      (this is a trading company)
    C            / 150                  / 150                   (All are produced by company C)
    First I thought of using variable to capture Company value and then under Sales Quantity 2 I set producing company = this variable. But this only works if I filter company values. Any workaround idea that I can get the above with all the listing of companies?
    Any assistance would be great! Thanks!
    JL

    Hi,
    Have you tried elimination of Internal business Volume?
    http://help.sap.com/saphelp_bw32/helpdata/en/d5/784d3c596f0b26e10000000a11402f/content.htm
    Impliment this solution  by adding another KF Sales qty2.  with ref. to Sales qty.
    In characteristic pair you can have Company and  Production Company(navigational attribute).
    By implimenting this solution  the system will eliminate if the quantity is produced by the company it self.  You can create CKF in query to get the result you need.
    Jaya

  • Need to add row and set attribute value on pageload

    Guys,
    On my page based on the pageflowscope variable value, i need to add a row for master and one row for detail viewobject and set attribute values. (Some of the attribute are LOV and Checkboxes as well)
    I am using following code to create records.....records are being added but i am not able to set the attributes
    OperationBinding ob;
    ob = ADFUtil.findOperationBinding("Create");
    ob.execute();
    ob = ADFUtil.findOperationBinding("CreateInsert3");
    ob.execute();
    I am using following code to set the attributes value
    DCIteratorBinding dc1 = ADFUtil.getBindingIterator("firstiterator");
    DCIteratorBinding dc = ADFUtil.getBindingIterator("seconditerator");
    row1=dc1.getCurrentRow();
    row=dc.getCurrentRow();
    row.setAttribute("activest","A");
    row1.setAttribute("type","dc14");
    Anything i am doing wrong here or any suggestion to try is greatly appreciated....

    Vinod,
    Yes commit button is there and yes its also has entry in pagedef...
    When I open the same page on edit mode and i can edit regular record and save them
    Problem is that when i open the page on new mode and try to add rows on page load..... and setting values as described above.... save button somehow doesn't work...
    seems like after i add the rows on the fly, i need to refresh the binding?
    any help is greatly appreciated....
    thank you guys

  • Get textfield value and put it session  JSP

    Hi all .
    I have issuse with Session . this the code . file name (order.jsp)
    %>
    <p>Compute</p>
    <table width="354" border="1">
    <tr>
    <td width="36" scope="col"> </td>
    <td width="148" scope="col">Computer Type</td>
    <td width="148" scope="col">Price</td>
    </tr>
    <%
    while (rset.next ()) {
    %>
    <tr>
    <td><input type="text" name="compno" value="<% out.print (rset.getString ("COMPUTERID"));%>"</td>
    <td><input type="text" name="compty" value="<% out.print (rset.getString (2));%>"</td>
    <td><input type="text" name="comppr" value="<% out.print (rset.getString (3));%>"</td>     
    *<td width="61"><a href= "detailorder.jsp?<% session.setAttribute("comp", request.getParameter("compno"));*
    *     String str=(String)session.getAttribute("comp");     *
    *     System.out.println("file name is"+str);%>=">Add <%=str%></a></td>* </tr>
    <%
    rset.close();
    pstmt.close();
    %>
    my problems is that I would to get "COMPUTERID" value and put it in "comp" and save it as session .
    please help
    raid
    Edited by: raid200 on Apr 23, 2008 12:40 PM
    Edited by: raid200 on Apr 23, 2008 12:41 PM

    Copied from a newly opened topic:
    raid200 wrote:
    Hi
    Thanks for your help . I can take one textfield value and send it to another jsp file
    BUT I would to take all textfield in the row that I would use it .
    Code .
    <p>Compute</p>
    <table width="354" border="1">
    <tr>
    <td width="36" scope="col"> </td>
    <td width="148" scope="col">Computer Type</td>
    <td width="148" scope="col">Price</td>
    </tr>
    <%
    while (rset.next ()) {
    %>
    <tr>
    <td><input type="text" name="compno" value="<% out.print (rset.getString ("COMPUTERID"));%>"</td>
    <td><input type="text" name="compty" value="<% out.print (rset.getString (2));%>"</td>
    <td><input type="text" name="comppr" value="<% out.print (rset.getString (3));%>"</td>     
    <td width="61"><a href=" "detailorder.jsp?compno=<%= rset.getString("COMPUTERID")%">>                               <%session.setAttribute("compna",rset.getString(2));
                                  session.setAttribute("comppr",rset.getString(3)); %>"> BUY ME! </a></td>
    </tr>
    In the detailorder.jsp::::::
    String selectedCompId = request.getParameter("compno");
         session.setAttribute("comp", selectedCompId);
    String computerid=(String) session.getAttribute("comp");
    String computername=(String) session.getAttribute("compna");
    String computerprice=(String) session.getAttribute("comppr");
    in the detailorder.jsp ("""""the compna and comppr give the last record in formation""""""")
    Please Help.
    Raid</a>
    You question shows that you still don't understand how JSPs work.
    Try reading [this article|http://www.javaranch.com/journal/200510/Journal200510.jsp#a1].
    You seem to think that the session.setAttribute call is done when you click the link. This is definitely NOT the case.
    All of the java code runs (including all of those session.setAttribute) calls, and produces HTML. So it will store each element into session, overwriting the previous one.
    To get information from one jsp to another you either pass parameters or use session attributes.
    I showed you how to pass the selected id as a parameter, that you could retrieve in the next JSP.
    So you can get the compid.
    You could pass the other values as parameters as well - thats one approach.
    Alternatively you could use the id to look up the data from the database again.
    Alternatively you could store the +entire list+ of computers in the session, se the selected id to determine which one of those was selected, and get the answers like that.
    The full solution to my mind would be to write a bean method that executes the query, and generates a List of java Objects representing your information.
    You can then put that list in the session, and use it to both generate this JSP and get the information once the user selects one line.
    Hope this helps,
    evnafets

  • Where we use Conversions? like Fixed Value and Value mapping? and use of th

    where we use Conversions? like Fixed Value and Value mapping?
    and what is the use of that....

    Hi
    Have a Look at this
    /people/community.user/blog/2007/01/08/valuemapping-using-the-graphical-mapping-tool
    Value mapping is used to map different representations of an object to each other.
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/9202d890-0201-0010-1588-adb5e89a6638
    You can do value mapping both in IR and ID
    IR: Message Mapping
    http://help.sap.com/saphelp_nw04/helpdata/en/43/c4cdfc334824478090739c04c4a249/content.htm
    /people/sreekanth.babu2/blog/2005/01/05/design-time-value-mappings-in-xslt
    ID: Tools --> Value Mapping
    http://help.sap.com/saphelp_nw04/helpdata/en/13/ba20dd7beb14438bc7b04b5b6ca300/content.htm
    Value mapping replication: For uploading data from tables, excel sheet etc. into XI
    http://help.sap.com/saphelp_nw04/helpdata/en/2a/9d2891cc976549a9ad9f81e9b8db25/content.htm
    Value mapping
    /people/siva.maranani/blog/2005/08/23/lookup146s-in-xi-made-simpler
    /people/sravya.talanki2/blog/2005/12/21/use-this-crazy-piece-for-any-rfc-mapping-lookups
    /people/sap.user72/blog/2005/12/06/optimizing-lookups-in-xi
    /people/alessandro.guarneri/blog/2006/03/27/sap-xi-lookup-api-the-killer
    Thanks

  • I'm trying to make "Stop motion videos"  in Final Cut EXPRESS by using 100's of still photos and setting them to music.  They are coming out blurry if viewed larger than 4x6 in size

    I'm trying to make "Stop motion videos"  in Final Cut EXPRESS by using 100's of still photos and setting them to music.  They are coming out blurry if viewed larger than 4x6 in size.
    I don't understand why this is happening. 

    Quick follow up, since I was on my phone earlier and am back to a real keyboard.
    To access Easy Setup, hit Control Q.
    If you click on the blue discosure triangles, a dropdown menu with about a dozen different presets will be displayed. Select the one you want, (Here, I've selected 720P.)
    Whatever you select for a preset will not be applied until you make a new sequence. (I don't like to have sequences with different properties in the same project so I prefer to make a new project if I change the Easy Setup.)
    Because photo aspect ratios are different than video, I typically put a solid generator of some compatible color on the first track (v1) and put my photos on the track above (v2). Looks better, IMO, than black bars. There are other creative ways to display them. And of course, you could scale them up to fill the frame…but then you probably would have to re-position them.
    Good luck.
    Russ

  • Using my personal hotspot to connect and set my ipad

    Hi folks im having trouble using my personal hotspot to connect and set my ipad, the phone tells me thge ipad is connected to it via the hotspot but on the Ipad its founbd my phone and the little chain link hasd gone blue but i cant advance from this point to connect to itunes

    Yes, the iPad will download app updates over your iPhone's cellular data. I just tested it.  I was tethered to my iPhone using Bluetooth, which I figured to make it even less likely to do so, but as soon as I turned on auto updates it started updating apps.
    It's not obvious at first either. You can't see any progress bars. You will just notice  the number of pending updates gradually decreasing, and in the App Store "Updates" section you will notice apps appear as updated on this date.

  • How to get the values and attributes of Longlived processes by using ProcessID.

    Hi Experts,
    For  every process we creates, LC ES2 creates processID.
    we know that if you creates  a long lived process, all  the  values which are in proces will be stored some where  in DB.
    Here my requirement is by using  processID I need to get all/some values/variables stored in database.
    I am not able to get values using processID. Here I don't have clue on  how to get the values.
    Please tell me  how to get the same by using  Process Management. Link/guide would be helpful
    Thanks
    Praveen.

    Searchable means you can put a filter criteria on it (e.g. where amount > 50000)
    Visible means you can add have this column returned as an output (and therefore you can add it as column in listview and see it in Task Details).
    These two attributes were provided so that queries could be done against the process variables, but the exact contents of the variables are not allowed to be seen.

  • Is it possible to get and Set attribute value in OVD through JNDI or Java

    Hi,
    I have a requirement to read an OVD Attribute value from a Jsp Page and set the Attribute value in OVD.
    Is it possible to achieve it through JAVA/JNDI code, Any pointers or code snipplet are welcome.
    Thanks
    Ak

    Use JNDI with LDAP provider or another LDAP java library, plenty of examples on google

  • Capture grid row value and set it in edit box

    hello expert
    i want to select  the perticular colum of grid and capture the three colum value of grid in three edit box on the form pls help me sir
                             thanx a lot

    Hi vmaskey,
    Use the Grid's DataTable GetValue method to get the values you need.
    Do this on the ItemPressed Item event, when the user selects a row
    Dim Value1 As String = oGrid.DataTable.GetValue(0, oGrid.GetDataTableRowIndex(oGrid.Rows.SelectedRows.Item(i, BoOrderType.ot_RowOrder)))
    Regards,
    Vítor Vieira

  • Grabbing Array Value and setting a hidden input

    Not sure if anyone can help but I am having an issue grabbing a certain value from an array and setting a hidden input inside a loop that then is grabbed outside the loop using a document.getElementById.
    Example to what I am trying to do.
    I have a Oracle Package that returns an array for a shopping cart. Each line has its on value and the value can either be 'N', 'P', or 'Y'. Depending on if any of the lines return an 'N' or a 'P' then something else needs to happen.
    So say I have a cart that has 5 lines in it.
    Line 0 = 'Y'
    Line 1 = 'N'
    Line 2 = 'N'
    Line 3 = 'Y'
    Line 4 = 'Y'
    Since one of the lines returns an 'N' I now want to set a hidden input with a value of 'N'. (Right now I have it setting that value in the cart display loop, which maybe be wrong.)
    <input type="hidden" id="AllowCheckOut" name="AllowCheckOut" value="N">
    Once the hidden input is set then outside the loop I am doing the following to determine if the 'Checkout' button should be displayed or not.
    if (document.getElementById('AllowCheckOut').value == "N") {
    isDisabled = true;
    The reason I am having to do it this way is because the 'Checkout' button is at the parent .jsp page and this is being determined in the child .jsp page.
    The problem I am having is even though I am doing an if else logic in the loop to look for an 'N' value which it does find, but it looks like it is always setting the hidden input value to whatever the last line value is which is 'Y' instead of setting it to 'N' since one of the lines had an 'N' in it.
    If anyone understands what I am trying to do can you please explain what I may be doing wrong or need to do.
    Thanks

    Also you have strings there delimited by single quotes, which is invalid in Java.
    Are you sure this is Java and not Javascript?
    Though a cart implemented in Javascript seems problematical to me.

  • Get Old Value and the new value based on the date

    Hi
    I have a table called roster created below with following insert statements.
    CREATE TABLE ROSTER
    ROSTER_EMPLOYEE_DEF_ID NUMBER,
    EMPLOYEE_ID NUMBER,
    DEFINITION_REGION_CODE NUMBER,
    DEFINITION_DISTRICT_CODE NUMBER,
    DEFINITION_TERRITORY_CODE NUMBER,
    START_DATE DATE,
    END_DATE DATE
    INSERT INTO ROSTER
    (ROSTER_EMPLOYEE_DEF_ID,EMPLOYEE_ID,DEFINITION_REGION_CODE,DEFINITION_DISTRICT_CODE,DEFINITION_TERRITORY_CODE,START_DATE,END_DATE)
    VALUES
    (1,299,222,333,444,'1-JUN-2011','30-JUN-2011')
    INSERT INTO ROSTER
    (ROSTER_EMPLOYEE_DEF_ID,EMPLOYEE_ID,DEFINITION_REGION_CODE,DEFINITION_DISTRICT_CODE,DEFINITION_TERRITORY_CODE,START_DATE,END_DATE)
    VALUES
    (2,299,223,334,445,'1-JUL-2011','20-JUL-2011')
    INSERT INTO ROSTER
    (ROSTER_EMPLOYEE_DEF_ID,EMPLOYEE_ID,DEFINITION_REGION_CODE,DEFINITION_DISTRICT_CODE,DEFINITION_TERRITORY_CODE,START_DATE,END_DATE)
    VALUES
    (3,299,224,335,446,'1-AUG-2011','30-AUG-2011')
    INSERT INTO ROSTER
    (ROSTER_EMPLOYEE_DEF_ID,EMPLOYEE_ID,DEFINITION_REGION_CODE,DEFINITION_DISTRICT_CODE,DEFINITION_TERRITORY_CODE,START_DATE,END_DATE)
    VALUES
    (4,300,500,400,300,'1-JUN-2011','20-JUN-2011')
    INSERT INTO ROSTER
    (ROSTER_EMPLOYEE_DEF_ID,EMPLOYEE_ID,DEFINITION_REGION_CODE,DEFINITION_DISTRICT_CODE,DEFINITION_TERRITORY_CODE,START_DATE,END_DATE)
    VALUES
    (5,300,501,401,301,'1-JUL-2011','20-JUL-2011')
    In the above table we have columns like
    EMPLOYEE_ID,DEFINITION_REGION_CODE,DEFINITION_DISTRICT_CODE,DEFINITION_TERRITORY_CODE,START_DATE,END_DATE
    The result i am looking from the above table is based on the EMPLOYEE_ID OF START_DATE AND END_DATE
    I need to get OLD_DEFINITION_REGION_CODE and the NEW_DEFINITION_CODE
    Similarly OLD_DEFINITION_REGION_CODE and the NEW_DEFINITION_REGION_CODE
    and OLD_DEFINITION_TERRITORY_CODE and the NEW_DEFINITION_TERRITORY_CODE
    I need to get one row of data for each employee saying old value and new value
    for employee 299 there are 3 records it must give the new record which is the latest date i.e start date 1-aug-2011 and end date 30-aug-2011 old record will be
    start date 1-jul-2011 and 20-jul-2011
    For the above table data i need to get the data as below
    EMPLOYEE_ID OLD_DEFINITION_REGION_CODE NEW_DEFINITION_CODE OLD_DEFINITION_REGION_CODE NEW_DEFINITION_REGION_CODE START_DATE END_DATE
    299 223 224 334 335 20-JUL-11 30-AUG-11
    300 500 501 400 401 20-JUN-11 20-JUL-11
    Please suggest me to get the above result based on the data. Please let me know if my posts are not clear
    Thanks
    Sudhir

    SELECT  EMPLOYEE_ID,
            OLD_DEFINITION_REGION_CODE,
            NEW_DEFINITION_REGION_CODE,
            OLD_DEFINITION_DISTRICT_CODE,
            NEW_DEFINITION_DISTRICT_CODE,
            OLD_DEFINITION_TERRITORY_CODE,
            NEW_DEFINITION_TERRITORY_CODE,
            START_DATE,
            END_DATE
      FROM  (
             SELECT  EMPLOYEE_ID,
                     ROW_NUMBER() OVER(PARTITION BY EMPLOYEE_ID ORDER BY START_DATE DESC) RN,
                     LAG(DEFINITION_REGION_CODE) OVER(PARTITION BY EMPLOYEE_ID ORDER BY START_DATE) OLD_DEFINITION_REGION_CODE,
                     DEFINITION_REGION_CODE NEW_DEFINITION_REGION_CODE,
                     LAG(DEFINITION_DISTRICT_CODE) OVER(PARTITION BY EMPLOYEE_ID ORDER BY START_DATE) OLD_DEFINITION_DISTRICT_CODE,
                     DEFINITION_DISTRICT_CODE NEW_DEFINITION_DISTRICT_CODE,
                     LAG(DEFINITION_TERRITORY_CODE) OVER(PARTITION BY EMPLOYEE_ID ORDER BY START_DATE) OLD_DEFINITION_TERRITORY_CODE,
                     DEFINITION_TERRITORY_CODE NEW_DEFINITION_TERRITORY_CODE,
                     LAG(END_DATE) OVER(PARTITION BY EMPLOYEE_ID ORDER BY START_DATE) START_DATE,
                     END_DATE
               FROM  ROSTER
      WHERE RN = 1
    EMPLOYEE_ID OLD_DEFINITION_REGION_CODE NEW_DEFINITION_REGION_CODE OLD_DEFINITION_DISTRICT_CODE NEW_DEFINITION_DISTRICT_CODE OLD_DEFINITION_TERRITORY_CODE NEW_DEFINITION_TERRITORY_CODE START_DAT END_DATE
            299                        223                        224                          334                          335                           445                           446 20-JUL-11 30-AUG-11
            300                        500                        501                          400                          401                           300                           301 20-JUN-11 20-JUL-11
    SQL>  SY.

  • How to get current time and set to yyyy/mm/dd hh:ss

    Dear friend:
    how can i get computer current date and time and set to yyyy/mm/dd hh:ss
    like this "2011/03/02 16:40:23" ? i want to pass this date to my sql server for quering.
    thank for helping

    see this:
    http://livedocs.adobe.com/flex/3_cn/langref/mx/formatters/DateFormatter.html

  • Getting and setting attributes

    Hi!!!
    I have to get attributes from the workflow process, i have a function, with some activity attributes, but i want to, instead of putting the internal names of the global attributes, put as an Item Attribute instead of Constant.
    When i try to read them as an item Atribute and after select the appropriate item, it dosen4t work, they are always empty, why????
    what i doing wrong???
    FUNCTION GET_STRINGS (Attr_Name in varchar2,
    Obrigatory in BOOLEAN := FALSE) return VARCHAR2
    is
    v_Value_String VARCHAR2(4000);
    NOT_NULL EXCEPTION;
    begin
    v_Value_String := wf_engine.GetActivityAttrText (itemtype=> g_ItemType,
                                            itemkey => g_ItemKey,
    actId => g_ActId,
    aname =>Attr_Name);
    IF Obrigatory AND v_Value_String IS NULL THEN
    RAISE NOT_NULL;
    END IF;
    RETURN v_Value_String;
    EXCEPTION
    WHEN NOT_NULL THEN
    WF_CORE.token('GET_STRINGS','ATTRIBUTE MUST BE FILLED - ' || Attr_Name);
    WHEN OTHERS THEN
    WF_CORE.token('GET_STRINGS','DON4T EXIST THE ATTRIBUTE ' || Attr_Name);
    end;

    If I understand you correctly, you want to point your activity attribute to an Item Attribute to get the value.
    To do this, you can look at the WF_STANDARD.ASSIGN pl/sql code for an example, basically, you do the following:
    aname := wf_engine.GetActivityAttrText(itemtype, itemkey, actid, 'ATTR');
    wf_engine.GetItemAttrInfo(itemtype, aname, atype, asubtype, aformat);
    if (atype = 'NUMBER') then
    wf_engine.SetItemAttrNumber
    elsif (atype = 'DATE') then
    etc etc
    Hi!!!
    I have to get attributes from the workflow process, i have a function, with some activity attributes, but i want to, instead of putting the internal names of the global attributes, put as an Item Attribute instead of Constant.
    When i try to read them as an item Atribute and after select the appropriate item, it dosen4t work, they are always empty, why????
    what i doing wrong???
    FUNCTION GET_STRINGS (Attr_Name in varchar2,
    Obrigatory in BOOLEAN := FALSE) return VARCHAR2
    is
    v_Value_String VARCHAR2(4000);
    NOT_NULL EXCEPTION;
    begin
    v_Value_String := wf_engine.GetActivityAttrText (itemtype=> g_ItemType,
                                            itemkey => g_ItemKey,
    actId => g_ActId,
    aname =>Attr_Name);
    IF Obrigatory AND v_Value_String IS NULL THEN
    RAISE NOT_NULL;
    END IF;
    RETURN v_Value_String;
    EXCEPTION
    WHEN NOT_NULL THEN
    WF_CORE.token('GET_STRINGS','ATTRIBUTE MUST BE FILLED - ' || Attr_Name);
    WHEN OTHERS THEN
    WF_CORE.token('GET_STRINGS','DON4T EXIST THE ATTRIBUTE ' || Attr_Name);
    end;

Maybe you are looking for

  • Issue in Printing Smartforms through Dotmatrix Printer

    Hi, I have a Smartform which has many tables. When I print it through a Laser printer it comes out fine. But when I direct it through the Epson 2090 a 24 pin head dotmatrix printer some lines in the tables are not getting printed. May be it's that th

  • Bridge CS4 Odd Hyperlink Behaviour In WinXP Pro

    After I upgraded to Photoshop CS4 I configured Bridge to start on log-in under the Preferences, Advanced menu. Later I found that clicking on any hyperlink in another application, such as Microsoft Outlook or even from the Control Panel, Windows Upda

  • Toplink exception

    Hi , In asyncronous process , i am trying to connect database using DB adapter , i am getting this error . ( If i restart the server it is working for some time again same error getting) file:/opt/oracle/product/10.1.3.1/OracleAS1/bpel/domains/usa/tm

  • Error 16 issues

    I hope someone can help on this...I have just spent the past 2 hours on the phone with support and have not solved the problem.  I have the Lightroom app installed and tried downloading photoshop from creative cloud and got an error 16 message.  I we

  • PS S6 weird CPU activity!

    So here's my long story short: Recently I've bought an old HP XW8600 Workstation (dual Xeon [email protected], 8GB DDR2, 2x146GB SAS [email protected], nVidia Quadro FX4600). The price was about $550. I know that for this amount of money, in the US you could