ESS F4 Value Help to get States for selected country.

Hi,
I am a Web Dynpro Java developer working on ESS Self Service application. I have a requirement to display additional State and Country fields in Family/Dependent screen.
I have displayed the State and Country fields by mapping the UI elements to SelectedInfoTypes node attributes -Land1 and State. And now I having problem to get a list of States based on the value selected in the Country field.
I remembered I used to call a RFC in  non-ESS application by passing in the Country value to a GetStates RFC. But in ESS self service application, do we have a RFC I can call to get the list of States based on selected countries?
I was looking at the sap.xss.per.helpers.F4TextHelper helper class, to see if the GetF4Text (IWDViewController controller, IWDNode selectedInfotype,IWDView view,TextFieldInfo[] fieldInfo) method can achieve my purpose. So far, I have no luck on this.
Is there a method call/way I can use in FPM to achieve this?
Can someone share your idea if you have done this before or know how to implement this?
Thanks in advance,
KC

Class is used CL_HRPA_PERNR_INFTY_XSS. here you can check the methods

Similar Messages

  • Value property not getting updated for edit on firefox

    Der Sir/Mam,
    I am a selenium tester and my test fails on moxila due to following issue,
    Value property not getting updated for edit on firefox thats why failing the script while identifying the object from xPath.
    The test case run fine on IE.
    I want to identify the object by its xPath saying value = "Some value"
    I can not check thousands of object by looking in to its value attribute property.
    Thanks in advance,
    Rohit

    I'm not sure whether we can solve your question here. We are mostly supporting the released version of Firefox (Firefox 20) for regular use rather than old versions in a test harness. You might need to reach out to the [https://groups.google.com/forum/?fromgroups#!forum/selenium-users Selenium Users Group] if you can't replicate the problem in Firefox 20.

  • Need help on SQL Statement for UDF

    Hi,
    as I am not so familiar with SQL statements on currently selected values, I urgently need help.
    The scenario looks as follows:
    I have defined two UDFs named Subgroup1 and Subgroup2 which represent the subgroups dependent on my article groups. So for example: When the user selects article group "pianos", he only sees the specific subgroups like "new pianos" and "used pianos" in field "Subgroup1". After he has selected one of these specific values, he sees only the specific sub-subgroups in field "Subgroup2", like "used grand pianos".
    I have defined UDTs for both UDFs. The UDT for field "Subgroup1" has a UDF called "ArticleGroup" which represents the relation to the article group codes. The UDT for field "Subgroup2" has a UDF called "Subgroup1" which represents the relation to the subgroups one level higher.
    The SQL statement for the formatted search in field "Subgroup1" looks as follows:
    SELECT T0.[Name] FROM [dbo].[@B_SUBGROUP1]  T0 WHERE T0.[U_ArticleGroup]  = (SELECT $[OITM.ItmsGrpCod])
    It works fine.
    However, I cannot find the right statement for the formatted search in field "Subgroup2".
    Unfortunately this does NOT WORK:
    SELECT T0.[Name] FROM [dbo].[@B_SUBGROUP2]  T0 WHERE T0.[U_Subgroup1]  = (SELECT $[OITM.U_Subgroup1])
    I tried a lot of others that didn't work either.
    Then I tried the following one:
    SELECT T0.[Name] FROM [dbo].[@B_SUBGROUP2]  T0 WHERE T0.[U_Subgroup1] = (SELECT T1.[Code] FROM [dbo].[@B_SUBGROUP1] T1 WHERE T1.[U_ArticleGroup] = (SELECT $[OITM.ItmsGrpCod]))
    Unfortunately that only works as long as there is only one specific subgroup1 for the selected article group.
    I would be sooooo happy if there is anyone who can tell me the correct statement for my second UDF!
    Thanks so much in advance!!!!
    Edited by: Corinna Hochheim on Jan 18, 2010 10:16 PM
    Please ignore the "http://" in the above statements - it is certainly not part of my SQL.
    Please also ignore the strikes.

    Hello Dear,
    Use the below queries to get the values:
    Item Sub Group on the basis of Item Group
    SELECT T0.[Name] FROM [dbo].[@SUBGROUP]  T0 WHERE T0.[U_GroupCod] =$[OITM.ItmsGrpCod]
    Item Sub Group 1 on the basis of item sub group
    SELECT T0.[Name] FROM [dbo].[@SUBGROUP1]  T0 WHERE T0.[U_SubGrpCod]=(SELECT T0.[Code] FROM [dbo].[@SUBGROUP]  T0 WHERE T0.[Name] =$[OITM.U_ItmsSubgrp])
    Sub group 2 on the basis of sub group 1
    SELECT T0.[Name] FROM [dbo].[@SUBGROUP2]  T0 WHERE T0.[U_SubGrpCod1]=(SELECT T0.[Code] FROM [dbo].[@SUBGROUP1]  T0 WHERE T0.[Name] =$[OITM.U_ItmsSubgrp1])
    this will help you.
    regards,
    Neetu

  • Default selection of dropdown value help in bp search for custom field

    Hi guys,
    i've problem setting a default selection of the value help. I appended a structure containing a field of type CRMT_BOOLEAN to the crmt_bupa_il_header_search and show it at the bp search page.
    The default order of the value help is
    [ ] false
    [x] true
    which means that the first entry (false) is selected by default. I want the second entry to become the default entry. I tried to sort the ddlb_table of this field in the get_v_xxx but this didn't had any effect to the value help.
    DATA:  lt_ddlb TYPE  bsp_wd_dropdown_table,
    lr_ddlb TYPE REF TO cl_crm_uiu_ddlb.
    lt_ddlb = cl_crm_uiu_bt_tools=>get_strcmp_ddlb(
    iv_structure = [structure]
    iv_component = [my_zfield])
    IF NOT lr_ddlb IS BOUND.
    CREATE OBJECT lr_ddlb
    TYPE
    cl_crm_uiu_ddlb
    EXPORTING
    iv_source_type = 'T'.
    ENDIF.
    SORT lt_ddlb DESCENDING BY key.
    lr_ddlb->set_selection_table( it_selection_table = lt_ddlb ).
    rv_valuehelp_descriptor = lr_ddlb.
    Is this approach not working at all? After sorting lt_bblb contains the values in correct sequence, the webui is showing the value help as before.
    Is it possible to set a selected value in any way?
    Thanks and BR,
    Sven

    Hi Sven Wagener,
    what i understand is you want to set the default entry is second value right?
    if this is your requirement then go for this procedure.
    In redefine do_init_context method and fetch the collection in that collection get your field name and value.
    make a condition like this if the value = 'first value of your drop down' then set to second value.
    this method will execute only in the initial stage means when ever you login into your business role this method will execute.
    example:
    lr_col ?= me->typed_context->yournode->collection_wrapper->get_current( ).
    check lr_col is bound.
    lr_col->get_property_as_string( EXPORTING iv_attr_name = 'DROPDONWFIELD' RECEIVING rv_result = lv_dropdownfield ).
    if lv_dropdownfield EQ 'FIRSTFIELDKEY'.
    lv_dropdownfield = 'SECONDFIELDKEY'.
    lr_col->set_property( EXPORTING iv_attr_name = 'DROPDONWFIELD' iv_value = lv_dropdownfield ).
    IF this is not your requirement then give me some screen shorts.
    Thanks & Regards,
    Srinivas.

  • Value help does not work for ONE person only !

    Hi,
    we have a strange problem. In the Web IC, we are using a standard value help for the country field for a Business Partner. This works fine for everyone (ie, it picks up the country and slots it into the field) except one person. For her, it never returns any value into the country field. We are guessing that it's not Web IC related but is something in her browser settings etc...but haven't been able to pin it down. Can anyone offer any advice on this ?
    thanks for looking.
    Malcolm.

    Hello Malcolm,
    If this error occurs for one user only it's definitely related to the clients PC.
    Did you already delete all temporary files and the cookies on that PC? Usually this does the trick!
    If this does not solve the problem, try to let that particular user login on another PC where the problem does not occur. (If the error does occur on another PC too it's probably profile/authorization related)
    Hope this helps!
    Regards,
    Joost

  • Commit statement for selected row

    Hello,
    I am working on an OAF page where there is a table region.
    This table region is connected to a VO and the VO to a EO.
    I have connected it to a EO because the user should be able to enter data directly to the table.
    I have given a single save button at the bottom so that on clicking it, it takes to a handler function in my AM.
    In the handler function, I getAllFetchedRows in an array and then one by one I perform checks and then save by calling getOADBTransaction.commit after doing vo.setAttribute( ) with the corrected values.
    Now my problem is that while saving I am using the same EO being used in the above table. So even though I want to save line by line after performing checks programatically, the moment getOADBTransaction.commit is called for the first row, all the rows gets saved without even going through the checks.
    Is there any other way of calling the commit so that it saves only the passed row and not all the rows.
    Regards
    Hawker

    Hi Gyan,
    I have done exactly like that. At first I fetch what the users have entered and then validate it and then I do setAttribute with the correct value.
    And after looping for all the rows I finally commit.
    I was initially thinking that if I set the attribute for one row and if I go to the next row the data in the earlier row would get lost.
    But it has now worked nicey.
    Regards

  • How to get states relevent to country i.e india country mp,tn,ap states

    Hi all, I am designing a PeopleSoft page where I need to get the details of states with respect to country
    i.e like if I choose country drop down list as India in the next ddl I want to get states in India like that ... I have used Translate vales for country field . Can any one give elaborate explanation on how to do this ?
    Thanks

    Hi,
    Is this not done with vanilla address formats?
    PeopleBooks > PeopleSoft 9.1 PeopleBook: Enterprise Components > Formatting Addresses > Understanding Address Formats
    http://docs.oracle.com/cd/E28727_01/hcm91fp2/eng/psbooks/ecch/book.htm?File=ecch/htm/ecch03.htm#H3002
    Hakan

  • Help in  getting Headcount for a month from a flatfile

    Hi All,
    I am need one help regarding i need to load data from a flat file like for eg
    empno  Location     joiningdate     releivingdate
    123       USA         11/3/2008        12/9/2008
    345       Mexico     14/4/2008         13/11/2008
    376       USA         12/2/2008          Null
    and the condition is if the releving date  have some value it should taken  employee left the company
    i need to create a cube and also on top of the cube need to create a report also
    in the query  the formula is
    for eg if the user is giving i/p like 05.2008( what ever the user is giving i/p it should automatically taken from current finanacial year ie april)
    and in the report i need to write a formula for
    %YTD for attrition =( (opening headcount of april 1st+ closing heda count of april end)/2 +opening head count on may 1st + closing head count of may end/2))/n*100
    i am getting stuk up with how to get the opening headcount for month and also the closing head count for a month.
    VR

    There's actually an example of this in the business content in the 0papa_c02 cube:
    Re: Head Count
    There's also some info about this cube in note 336229.
    Similarly, for your data, you might have something like this:
    headcount_vc is the change in headcount on the calday.
    empno      Location      calday        headcount_vc
    123      USA      11/3/2008         1
    345      Mexico      14/4/2008         1
    376      USA      12/2/2008         1
    123      USA      12/9/2008         -1
    345      Mexico      13/11/2008   -1
    There would be another key figure in the cube headcount_nc which is the cumulation of headcount_vc.
    When aggregated together up to a certian day, you will have the correct headcount.
    It can get fancier if need be for example if you want a count of retired employees or something:
    Anything you want counts by should be time dependant though.
    empno      Location      calday        headcount_vc        status
    123      USA      11/3/2008         1          active
    345      Mexico      14/4/2008         1          active
    376      USA      12/2/2008         1          active
    123      USA      12/9/2008         -1          active
    345      Mexico      13/11/2008   -1          active
    123      USA      12/9/2008         1          retired
    345      Mexico      13/11/2008   1          retired

  • Default value don't get displayed for Fetch XML report

    Hi All;
    i have a date parameter in a fetch XML report 
    i set its default value as 01/01/2010 
    when i run this report in SSRS i can see the default value of the date
    But when the same report gets displayed on CRM 2013 online - report section the date default value dont get displayed
    Any help for this much appreciated
    Thanks
    Pradnya07

    Hello Zero-G. _,
    >> But I don't get any "Operation". I can't see my failure. - I tested around for the last few days, but I don't have a Clou, what's wrong...
    I am afraid that you have mixed the WCF and WCF Data Service, here is a WCF Service example(it works with the Entity Framework while it is not WCF Data Service):
    http://www.codeproject.com/Articles/127395/Implementing-a-WCF-Service-with-Entity-Framework, please check it, in your case, you are use this mode and you do not need to create WCF Data Services.
    If you want to write a custom method in WCF Data Service, you could refer to this link:
    https://msdn.microsoft.com/en-us/library/dd744841(v=vs.110).aspx, as you can see, although if we declare a custom method, it would not show in the web browser, we call it as adding
    the method after the based service link directly:
    http://localhost:12345/Northwind.svc/GetOrdersByCity
    Or call it by using a client project which could detect this method and call it as in this blog:
    http://blogs.msdn.com/b/dataaccesstechnologies/archive/2009/12/01/way-to-expose-custom-method-in-an-entity-class-from-wcf-data-service.aspx
    Regards,
    Fred.
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Help with if statement for a beginner.

    Hello, I’m new to the dev lark and wondered if someone could point me in the right direction.
    I have the following (working!) app that lets users press a few buttons instead of typing console commands (please do not be too critical of it, it’s my first work prog).
    //DBS File send and Receive app 1.0
    import java.awt.*;
    import java.awt.event.*;
    import java.io.*;
    import javax.swing.*;
    import java.awt.BorderLayout;
    import java.awt.FlowLayout;
    import java.awt.Font;
    import java.awt.event.ActionEvent;
    import java.awt.event.ActionListener;
    import javax.swing.JButton;
    import javax.swing.JCheckBox;
    import javax.swing.JFrame;
    import javax.swing.JPanel;
    import javax.swing.JTextArea;
    import java.applet.Applet;
    public class Buttons extends JFrame
         public Buttons()
              super("DBS 2");          
              JTextArea myText = new JTextArea   ("Welcome to the DBS application." +
                                                           "\n" +
                                                           "\n\n1. If you have received an email informing you that the DBS is ready to dowload please press the \"Receive DBS\" button." +
                                                           "\n" +
                                                           "\n1. Once this has been Received successfully please press the \"Prep File\" button." +
                                                           "\n\n2. Once the files have been moved to their appropriate locations, please do the \"Load\" into PAS." +
                                                           "\n\n3. Once the \"Load\" is complete, do the \"Extract\"." +
                                                           "\n\n4. When the \"Extract\" has taken place please press the \"File Shuffle\" button." +
                                                           "\n\n5. When the files have been shuffled, please press the \"Send DBS\" Button." +
                                                           "\n\nJob done." +
                                                           "\n", 20,50);
              JPanel holdAll = new JPanel();
              JPanel topPanel = new JPanel();
              JPanel bottomPanel = new JPanel();
              JPanel middle1 = new JPanel();
              JPanel middle2 = new JPanel();
              JPanel middle3 = new JPanel();
              topPanel.setLayout(new FlowLayout());
              middle1.setLayout(new FlowLayout());
              middle2.setLayout(new FlowLayout());
              middle3.setLayout(new FlowLayout());
              bottomPanel.setLayout(new FlowLayout());
              myText.setBackground(new java.awt.Color(0, 0, 0));     
              myText.setForeground(new java.awt.Color(255,255,255));
              myText.setFont(new java.awt.Font("Times",0, 16));
              myText.setLineWrap(true);
              myText.setWrapStyleWord(true);
              holdAll.setLayout(new BorderLayout());
              topPanel.setBackground(new java.awt.Color(153, 101, 52));
              bottomPanel.setForeground(new java.awt.Color(153, 0, 52));
              holdAll.add(topPanel, BorderLayout.CENTER);
              topPanel.add(myText, BorderLayout.NORTH);
              setSize(700, 600);
              setDefaultCloseOperation(EXIT_ON_CLOSE);
              getContentPane().add(holdAll, BorderLayout.CENTER);
              Container c = getContentPane();
              c.setLayout(new FlowLayout());
              final JButton receiveDBS = new JButton("Receive DBS"); //marked as final as it is called in an Inner Class later
              final JButton filePrep = new JButton("Prep File");
              final JButton fileShuffle = new JButton("File Shuffle");
              final JButton sendDBS = new JButton("Send DBS");
              JButton exitButton = new JButton("Exit");
    //          JLabel statusbar = new JLabel("Text here");
              receiveDBS.setFont(new java.awt.Font("Arial", 0, 25));
              filePrep.setFont(new java.awt.Font("Arial", 0, 25));
              fileShuffle.setFont(new java.awt.Font("Arial", 0, 25));
              sendDBS.setFont(new java.awt.Font("Arial", 0, 25));
              exitButton.setBorderPainted ( false );
              exitButton.setMargin( new Insets ( 10, 10, 10, 10 ));
              exitButton.setToolTipText( "EXIT Button" );
              exitButton.setFont(new java.awt.Font("Arial", 0, 20));
              exitButton.setEnabled(true);  //Set to (false) to disable
              exitButton.setForeground(new java.awt.Color(0, 0, 0));
              exitButton.setHorizontalTextPosition(SwingConstants.CENTER); //Don't know what this does
              exitButton.setBounds(10, 30, 90, 50); //Don't know what this does
              exitButton.setBackground(new java.awt.Color(153, 101, 52));     
              topPanel.add(receiveDBS);
              middle1.add(filePrep);
              middle2.add(exitButton);
              middle3.add(fileShuffle);
              bottomPanel.add(sendDBS);
              receiveDBS.addActionListener(new ActionListener()
                   public void actionPerformed(ActionEvent ae)
                        if (ae.getSource() == receiveDBS);
                        try
                             Runtime.getRuntime().exec("cmd.exe /c start c:\\DBS\\ReceiveDBSfile.bat");
                        catch(Exception e)
                             System.out.println(e.toString());
                             e.printStackTrace();
              filePrep.addActionListener(new ActionListener()
                   public void actionPerformed(ActionEvent ae)
                        if (ae.getSource() == filePrep);
                        try
                             Runtime.getRuntime().exec("cmd.exe /c start c:\\DBS\\filePrep.bat");
                        catch(Exception e)
                             System.out.println(e.toString());
                             e.printStackTrace();
              exitButton.addActionListener(new ActionListener()
                   public void actionPerformed(ActionEvent ae)
                        System.exit(0);
              fileShuffle.addActionListener(new ActionListener()
                   public void actionPerformed(ActionEvent ae)
                        if (ae.getSource() == fileShuffle);
                        try
                             Runtime.getRuntime().exec("cmd.exe /c start c:\\DBS\\fileShuffle.bat");
                        catch(Exception e)
                             System.out.println(e.toString());
                             e.printStackTrace();
              sendDBS.addActionListener(new ActionListener()
                   public void actionPerformed(ActionEvent ae)
                        if (ae.getSource() == sendDBS);
                        try
                             Runtime.getRuntime().exec("cmd.exe /c start c:\\DBS\\sendDBSFile.bat");
                        catch(Exception e)
                             System.out.println(e.toString());
                             e.printStackTrace();
              c.add(receiveDBS);
              c.add(filePrep);
              c.add(fileShuffle);
              c.add(sendDBS);
              c.add(exitButton);
    //          c.add(statusbar);
         public static void main(String args[])
              Buttons xyz = new Buttons();
              xyz.setVisible(true);
         }What I would like help with is the following…
    I would like output to either a JLabel or JTextArea to appear if a file appears on the network. Something along these lines…
    If file named nststrace*.* is in \\[network path] then output “Download successful, please proceed.”
    btw I have done my best to search this forum for something similar and had no luck, but I am looking forward to Encephalopathic’s answer as he/she has consistently made me laugh with posted responses (in a good way).
    Thanks in advance, Paul.

    Hospital_Apps_Monkey wrote:
    we're starting to get aquainted, but I think "best friend" could take a while as it is still as hard going as I recall, but I will persevere.Heh, it's not so bad! For example, if I had no idea how to test whether a file exists, I would just scan the big list of classes on the left for names that sound like they might include File operations. Hey look, File! Then I'd look at all of File's methods for something that tests whether it exists or not. Hey, exists! Then if I still couldn't figure out how to use it, I'd do a google search on that particular method.

  • Use FI Posting date as a filter value, can I get YTD for current year?

    Dear Expert,
    I work on a BI report which calculate the YTD key figure (restricted by 0CYEAR and =< 0CMONTH).
    One of the requirement for the report is to allow user to enter a value for a date using FI Posting date (although this is optional).
    Without entering the value for FI Posting date, my report works fine.
    But once FI Posting date is entered, no data found.
    I expect that when the value for the FI Posting date is entered, the YTD value will be calcuated starting from the Jan 1 of that FI Posting year to the FI Posting date entered.
    But this seems not happen.
    Could you help me to resolve this problem?
    If there is a better solution, please let me know.
    Very appreciated.
    Arthur

    Hi Dipika,
    Thanks for your reply.
    In my report, FI Posting date is a free characteristic, which user can optionally select it and fiter it for a specific FI Posting Date. Do you consider it as a global filter?
    my query structure is as below:
    rows: profit center, department, manager
    columns: YTD for current year, YTD for Previous year, the difference betwwen the two
    The requirement is when user enter a FI Posting date, use it  to restrict the KF shown above.
    For example, if the FI posting date is March 15, 2008, then YTD for current year should be restricted by the period between Jan 1, 2008 and March 15, 2008 and YTD for previous year should be restricted by Jan 1, 2007 and March 15, 2007.
    Do you have any idea how to implement this requirement in term of FI Posting date?
    Thanks and appreciated.
    Arthur

  • Need help in getting documnets for Account payables, account receivales, GL

    Hi experts,
    I am new to BW and I am doing analysis for AP- account payable,
                                                                           AR-account receivable,
                                                                          GL-general ledger,
                                                                             WIP, WBS datsources,
    Please provide me the useful documnets so that I can get the idea on these.
    Thnaks in advance,
    vinay.

    Hello Vinay,
    For AP and AR
    http://help.sap.com/saphelp_nw70/helpdata/en/ee/cd143c5db89b00e10000000a114084/frameset.htm
    For GL
    http://help.sap.com/saphelp_nw70/helpdata/en/57/dd153c4eb5d82ce10000000a114084/frameset.htm
    For WBS
    http://help.sap.com/saphelp_nw70/helpdata/en/8d/1f383fe58d5900e10000000a114084/frameset.htm
    Hope that helps.
    Roy

  • Need help, cannot get verification, for apple ID

    I'm trying to get an apple ID for my wife and every time I do it says ID needs to be verified, I then proceed to verify and it asks me for a visa which I don't want on the account, some times I can get past the visa part by trying to DL a free app, I then Finnish the process of making a new Apple ID and when I go to put the password in it says its invalid.
    Is there any way to get apple to reset the email address so I can start fresh.
    Any help will greatly be appreciated.

    Hi Cronzang,
    I have the same issue. I contacted AppleCare Support and they escalated the issue to an engineering team. The engineers said they have been able to replicate the issue and are currently working on a fix but with an indefinite time period for resolution. They'll let me know when the problem has been fixed, which will hopefully be soon.

  • Please help me get apps for shazam and talk to text

    I would like comprable features for shazame and talm to text.

    ¡Hola CyndiC!
    Please let Shazam know you want their application on Firefox OS, you could do so at https://support.shazam.com/hc/en-us/requests/new
    ¡Gracias!
    Alex

  • Please help to get driver for TSSTcoprp CD/DVDW TS-L632C DVDwriter

    Hi,
    i have lenovo 3000 n100 laptop and i dadly need the driver for the dvd writer
    "TSSTcoprp CD/DVDW TS-L632C DVDwriter " i dont find it on even lenovo site.
    Moderator note: Message edited to protect user's privacy
    thanks in advance.
    Message Edited by JohnB on 03-15-2009 06:59 AM
    Solved!
    Go to Solution.

    Hello vyasdharmeshc,
    then please click the solved button, so that other members can find your solution.
    Follow @LenovoForums on Twitter! Try the forum search, before first posting: Forum Search Option
    Please insert your type, model (not S/N) number and used OS in your posts.
    I´m a volunteer here using New X1 Carbon, ThinkPad Yoga, Yoga 11s, Yoga 13, T430s,T510, X220t, IdeaCentre B540.
    TIP: If your computer runs satisfactorily now, it may not be necessary to update the system.
     English Community       Deutsche Community       Comunidad en Español

Maybe you are looking for

  • HOW CAN I HAVE THE NUMBER OF SELECTED ROWS IN ALV GRID?

    HI. HOW CAN I HAVE THE NUMBER OF SELECTED ROWS IN ALV GRID???? GABRY =)

  • QT 6.5 Serial Works on Newest Version of Quicktime?

    I purchased a Quicktime 6.5 Pro Serial back in the day and never upgraded because I never needed to. I feel like upgrading now, just wondering if the same serial would work or whether I'd need to purchase or 'receive' a new serial from Apple.

  • 5800 Calendar issue

    Hi, If the day selected has entries when in calendar view, we have a list of them on the bottom of the screen. If you point at the entry sometimes a shortcut menu is opened sometimes we are directed to the entry view. How on earth this thing function

  • I installed Oracle Repository but the check in/out is disabled

    HI I successfully installed the Oracle Repository for 6i (rel.2). But if I want to check in in forms, the point is deactivated. I followed TAR 132232.1 from metalink, but i doesn't work. Any experiences? Thank you very much Henrik

  • Why SELECT is not part of EJB transaction

    Hi, We observed the peculiar behaviour in 9iAS 9.0.3.1. One of our Bean method has SELECT statement(that run for 15mins - too long) and INSERT statement follows. The transaction-timeout set to 5 mins in SERVER.xml. The server instead of timing out af