Problem in Write authorisation

Hi,
How to change my own authorisation . I have 'admin' auth but no 'Wtite' auth. Please advise on how to get the 'Write' authorisation so that my name appears in task list in CATS.
With regards,
Mrinal

Hi Mrinal,
You cannot change your own authorizations (it seems you created the project->Admin).
Admin auth. is prior to Write auth. This means you already have Write authorization (by inheritance), even if you only see a radio button in front of Admin.
And the task worklist is built based on the task assignment, not on the project authorizations.
BR
Matthias

Similar Messages

  • Problem in write content in excel

    Hi All,
    Please help to resolve the problem while write the content in the excel.
    By reading the cursor we get the data, then iterate the value and append in the stringbuilder(data is single record about the user access permission) each record is differentiate by adding new line character. After append the data in stringbuilder, using Filewriter create a .csv file
    code
    writer = new BufferedWriter(new FileWriter(strDestinationFilePath.trim()));
    writer.write( strFileContent.toString() );
    it create the .csv file. when i try to open file it shows following message
    File not loaded completely
    when i click show details button, it show message as
    This error is usually encountered when an attempt to open a file with more than 65,536 rows or 256 columns is made. Excel is limited to 65,536 rows of data and 256 columns per worksheet. You can have many worksheets with this number of rows and columns, but they are usually capable of fitting into one workbook (file). The number of worksheets you can have per workbook is limited only by the amount of available memory your system has. By default, Excel can manage 3 worksheets, more if there is available memory to support the quantity of data.
    Truncation of rows or columns in excess of the limit is automatic and is not configurable. This issue can usually be remedied by opening the source file with a text editor, such as Microsoft Office Word, and then saving the file off into
    Edited by: sunRP on Nov 18, 2009 10:16 PM

    says it all, really...
    I wonder why you think we can help you if you can't even understand that highly detailed error message which tells you EXACTLY what the problem is.

  • I am having some problem to write র্যা (ro-a jofola akar) in indesign

    I am having some problem to write র্যা in indesign... I am not being able to write it there, where as it's possible in MS word. Can anyone suggest me what to do?

    Ar you using a font that has the required glyphs? Do you have the correct language assigned to the text (language is a character-level attribute, it is NOT set by choosing a dictionary in the prefs)? Is one of the World Ready composers turned on?
    What is happening when you try?

  • Servlet I/O Stream problem: cannot write into file, error 500

    I am a new Java developer and now, I am facing a problem regarding the error 500. I try to grab records from a table with a date as a constraint. There are two servlets involed: a) saveRecord and b) getRecord. Servlet getRecord will grab data from a database while another servlet, saveRecord will get the data from servlet getRecord and save it into a file. The codes are as below:
    =========================================================================================================================================
    // Servlet Name : saveRecord
    BufferedInputStream instr     = null;
    BufferedOutputStream outstr     = null;
    PostMethod http_post          = null;
    http_post = new PostMethod("getRecord");
    http_client.executeMethod(http_post);
    instr     = new BufferedInputStream(http_post.getResponseBodyAsStream());
    outstr     = new BufferedOutputStream(new FileOutputStream("c:\student.csv"), false));
    int byte_at;
    while (-1 != (byte_at = instr.read())) {
         outstr.write(byte_at);
    =========================================================================================================================================
    // Servlet Name : getRecord
    ServletOutputStream out     = response.getOutputStream();
    StringBuffer str_buf     = new StringBuffer();
    str_buf = generateStudentAc();
    out = response.getOutputStream();
    FileStream(out, response, str_buf);
    // Function Called
    private StringBuffer generateStudentAc() {
         StringBuffer str_buf = new StringBuffer();
         String date = "2000-01-01";
         statement = connection.createStatement();
         resultset = statement.executeQuery("SELECT NAME, ADDRESS FROM STUDENT WHERE DATE>'" + date + "';
         // Write column headers               
    str_buf.append("NAME,ADDRESS");
    String data_row;
    while (resultset.next()) {
              data_row = "\n";
              data_row += "\"" + resultset.getString("STUDENT") + "\"";
              data_row += ",\"" + resultset.getString("ADDRESS") + "\"";
              // Write row
              str_buf.append(data_row);
         return str_buf;
    // Function called
    private void FileStream(ServletOutputStream out, HttpServletResponse response, StringBuffer str_buf) {
         BufferedOutputStream buf_out = null;
    // Create input/output streams
         buf_out     = new BufferedOutputStream(out);
         int length     = str_buf.length();
         // Read/Write
         for (int i = 0; i < length; i++) {
              buf_out.write(str_buf.charAt(i));
    =========================================================================================================================================
    Then, the result will be post back to a JSP page. It didn't work when the records in database growing bigger ( > 100 000 records) but works nice while the records are still in a small quantities ( < 20 000 records). It seems that no record can be inserted into the file and the JSP page becomes blank. When I opened the csv file, I found a message"Error 500:" inside it.
    Hope you all experts can help to figure out this problem. TQ

    I am amatuer in Java Programming, so I don't know how to implement serializable interface but I will look through it.
    However, as I mention before, the code run perfectly if there are not much records un the table. But once there are more and more table added in (> 1000 000 records) in the table, it becomes unstable - sometime it works but most of the time it doesn't. So, I didn't find any different event I replaced the code with String date = "=2000-01-01".
    Anyway, thanks for your help.

  • Problem with Write To Measurement File Express VI not writing to file if file was deleted after the first call (7.1)

    I'm using the Express Write to LabVIEW Measurement File in LV7.1.
    I have it set to "Save to one file"  and have tried both "Overwrite file" and "Using next available file name" for the "If a file already exists" conditions.
    The path/filename is passed into the function.
    It works fine the first time around.  If the file is deleted before the function is called again, an error occurs since LV is unable to find the file.
    I have had to stop and re-run my program in order to write to use the function again.
    Since I am able to delete the file I assume it was closed but it seems like LV expects it to be there, even though the function was supposed to create/open/close the file...  Is there any way to reset this without stopping/restarting the program?
    Since my application creates several files (only one using the Express VI) I am checking for the filenames and requiring that they be deleted (or a new filename be used) before acquiring data.  Everything has worked great, except for the Express VI.
    Thank you,
    David

    Ok, I've edited the VI you posted to reproduce my error (this time with 8.0). 
    I added a "master stop" and "start log" button.  To demonstrate my problem:
    1.  Run the VI
    2.  Click "START LOGGING" - c:\test.txt is created
    3.  Click "STOP" - c:\test.txt is closed
    4.  Delete the file c:\test.txt with Windows shell or explorer
    5.  Click "START LGGING" - a new c:\test.txt file should be created but instead an error is raised in the Write LabVIEW Measurement File function.
    Any ideas?
    Thanks,
    Dave
    Attachments:
    Write LV Meas File 2.vi ‏96 KB

  • Problem enabling Write Back

    I am having a problem getting the INSERT statement to execute in my writeback setup.
    I am trying to set this up on the standard EMP table. I created an additional table to store writeback comments related to the EMP table. The Write Back table has columns EMP_ID, USER (from BI), DATE, and COMMENTS.
    My problem is that if I try to enter comments for an employee where the comments is already blank, it doesn't process the insert statement I specified, it tries to run the UPDATE statement. I verified this in NQQuery.log.
    Out of curiosity, I manually entered a record into the write back table and tried to change the value in my write back field in BI, and it worked - because it's only looking at the update statement for some reason, so that part is fine. It just seems to be completely ignoring the insert statement.
    I tried to remove the UPDATE statement to see if it would recognize my insert statement, but it gave an error when I tried that:
    State: HY000. Code: 10058. [NQODBC] [SQL_STATE: HY000] [nQSError: 10058] A general error has occurred. [nQSError: 27024] The EXECUTE PHYSICAL statement must specify a physical SQL statement to execute. (HY000)
    Here is my XML template for writeback:
    <?xml version="1.0" encoding="utf-8" ?>
    <WebMessageTables xmlns:sawm="com.siebel.analytics.web/message/v1">
         <WebMessageTable lang="en-us" system="WriteBack" table="Messages">
              <WebMessage name="SetEmpComments">
                   <XML>
                        <writeBack connectionPool="Writeback Connection Pool">
                             <insert>INSERT INTO EMP_WB_TEST
                             VALUES('@{c3}',SYSDATE,'@{c4}','@{c1}')</insert>
                             <update>UPDATE EMP_WB_TEST SET dt_crte=SYSDATE, user_name='@{c4}', comments='@{c1}' WHERE empno='@{c3}'</update>
                        </writeBack>
                   </XML>
              </WebMessage>
         </WebMessageTable>
    </WebMessageTables>

    Just a wild quess - are your values listed in the order corresponding to the columns order in the write back table ?
    What if you rewrite your insert as
    <insert>INSERT INTO EMP_WB_TEST(empno,dt_crte,user_name,comments)
    VALUES('@{c3}',SYSDATE,'@{c4}','@{c1}')</insert>?
    Best regards
    Maxim

  • Screen exit for co11n and problems in writting the PBO and PAI Logic ?

    Hi People,
    I am developing a screen exit for transaction co11n. I have found the exit ( CONFPP07 ) ... I created a project and have
    assigned this exit and activated the project. I have created a field named SHIFT  on clicking this field i have to give three
    possible values (a,b,c  ) and i have to store these values in some table .......... now my problem is in which include i
    have to write PBO and PAI logic ... should i have to write pbo logic in the include provided in the exit
    EXIT_SAPLCORU_S_100 and PAI in EXIT_SAPLCORU_S_101.......or .........Can any tel me what should i have to do to
    meet the requirements... and in which structure i have to add this field so that it gets stored in some table.
    Thanks in Advance.

    Hi,
    Use the includes in the program SAPLXCOF given in CONFPP07 Exit.
    You may use include zxcofzzz ( for Subprograms and Modules )
    by creating it upon double click.
    Regards,
    Wajid Hussain P.

  • Problem in hierarchy authorisation

    Dear all, I have two questions now regarding as the hierarchy authorisation:
    1, As you know the infoObject 0TCTAUTHH should be actived and allowed to be authorised? How do I know that  is already activated?
    And how to activated it?
    2, When I define the authorisation for the hierarchy, in the option "Type of authorisation". I don't understand the use of "2". Can anybody explain it to me?
    Thanks!

    Hi,
    I tried ur sugesstion but the same problem persists.i tried it in other way by giving the unit price at the item master level itself.in such case the unit price field in the PO displays the value.But the TAB pointer jumps to the next row directly instead of moving to the Tax Code Field in the PO.it means it doesn't allow me to enter the tax code.I think the problem is due to mistake in setting user authorisation.Could u clear me.
    Regards,
    Badri.

  • Problem while writting routine in transfer rules

    Hi All,
    I am assigning the routine 'Fill Partner Cost center from partner objects' to the infoobject '0PART_CCTR'.
    In the transfer rules I create a routine for the '0PART_CCTR' but then it prompts to select any field /infoobject. The problem is the infoobject '0PART_CCTR' is not there in the selection and if I choose all the fields then while saving it gives error.
    Can anybody help me out please.
    Regards,
    Sushmita

    check ur datasource is active or not......also if its active is it having all the fields which you want in ur routine..if not then u can't write the routine for it...
    Now since ur writing transfer routine..most probably ur laoding from source system r/3 right?
    So u won't have infoobject in ur source fields..u will find fields like matnr etc(source system fields name..which u have to map with infoobjects in ur transfer rule..).is it true???
    Regards
    RK

  • Problem to write urdu paragraph in PhotoShop cs4,cs5,cs6.

    Hi All,
    Calling out for help from #Pakistan here
    I want to write #urdu paragraph in Photoshop cs4,cs5 and cs6 or in any support version. please guide me with tutorial. have serious problem in this regard.
    Cheers in advance (I hope)
    Shahbaz
    online urdu video tutorial - Online IT Tutor

    nope... this is a known issue for users. Hopefully will be resolved soon (not holding my breath though). Some people have suggested resetting pram, uninstalling flash, quitting Safari, updating java, installing third party mouse driver software etc... but for me nothing has worked yet.
    I have 2 monitors and this happens quite a lot, but ONLY on my iMac monitor. If i move the mouse cursor to my second screen it's visible there, move it back to my iMac screen and it disappears.
    My workaround is to hover over the dock to claim my cursor back, but that is really just an annoying thing to do every 5 mins.
    I am convinced this is a OSX issue but the two companies are just pointing fingers which will not result in any fix any time soon.
    Thinking about selling my two Apple machines because of this bug.

  • Problem with write key VIs (config-file)

    Hi
    My problem is this: when I use the write key VIs to write to an ini-file, the values are not written/updated in the ini-file. Does
    anybody has a solution???
    thank YOU!!!
    Attachments:
    writetest.vi ‏32 KB

    astroboy wrote:
    Hi Dennis, writing key updates or add lines, but the problem is that it also causes all lines to be clumped together, making it unreadable.
    What's the better way?
    Clement
    I was complaining about the poor formatting of the .ini files myself a couple years ago in this thread. http://forums.ni.com/ni/board/message?board.id=170&message.id=273552
    I found the offending piece of code was buried pretty deep in the Config File VI hierarchy.
    One idea is to go back after the file is written and find where all the section headers are and insert your own blank lines.
    Also look at this thread http://forums.ni.com/ni/board/message?board.id=170&view=by_date_ascending&message.id=408776
    You may also want to add kudoes to the config file idea in the Idea board.  http://forums.ni.com/t5/LabVIEW-Idea-Exchange/Comments-in-configuration-file-ini/idi-p/927874#A614 
    Message Edited by Ravens Fan on 09-17-2009 10:29 PM

  • FileWriter Problem, cannot write a file larger than 8K

    Hi,
    My servlet write 2 files. The problem is the second file I wrote cannot exceed 8K
    PrintWriter os = new PrintWriter(new FileWriter("temp\\q0.dat"));
    os.close();
    PrintWriter os2 = new PrintWriter(new FileWriter("temp\\q1.html"));
    I have the following write statement:
    os2.println("<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.0 Transitional//EN\">");
    os2.println("<HTML><HEAD><TITLE> Q1 </TITLE>");
    os2.println("</HEAD><BODY><FORM METHOD=POST ACTION=\"\"><BLOCKQUOTE><TABLE border=\"0\">");
    The problem is if I use this kind of statement, some println statement not appear in the destination file q1.html (those lines at bottom)
    then if I turn these 3 statement and change to 1 print statement, more letter write to q1.html?
    Pls tell me what's wrong with my program! Thank you

    You didn't close the second PrintWriter after you finished using it?

  • NIO problem: multiple write

    Hello.
    I am using a NIO server for my application with a pool of WorkingThreads to handle client requests.
    The read part seems to work fine (I am deregistering the OP_READ interest when I begin to read from the socketchannel and I register it back when I finish processing the data). This way I am able to process data coming in chunks down the stream.
    Now, the problem I have is with writing data back to the client. If I send the data with only 1 socketChannel.write(ByteBuffer) method the client gets it correctly. But if I try to write in a while() loop more messages it happens that the client receives the first chunk correctly but SOMETIMES it receives rubbish as the next chunks. My guess is that after the first write(), the server may send some zeros to the client just before the next chunk so the client interprets that as valid data.
    I have tried to unregister the key from writing (key.interestOps(key.interestOps() & (~SelectionKey.OP_WRITE))) immediatelly after I've done a write() and reregister it for writing just before I want to send the data but this didn't help. I'm sure this is solvable but I haven't met anywhere code that deals with writing more than 1 buffer (like writing a big file for example).
    Any help would be very much appreciated.
    Thank you.
    Bogdan

    Thank you for replying, ejp, but it seems that what you said is not quite true. Here is my send method:
    public void send(SelectionKey key) {
         try {
              if (sendMessages.size() != 0) {
                   String message = null;
                   while (sendMessages.size() > 0) {
                        synchronized (sendMessages) {
                             message = (String) sendMessages.removeFirst();
                        ByteBuffer theBuffer = ByteBuffer.wrap(message.getBytes());
                        theBuffer.put(message.getBytes());
                        theBuffer.flip();
                        ((SocketChannel) key.channel()).write(theBuffer);
                        theBuffer.flip();
                        log.debug("Sent message:" + decoder.decode(theBuffer));
              key.interestOps(key.interestOps() | SelectionKey.OP_READ);
              key.interestOps(key.interestOps() & (~SelectionKey.OP_WRITE));
         } catch (IOException e) {
              key.cancel();
    }I verify what I send by outputting with the line log.debug("Sent message:" + decoder.decode(theBuffer));The messages are strings which are being taken from a LinkedList. The chunks I'm sending are of size 4096 bytes.
    I forgot to mention that the client uses simple IO (blocking mode). In between the sendings from the server it receives zeros and considers them as part of the message.
    I am using Windows 2000 + JDK 1.4.2_01

  • Data format problem with Write to Spreedsheet File

    I have a problem with the data format with Write to spredsheet file.
    I have an N*3 array, where the 3 elements in each row should has different length. When I used Write to spreedsheet file,
    it can only save the three data in one format. How can I save them in the format of "%0.8f %0.3f %0.2f"?
    Thanks for your help.

    Hi powerplay,
    another solution may be to convert column-wise using "number to fractional string", then interleaving resulting arrays and again using "array to spreadsheet string" (with "space" as separator).
    Many ways lead to Rome
    Best regards,
    GerdW
    CLAD, using 2009SP1 + LV2011SP1 + LV2014SP1 on WinXP+Win7+cRIO
    Kudos are welcome

  • Sata Problem - Read/write

    I've been searching thru the forums and haven't found anyone with a similar problem. Trying to install a new Maxtor 160 Gig SATA HDD. Bios will recognize it and so will Win XP. The problem is I've only been able to tranfer a small amount of files to the drive (20 - 30 meg) before system locks up and drive becomes unuseable. Will ususally get an error in the taskbar notification area stating "WINDOWS - Delayed Write Failed" and that there was a problem transferring data, all data lost. After a computer restart the new drive will not show up in explorer or disk management.
    I've tried all the legacy and native modes, SATA at P0, IDEs at P0. I don't OC. Performance Mode set at slow.
    I've installed Windows with just the SATA drive but it was unstable and eventually after a few restarts loses boot files and will not reboot.
     After getting fed up with it I returned the drive assuming that was the problem but the replacement is no different.
    The only thing I can think of that there is not enough power which would really me off since I bought the new power supply when i upgraded with the motherboard.
    I've included the PSU specs below.
    Any help would be greatly appreciated since I haven't got a clue when it comes to the power requirements.
    THANKS
    SYSTEM:
    P4 2.4Ghz 800FSB HT
    MSI 865PE NEO2 no RAID
    2 x 256 OCZ DDR400 set at 2,4,4,8
    ATI RADEON 9500 PRO 128MB
    MAXTOR 40 AND 120 GIG ATA and 160 GIG SATA
    PLEXTOR 708 DVD/RW
    CREATIVE LIVE 5.1
    BIOS -  1.9
    WIN XP PRO, SP1, ETC
    PSU  -  ISO 450W
    +3.3V = 22A
    +5 V  = 36A
    +12 V = 18A
    Running with 3 case fans plus motherboard and ATI fans

    Thanks for the info.
    I've tried 2 different SATA cables and there's only so much room in a case for keeping cables apart.
    I've got a wireless router in the same room but no wireless card in the PC. Wireless used for a laptop. Can't see how or if that would affect it.
    Turned off the write caching on the disk, still nothing. Have to re-partition and format the drive again to get XP to recognize it. Turned off caching. On restart, once again have problems getting into explorer and if when I do new drive is gone.
    Whenever the SATA drive is connected and not working, the HDD activity light stays on, can shut down but not restart the computer.
    Anyway thanks for your help. Unless you or someone else has anymore suggestions, I going to assume the problem is with the motherboard and return it for a new one.

Maybe you are looking for