Authorisation check: Data not in user buffer

Hi,
I have just cretaed a new role in PFCG and generated it and assigned a user to it. This role only has 2 transactions assigned.
I have created it in development system and tested it in QA system. Everything was fine. I then transported it to production and assigned the user again.
I asked the user to log off and log back on and test the transactions for which i created the role for.
When the user tried, an error was returned with no authorisation to that transaction.
When i go to SU53 to display the authorisation data check for that user, it says beside the Autorisation profile under the Authorisation Data for that user:
"Exists in the master data, but not in the user buffer"
I have searched on this but to no avail. I would have tought that by login off and login back on the user buffer would have been regenerated/updtaed  but the issue remains despite several attempts.
How come did it work in QA and not in Prod. (QA is a copy of Prod)
How do i get to solve this issue?
Thanks in advance.
Regards, Thibault Frenay

Hi Justin,
Thanks for the solution. i too faced same issue and resolved with your solution.
Regards,
Sasi bhushan.

Similar Messages

  • Erroneous word suggested by spell checker. Not in user dictionary.

    A word that is obviously spelled wrong is not recognised by the spell checker, and even suggested as a correction for a similar word.
    — In my case, the word "perzeptueller" (German for "perceptual") gets the red wavy underline.
    — "perzgptueller" is suggested as a correction, which obviously is wrong.
    — "perzgptueller", when typed in, is accepted by the spell checker, which obviously is wrong.
    The – misspelled – suggested word is not in my user dictionaries (~/Library/Spelling). Accordingly, I cannot "Unlearn Spelling" in the context menu.
    An anomaly?

    jv2112 is correct
    https://wiki.archlinux.org/index.php/Abiword
    First line in the installation section....
    Last edited by doug piston (2013-02-13 15:17:29)

  • Network account - Having "user must change password at nex logon checked" - does not allow user to login

    Hi,
    We have several SharePoint 2013 sites which, when the option called "User must change password at next logon" is checked on a user's Active Directory account, the user is not allowed to login to the SharePoint site. Is this something that needs
    to be changed on the SharePoint end to resolve?
    thanks,
    Sherazad.
    Sherazad

    You need to look at a different solution that allows this, e.g. home-grown solution, 3rd party, and I believe Forefront Identity Manager can also accomplish this task. There are quite a few self-service password management solutions out there. Search on
    that term, and you should be able to find something that works for you.
    Trevor Seward
    Follow or contact me at...
    This post is my own opinion and does not necessarily reflect the opinion or view of Microsoft, its employees, or other MVPs.

  • How to check the value from user input in database or not?

    Hello;
    I want to check the value of user input from JtextFiled in my database or not.
    If it is in database, then i will pop up a window to tell us, otherwise, it will tell us it is not in database.
    My problem is my code do not work properly, sometimes, it tell me correct information, sometime it tell wrong information.
    Could anyone help,please.Thanks
    The following code is for check whether the value in database or not, and pop up a window to tell us.
    while( rs.next()) {
                    System.out.println("i am testing");
                    bInt=new Integer(rs.getInt("id"));
                    if(aInt.equals(bInt)){ // If i find the value in data base, set flag to 1.
                  flag=1;  //I set a flag to check whether the id in database or not
                        break;
             System.out.println("falg" + flag);
                if(flag==1){ //?????????????????????
              String remove1 = "DELETE FROM Rental WHERE CustomerID=" + a;
              String remove2 = "DELETE FROM Revenus WHERE CustomerID=" +a;
              String remove3 = "DELETE FROM Customer WHERE id=" +a;
              s.executeUpdate(remove1);
              s.executeUpdate(remove2);
              s.executeUpdate(remove3);
                    JOptionPane.showMessageDialog(null,"you have success delete the value");
              s.close();
             else//???????????????????????????????
                  JOptionPane.showMessageDialog(null,"I could not found the value"); -------------------------------------------------------------------
    My whole program
    import java.sql.*;
    import java.awt.BorderLayout;
    import javax.swing.JFrame;
    import javax.swing.JScrollPane;
    import javax.swing.JTable;
    import javax.swing.JOptionPane;
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    import java.util.*;
    public class DeleteC extends JFrame
        public static int index=0;   
        public static ResultSet rs;
        public static Statement s;
        public static Connection c;
        public static  Object cols[][];
        private static JTable table;
        private static JScrollPane scroller;
        private static int flag=0;
        public DeleteC()
            //information of our connection
            //the url of the database: protocol:subprotocol:subname:computer_name:port:database_name
            String strUrl      = "jdbc:oracle:thin:@augur.scms.waikato.ac.nz:1521:teaching";
            //user name and password
            String strUser      = "xbl1";
            String strPass      = "19681978";
            //try to load the driver
            try {
                Class.forName("oracle.jdbc.driver.OracleDriver");
            catch (ClassNotFoundException e) {
                System.out.println( "Cannot load the Oracle driver. Include it in your classpath.");
                System.exit( -1);
            //a null reference to a Connection object
            c = null;
            try {
                //open a connection to the database
                c = DriverManager.getConnection( strUrl, strUser, strPass);
            catch (SQLException e) {
                System.out.println("Cannot connect to the database. Here is the error:");
                e.printStackTrace();
                System.exit( -1);
           //create a statement object to execute sql statements
        public void getData(String a){
            try {
             //create a statement object to execute sql statements
             s = c.createStatement();
                int index=0;
                Integer aInt= Integer.valueOf(a);
                Integer bInt;
                  //our example query
                String strQuery = "select id from customer";
                //execute the query
                ResultSet rs = s.executeQuery( strQuery);
                //while there are rows in the result set
                while( rs.next()) {
                    System.out.println("i am testing");
                    bInt=new Integer(rs.getInt("id"));
                    if(aInt.equals(bInt)){
                  //JOptionPane.showMessageDialog(null,"I found the value"); 
                  flag=1;
                        break;
             System.out.println("falg" + flag);
                if(flag==1){
              String remove1 = "DELETE FROM Rental WHERE CustomerID=" + a;
              String remove2 = "DELETE FROM Revenus WHERE CustomerID=" +a;
              String remove3 = "DELETE FROM Customer WHERE id=" +a;
              s.executeUpdate(remove1);
              s.executeUpdate(remove2);
              s.executeUpdate(remove3);
                    JOptionPane.showMessageDialog(null,"you have success delete the value");
              s.close();
             else
                  JOptionPane.showMessageDialog(null,"I could not found the value");
            catch (SQLException e) {
                 JOptionPane.showMessageDialog(null,"You may enter wrong id");
    My main program for user input from JTextField.
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    import javax.swing.JOptionPane;
    import java.util.*;
    public class EnterID extends JFrame{
        public JTextField tF1;
        public EnterID enID;
        public String tF1Value;
        private JLabel label1, label2, label3;
        private static JButton button;
        private static ButtonHandler handler;
        private static String aString;
        private static Integer aInteger;
        private static Integer checkV=0;
        public static void main(String args[]){
           EnterID eId= new EnterID();
       public EnterID(){
          handler=new ButtonHandler();
          Container c= getContentPane();
          c.setLayout(new GridLayout(3,1));
          button= new JButton("ok");
          button.addActionListener(handler);
          label1 = new JLabel(" CustomerID, Please");
          label2 = new JLabel("Label2");
          label3 = new JLabel();
          label3.setLayout(new GridLayout(1,1));
          label3.add(button);
          label2.setLayout(new GridLayout(1,1));
          aString = "Enter Id Here";
          tF1 = new JTextField(aString);
          label2.add(tF1);
          c.add(label1);
          c.add(label2);         
          c.add(label3);            
          setSize(150,100);
          setVisible(true);     
       private class ButtonHandler implements ActionListener{
         public void actionPerformed(ActionEvent event){
             tF1Value=tF1.getText();
            //   CheckData cData = new CheckData();
             //  aInteger = Integer.valueOf(tF1Value);      
             if(tF1Value.equals(aString)){
              JOptionPane.showMessageDialog(null,"You didn't type value into box");
              setVisible(false); 
            else {
                DeleteC dC= new DeleteC();
                dC.getData(tF1Value);
                setVisible(false); 
    }

    You may have working code now, but the code you posted is horrible and I'm going to tell you a much much much better approach for the JDBC part. (You should probably isolate your database code from your user interface code as well, but I'm skipping over that structural problem...)
    Do this instead:
        public void getData(String a){
            PreparedStatement p;
            String strQuery = "select count(*) the_count from customer where id = ?";
            try {   
             //create a prepared statement object to execute sql statements, it's better, faster, safer
             p = c.prepareStatement(strQuery);
                // bind the parameter value to the "?"
                p.setInt(1, Integer.parseInt(a) );
                //execute the query
                ResultSet rs = p.executeQuery( );
                // if the query doesn't throw an exception, it will have exactly one row
                rs.next();
                System.out.println("i am testing");
                if (rs.getInt("the_count") > 0 ) {
                // it's there, do what you need to...
             else
                  JOptionPane.showMessageDialog(null,"I could not find the value");
            catch (SQLException e) {
                 // JOptionPane.showMessageDialog(null,"You may enter wrong id");
                 // if you get an exception, something is really wrong, and it's NOT user error
            // always, always, ALWAYS close JDBC resources in a finally block
            finally
                p.close();
        }First, this is simpler and easier to read.
    Second, this retrieves just the needed information, whether or not the id is in the database. Your way will get much much slower as more data goes into the database. My way, if there is an index on the id column, more data doesn;t slow it down very much.
    I've also left some important points in comments.
    No guarantees that there isn't a dumb typo in there; I didn't actually compile it, much less test it. It's at least close though...

  • Acct assignment cat. of item not in user data; Inform system admin

    Hi all,
    We are on a SRM EBP 5.0 project and we are getting the following error when we try to create a purchase order from the purchasers login.
    "Acct assignment cat. of item not in user data; Inform system admin"
    The complete details of the screen shot are as follows:
    The following error text was processed in the system DS1 : Acct assignment cat. of item not in user data; Inform system admin.
    The error occurred on the application server lndnysap1_DS1_01 and in the work process 0 .
    The termination type was: TH_RES_FREE
    The ABAP call stack was:
    Form: ABORT_PO of program SAPLBBP_PO_UI_ITS
    Form: ADD_TO_MSG_LOG of program SAPLBBP_PO_UI_ITS
    Form: ADD_TO_MSG_LOG_MULTI of program SAPLBBP_PO_UI_ITS
    Form: SET_PRICING of program SAPLBBP_PO_UI_ITS
    Form: DETERMINE_EXTERNAL_SCREEN of program SAPLBBP_PO_UI_ITS
    Module: DETERMINE_EXTERNAL_SCREEN of program SAPLBBP_PO_UI_ITS
    We did the following steps :
    Created shopping cart- employer and WF triggered apprd. by manager.
    Purchaser did "Carry Out Sourcing ", and if we say "Create Purchase Order", the PO gets created with a information message that "Incomplete purchase order 11/1 is created "
    When we go to  "Process Purchase Order" for the completion of the same. If we see Follow-on documents "Purchase Order Held" occurs.
    In the tab Item Data details Pricing tab we get this error.
    Do any of the SRM gurus can suggest us what to do?
    In our admin logon it shows
    "Server for pricing is not running. Start Server"  occurs after every run of this process purchase order from the purchasers login, though our IPC is working fine.
    Will be of great help if somebody replies soon.
    Sincerely,
    Sridhar.

    Hi,
    IPC has to be configured.
    Please check the following threads :
    https://forums.sdn.sap.com/click.jspa?searchID=211089&messageID=2714527
    https://forums.sdn.sap.com/click.jspa?searchID=211089&messageID=2715019
    Kind regards,
    Yann

  • User authorisation check in ABAP-HR program

    Hi,
    Can anyone please help me on the following query ?
    I need to check user authorisation in an ABAP report at Object level, filter only relevant records based on the user's authorisation and display appropriate messages.
    The above mentioned report is purely developed by us and is not a copy of any standard report. Hence, kindly help me with your suggestions and opinions.
    Thanks and Regards,
    Manas Menon

    Create an authorisation object (SU21)
    Put an authorisation check for this object in your report (AUTHORITY-CHECK)
    Create a role that contains this object (PFCG)
    Assign this role to all the users who require access to the report (SU01).
    <REMOVED BY MODERATOR>
    Edited by: Alvaro Tejada Galindo on Feb 27, 2008 2:07 PM

  • PC Suite 7 – Data transfer not possible. Check dat...

    When I try to use (open, update, modify etc.) the “contacts list” in PC suite version 7.0.7, I always have the following error: “Data transfer not possible. Check data connection”. Instead the SMS list works fine. My phone is Nokia 6267.
    Anyone has a solution?
    Best Regards
    Bix123

    Hi everyone,
    I had the same problem for months with many PC Suite versions & both XP service packs until I tried a phone setting just for testing and everything worked out fine In my phone (3110c) under Settings / Connectivity / Data Transfer / PC Sync, I filled in a random User name & Password and voila!!! All contacts copied just fine!!! I hope this works with other models with the same menu as well. It looks that it's not a PC Suite problem after all (at least for me that is).
    Hope I helped you guys
    Spiros
    Greece

  • DB Connect: Data displayed without authorisation check

    Hallo Guys,
    I just set up a DB connect for viewing some data from an Oracle database.
    When I want to view 1 table (Source system-> DB-connect->Select database tables -> Display table content), a message is displayed in GREEN 'data is displayed without authorisation check'.
    But still I can't see any data!
    Anyone a suggestion?
    Many thanks
    Kurt

    Hi,
    most likely your table have unsupported field name or data types...
    I suggest creating a simple view with field anmes in upper case and char data types and see the data from this view in order to ensure your connection is fine and the user you are using has all privileges to read this table in Oracle....
    hope this helps....
    Olivier.

  • Rebuild Authorizational data (User Buffer) Dynamically

    We want to rebuild the authorizational data in a user's buffer by adding additional authorizations (auth obj with field values) during the logon procedure (user exit) (by executing a function module which will read a custom table) - however this has to be dynamic, that is we do not want the user to have to logoff.
    Anyhelp is welcomed !
    Mushtaq Mahmood
    Saudi Aramco

    I would be very carefull of this.
    Buffers, like caching, can become invalidated or corrupt so there are mechanisms to refresh or correct them after logon or a period of time has elapsed. This can be as little as 2 minutes appart as far as I know, depending on the memory area.
    Additionally, saving of a change in SU01 etc or the import of a role which IS already assigned to a user will refresh the buffers as well and possibly wipe your dynamic buffer away if it thinks that you have also removed the role (or profile) when saving.
    Depending on how you code this, it might even write the dynamic buffer data to the database, making it permanent and "stranded" data, which you might only be able to remove by synchronizing the tables again and resetting the buffers. If you do that while all your other dynamicly authorized users are logged on, it will cause a mess when they suddenly loose their access.
    I would keep the USRBF3 mechanism and consider scheduling report RSUSR405 regularly to simulate a change incase there is something wrong...
    Being a large organization with many orgs and users to administrate over a possibly large number of different systems, perhaps it is worth your while to take a look into an IdM (Identity Management System).
    I am sure you will find one which is more supported and sustainable than a reconstructed user buffer...
    Cheers,
    Julius
    Edited by: Julius Bussche on May 11, 2009 2:20 PM

  • Contact person Rel.ship Data not getting updated in B2B Web User Mngt

    Hi CRM Gurus,
    Need some help on Web User Management functionality.
    Sub: Contact person Relationship data not getting updated when we change the company (to wich contact person belong to) in ISA CRM 5.0 Web User Management.
    we are currently on CRM ISA 5.0 and using Web User Managment for our B2B scenario. New creation of users is working fine. But when we want to change the company (Sold to pary) for the existing contact person, the relationship data in CRM is not getting updated and the below are the details.
    Contact person No: XXXX (has a Relationship: "Is contac person for YYYY company in CRM)
    Company/Sold to Party: YYYY (has a relationship "Has contact person XXXX in CRM).
    When I chage the contact person's (XXXX) company  from  YYYY to ZZZZ,
    - Relationships of the new assignment for ZZZZ in CRM not getting updated.
    - Old Records in YYYY is not getting deleted (i.e. relationships.
    - There is No relationship data appear in XXXX.
    Appreciate any inputs on the same.
    Thanks,
    Rahul >>>

    Hi Rahul,
    I'd suggest you running a session trace / ABAP debugging to see if some information is not getting passed from the Java stack onto the ABAP stack. An alternate move would be to create a new OSS customer message.
    Cheers,
    Ashok.

  • In FB60, duplicate invoice check does not work if invoice date is different

    In FB60, duplicate invoice check does not work if invoice date is different
    This issue is in FB60 and not MIRO.
    Duplicate invoice check is activated in vendor master.
    I posted an invoice for a vendor with amount $ 100, Reference 1234 Invoice date Nov 01, 2011
    I tried posting for same vendor (and also Co Code) with amount $ 100, Reference 1234 Invoice date Nov 01, 2011. System does not allow. This is fine.
    Now I change only date, from Nov 01 to Nov 02, and system allow posting.
    Why I don't get the error message when date is different ? It should not be treated as a different invoice since invoice reference, amount, Vendor and Co Codes are same.
    SAP documentation says that it checks document date during duplicate invoice check even for FI invoices, then why does it allows in this case.
    Is this a bug ?
    I already tried changing settings in SPRO under LIV, this does not impact FB60 invoice booking.
    Thanks
    Sandeep

    Hi,
    Use BTE - 1110 - (Check on Invoice Duplication) for FB60. Take the help of your ABAPer to make a coding in Function module mentioned in BTE.
    Need to make a copy of the FM and then you can do relevant coding.
    refer the link.
    [http://www.thesapconsultant.com/2006/10/sap-business-transaction-events.html]
    Regards,
    Shridhar

  • Check Box data NOT been collected consistently by Acrobat XI Pro

    Hi folks
    I'm having a real problem with Check Box data not being processed consistently by Acrobat XI Pro. 
    I've got 140 response forms back - and have processed them in one batch or smaller batches of 50 forms.  I can see the various check boxes ticked in the pdf view but on some forms that data does not get exported to the csv or xls.   For other forms it works fine. 
    I've tried various exports, even opening one returned pdf form and exporting that alone.  All with the same result.
    I'm at a loss to the problem. 
    The original form is at:
    http://www.orchardrevival.org.uk/wp-content/uploads/2014/02/Orchard-Inventory-Survey-form- v2-superceded.pdf
    Any pointers would be very welcome. 
    thanks
    Crispin

    Thanks for that George. 
    Corruption:  If the file is corrupted, do you know why Acrobat doesn’t report this?  There was no indication of an error in this respect. 
    Method: I have followed your suggestion. Opened ‘BORD0008checkboxissue.pdf’ in Acrobat ProXI.  Export as .fdf.  Close all files.
    Open a blank form in Acrobat Pro XI.  Import the fdf file. 
    Result;  The newly filled form is still missing checkbox data.  Result file at http://www.orchardrevival.org.uk/?p=798
    [ I also exported as xfdf and xml and csv, and looked at these files in a text editor. Neither had the correct checkbox data exported.  Therefore I think it is clear that Acrobat Pro XI is not exporting checkbox data for this file to any format]
    Does that shed any more light on what might be the problem ?
    thanks
    Crispin
    Background to document:  An outline form was created on Word Mac 2008, and then a pdf generated with the Save As pdf in the Word dialogue (which I think may have been an Mac OS based generator). 
    Then the fillable form was created complete with all 143 fields in Acrobat Pro 8.  Then distributed by email.  So despite the fillable form being created in Acrobat Pro, the PDF Producer is reported as Mac OSX 10.n.n Quartz PDFContext for all forms.  However some of them work, some don’t. Obviously I do not have control over how the forms are filled out there in the wild – even though I’ve asked folk to use Adobe Reader.
    I’ve tried processing results with both Acrobat Pro 8 and XI with similar inconsistent results. (a further interesting issue is that the filename stated in the record is incorrect for that record)

  • Today at 8am est my card was charged but when checking order status it saids expected ship date not available at this time and  it also saids we received your order and it is in process . payment not taken yet

    today at 8am est my card was charged but when checking order status it saids expected ship date not available at this time and  it also saids we received your order and it is in process . payment not taken yet 
    but card was charged full amount and i havent gotten anything else been checking for update all day and got nothing i did order iphone 6 plus at 3:01am and everything went through and i was finsihed at 3:06am

        chriss2633,
    I know how exciting it is to have all the information on the new phone. I did send you a Direct Message. Can you please respond back to that message? Looking forward to hearing back from you.
    KevinR_VZW
    Follow us on Twitter @VZWSupport

  • [SOLVED]Attempt to passivate/activate custom user data not working

    Hi
    I have an ADF BC application written in JDev 10.1.3.3 and our customers are reporting intermittent "Missing param at index xxx" error messages. I gathered that this could be related to passivation/activation problems in our application. I switched the app module jbo.ampool.doampooling=false and found that app failed repeatedly with the error even after patch 6215854.
    I tried converting to 10.1.3.4 and found that the application ran without error even with jbo.ampool.doampooling=false. However on one of the pages I am using a tree object which utilises a View Link Accessor that contains a bind variable. To set the value of the bind variable I am using VO client interface methods as per Steve Muench's example 113
    http://radio.weblogs.com/0118231/stories/2004/09/23/notYetDocumentedAdfSampleApplications.html
    The variable I am passing to the VO client interface methods is stored in a session scope bean and doesn't survive the activation/passivation process.
    So I followed the instructions here
    http://download-uk.oracle.com/docs/html/B25947_01/bcstatemgmt005.htm#sm0495
    and put my value into the user session hash table and try to write that value to the passivation snapshot.
    The problem comes in the activation stage. Processing does not pass the line in bold tags because the length of the nodeList = 0. It seems to find a nodeList from "custId" but its length is zero. Any ideas why that could be?
                if (elem != null) {
                  // 1. Search the element for any <jbo.counter> elements
                   System.out.println("@activate state wanal 1 2");
                  NodeList nl = elem.getElementsByTagName("custId");
                  if (nl != null) {
                    // 2. If any found, loop over the nodes found
                    System.out.println("@activate state wanal 1 3 <"+nl.getLength()+">");
    for (int i=0, length = nl.getLength(); i < length; i++) {
                      // 3. Get first child node of the <jbo.counter> element
                       System.out.println("@activate state wanal 1 4");
                      Node child = nl.item(i).getFirstChild();
                      if (child != null) {
                          System.out.println("@activate state wanal 1 5 <"+child.getNodeValue()+">");
                        // 4. Set the counter value to the activated value
                        getDBTransaction().getSession().getUserData().put("custId",new Integer(child.getNodeValue()));                   
                        break;
                }thanks
    paul
    Message was edited by:
    paul.schweiger

    Thanks Timo that debug output was really useful
    My initial error was that I was setting a property custId and then trying to retrieve custID - oops
    It turns out that the session scope bean data was surviving passivation/activation but the value in the bind variable in the view link accessor was not surviving. I now ensure that the bind variable is set by calling the method that populates the bind varaible on activation and use the data from session user data hash table
    thanks
    paul

  • Setting PC Time and Date as a User, not administrator

    Good Day,
    I'm trying to set the system time and date as a user. Currently running a hardware time server keeping the clocks on the network at the same time. The time is requested from the time sync server at the start of a DAQ run. This is to ensure every computer recording data has the same start time. We are currently changing network permissions and need to make a user run the software. User privelidges don't allow us to change the system time. Is there a way to allow a User to change the system time, or is that left to the Administrator only?
    This function is already implimented on the administrator account and works successfully. Any information would be most appreciated.
    Thanks

    P.C. was mentioned earlier so I will jump in and assume Windows....
    If the system is (made) a member of a Window administrative domain then all this is already in the box, and should be part of a well managed system (I have managed it on a workgroup as well, see the articles below for details). It's one of the things I try to promote as we often have systems switched on for hundreds / thousands of hours and knowing when some guy accidently switched it all off is realy usefull It helps with problems / events that occur outside our control and assists tracking down problems and stops drift / skewing of data.
    Check out the following articles for more information: -
      Basic Operation of the Windows Time Service
      http://support.microsoft.com/kb/q224799/
      Registry entries for the W32 TimeService
      http://support.microsoft.com/default.aspx?scid=kb;en-us;Q223184
      Windows 2000 cannot set the correct time when it connects to multiple NTP servers
      http://support.microsoft.com/?id=837196
    The time service is included on Windows XP as well. For NT4 there is / was a toolkit that allows operation from Microsoft.
    Use the command NET TIME /? (on W2K and XP)
    Either way you will come accross problems at the firewall if you want to get to an external time source. Unless you have on of those nifty little black boxes that pick up a radio signal from one of the available time sources.
    I like Dennis Knutsons idea because you can't always get IT's attention, sometimes they need a little help, thanks again Dennis for another good tip.

Maybe you are looking for

  • Itunes 12 keeps deleting all my whole library!!!

    OK so I bought a new computer and installed the newest version of itunes on to it. Every time I put my old library into the itunes program, get it all organised, put audiobooks in the right place, put music into the right artist folder, put movies in

  • Call function '' in update task - code inside is BDC

    hi to all, in using call function '' in update task the code inside is bdc. is this possible?  my scenario is from VA01 then post billing to VF01, i am using user-exit MV45AFZZ in subroutine userexit_save_document. i need to post billing after va01 s

  • Mac iPhoto to apple tv, what about windows?

    Knowing that we can have a big collection of photos in Mac OS iPhoto's library and share them to apple tv. What about windows? we do have any similar photo sharing application?

  • Cannot set DNS name for ORA APPS

    While installing oracle applications 11.0.2 on windows2000 advance server at the begining of the installation i m prompted with the error : ONE HOUR INSTALL REQUIRES THAT THE TCPIP DOMAIN NAME IS SET, THIS CAN BE SET ON THE DNS PAGE OF THE TCP ID PRO

  • How do I find the podcasts I have subscribed to?

    Since iTunes 10.5.2(1.1) I cannot find the podasts I have downloaded or subscribed to. How do I find them?