Bad date format in generated client API (weblogic server Workshop)

Hello,
i'm making web service client from oracle weblogic workshop.
I have used "clientgen" Ant task to generate the client library.
The WSDL indicates that certain fields are of type xsd:date.
     <xs:complexType name="declarationType">
          <xs:sequence>
               <xs:element ref="directive"/>
               <xs:element ref="deadline"/>
               <xs:element ref="complete"/>
               <xs:element ref="transposition"/>
               <xs:element ref="comment"/>
          </xs:sequence>
     </xs:complexType>
     <xs:element name="deadline" type="xs:date">
          <xs:annotation>
               <xs:documentation>Deadline (date) for executing this directive.</xs:documentation>
          </xs:annotation>
     </xs:element>
So in the API generated, i've a function generated to set the deadline with java.util.Calendar as parameter.
If i construct my message and pass 2010-07-06 to the function that initialise the deadline date(in yyyy-mm-dd)
The web service client sends "2010-07-06+02:00". (because i'm locate in Bruxelles in Belgium)
However, the server expects "2010-07-06". (yyyy-mm-dd)
So how can I do to pass it correctly?
i've tried in a message handler, but i've to sign the body of the message.
So when i modify the body in the handler to format the date, i receive an error from the server because the signature isn't valid.
How can i change the format of the date passe, before signing of the body.
thanks in advance.

By "client's principle", do you mean the identity of the user who got logged
in? You should be able to call HttpServletRequest.getUserPrincipal() or in
EJB land SessionContext.getCallerPrincipal(). Also, if this is the identity
you are interested in you just be able to call the EJB and then use
getCallerPrincipal() as the identity should be propogated across the wire.
- Neil
"Raymond Tiong" <[email protected]> wrote in message
news:[email protected]..
>
I'm posting this at the risk of sounding as if I didn't read thedocumentation
before hand. (Which I've only glanced through to be honest.)
I want to be able to retrieve the SSL information, particularly theclient's principle
in order to pass it to an EJB to retrieve user specific information.
Is this possible? If how, what are the steps in general?
In Workshop, in the JWS file, which api's do I call?
Thanks in advance,
Ray

Similar Messages

  • BAD DATA FORMAT using cl_gui_frontend_services= gui_upload

    Hello SAPients!
    I'm using the method cl_gui_frontend_services=>gui_upload to upload a file to my program like this
    CALL METHOD cl_gui_frontend_services=>gui_upload
        EXPORTING
          filename                = lvs_input_f1
          filetype                = 'ASC'
        CHANGING
          data_tab                = in_rec[]
        EXCEPTIONS
          file_open_error         = 1
          file_read_error         = 2
          no_batch                = 3
          gui_refuse_filetransfer = 4
          invalid_type            = 5
          no_authority            = 6
          unknown_error           = 7
          bad_data_format         = 8
          header_not_allowed      = 9
          separator_not_allowed   = 10
          header_too_long         = 11
          unknown_dp_error        = 12
          access_denied           = 13
          dp_out_of_memory        = 14
          disk_full               = 15
          dp_timeout              = 16
          not_supported_by_gui    = 17
          error_no_gui            = 18
          OTHERS                  = 19.
    The SY-.SUBRC field always returns with a value of 8 (Bad data format?). The thing is that the last field of the structure IN_REC is of type i (integer) and I think this is the problem. I modified the file with a text editor and set the last field with 2, 4, 8 and 16 chars but I always receive the same error. I can't change the last field to char. Does any one have an idea of what is the problem? How can I ensure that the last field have an integer value?
    Thank you.

    Ok, I have modified the code a bit,  you might want to try it.  First upload to a table of type STRING, then move the values to the other internal table.
    report zrich_0001 .
    data: begin of in_rec occurs 0,
             matnr(18),        "Material Number
             bwkey like mbew-bwkey,         " For Plant
             werks like mbew-bwkey,         " Add Plant
             type(2) type c,                " TYPE.
             cname(50) type c,              " Changble Name
             bom(1) type c,                 " BOM Usage
             task(2) type c,                " task type
             verid_nd like ckmlmv001-verid_nd,  "Production Version
             perc(16) type c,               " Percent for Plant1
    * above are user inputs ; below are program flag.
             flag(1) type c,                " Program flag.
             kalnr like ckmlmv001-kalnr,     "
             mix_flag(1) type c,                " Program flag.
             cnt type i,
          end of in_rec.
    data: istr type table of string with header line.
    parameters: p_file type localfile.
    at selection-screen on value-request for p_file.
      data retfiletable type filetable.
      data retrc type sysubrc.
      data retuseraction type i.
      call method cl_gui_frontend_services=>file_open_dialog
        exporting
          multiselection    = abap_false
        changing
          file_table        = retfiletable
          rc                = retrc
          user_action       = retuseraction.
      read table retfiletable into p_file index 1.
    start-of-selection.
      perform open_file.
    *&      Form  OPEN_FILE
    form open_file.
    *------------------------ Begin Change - UN001 ------------------------*
    *  CALL FUNCTION 'WS_UPLOAD'
    *    EXPORTING
    *      filename = input_f1
    *      filetype = 'DAT'
    *    TABLES
    *      data_tab = in_rec.
      data:
        lvs_input_f1 type string.              " To store filename
    *    lit_mat_tbl  TYPE TABLE OF lt_raw_tab, " To store file lines
    *    lwa_mat_tbl  TYPE lt_raw_tab.          " Work area
      lvs_input_f1 = p_file.
    *    lvs_input_f1 = input_f1.
      call method cl_gui_frontend_services=>gui_upload
        exporting
          filename                = lvs_input_f1
          filetype                = 'ASC'
        changing
          data_tab                = istr[]
        exceptions
          file_open_error         = 1
          file_read_error         = 2
          no_batch                = 3
          gui_refuse_filetransfer = 4
          invalid_type            = 5
          no_authority            = 6
          unknown_error           = 7
          bad_data_format         = 8
          header_not_allowed      = 9
          separator_not_allowed   = 10
          header_too_long         = 11
          unknown_dp_error        = 12
          access_denied           = 13
          dp_out_of_memory        = 14
          disk_full               = 15
          dp_timeout              = 16
          others                  = 19.
      if sy-subrc ne 0.
    *    WRITE / text-e01.
        message e000(fb) with text-e01.
      endif.
      loop at istr.
        in_rec = istr.
        append in_rec.
      endloop.
      loop at in_rec.
        write:/ in_rec.
      endloop.
    *------------------------ End Change   - UN001 ------------------------*
    *SKD 08/02/06---------DEVK980441-----------v
      delete in_rec where perc = 0.
    *SKD 08/02/06---------DEVK980441-----------^
    endform.                    "OPEN_FILE
    Regards,
    Rich Heilman

  • Bad date format string in Crystal 2013

    I have a report that I wrote a formula to convert the date from a number to a date recognizable by the end user. It works fine. The user then wanted to add another field to the same report. Same type of deal, so I copied the first formula into a new formula for the second conversion and simply changed the file name that it was pulling from. When I check the formula, it comes back no errors found, but when I insert it into the report, I get an error that says "Bad date format string" it's the exact same formula that runs fine in the field next to it. What am I  missing? The exact formula as used is;
    date(mid(totext({File.name},0,' '),5,2)+'/'+ right(totext({File.Name},0,' ' ),2) + '/' + left(totext({File.Name},0,' '),4)) It is intended to take it from 20140405 to 04/05/2014.
    Any help would be greatly appreciated. As I am new to Crystal reports and by no means a database administrator by trade.
    Thanks
    Bob V.

    hi Bob,
    you can use something like the following
    stringvar s:= '20140405';
    date(s[1 to 4] + '/' + s[5 to 6] + '/' + s[7 to 8])
    and if you want to be safe and use a check, then you can use something this
    stringvar s:= '20140405';
    s:= s[1 to 4] + '/' + s[5 to 6] + '/' + s[7 to 8];
    if isdate(s) then date(s);
    -jamie

  • Handle Received data of Multiple TCP clients on TCP Server by displaying them into Datagrid

    Hello All,
    I have developed a C# based TCP server GUI application which is accepting the data from multiple TCP clients on TCP server.
    The data i am receiving from TCP clients is a 32 bit data. In my application multiple TCP client data goes like this:
    00012331100025123000124510321562
    01112563110002512456012451032125 and so on...
    Now i want those data of the TCP clients to be parsed into 4 bits first and display it in 8 columns (32/4=8) of (say) datagrid as each 4 bit represents some characteristics of the TCP client. The same thing
    should work for next TCP client on second row of datagrid.            
    Can you give me some suggestion or an example how to go about this? Any help would be appreciated.
     Thank you in advance.
    Here is my code for receiving data from multiple TCP clients.
    void m_Terminal_MessageRecived(Socket socket, byte[] buffer)
    string message = ConvertBytesToString(buffer, buffer.Length);
    PublishMessage(listMessages, string.Format("Sockets: {0}", message));
    // Send Echo
    // m_ServerTerminal.DistributeMessage(buffer);
    private string ConvertBytesToString(byte[] bytes, int iRx)
    char[] chars = new char[iRx + 1];
    System.Text.Decoder d = System.Text.Encoding.UTF8.GetDecoder();
    d.GetChars(bytes, 0, iRx, chars, 0);
    string szData = new string(chars);
    return szData;

    Now i want those data of the TCP clients to be parsed into 4 bits first and display it in 8 columns (32/4=8) of (say) datagrid as each 4 bit represents some characteristics of the TCP client. The same thing
    should work for next TCP client on second row of datagrid
    If mean it's a Windows Forms application and you want to display those bits in a DataGridView control, then please see these threads:
    Add row to datagridview
    Programmatically add new row to DataGridView
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • I need  How to retrive data from sap r/3   using weblogic server

    Hi every body .
    I need how to retrieve r/3 data  using BAPI methods
    and using weblogic server
    very critical

    Hai.
    check the links.
    http://www.bea.com/content/news_events/white_papers/BEA_WLP_SAP_Portlets_81.pdf
    http://www.info-sun.com/docs/wp_sapinter.pdf
    regards.
    sowjanya.b

  • Inconsistent date formats between Rich Client and HTML client

    Hey All,
    Just wondering if anyone has come across an issue with inconsistent date formats from a universe based on an MS SSAS 2012 database connection in 4.x?
    The value of the date is returned as a string from the query but the object data type has been changed to a Date object meaning BusinessObjects should convert the string into a date if the format is correct.
    The problem in this is that the date being returned in Rich Client is in dd/MM/yyyy format whereas on the Web Client is in MM/dd/yyyy.
    From the Web Client business objects will return a date, however, it is a mix of MDY and DMY format.
    i.e. 15th of March will be displayed as 15/03/2014
    whereas 12th of March will be displayed as 03/12/2014
    All our application servers are configured for English (Australian) regional settings meaning all dates should be in DMY format.
    The date in the database is stored as a non-ambiguous yyyy-mm-dd format so it appears the variation is occurring somewhere between the database and BusinessObjects for the Web Client based reports only.
    I have also checked the sqlsrv.prm file based format and changed this to DMY but this has also not made a difference.
    The same universe in 3.1 and MS SSAS 2008 works correctly but not this one.

    Hi
    The date in the database is stored as yyyy-mm-dd format.
    As per user request.... Set the date format @ the Business layer level. so it will refelct same as in the WebI.
    Please find the below link. how to use custom Display option.
    BI4.1 Business Layer Enhancements - Create Display Format

  • How to update Data Services (ALDSP 2.5) from WebLogic Server 9.2 correctly?

    Hi,
    I need to update some physical data service in ALDSP 2.5 on WLS 8.1 SP6 (8.1.6) via Static Mediator API from WebLogic Server 9.2 MP2 (9.2.2) application. I have reviewed the article about interoperability of ALDSP 2.5 and WLS 9 here:
    http://edocs.bea.com/aldsp/docs25/appdev/ejbclt.html#wp1090900
    Firstly, I had a problems with the interconnection between 9.2 client and ALDSP 2.5 due to some missed methods/classes. Finally, I've added the following libs to my WLS 9.2.2 pre-classpath in such an order:
    MyDSPProject-ld-client.jar (built with Ant script using XmlBeans 2.0)
    wlsdo.jar (from ALDSP 2.5)
    xbean.jar
    xqrl.jar
    wlxbean.jar
    ld-client.jar (from ALDSP 2.5)
    I do the update in the way shown in attached java file.
    After submit method call, I've got two copies of a new item added in the DB and also an exception that is shown in attached log-file.
    What is the possible cause of this issue?
    I use MySQL DBMS version 5.0.45.
    I've also tried MS SQL 2005 but it simply had the same results.
    DSP audit log is also attached.
    Thank you in advance!
    Best Regards,
    Vitalii Tiutiunnyk

    The problem is that your client is WLS server, and WLS server has network class loading disable (for security), and the result from the call requires a class that is not on the client. The call succeeds, but the the network class load for the result fails, and the WLS 9.2 framework (incorrectly) retries the call (and you get either a duplicate key exception or a second row inserted). Putting the server jar in the client classpath solves the problem.
    If you wanted more information or help, you can contact BEA Customer Support and tell them it is regarding the CR I mentioned.

  • Papi Client:: The WebLogic Server 9.x-style policy is not supported in JAX

    Ive generated a papi WS client using Ant <clientgen>. When I deploy and run it in weblogic 10.3.4 I get this error:
    Caused by: weblogic.wsee.ws.init.WsDeploymentException: The WebLogic Server 9.x-style policy is not supported in JAX-WS web services.
    at weblogic.wsee.security.wssp.deploy.WssDeploymentListener.process(WssDeploymentListener.java:55)
    at weblogic.wsee.jaxws.framework.jaxrpc.TubelineDeploymentListener.createClient(TubelineDeploymentListener.java:56)
    Im setting the username/password using a ClientUNTCredentialProvider:
              BindingProvider bindingProvider = (BindingProvider) port;
              Map<String, Object> requestContext = (Map<String, Object>) bindingProvider.getRequestContext();
              List<CredentialProvider> credentailProviders = new ArrayList<CredentialProvider>();
              credentailProviders.add(new ClientUNTCredentialProvider(credentials.getUserName().getBytes(), credentials
                        .getPassword().getBytes()));
              requestContext.put(WSSecurityContext.CREDENTIAL_PROVIDER_LIST, credentailProviders);
              requestContext.put(BindingProvider.USERNAME_PROPERTY, credentials.getUserName());
              requestContext.put(BindingProvider.PASSWORD_PROPERTY, credentials.getPassword());
    What else do I need to do?

    I have exactly the same problem.
    how you solved this issue?

  • "Bad data format" when reading txt file from the presentation server

    Hello,
    I have a piece of code which reads a txt file from the presentation server to an internal table like below:
    DATA : lv_filename type string.
    lv_filename = 'C:\abap\Test.txt'. "I created a folder called abap under C:\
    CALL method CL_GUI_FRONTEND_SERVICES=>GUI_UPLOAD
    EXPORTING
       FILENAME              = lv_filename
    CHANGING
       DATA_TAB            = lt_tsd. " lt_tab has the exact same fields as the Test.txt's. Test.txt has only one line, tab delimited.
    When running this code, exception BAD_DATA_FORMAT is issued.
    Is it because of the file encoding or delimiter or other reason?
    Thanks,
    Yang

    Hello,
    If its tab delimited then use the has_field_seperator parameter and check
    DATA : lv_filename type string.
    lv_filename = 'C:\abap\Test.txt'. "I created a folder called abap under C:\
    CALL method CL_GUI_FRONTEND_SERVICES=>GUI_UPLOAD
    EXPORTING
       FILENAME                = lv_filename
       FILETYPE                 = 'ASC'
       HAS_FIELD_SEPARATOR          = u2018Xu2019
    CHANGING
       DATA_TAB            = lt_tsd.
    Vikranth

  • Need to POST data from a desktop client to a server.

    Hello all, it's been awhile since I've posted here, so I hope everyone has been doing well.
    I have cross posted this here java - Need to POST data from a client application to my server - Stack Overflow but no answers, and since SO has been extremely slow for the questions I've been asking I am posting here.
    Here is the post:
    I know the title is probably a common question, but I am a bit confused on everything I'm trying to do, so I am trying to piece it together, and figured a common title would be better than a confusing one.
    I am basically developing a web application and one part of that is a file uploader. I am using Apache Commons File Upload via the Streaming API, and that all works fine, except I need to access the file I'm uploading, because that contains data to additional files to upload.  I.e., Read File A, get paths to images, upload images with File A to server and save on server.  The API can be found here http://commons.apache.org/proper/commons-fileupload/streaming.html
    I was told there is a security risk via the web and would be impossible via a browser, since the user needs to select all files to upload, i cannot tell the browser to upload additional files, so I am left with a client side option.
    I am confused if there is a special library I need, or as I have been seeing threads that talk about using the built in UrlConnection Class or http://hc.apache.org/
    I basically need to be able to read the file, which technically gives me a path to a Database on the user's system which I then read to get the additional images.  After I get all of that I then  need to post the data as a multipart form as that is what the FileUpload requires.
    form method="POST" enctype="multipart/form-data" action="fup.cgi">
      File to upload: <input type="file" name="upfile"><br/>
      Notes about the file: <input type="text" name="note"><br/>
      <br/>
      <input type="submit" value="Press"> to upload the file!
    </form>
    This is the example found in the Overview section of the Fileupload which can be accessed from the link above.
    There wouldn't be an issue if the users uploaded all of the data themselves, but since I have to do some of it automatically it causes some "concerns/issues."
    Basically these files are created and packaged from another application, so the images, and the db will always be in the same place, and that file that they are uploading is a file the other program creates, so everything will always be known, I just need to upload it, and then POST it as enctype="multipart/form-data" So that my servlet can read it and save it on my server.
    So I would appreciate it if anyone had any suggestions on where to begin my journey with this.  I have heard of a few applications like curl and wget that are used for this, but those seem to be more C based.  As mentioned earlier it seeems the httpcomponets from apache might work well, but I want to make sure.
    I appreciate all the help, thank you for your time all.

    It's not possible to read from a file without using classes from the core API*. You'll have to get clarification from your instructor as to which classes are and are not allowed.
    [http://java.sun.com/docs/books/tutorial/essential/io/]
    *Unless you write a bunch of JNI code to replicate what the java.io classes are doing.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

  • Using word/excel from java (client or weblogic server)

    Hi everybody,
    i want to use excel / word functionality from java in two different variants:
    -> serverside
    -> clientside
    I tried the weblogic.comc and i got serveral classes but in the remote-package i got only a utitlity-class.
    My knowlege about COM is rather bad.
    Does anybody did this bevor and
    -> can say me, if it is correct, that i only got a utility-class (so how will i use it from the client ?!)
    -> has a example for using Excel / Word from Java in bea weblogic
    -> has a example for using Excel / Word directly in a client (not via rmi)
    Thanks
    Ciao
    Sven

    Sven, This is a really bad idea. Why don't you tell me
    what your trying to do and I wil surely give you a better alternative
    JRadecki
    "Sven Roesner" <[email protected]> wrote:
    >
    Hi everybody,
    i want to use excel / word functionality from java in two different variants:
    -> serverside
    -> clientside
    I tried the weblogic.comc and i got serveral classes but in the remote-package i got only a utitlity-class.
    My knowlege about COM is rather bad.
    Does anybody did this bevor and
    -> can say me, if it is correct, that i only got a utility-class (so how will i use it from the client ?!)
    -> has a example for using Excel / Word from Java in bea weblogic
    -> has a example for using Excel / Word directly in a client (not via rmi)
    Thanks
    Ciao
    Sven

  • Data transfer between C client and Java server

    Hello there
    I am working on a project where I have to develop a Client based on C and Server based on Java. The client can connect to Java server and it then sends a integer/string to Java server. But.. Java server unable to receive that and throws an IOException.
    I use write method to send the integer buffer to the socket.
    int out_buffer = 0;
    int *pbuf;
    pbuf = &out_buffer;
         if (write(acskfd, pbuf, 4)< 0){
                   syslog(LOG_ERR,"Write failed. %s(%d)", strerror(errno), errno);
                   printf("\tCLIENT:\tWrite failed\n");
                   exit(1);
    In Java, i use DatainputStream and readnInt method to read the integer from the stream.
    cl_sock = socket_out.accept();
    DataInputStream sInput =new DataInputStream(cl_sock.getInputStream()) ;
    int cmd = sInput.readInt();
    Am I missing someting.. Any suggestions would be really really helpful.
    Thanks
    Ithaca
    PS: I running both programs in the same machine.
    In C part, I also use host to network byte order conversion (serv_addr.sin_port = htons(portno).

    I would suggest writing a Java client to perform the same tasks as the C client.
    Then if the Java client does, or does not work this can help dteremine which end is at fault.
    Are you flushing your data from the client?

  • Date format in log/error messages with Server Event Log

    Hi :)
    I have some question.
    Current Date is printed at tterrors/ttmesg log files to add with "-showdate" option at $TIMESTEN_HOME/info/ttendaemon.options file.
    But date when the TimesTen Server Event Log output is not displayed.
    How to solve these case?
    ====
    ttmesg.log
    ====
    2010-05-17 09:40:00.11 Info: : 7409: maind: done with request #433.1657
    09:40:00.13 Info: SRV: 31875: EventID=16| Connect succeeded from client: ttwell01 (ttwell01); IP address: 218.234.33.27; Client PID: 31870; DSN: ntsdb; UID: timesten
    2010-05-17 09:40:27.84 Info: : 7409: maind got #434.1658, hello: pid=32076 type=utility payload=%00%00%00%00 protocolID=TimesTen 7.0.5.9.0.tt7059 ident=%00%00%00%00
    ====
    ====
    ttendaemon.options
    ====
    # Commented values are default values
    #-supportlog /home/TimesTen/tt7059/info/ttmesg.log
    #-maxsupportlogfiles 10
    #-maxsupportlogsize 0x100000
    #-userlog /home/TimesTen/tt7059/info/tterrors.log
    #-maxuserlogfiles 10
    #-maxuserlogsize 0x100000
    -showdate
    -verbose
    -oracle_home /home/oracle11g
    # Start the TimesTen OracleConnect GUI
    -webserver
    -server 17593
    ====
    OS
    ====
    Red Hat Enterprise Linux AS release 4 (Nahant Update 5)
    Thanks
    GooGyum

    This is an issue that was discussed internally very recently. BUG 9719650 - -SHOWDATE OPTION NOT ENABLED FOR SRV MESSAGES has been logged to track the issue.

  • Data Level Security from rpd to Weblogic Server

    Hi,
    Req: To implement data level security through weblogic or external authenticator OID
    Current implementation: Created a grop in rpd UserG and configured permission settings with respect to subject area and assigned this group to users.
    such that, When User1 log in he will see his data and when User2 log in repective data
    New implementaion: We have to achive this data level security through weblogic or external authenticator OID
    How to acheive this?
    Thanks in advance!
    Satheeshkumar

    You can choose where to get the groups from either database or any provider and map them to Application roles in EM, but you would have to set up your data restrictions thru Application roles in RPD on your Facts and Dims based on your requirement.
    Now if your looking for bringing External groups using BISQLGroupProvider then refer to:
    How-to: OID Authentication with Groups Stored in an External Database Table - OBIEE 11g ~ Ask John OBIEE - Oracle Busine…
    For database groups with users mapped in it those tables then you can refer to:
    Jonathan's Tech Journey: OBIEE 11g Security part 1
    Hope this helps.
    SVS

  • How to translate the text format while generate report through BI-SERVER.

    THAT IS I LIKE TO TRANSLATE EXCEL DOCUMENT FROM ENGLISH LANGUAGE TO VIETNAMESE LANGUAGE WHILE GENERATING REPORT IN BI-server

    You mean XL is used as a source here for OBIEE. Whatever is the source you need to implement OBIEE Multilingual functionality. Remember there are four types of Multilingual Support in OBIEE:
    - presentation services like Answers, Dashboard links and all
    - Catalog like Report Name, Dashboard Names and all
    - RPD Externalize Strings to see the subject area in required language
    - Data where the reports generated will have data stored in different languages in an extended dimension table.
    You require the 4th type here so you need to maintain a extended dimension table in DB which is used in RPD to be picked up by BI server based on language selected(language id)/WEBLANGUAGE system variable
    Hope this helps..

Maybe you are looking for

  • Upgrading internal HDD on Macbook Pro 13(Unibody)-Mid 2009

    Hi All, I have a 160GB internal hdd on my MBP 13 which i am finding to be pretty low on space. So I am planning to upgrade the internal HDD. I did a lot of reading on the web and looks like there are 3 contenders: 1. WD scorpio blue 500/640/750 GB, 5

  • Percentage calculation in answers

    I have to calculate the % values. I used sum, rsum and % to achieve this. But for some reason I am not able to get the % going. Here is my table with three columns (Used Bin in answers for this requirement) # Days # Persons % Persons < 5 Days 14,090

  • Changes and Logical Delete in View Maintenance

    Hi everybody. I've defined a table view maintenance V_TABLE for T_TABLE, with five fields. One of them is defined as 'R' (not editable field). I defined an event 05 and an event 02 (for create and save) where I move SY-DATUM to the CREATED_DATE or UP

  • How to get the user name from Single Sign On Process?

    Post Author: sasikumar CA Forum: Authentication I am loging in Single Sign On Page. Then it goes to one JSP which lists out some links including InfoView link. While clicking InfoView link, I need to pass user name with the url for authentication. Ho

  • SAP Query format issue (with ABAP list)

    Hi All, I had a requirement to remove all unecessary formatting and text from a SAP query report which can be read by a third party software system. We need only Header line and  report data (spaced by Tab). I have removed all formatting from the rep