Problem in saving the Rating and Discussion?

hi all,
       I am using EP6 SP16.      
I have enabled Rating service.
But when I give rating to any document or folder by going to details --> collaboration --> Rate this document.
Then when I click on Save button to save the Rating, it gives the message <b>"Rating has not been saved"</b>. Although when I again click on details, rating has been saved there.
So if rating is getting saved there why I am getting the message that "Rating has not been saved"
2. Same Problem I am facing with discussion also, When I start a discussion on any document or folder, it gives a message that "<b>You do not have access permission</b>".
If you have any idea please suggest me how can I solve this problem.
Thanks and Regards,
Mridul

please reply me if any body have any idea.
It is very urgent..

Similar Messages

  • I am using Lightroom 5 and am hapy about it, but recently I hav encountered a problem when trying to edit an image in another program, i.e. Elements. I used the clone tool, saved the result and went back to Lightroom to open the image there. I did find a

    I am using Lightroom 5 and am hapy about it, but recently I hav encountered a problem when trying to edit an image in another program, i.e. Elements. I used the clone tool, saved the result and went back to Lightroom to open the image there. I did find a second copy, but this is identic with the one I already had in Lightroom, and I can see noe result of the clone process.

    At the moment I would say it is uncertain whether Acrobat is completely ignoring the change, or whether the changes you are making aren't affecting the ink density. I have a suggestion for a test you could make to see which is the case.
    When editing in Photoshop just add a box or mark on the image, for your tests.
    - If this box does not appear in Acrobat, you know Acrobat is not seeing the edit
    - If this box does appear in Acrobat, you know the problem is that your tool for changing ink densities is not taking effect.

  • Problem While saving the Invoice

    Dear Experts,
                      I am facing the Problem while Saving the Invoice, In invoice, We assigne the Output as RD00 and Medium as 6 (EDI).
    When we are saving the Invoice, it getting as ' Updated Terminated'. When i found where the Error is coming in SM13, it showing in as Function Module "RV_MESSAGE_UPDATE' & Error Details is 'EAN11 not found for Material'.
                     But in Invoice whatever we enter the Material number, we maintain the EAN11 code. This EAN11 code is seen in MARM & VBRP Table. Unable to find the what the exact error is.
                   please help me to sort this issue, Its business complicated.
    Thanks in Advance,
    Srini

    Hi Asik,
              Thanks for your valuable Message.... I run as you suggested, but the dispatch time i kept as 1 or 2. because the program RSNAST00 is picking the values only for 1 or 2. so i run manually,, as of now the issue is, in the invoice number, for one material number, the Billed quantity is zero, so the UOM is getting as initial. From those vaues we are picking the EAN11 from maram table.
    So, i modify that and run the EDI manually. As of now its working...
              Thanks for your reply,,,
    Regards,
    Srini

  • Rating and labelling images is not working in Photoshop Bridge CS6. The Rating and Label headings in the Label menu are greyed out. Any ideas for correcting this would be appreciated.

    Any suggestions for restoring the Rating and Label options in Photoshop Bridge CS6 would be appreciated.

    Please post Bridge related queries over at
    http://forums.adobe.com/community/bridge
    Maybe it’s permissions issue … what volume are the files on?

  • Problem in importing the type and jobs

    Hello ,
    Actually i am having problem in importing the jobs and types from a dump ,during import it gives an error for both jobs and types and after the import completes ,when i check the job and type in the schema it does not exist ,,
    Kindly give me any suggestion regarding this problem or suggest me any way through which i can import these jobs and types on the same server but in different schema ..or is there any way though which i can make the dump by using export,in which i can exclude the jobs and types in dump file.
    Plz reply me as soon as possible..
    thanks in advance.
    Regards,
    Omer.

    What can be done in this senario when table name in source and target schema are different.
    What other approaches i can follow.
    Please let me know.

  • Problem in saving the image into SQL database..

    Hello,
    In my application I have to save image file (say jpg) into the database and retrieve back and display it on the applet. I am through with grabbing the pixels of the image & sending the pixel array to the servlet but I am struck in how to store the image into the database and retrieve the same.
    Can anybody please help me in this regard... its really urgent...
    Thanks in advance
    Swarna

    Hello.
    I've been researching this problem (saving images in a MySQL database) in order to accomplish a task I was assigned to. Finally I was able to do it. I'd be glad if it will be of any use.
    First of all: the original question was related to an applet. So, the post from rkippen should be read. It says almost everything, leaving the code job for us. Since I managed to write some code, I'll put it here, but I'm not dealing with the byte transferring issue.
    To obtain a byte array from a file I'd open the file with FileInputStream and use a loop to read bytes from it and save them into a ByteArrayOutputStream object. The ByteArrayOutputStream class has a method named �toByteArray()� which returns an array of bytes (byte [] b = baos.toByteArray()) that can be transferred in a socket connection, as said by rkippen.
    My problem was to save an image captured by a web camera. I had an Image object, which I converted into a byte array and saved into the database. Eventually I had to read the image and show it to the user.
    The table in the MySQL database could be:
    CREATE TABLE  test (
      id int(11) NOT NULL auto_increment,
      img blob NOT NULL,
      PRIMARY KEY  (id)
    )I had problems trying to use the �setBlob� and �getBlob� methods in the Statement object, so I used the �setBytes� and �getBytes� methods . In the end, I liked these methods most because they where more suitable to my application.
    The database operations are:
        public int insertImage(Image image) throws SQLException {
            int id = -1;
            String sql = "insert into test (img) values (?)\n";
            PreparedStatement ps = this.getStatement(sql);  // this method is trivial
            byte [] bytes = this.getBytes(imagem); // * see below
            ps.setBytes(1, bytes);
            ps.executeUpdate();
            id = ps.getGeneratedKeys().getInt(0); //Actually I couldn't make this line work yet.
            return id;
        public Image selectImage(int id) throws SQLException {
            Image img = null;
            String sql = "select img from test where id = ?\n";
            PreparedStatement ps = getStatement(sql);
            ps.setInt(1, id);
            ResultSet rs = ps.executeQuery();
            if (rs.next()) {
                byte [] bytes = rs.getBytes(1);
                img = this.getImage(bytes); // * see below
            return img;
        }* If the bytes are read directly from a file, I think it is not necessary to convert it into an Image. Just send the bytes to the database method would work. On the other hand, if the image read form the DB will be written directly into files, the bytes obtained from rs.getBytes(1) would be enough.
    The image operations are:
        public byte [] getBytes(Image image) {
            ByteArrayOutputStream baos = new ByteArrayOutputStream();
            try {
                ImageIO.write(this.getBufferedImage(image), "JPEG", baos);
            } catch (IOException ex) {
                throw new RuntimeException(ex);
            return baos.toByteArray();
        public Image getImage(byte [] bytes)  {
            Image image = null;
            ByteArrayInputStream bais = new ByteArrayInputStream(bytes);
            try {
                image = ImageIO.read(bais);
            } catch (IOException ex) {
                throw new RuntimeException(ex);
            return image;
        public BufferedImage getBufferedImage(Image image) {
            int width = image.getWidth(null);
            int height = image.getHeight(null);
            BufferedImage bi = new BufferedImage(width, height, BufferedImage.TYPE_INT_RGB);
            Graphics2D g2d = bi.createGraphics();
            g2d.drawImage(image, 0, 0, null);
            return bi;
        }That's it. I hope it is useful.

  • HTML character entities problem in saved regex search and replace query

    I have a many search and replace regular expression queries (.dwr files) that I have saved. I have a problem specifically with saved queries that contain HTML entities such as "& nbsp ; " or "& shy ;" (spaces added otherwise code doesn't render in browser). For example if I use the following search:
    ([\d]{3}& shy ;[\d]{3}& shy ;[\d]{4}|[\d]{3}& nbsp ;[\d]{3}& nbsp ;[\d]{4})
    (which searches for numbers in the 888-555-1234 or 888 555 1234 formats)
    This will work fine if I manually enter it into the search text area. However if I save it to file and reload it, it will no longer work because the &shy; and   characters are now displayed as " " (space) and "-"(shy) rendering the saved query useless as it's no longer searching for the code. I have some fairly long and complex queries and this is becoming a problem.
    Thanks for any help.
    I'm currently using Dreaweaver CS4 at home and CS5.5 at work.

    Thanks for your reply Kenneth, but that is not what I'm trying to accomplish. I'm looking for the HTML entities that exist in the source code which are & shy ; and & nbsp ; (without the spaces). As I mentioned above, if I enter them manually in the search box, I will get the corrrect results. If I save the search and then reload it, the special characters are no longer in HTML and the search is now useless.
    Just for example again
    In an open document in code view insert a number in the format (without the spaces): 888& nbsp;888& nbsp ;8888
    Open a search dialog box and enter (without the spaces): [\d]{3}& nbsp ;[\d]{3}& nbsp ;[\d]{4}
    The search will find that entry.
    Save search as phone.dwr for example. Then load it and try the search again. It won't work because upon loading the search Dreamweaver replaces the HTML code which was saved with the rendered HTML. So now the search shows up as: [\d]{3} [\d]{3} [\d]{4} which will not find the string with hard coded non-breaking spaces that I'm looking for.
    Basically I want to be able to save a search query for reuse. When I load a search query, I want it to be exactly what I saved, not something that DW has rendered (that doesn't work).

  • Problem in saving the workbook as favourite

    Hi,
    I have a issue around saving the BEx reports as favourites.
    One of our user is not able to save his report in his favourites folder. He was able to do the same before,but now he can't do it anymore.He gets a pop up error message'WDTTREE - type mismatch' type....This is a problem with only few users and not all of them.
    I know we can set the object changeability in RSA1 but that should affect all or none of the users as it is set globally.So,is it possible that I can check it somewhere if that user does have the authorisation for saving the reports as his favourite. There is no direct authorisation problem with his userid as I have checked the SU53 dump also with his logon.
    rgrds
    Umesh
    Message was edited by:
            Umesh  Mehra

    Hi Shabar,
       Am on 3.5 and this note points to 3.0,I guess. Also,as I mentioned,it's a problem with only one user and not with all the users. Rest of the users are ok their favourites.
    rgrds
    Umesh

  • Approvers are not displaying after Saving the SC and re opening SRM 7.0 PCW

    Hi All,
    We have implemented PCW SRM7.0 SC workflow, where we have implemented to ES - /SAPSRM/BD_WF_PROCESS & /SAPSRM/BD_WF_AGENTS ....
    When we are saving any SC and re opening it further then it is not determining any approvers. when I debugged then found that Agents badi implementations are not getting triggered n Due to it no agents are showing up..
    Can any one suggest any inputs on this.
    Thanks
    Devraj

    Hello Nevaeen;
    Thank you for the comments. The problem was a erratic logic in a Z level of approval.
    Here is what I done:
    My requirement was to validate the total value of each line item of the SC and trigger a second step of approval if it exceeded a predefined amount. As you mentioned, the standard BRF's only consider total value of the SC and not the value per line item. I copied the Badi implementation of RR_MANAGER_OF_MANAGER as well since we needed the approver to be the manager of the previous approver level and in the method GET_AREA_TO ITEM_MAP I worked up the logic we needed.  For the first level of approver additionally of the mentioned method i had to re-write the method get_responsible_approvers of a Z class ZCL_WF_AREA_MANAGER (Copy of /SAPSRM/CL_WF_AREA_MANAGER) to get the approver information of the ECC system and in the method GET_AREA_TO ITEM_MAP i split the area of responsibility according to the account assignment  ( so it was 1 badi implementation for each level of approval).
    Kind regards
    Cristian R.

  • RoboHelp  for Word 7 is not saving the rtf and won't compile .hlp

    I use RoboHelp for Word 7 to produce WinHelp files. It's been working fine for several months on this computer.
    Just in the past week, I had an issue with my Word 2007 when trying to open a .doc file. I got the message that the converter nswrd632.wpc wasn't found. After searching on the Microsoft forums, I edited the registry and registered that converter.
    But now (and this may be unconnected to the Word converter message) RH won't save the .docx or .rtf file. Whenever I click Save All, nothing happens. When I click Exit Project, the message comes up about needing to save the files, and I click Yes to All. Nothing happens except the message closing. No files are saved and RH does not exit. The only way I can exit RH is to click No, which of course means my changes aren't saved. I can't save the .docx file through the Word menu, either.
    I also cannot compile the file. Again, no error message, just doesn't compile.
    I have searched the forums for RH for Word, with the result that I've reinstalled RH, made sure the RH add-ins are enabled, and deleted all the .dot files. Nothing is working. I went to Peter Grainge's Snippet 112 and followed the directions there--no change.
    I have found that after making my edits in the Word document, if I manually save the RTF file by going to the Word Save As directory, the edits will be saved and RH will compile the .hlp file - one time.
    Any ideas?

    Hi, I have a nearly identical problem, except my project uses .doc files instead of .rtf files. I was able to solve the "cannot save" problem by following the information below. I still have not resolved the "cannot compile" problem.
    I'm using Windows XP, RH7 Build 100, Office 2007. My project was created using Office 2003 and I did not experience any of these issues until I recently upgraded to Office 2007.
    This fix was sent to me by my group's "tech" guy.
    A number of Adobe RoboHelp for Word 7 users have reported that they cannot save changes or generate an output. The cause has been isolated to the RHComAdd.DLL being disabled.
    Check for that in Word:
    For versions up to 2003 go to Help | About | Disabled Items. If RHComAdd.DLL appears, re-enable it.
    For Word 2007, go to the Office Button | Word Options | Add-ins. Under "Manage" select Disabled Items and click Go. If RHComAdd.DLL appears, highlight it and re-enable it. (THIS IS WHAT I DID)
    Alternatively, you can re-register the DLL. Go to Start | Run and type in the following line, assuming you have installed RoboHelp to the default location.
    regsvr32 "C:\Program Files\Adobe\Adobe RoboHelp 7\RoboHELP\RHComAdd.dll"
    How does this DLL get disabled? The cause has been identified as a Word document being opened in Internet Explorer rather than in Word.
    This problem was fixed in Build 7.0.2.
    Hope this helps you. I'm still working on the compile error.
    -Shannon Mooney

  • Problem in saving the customize infotype data

    Dear All ,
    I created the new infotype with table control, when am going to save data it's only saving the header data means personal no ,begdate and end date my table control data is not going save kindly help me to resolve that question.How i can save data from that  custmize infotype ,And also am not a fully technical guyyy...so help me ....
    It's very important for me ...
    kindly help me .......
    thanks
    sandeep

    Dear Amit ,
                      I don't think that's the issue i craeted two infotype in second infotype i have only fields ,am able to save the data but in other infotypes i have the table control,am not able to save table control data in my PAXXXX table so kindly help or tell me the procedure how we can do.Now hope you understne my problem.
    kindly help me
    sandeep

  • Problem With Saved IR's And CSV Downloads.

    Apex 3.2
    I have found a strange problem.
    I have an interactive report and 2 of the columns (msg and msg_1) are based on the same data.
    One column (msg) is to display in the report and the other (msg_1) for the download. I do this by
    putting conditions on the columns.
    :REQUEST IS NULL OR :REQUEST NOT IN ('CSV') - for report
    :REQUEST IN ('CSV') - for download
    This works well.
    If I take msg out of the report and then save as named report.
    When I export to excel, then msg_1 column no longer appears, which I think is wrong.
    If I put the msg column back into the report and save and export to excel, the msg_1
    is still not there.
    I have put an example of oracle.com
    Workspace: GUSCRIGHTON
    User: [email protected]
    Password: terminator
    Application: 29545 - Template
    Page 1
    Am I doing something wrong or is this a bug
    Gus

    Hi,
    I think it is not bug. You need first remove conditions from both columns and then select those to report.
    Then save default report layout and then set conditions.
    But if user change witch columns are displayed in report your msg_1 column will not be in download.
    Better way archive what you looking for is use CASE WHEN is select e.g.
    CASE WHEN :REQUEST IN ('CSV') THEN
    msg_1
    ELSE
    msg
    END AS msg
    I did add example to your sample in apex.oracle.com
    Regards,
    Jari

  • Problem in saving the WAD template

    Hi gurus,
    I am getting a probelm while saving the WAD template;   error occurred in the BI components on the SAP J2EE Engine

    Hi Karanam,
    Maybe you should check with your BASIS team on the error. Could be a problem with ABAP - JAVA configuration settings on your BI system. If you are on Netweaver BI 7, below notes on compatibility may help:-
    1013369 - SAP NetWeaver 7.0 BI - intermediate Support Packages
    1163789 - NetWeaver 7.0: BI Java Synchronized Patch Delivery Strategy
    1011241 - Patches for NetWeaver 2004s BI Java Support Package
    1072576 - FAQ: BI Java Support Packages/Patches
    1327345 - Patches for NetWeaver 7.01 BI Java Support Package
    1391286 - BI JAVA corrections for SAP EHP1 for NetWeaver 7.0 (7.01)
    --Priya

  • Serious problems using for the Airports and any devices like the new iPod or iPad 3 after installing Airport

    I know this sounds crazy but I recently installed an Airport express and an Airport Extreme, I worked on it for several days and everything seemed to finally working like it should using manual configurations so it is all right as far as function goes. Later on I found out I had to do a restore on my new IPod and the latest iPad. No other changes were made to the system using snow lepoard 10.6. I tried for several days to restore these devices with no explanation of the problem. I could not use wi-fi or cellular to update any of the devices. Don't ask me why but I shut the computer down and removed every usb device except for the wireless key board that came with the latest iMac system. I made sure everything was the latest version of my applications. It did not affect my DSL or connection to the internet. I even removed the thunderbolt cable so I had 1 usb connection to the computer. The system was setup just like it came out of the box. I brought up iTunes and connected the USB cable to the iPad and selected restore. I had used iCloud to back everything up when I first bought the iPad and iPod. I also made sure iOS 6 was installed. I clicked restore and it loaded without any problem in just a few seconds without having to sync anything. I checked when it was done and it worked exactly like it did when I first bought them from Apple. The only strange thing that happened was I purchased a brand new generation iPod from Apple (which was made in China). I had not installed any apps for several weeks and had no problem with them. This seems crazy to me that you would have to reset he computer to it's original setup in order to restore the latest iPad and iPod software and devices. The only item that I did not have any problem with was the iPhone. Has anyone had this problem? If so how did you deal with it. Was it the airports, made in China the new iOS or the new iTunes that is causing this? gillie70

    Try a reboot of your ipad. Hold the Sleep/Wake button and Home button simulataneously. Keep holding, ignoring the red slider, until the Apple logo appears. Release the buttons and let the ipad restart. A reboot often fixes numerous problems.
    Also are you aware that by suncing with a different computer it is likely the personal stuff you had on your ipad from your imac will be removed?
    The ipad is designed to sync with only one device.

  • Problem after saving the billing document

    HELLO SD GURUS
    WHEN I SAVE THE BILLING DOUCUMENT (F2)...IT HAS SAVED...BUT ITS NOT GOING TO ACCOUNTS.....IN VFO2 T.CODE WHEN I
    RELEASE TO ACCOUNTS IT SHOWING LIKE...ACCOUNT TYPE  D IS NOT DEFINED FOR DOCUMENT TYPE RE
    WHAT DOES IT MEAN FRIENDS
    ANY IDEA PLZ SUGGEST ME....
    THANKING YOU
    REGARDS
    RAM

    Dear Ram,
    Don't post the question in capital letters.
    Coming to your post,go to T.code VOFA select your document type there in General control tab you can find
    Document Type  here give the " D" and try to post the accounts.
    Couldn't able to find the solution take the help of FI consultant ask them which accounting doc type they created for that billing type,and assign the same and try.
    For standard procedure it is in blank if you defined your own in that case you have to specify the accounting document type. 
    Check and revert
    Regards
    Ram

Maybe you are looking for

  • Retrieving multiselect values from database

    Hi, I have a multiselect list of companies names for a user. An application user can belong to one or more company. The application user gets to see data in the application based on the company/companies that he belongs to. When a user belongs to mor

  • Button in form don't work in browser

    Hi, We have few pdf files who have some form button. With this button's we can go to different other pdf file. this button's are use to navigate between PDF files. Since Adobe reader DC, with the new plugin in the browser, this button's have no actio

  • Reg an Error: no function with name 'CURRENT_RECORD' exists in this scope

    Hi All, I am getting the following error when i try using Set_Item_Instance_Property for assigning a visual attribute to an item. This is the code. I have replaced Display_Item with Set_Item_Instance_Property for setting the visual attribute. --DISPL

  • [SOLVED] Agar - OpenGL widget toolkit

    Agar is a set of cross-platform libraries written in C/C++/Ada for graphical applications. The main library of the distribution is a widget toolkit, Agar-GUI. Agar is open source, released under a revised BSD license. http://libagar.org/ There is alr

  • Updating the BPM workspace view based on the number of instances in view

    Hi All, We are using ALBPM 6.0.5 enterprise with Weblogic 10 server. We have a requirement to update dynamically the view name in the left side panel in BPM workspace. Based on the number of instances created, the view(view name ABC) should carry som