Translate function not an option when data is in a Published status

We have found that our user community cannot translate data to a different currency if the data is in a published phase.
Is there a solution to this through user security or some other means? We are using HFM version 9.3.1. Given that a 'translate' does not 'impact' the data, and hence, does not affect the consolidation, I'm not sure why users can't perform the translate task on data, for tax or legal purposes months later for example, even though it has been published. Our users do have this need, and the system will not allow it the way we are using it now. Is there a solution?

"Publish" by design means that the data in the entire value dimension cannot be changed. Therefore your need to translate the data conflicts with the feature design. You will need to perform all your translations and ensure they have passed validation prior to approving and publishing the data. Maybe you need a different process approach.
--Chris                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

Similar Messages

  • I have camera raw installed in my program files but its not an option when i open up photoshop

    I have camera raw installed in my program files but its not an option when i open up photoshop it is not an option in filters where can I find it?

    What exact version of Photoshop?  What exact version of the OS?
    Due to the current unavailability of clairvoyants and mind-readers in the forum, we respectfully request you supply sensible, complete details.
    BOILERPLATE TEXT:
    Note that this is boilerplate text.
    If you give complete and detailed information about your setup and the issue at hand,
    such as your platform (Mac or Win),
    exact versions of your OS, of Photoshop (not just "CS6", but something like CS6v.13.0.6) and of Bridge,
    your settings in Photoshop > Preference > Performance
    the type of file you were working on,
    machine specs, such as total installed RAM, scratch file HDs, total available HD space, video card specs, including total VRAM installed,
    what troubleshooting steps you have taken so far,
    what error message(s) you receive,
    if having issues opening raw files also the exact camera make and model that generated them,
    if you're having printing issues, indicate the exact make and model of your printer, paper size, image dimensions in pixels (so many pixels wide by so many pixels high). if going through a RIP, specify that too.
    etc.,
    someone may be able to help you (not necessarily this poster, who is not a Windows user).
    a screen shot of your settings or of the image could be very helpful too.
    Please read this FAQ for advice on how to ask your questions correctly for quicker and better answers:
    http://forums.adobe.com/thread/419981?tstart=0
    Thanks!

  • Office 2010 build-in translate function not work

    Hi there,
    The Office 2010 translate function is not work on user's desktop, word/outlook/excel, none of them working. It was working before. at that time, I can simply select a word, right click and then select translate, from the right side pane, I can select from
    English to Chinese, and then give me the detail translation information of the word. But suddenly, this function was not working anymore and we did not change anything on MS Office. When I did the same steps, it shows no results were found.
    When I check the translation options, it shows English to Chinese is selected under available language pairs. The weird thing is, when I change the translation setting to from Dutch to Chinese, it translated to Chinese with the very simple result. so any idea
    to get it fixed?
    Regards,
    David

    Hi David,
    Please first make sure your Office 2010 is fully patched. In addition, we can try to run a repair of your Office installtion to check the result:
    http://office.microsoft.com/en-us/powerpoint-help/repair-office-programs-HA010357402.aspx
    Thanks,
    Steve Fan
    TechNet Community Support

  • How to generate data in BPS via function, not having any reference data?

    <b>Hi everybody,
    My approach was to use FM 'API_SEMBPS_SETDATA' but the modified values neighter appear in the layout nor were saved to the infocube after launching 'API_SEMBPS_POST'.</b>
    <a href="http://help.sap.com/saphelp_nw04/helpdata/en/2e/260a8563b111d4b2ea0050dadfb23f/content.htm">Application Programming Interface (API)</a>
    <b>What do I have to take into consideration?
    Is there an other way to generate data in BPS?</b>
    Thanks in advance,
    Zeljko
    Here my findings from debugging it:
    In Step 1 FM reads data from planning level/layout correctly:
    Line     ROW     COL     VALUE     INPUT
    1     0001     0001     11     1
    2     0002     0001     0     1
    3     0003     0001     11     1
    4     0004     0001     11     1
    5     0005     0001     11     1
    6     0006     0001     0     1
    (Input = 1 indicates that Input is allowed in this cell)
    In Step 2 FM modifies the values in all lines to 1:
    Line     ROW     COL     VALUE     INPUT
    1     0001     0001     1     1
    2     0002     0001     1     1
    3     0003     0001     1     1
    4     0004     0001     1     1
    5     0005     0001     1     1
    6     0006     0001     1     1
    Finally the modification is imported to FM 'API_SEMBPS_SETDATA'.
    FUNCTION Z_IPS_BPS_GENERATE_DATA_INIT.
    *"*"Local Interface:
      DATA:  area      TYPE upc_y_area             VALUE 'ZIPM0001',
             plevel    LIKE upc_plevel-plevel      VALUE 'ZPOB0091',
             package   LIKE upc_package-ppackage   VALUE '0-ADHOC',
             layout    LIKE upp_param-param        VALUE 'ZPOL0002',
             read_only LIKE upp_ys_flags-read_only VALUE ' '.
      DATA:  res LIKE sy-subrc, res_mess TYPE bapiret2 OCCURS 0.
      DATA:  lt_head   TYPE upc_ys_api_head OCCURS 0,
             lt_col    TYPE upc_ys_api_col  OCCURS 0,
             lt_row    TYPE upc_ys_api_row  OCCURS 0,
             lt_data   TYPE upc_ys_api_data OCCURS 0,
             lt_data2  TYPE upc_ys_api_data OCCURS 0,
             ls_data   like upc_ys_api_data.
    * 1. reading data from planning level/layout
      CALL FUNCTION 'API_SEMBPS_GETDATA'
        EXPORTING
          i_area      = area
          i_plevel    = plevel
          i_package   = package
          i_layout    = layout
          i_read_only = read_only
        IMPORTING
          e_subrc     = res
        TABLES
          etk_head    = lt_head
          etk_row     = lt_row
          etk_col     = lt_col
          etk_data    = lt_data
          etk_return  = res_mess.
      IF sy-subrc <> 0.
        RETURN.
      ENDIF.
    * 2. modify values in lt_data to 1
      LOOP AT lt_data INTO ls_data .
        ls_data-value = '1'.
        APPEND ls_data TO lt_data2.
      ENDLOOP.
    * 3. set dummy values into planning layout/level
      CALL FUNCTION 'API_SEMBPS_SETDATA'
        EXPORTING
          i_area     = area
          i_plevel   = plevel
          i_package  = package
          i_layout   = layout
        IMPORTING
          e_subrc    = res
        TABLES
          itk_row    = lt_row
          itk_data   = lt_data2
          etk_return = res_mess.
      IF sy-subrc <> 0.
        RETURN.
      ENDIF.
    *CALL FUNCTION 'API_SEMBPS_POST'.
    ENDFUNCTION.

    Hi Vlad,
    I tried both alternatives:
    1. Write data in buffer only, not in database
    2. Write data in buffer and then writes from buffer to database
    How can I check or see the data in the buffer? I tried the following: After executing the FM I opened the layout but the numbers are still the same.

  • FUNCTION NOT IMPLEMENTED error when calling C# method from SAP, why?

    Hi,
    I've build a server stub in order to get SAP calling my own methods that exist in the C# world, for that I developed several methods in a class that extends SAPServer and then implemented them...
    I added the special custom properties needed (Abap Name, length, etc) to the function and to its parameters, I've made the ABAP code required to call it...
    I've checked, every parameters that I place in ABAP (importing, exporting and tables) are also defined in C# (its 53 parameters) with the same name (in C# they are in capital letters and in a diferent order but I tried this before and it didn't matter)...
    The name of the function is the same...
    How can I get the 'FUNCTION NOT IMPLEMENT' error in SAP?
    What's going wrong when I get this error?
    Can anyone tell me?
    Is there any place in this site that has a error description and possible reasons?
    When I get a parameter wrong I get a different error (I tried to make smaller functions and they work fine).
    Thanks for the help,
    Nuno Felino
    Message was edited by: Nuno Felino

    Hi,
    I'll explain what I'm doing:
    - we have a set of services made in a C and VB that are available using an API in C#, these services must be available to SAP. So I have a program that will see what parameters the API service requires and makes a proxy so that SAP can call these services.
    To do this I must map SAP types with C#, build the function signature and then implement it. So I cannot use the wizard to do this
    Now, back to the question, what kind of customer attributes I got wrong to get that exception? The most logic is the AbapName of the function but they are equal (the one called in SAP and the one in the customer attributes of the function)...
    Thanks for the answer, can you give me any more hint?

  • I can´t view all option when I insert chart in PUBLISHER

    Hi , when I insert chart in Publisher, i see this.
    !http://img146.imageshack.us/img146/674/publisheroffice.gif!
    but I cannot drag other columns into graph, i know that other workmate can to see properties,and if he drags other colummns into serie, he cans see two columns, but if I drag a column, replace it.
    both we installed the same products, oracle business intelligence completed,BIPublisherDesktop.exe,OracleBIOffice.exe.
    But we have two diferences,
    1.- He has Vista and I have XP, i think that is not important because Office works separatly.
    2.- He has Office 2003 and I have 2007,*I install Office 2003(but i don´t desistall Office 2007) and nothing.
    If you don´t understand me, and Is necesary for you compression me, I put the Image of my workmate.
    thanks.

    I thought my imported movies were in the movie category as well, yet I couldn't see them in the AppleTV movie listing.  Turned out all my most recent imports were being treated as Home Video.  Consequently, in iTunes I'd see them on the list, but not under the movie tab.
    Easy fix - as the suggestion above recommended, in iTunes right click on the listing - or hold CTL key and select multiple listings - and right click to "Get Info". Under Options tab, change  Media Kind to "Movies".
    This action moves the MP4 from your "Home Videos" folder under iTunes and creates a new Movies sub-folder for the item.
    Problem solved >> 8 movies brought across and now visible in Apple TV directory under Movies.

  • XQuery translate() function not working correctly?

    The following XQuery fragment
    return
    xf:translate($product/@description, "&#174", "®")
    where
    $product/@description
    contains
    Complete Choice&#174 Plan
    returns
    Colete Choice® Pln
    not, as expected
    Complete Choice® Plan

    967660 wrote:
    Hi,
    Another quick question if people don't mind. Bit confused about the trunc date function. I'm following the sql fundamentals exam guide and using their examples:
    select trunc(to_date('02-jun-2009 13:00','dd-mon-yyyy hh24:mi')) day from dual;
    this returns the 2nd of june, as it should, because, as far as i'm aware, leaving the optional variable out defaults the precision to 'day'. but when i explicitly add the variable 'day', as the guide has done with 'week' 'month' and 'year' in the following examples (so i assume this format is correct rather than dd/mon/yyyy), something goes wrong:
    select trunc(to_date('02-jun-2009 13:00','dd-mon-yyyy' hh24:mi'), 'day') day from dual;
    this returns the 31st of may. which is incorrect.
    however replacing 'day' with 'dd' provides the correct answer of the 2nd again.
    this isn't a major issue, it just bothers me that the guide seems (again) to be mistaken, something that is rapidly becoming a trend in their examples. i'd also quite like to know why this is happening, as it will help improve my understanding of sql in general - perhaps there is some sort of default to allow the correct use of the variable 'day' i'm overlooking and that the guide hasn't made clear.
    btw, i'm working in sqlplus - although developer has some odd results too.
    thanks alot,
    nick'day' doesn't trunc to the beginning of the day. It truncates to the first day of the week: in your case 31st May.
    'ddd' truncates to the beginning of the day.
    So, leaving the second parameter out defaults to 'ddd' not 'day'.

  • FDMEE version 11.1.2.3 not dispaying options in Data Management- Set up

    Hello  Experts,
    I am in the process of creating the Hyperion Financial Close Management (FCM) application, particularly Accounts Reconciliation Manager (ARM) version 11.1.2.3 on Windows Server 2008 R2, 64-bit Operating System (RAM is 30GB).
    Now in order to perform all the data related activities on ARM, I am using FDMEE but I am not seeing the “System Settings” tab when I go to Workspace->Navigate->Administer->Data Management->Set up.
    All I am seeing is the “Security Settings” tab and no "System Settings" tab.
    So need your help in finding out what is that I am missing out here.
    Let me know in case you need any additional information from my side.
    Thanks in advance.
    Regards,
    Sumit

    Hi Jeff,
    Yes I am provisioned as an administrator for FDMEE in shared services.
    Still I am not seeing the "System Settings" option.
    Please suggest as what am I doing wrong.

  • Why does my function not return anything when I create as a schema object

    I have user ABC who owns several tables some of which have foreign key constraints.
    I have user XYZ that has been granted access to all tables owned by user ABC.
    When I create a function as user XYZ using following I get no return when I issue:
    select XYZ.ztm_tables_depended_on('ABC', 'A_TABLE_OWNED_BY_ABC') from dual :
    Please see after function definition.
    CREATE OR REPLACE FUNCTION ZTM_TABLES_DEPENDED_ON(p_Owner VARCHAR2, p_Table_Name VARCHAR2) RETURN VARCHAR2 IS
      CURSOR C1 IS
      SELECT OWNER, CONSTRAINT_NAME, R_OWNER, R_CONSTRAINT_NAME
      FROM   ALL_CONSTRAINTS
      WHERE  OWNER           = p_Owner
      AND    TABLE_NAME      = p_Table_Name
      AND    CONSTRAINT_TYPE = 'R'
      ORDER  BY OWNER, CONSTRAINT_NAME, R_OWNER, R_CONSTRAINT_NAME;
      v_Referenced_Owner       VARCHAR2(31);
      v_Ret_Val                VARCHAR2(4000);
      FUNCTION CONSTRAINT_TABLE_NAME(p_Owner VARCHAR2, p_Constraint_Name VARCHAR2) RETURN VARCHAR2 IS
        CURSOR C1 IS
        SELECT TABLE_NAME
        FROM   ALL_CONSTRAINTS
        WHERE  OWNER           = p_Owner
        AND    CONSTRAINT_NAME = p_Constraint_Name;
        v_Ret_Val ALL_CONSTRAINTS.TABLE_NAME%TYPE;
      BEGIN
        OPEN  C1;
        FETCH C1 INTO v_Ret_Val;
        CLOSE C1;
        RETURN v_Ret_Val;
      END;
    BEGIN
      FOR R IN C1 LOOP
        IF (R.OWNER <> R.R_OWNER) THEN v_Referenced_Owner := R.R_OWNER || '.';
        ELSE                           v_Referenced_Owner := NULL;
        END IF;
        v_Ret_Val := v_Ret_Val || ', ' || v_Referenced_Owner || CONSTRAINT_TABLE_NAME (R.R_OWNER, R.R_CONSTRAINT_NAME);
      END LOOP;
      RETURN LTRIM(v_Ret_Val, ', ');
    END;
    But, if I embed the function within an anonymous block as follows, I get results:
    DECLARE
      CURSOR C1 IS
      select owner, table_name
      FROM   all_tables where owner = 'ABC';
      FUNCTION ZTM_TABLES_DEPENDED_ON(p_Owner VARCHAR2, p_Table_Name VARCHAR2) RETURN VARCHAR2 IS
        CURSOR C1 IS
        SELECT OWNER, CONSTRAINT_NAME, R_OWNER, R_CONSTRAINT_NAME
        FROM   ALL_CONSTRAINTS
        WHERE  OWNER           = p_Owner
        AND    TABLE_NAME      = p_Table_Name
        AND    CONSTRAINT_TYPE = 'R'
        ORDER  BY OWNER, CONSTRAINT_NAME, R_OWNER, R_CONSTRAINT_NAME;
        v_Referenced_Owner       VARCHAR2(31);
        v_Ret_Val                VARCHAR2(4000);
        FUNCTION CONSTRAINT_TABLE_NAME(p_Owner VARCHAR2, p_Constraint_Name VARCHAR2) RETURN VARCHAR2 IS
          CURSOR C1 IS
          SELECT TABLE_NAME
          FROM   ALL_CONSTRAINTS
          WHERE  OWNER           = p_Owner
          AND    CONSTRAINT_NAME = p_Constraint_Name;
          v_Ret_Val ALL_CONSTRAINTS.TABLE_NAME%TYPE;
        BEGIN
          OPEN  C1;
          FETCH C1 INTO v_Ret_Val;
          CLOSE C1;
          RETURN v_Ret_Val;
        END;
      BEGIN
        FOR R IN C1 LOOP
          IF (R.OWNER <> R.R_OWNER) THEN v_Referenced_Owner := R.R_OWNER || '.';
          ELSE                           v_Referenced_Owner := NULL;
          END IF;
          v_Ret_Val := v_Ret_Val || ', ' || v_Referenced_Owner || CONSTRAINT_TABLE_NAME (R.R_OWNER, R.R_CONSTRAINT_NAME);
        END LOOP;
        RETURN LTRIM(v_Ret_Val, ', ');
      END;
    BEGIN
      FOR R IN C1 LOOP
        DBMS_OUTPUT.PUT_LINE(ztm_tables_depended_on(R.Owner, R.Table_Name));
      END LOOP;
    END;
    Any ideas what is happening here?

    Any ideas what is happening here?
    Justin explained the probable reason.
    See the 'How Roles Work in PL/SQL Blocks' section of the database security doc for the details
    http://docs.oracle.com/cd/E25054_01/network.1111/e16543/authorization.htm#i1007304
    How Roles Work in PL/SQL Blocks
    The use of roles in a PL/SQL block depends on whether it is an anonymous block or a named block (stored procedure, function, or trigger), and whether it executes with definer's rights or invoker's rights.
    Roles Used in Named Blocks with Definer's Rights
    All roles are disabled in any named PL/SQL block (stored procedure, function, or trigger) that executes with definer's rights. Roles are not used for privilege checking and you cannot set roles within a definer's rights procedure.
    The SESSION_ROLES view shows all roles that are currently enabled. If a named PL/SQL block that executes with definer's rights queries SESSION_ROLES, then the query does not return any rows.
    Roles Used in Named Blocks with Invoker's Rights and Anonymous PL/SQL Blocks
    Named PL/SQL blocks that execute with invoker's rights and anonymous PL/SQL blocks are executed based on privileges granted through enabled roles. Current roles are used for privilege checking within an invoker's rights PL/SQL block. You can use dynamic SQL to set a role in the session.
    See that line starting with 'All roles are disables in any named PL/SQL block'?

  • Audiobook Not an Option when Importing Audio CD's

    I am importing CD's and going through the steps of selecting all the tracks and Joining Tracks and then Submitting CD Name etc...Now when I go into CTR + I and in Info when I go to select AudioBook from the Genre I am not seeing that option. Therefore I can't get any AudioBook imported from an Audio CD to show up under Books in iTunes and eventually my iPhone/iTouch/iPad
    Please Help
    Thanks

    Generally all you need to do is fill in an appropriate Album Artist. For compilation albums where each track is by a different artist you should also set Part of a compilation to Yes. For more details see my article on Grouping Tracks Into Albums, in particular the topic One album, too many covers.
    Please note that giving different primary values the same sort value tends to confuse things and should be avoided. The problems may not be apparent initially but can strike as the library grows, or when content is added to a device.
    tt2

  • I want to Hide Back option but Not Save option when using transaction iview

    Hi,
    Sap Guru's
    I am new in Sap EP.... I am using Transaction iviews in the portal....  I want to Hide Back option but not the Save Option of transactions....I want to hide it from  potal ...... Is it Possible.....
    I have done settings in  SICF Tcode in ECC system as Following:
    ~Webgui = 1
    ~Webgui_simple_toolbar = 160, 2, 4, 16, 32, 64 and some more values... It is hiding the Back option but also the Save Option....
    I also want to disable commands as Ctlr  + S , shift + F3
    Suggest me some solution so that this can be done from portal instead of ECC systems.....
    Thank's in Advance
    Regards-
    Sumeet Sharma

    Hai,
      Kalyan,
    I have done this problem using SICF but instead of Hiding Back option .. I have allowed a user to run only one transaction using an iview....
    Put following parameter in SICF:
    ~webgui = 1
    ~theme = Sl
    ~SINGLETRANSACTION = 1
    By this configuration user will be able to execute only one transaction i.e  assigned him in his transaction iview.... It's an alternate solution of hiding back......
    when user click front screen back option of an transaction iview he will get message ... Logged off....
    Regards-
    Sumeet Sharma

  • In Infopath forms, is GetUserProfileByName not an option when anonymous access is enabled on the server?

    Hi,
    How can you populate an Infopath form with values from the SOAP web service GetUserProfileByName operation when anonymous access is (and has to be) enabled on the server?
    Looks like the facility is redundant when this is the case?

    Hope this post helps
    http://blogs.technet.com/b/anneste/archive/2011/11/02/how-to-create-an-infopath-form-to-auto-populate-data-in-sharepoint-2010.aspx
    Bistesh

  • "None" is not an option when setting up new iTunes account

    When you google the words, 'itunes without a credit card' the first result is: http://support.apple.com/kb/ht2534 which says that all you have to do is download a free app, then agree to the terms and conditions and choose your country then....
    Select "none" as you payment method.
    I've been looking for a solution for this everywhere and I keep finding conflicting reports, but I can tell you with certainty that "none" is not listed when I try this method.
    So with that in mind, can anyone tell me how to set up an itunes account (for my daughter if that makes a difference) without entering a credit card? I don't want my daughter to be able to spend hundreds of pounds in the app store.
    I am so frustrated by this that I will send £10 paypal to the person who gives me the solution.

    My daughter will have to ask me to gift her apps which means I have the control over the spending.
    You can get her an iTunes gift card or set up an allowance.
    The method that I have described is still useful for people who do not want to associate a credit card with an iTunes account
    The method as shown in the article does that also. And your way the user needs an existing iTunes account with a CC linked to it to gift an app.
    since for 69p they are able to get around that
    The idea is that no CC or money is needed to create an account for free apps (and iTunes artwork).
    I have forwarded a suggestion to the forum hosts and asked them to review the article and add to make sure the user logs out when using an iPhone to create a new account (as is shown for the computer).
    However, glad you got it all sorted!

  • Wireless Printer function not working - was when purchased a year ago

    Serial # if needed: [ Moderator edited Serial Number]
    Hi,
    As stated above, I can't print wirelessly as was able to previously.  I am completely at a loss and have tried numerous times to solve this knowing it was working at some time.  I know, definition of insanity with numerous attempts.  Anyway, seems to not be recognizing IP address.  Below error message:
    Unable to Find Printer;
    Paraphrasing
    "The ip address is either incorrect or it is from a different wireless network that has the same name as your network." 
    I have a Netgear router model N300 model # wnr3500L.
    It recognizes an HP printer on the home network.
    I looked at another forum with a Cisco/Linksys router with Windows and the advice was to change ip range on router to
    192.168.1.100 to 192.168.1.150 and change printer to static 192.168.1.10.  I changed printer to latter address just for fun and got error message again.  I am going to go back to original setting which is 10.0.0.9 dynamically given.
    Please help.  Thanks.
    Steve

    BTW, how can I personalize my login handle?  It seems to have named me manifold (student) by default.

  • Standard buttons not displaying ALV when added button by creating PF status

    Hi  All,
    I have added a button(using SE41) in application toolbar for ALV grid using Factory method.But the problem is I am unable to see the standard tool bar buttons(Layout,Download,Mail etc).
    Even I tried adding buttons(using standard FCODES) to the PFstatus.Now the buttons are visible but the functionality is not working for all buttons.Its working only for Graphic and Change layout buttons.
    Can any one suggest...??
    -Phaniram

    Disregard DKS's response...that's the older stuff and you're using NetWeaver ALV.
    In SALV you can cause those buttons to appear, but you may need to copy the SALV_STANDARD GUI from one of the SALV* named program using SE80...sounds like you have that part, but you may need to turn functions ON...
    Perhaps something like this would help:
    data:  gr_f_list  type ref to cl_salv_functions_list,
             gr_alv     type ref to cl_salv_table,
    SALV toolbar & GUI functions
      gr_f_list = gr_alv->get_functions( ).     "Get Toolbar functions
      gr_f_list->set_all( abap_true ).          "All On
      gr_f_list->set_view_lotus( abap_false ).  "Lotus 123 off
      gr_f_list->set_view_excel( abap_false ).  "Excel in Place Off
      gr_f_list->set_graphics( abap_false ).    "Graph tool off
    For undesired buttons, set each tool OFF after turning all ON.

Maybe you are looking for

  • HT4108 Video out on ipad 3

    Hi, i want to make a connection on yamaha keyboard on video out to ipad 3 , can I do that ? Thx.

  • Costing process in payroll

    In oracle payroll i can see 2 processes in the conc. request LOV 1 Costing 2 Costing of Payment kindly help me as to when the two are run.If possible guide me to any docs. Appreciate all help/assistance!

  • What easy to use (MS or third party) tool can I use to create and host a webservice API on a SQL server database

    I'm looking for a (MS or third party) tool with which I can create, publish and host webservice API's on a custom SQL database. For example a API which presents all customers, or validates a user login. I prefer a tool that can be used without .NET p

  • Same functions with different return types in C++

    Normally the following two functions would be considered the same: int getdata ( char *s, int i ) long getdata ( char *s, int i ) Every other compiler we use would resolve both of these to the same function. In fact, it is not valid C++ code otherwis

  • Uptade 9.30 vers 9.32

    Hello, Sorry for my english, i'm french !!! I'm administrator and I use GPO to install adobe Reader. On alls machines i have install by GPO the version 9.30, with with file msi, that i have find on FTp Adobe. I want to install 9.31 but i find on ftp