No. of fortnights ?

Hi All,
I urgently need a query for the following req:
I need a query which gives no. of fortnights between two date ranges. The fortnights should be calculated based on the no. of days in a month ( eg. if no. of days =28 then one fortnight=14
days).
Thanks.

SQL> create table date_parameters
  2  as
  3  select date '2007-01-01' startdate, date '2007-03-17' enddate from dual union all
  4  select date '2007-03-01', date '2007-03-17' from dual union all
  5  select date '2007-03-16', date '2007-03-17' from dual union all
  6  select date '2007-03-18', date '2007-03-17' from dual
  7  /
Tabel is aangemaakt.
SQL> with t as
  2  ( select startdate
  3         , enddate
  4         ,   case
  5             when startdate = trunc(startdate,'mm') then 2
  6             when extract(day from startdate) <= trunc(extract(day from last_day(startdate))/2) then 1
  7             else 0
  8             end
  9           + case
10             when enddate = last_day(enddate) then 2
11             when extract(day from enddate) > trunc(extract(day from last_day(enddate))/2) then 1
12             else 0
13             end
14           + 2 * (trunc(months_between(enddate,startdate)) - 1) a
15      from date_parameters
16  )
17  select startdate
18       , enddate
19       , case sign(a) when - 1 then 0 else a end number_of_fortnights
20    from t
21  /
STARTDATE           ENDDATE                               NUMBER_OF_FORTNIGHTS
01-01-2007 00:00:00 17-03-2007 00:00:00                                      5
01-03-2007 00:00:00 17-03-2007 00:00:00                                      1
16-03-2007 00:00:00 17-03-2007 00:00:00                                      0
18-03-2007 00:00:00 17-03-2007 00:00:00                                      0
4 rijen zijn geselecteerd.

Similar Messages

  • SSRS expression for today,yesterday,Lastweek ,Last fortnight,Last Month, Year to date

    Hi All;
    I have a field called createdon 
    Using this field i need to create the SSRS expression for the table as below 
    Any help much appreciated
    Thanks
    Pradnya07

    use expressions as below
    assuming this is to be done in SSRS
    Today
    =COUNT(IIF(
    DateDiff(DateInterval.Day,Cdate("01/01/1900"),Fields!createdon.Value) = DateDiff(DateInterval.Day,Cdate("01/01/1900"),Now()),Fields!YourRequiredField.Value,Nothing))
    Yesterday
    =COUNT(IIF(
    DateDiff(DateInterval.Day,Cdate("01/01/1900"),Fields!createdon.Value) = DateDiff(DateInterval.Day,Cdate("01/01/1900"),Now())-1,Fields!YourRequiredField.Value,Nothing))
    LastWeek
    =COUNT(IIF(
    DateDiff(DateInterval.Week,Cdate("01/01/1900"),Fields!createdon.Value) = DateDiff(DateInterval.Week,Cdate("01/01/1900"),Now())-1,Fields!YourRequiredField.Value,Nothing))
    Last fortnight
    =COUNT(IIF(
    (DateDiff(DateInterval.Week,Cdate("01/01/1900"),Fields!createdon.Value) = DateDiff(DateInterval.Week,Cdate("01/01/1900"),Now())-1)
    Or (DateDiff(DateInterval.Week,Cdate("01/01/1900"),Fields!createdon.Value) = DateDiff(DateInterval.Week,Cdate("01/01/1900"),Now())-2),Fields!YourRequiredField.Value,Nothing))
    Last Month
    =COUNT(IIF(DateDiff(DateInterval.Month,Cdate("01/01/1900"),Fields!createdon.Value) = DateDiff(DateInterval.Month,Cdate("01/01/1900"),Now())-1,Fields!YourRequiredField.Value,Nothing))
    Year To Date
    =COUNT(IIF(DateDiff(DateInterval.Year,Cdate("01/01/1900"),Fields!createdon.Value) = DateDiff(DateInterval.Year,Cdate("01/01/1900"),Now())
    And
    DateDiff(DateInterval.Day,Cdate("01/01/1900"),Fields!createdon.Value) <= DateDiff(DateInterval.Day,Cdate("01/01/1900"),Now()),Fields!YourRequiredField.Value,Nothing))
    Please Mark This As Answer if it helps to solve the issue Visakh ---------------------------- http://visakhm.blogspot.com/ https://www.facebook.com/VmBlogs

  • Automated Report Generation fortnightly...

    Dear SAP Guru's
    We need to generate few Reports automatically and send the output in Excel format to few user's mailbox through job scheduling on fortnightly basis.
    How could we choose the fortnight period in job scheduling and data selection period in Report?
    for ex. Suppose the job is schedule on 1st feb, the report should fetch the data for the period 16th Jan to 31st Jan.
    And the next time when executed on 15the feb it should fetch the data for the period 1st feb to 15th feb.
    Kindly suggest.. how to go ahead with this requirement?
    Thanks in advance...

    Hi Vikash,
    For Data selection period, you need to make your selection screen variant in such a way that the date fields are populated dynamically. i.e. here it is 15 days increment(Fortnightly).
    After entering your values in selection screen, and press save. Now you will be prompted to give a variant name. Goto the date field make it a dynamic .
    Hope this helps you.
    Regards,
    Subbu.

  • Can Any one helpme with logic for fortnight

    Hi All,
              I need the logic for Fortnight of the year for drill in reports . Can any one help me regarding this.
    Thanks in Advance

    Hi,
    I have built this logic to display the fortnights of current month plz modify this according to you requirmenet.
    Here is the query....
    SELECT case when getdate() between  DATEADD(mm,DATEDIFF(mm,0,GETDATE()),0)
                     and
                     dateadd(dd,14,DATEADD(mm,DATEDIFF(mm,0,GETDATE()),0) ) then 'Fnight-1' else 'Fnight-2' end
    Cheers,
    Ravichandra K

  • Maint. packages daily,weekly,fortnightly,monthly,quarterly,half yearly,year

    Dear All,
    My client wants to maintain only One Maintenance Strategy for all the Equipments.In that they want to keep following Maintenance Packages.
    1) Daily
    2) Weekly
    3) Fortnightly
    4) Monthly
    5) Quarterly (Three monthly)
    6) Half Yearly
    7) Yearly
    While creating Maintenance Strategy I am using Strategy key (A - Scheduling by calendar)
    In this case what will be the Strategy unit considering above packages because each package is different.
    For maintaining Maintenance Package, double click on Packages, here which unit is to be maintained for each above mentioned Packages?
    In the same screen, column Initial & Subseqnt is it necessary to maintain. If I donu2019t maintain this what will happen?
    Kindly suggest me is it possible to maintain above 7 packages in 1 Strategy for carrying out Preventive Maintenance of Equipment.
    Thanks & Regards,
    Sandeep

    Hi,
    For all these you can use day as basic unit, and scheduling indicator as Time- factory calndr,
    1) Daily                                            1 DAY
    2) Weekly                                        7 DAy
    3) Fortnightly                                  15 DAY
    4) Monthly                                      30 DAY
    5) Quarterly (Three monthly)         90 DAY
    6) Half Yearly                               180 DAY
    7) Yearly                                      365 DAY
    It will work with this combination.
    Regards,
    N.Nagaraju

  • Fortnightly utilisation of CIN

    Dear Friends,
    I am not getting the RG registers updated, what could be the causes for this, i have configured all cin customizations, also please guide me how to carryour fortnightly utilisation
    Regards
    Ramesh

    Hi,
    Check with the balances of TDS provisions through FBL3N. Check the PO once.
    Regards,
    Sankar

  • I transferred excell spreadsheet from my old pc to my new mac. I used it last fortnight but now cannot find it. Any Help please.

    I transferred excell spreadsheet from my old pc to my new mac. I used it last fortnight but now cannot find it. Any Help please.
    I have tried Spotlight but to no avail I have an Imac.
    gp140

    The file should still be listed by name under, "Open Recent."

  • Creating fortnightly, 2 weekly, repeated event on iOS 7

    I only started having this problem after upgrading to iOS 7.  I have created fortnightly events many times before on iOS 6.
    I'm trying to create an event that I only needs to be shown one particular day of the week every fortnighly (2 weekly) in my calendar but every time I create it, I get this particular event showing up every day of the week.
    There is a particular selection from "Repeat" : Every Day, Every Week, Every 2 Weeks, Every Month, Every Year.  The only thing that work is EVERY DAY and nothing else!!!
    I tried to create once in a month event for 3 months, same thing happens.  The event shows up everyday of the week till the end of that third months.
    Same goes for every year.
    Is anyone having the same problem??? 
    Please... Apple, sort this problem!

    No, there's no way to change the dot colors in the built in calendar. Fantastical has dots that reflect the color of the calendar. I'm sure other apps do to.
    Best of luck.

  • Date Breakup with Monday First Day of Week for Fortnight

    Post Author: Guggu
    CA Forum: Formula
    Hi,
    I am using a cross tab and I am trying to break up the data by the reporting periods we use, which is 2 weeks and is from Monday of Week 1 to Sunday of week 2.
    I use the GROUP OPTIONS in Crystal report XI and tell it ot show FOR EACH TWO WEEKS but shows the dates with SUNDAY the first day of the week.
    I had some BASIC SYNTAX which used to work in v8.5 and some times works for XI but not this time, so i would like to know if there is a better way to work this out as all my reports need to be done this way.
    The BASIC SYNTAX i had was:
    Dim ew1 As Date Dim rosterdate As Date Dim i As Number Dim fortnight As Date  rosterdate = cdate({?StartDate}) + 70 ew1 = cdate({?StartDate}) ew1 = ew1 + 13 For i = 1 To 10
        If rosterdate <= ew1 Then        fortnight = ew1        formula = fortnight        Exit For     End If
        ew1 = ew1 + 14Next i
    But this is not working anymore.
    Can someone please help.
    Kindest Regards,
    George

    I just realized that the .../CatalystScripts/Java_DatePicker.js was modified on April 1st, but not by me. Did you do that?
    The weekdays were sorted by Monday to Sunday, but the number of the days were not right. So today it showed Tuesday the 6th of April (of course it should be Monday).
    My client just contacted me, that they have a mess with the reservations, people did reservations with the wrong date
    I already changed it to the previous version. I think, I will implement a jQuery-datepicker, the BC datepicker is not flexibel enough.

  • Hi,anybody there?? can i update my new iphone 4s ios to 6.0 coming in this fall? i m taking it in a fortnight,shal i take after ios6.0 release or can i update it later,sumbody help me

    hi,anybody there?? can i update my new iphone 4s ios to 6.0 coming in this fall? i m taking it in a fortnight,shal i take after ios6.0 release or can i update it later,sumbody help me
    tanx in advance

    You can upgrade to the new iOS 6 at anytime after it is released.

  • 9 Day fortnight shift sequence

    Hi PP'ers
    Our company is changing our working pattern to a 9 day fortnight, here we work 1 week with 5 days and one week with 4 days and repeat.. i.e. we have every second friday as a holiday.
    What is the best way to reflect this in SAP such that we cannot plan production on every second friday?
    A shift sequence... I can't seem to find a way to make a sequence longer than 7 days
    A change to the factory calendar?
    any tips appreciated.
    thanks

    dear friend,
    you can create a new holiday calendar and set it in your current factory calendar fixing workdays as well.
    use SCAL
    if you need, you can create a Special rules...
    regards,

  • Email Spend reports to Department heads every fortnight ?

    Hello,
    We are on Oracle R12.
    We wish to monitor our spend diligently so that we do not over spend.
    We are developing several reports using XML publisher.
    Is it possible to schedule these reports such that, the report is emailed to the department heads automatically every fortnight ?
    Please feel free to suggest any other alternative solutions
    Regards,
    Emily

    If you register the report as a concurrent request then you can schedule it as well as notify specific persons in the company.
    There is also the following links
    Re: Setup for sending Concurrent Request output as an e-mail notification
    How Email output of Concurrent Program Request
    Hope it helps

  • Recurring Postings - Fortnight

    Has anyone found a workaround for the fact that there is no fprtnightly option for setting up recurring postings or recurring transactions?
    There is daily - every 1, 2....10 then 15, but no 14, there is weekly, but no option to choose every 2, just which day.

    That would be helpful if I was looking for two monthly, but I need two weekly.
    I have the option of every 10 days, or every 15 days which does seem extremely ridiculous to me..

  • Breakup of date to fortnights

    <p>Hi,</p><p>I am trying to create a cross tab and have to have the start date and the end date (selection criteria), broken up into two week periods.</p><p>In the heading display, it could show the end date of the two week period.</p><p>So when it breaks up the hours worked between these periods it breaks it into the periods by the two week periods.</p><p>Can this be done?</p><p>Cheers,</p><p>George</p>

    Please re-post if this is still an issue and please specify versions

  • Deployable cannot be retrieved from FILE_PROVIDER , stopping. Cause:com.sap.conn.jco.JCoException: (103) JCO_ERROR_LOGON_FAILURE: Name or password is incorrect

    Hi All,
    After two years of CTS+ working without issue, in the last fortnight JCO_ERROR_LOGON_FAILURE has occurred. I have reviewed all the configuration  in document http://scn.sap.com/doc/DOC-30177, and it all looks fine. The user configured also checks out fine as well. The user id that is causing all the trouble is CTS_<SID>. We chose this option so we could determine which user in case of future issues. We have two development paths, Project and BAU. So at anyone time transports that have started in the BAU development system will need to be imported into the Project development system (using transport express) and vice versa.  Attached is the security authentication log from the system showing authentication failure. I have also checked the transport routes defined for the business systems in the SLD and these look fine as well. Roles assigned to the user are SAP_CTS_PLUS,
    SAP_J2EE_ADMIN, SAP_XI_CMS_SERV_USER, SAP_XI_CONFIGURATOR, SAP_XI_DEVELOPER, Z_CTS_PLUS_ADDITIONAL. I have also checked the permissions on the file at the operating system level.
    Any suggestions/advice gratefully received as this really has me scratching my head.
    Log:
    !REPOSITORY_ERROR_CHECK_STACKTRACE!
    [EXCEPTION]
    com.sap.conn.jco.JCoException: (103) JCO_ERROR_LOGON_FAILURE: Name or password is incorrect (repeat logon) on DXI mshost strsap31
    at com.sap.conn.jco.rt.MiddlewareJavaRfc.generateJCoException(MiddlewareJavaRfc.java:662)
    at com.sap.conn.jco.rt.MiddlewareJavaRfc$JavaRfcClient.connect(MiddlewareJavaRfc.java:1364)
    at com.sap.conn.jco.rt.ClientConnection.connect(ClientConnection.java:731)
    at com.sap.conn.jco.rt.PoolingFactory.init(PoolingFactory.java:103)
    at com.sap.conn.jco.rt.ConnectionManager.createFactory(ConnectionManager.java:293)
    at com.sap.conn.jco.rt.DefaultConnectionManager.createFactory(DefaultConnectionManager.java:46)
    at com.sap.conn.jco.rt.ConnectionManager.getFactory(ConnectionManager.java:262)
    at com.sap.conn.jco.rt.RfcDestination.initialize(RfcDestination.java:509)
    at com.sap.conn.jco.rt.RfcDestination.getSystemID(RfcDestination.java:533)
    at com.sap.conn.jco.rt.RepositoryManager.getRepository(RepositoryManager.java:30)
    at com.sap.conn.jco.rt.RfcDestination.getRepository(RfcDestination.java:603)
    at com.sap.conn.jco.rt.RfcDestination.getRepository(RfcDestination.java:27)
    at com.sap.cts.jco.tms.TmsJCoAdapter.initializeJCo(TmsJCoAdapter.java:76)
    at com.sap.cts.jco.tms.TmsJCoAdapter.<init>(TmsJCoAdapter.java:57)
    at com.sap.cts.jco.EpsFileReader.<init>(EpsFileReader.java:76)
    at com.sap.cts.jco.EpsFileReaderController.doImport(EpsFileReaderController.java:90)
    at com.sap.cts.core.ImportManager.execImport(ImportManager.java:102)
    at com.sap.cts.ejb.DeployBean.execImport(DeployBean.java:170)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:597)
    at com.sap.engine.services.ejb3.runtime.impl.RequestInvocationContext.proceedFinal(RequestInvocationContext.java:47)
    at com.sap.engine.services.ejb3.runtime.impl.AbstractInvocationContext.proceed(AbstractInvocationContext.java:166)
    at com.sap.engine.services.ejb3.runtime.impl.Interceptors_StatesTransition.invoke(Interceptors_StatesTransition.java:19)
    at com.sap.engine.services.ejb3.runtime.impl.AbstractInvocationContext.proceed(AbstractInvocationContext.java:177)
    at com.sap.engine.services.ejb3.runtime.impl.Interceptors_Resource.invoke(Interceptors_Resource.java:47)
    at com.sap.engine.services.ejb3.runtime.impl.AbstractInvocationContext.proceed(AbstractInvocationContext.java:177)
    at com.sap.engine.services.ejb3.runtime.impl.Interceptors_Transaction.doWorkWithAttribute(Interceptors_Transaction.java:37)
    at com.sap.engine.services.ejb3.runtime.impl.Interceptors_Transaction.invoke(Interceptors_Transaction.java:21)
    at com.sap.engine.services.ejb3.runtime.impl.AbstractInvocationContext.proceed(AbstractInvocationContext.java:177)
    at com.sap.engine.services.ejb3.runtime.impl.Interceptors_MethodRetry.invoke(Interceptors_MethodRetry.java:46)
    at com.sap.engine.services.ejb3.runtime.impl.AbstractInvocationContext.proceed(AbstractInvocationContext.java:177)
    at com.sap.engine.services.ejb3.runtime.impl.AbstractInvocationContext.proceed(AbstractInvocationContext.java:189)
    at com.sap.engine.services.ejb3.runtime.impl.Interceptors_StatelessInstanceGetter.invoke(Interceptors_StatelessInstanceGetter.java:16)
    at com.sap.engine.services.ejb3.runtime.impl.AbstractInvocationContext.proceed(AbstractInvocationContext.java:177)
    at com.sap.engine.services.ejb3.runtime.impl.Interceptors_SecurityCheck.invoke(Interceptors_SecurityCheck.java:25)
    at com.sap.engine.services.ejb3.runtime.impl.AbstractInvocationContext.proceed(AbstractInvocationContext.java:177)
    at com.sap.engine.services.ejb3.runtime.impl.Interceptors_ExceptionTracer.invoke(Interceptors_ExceptionTracer.java:17)
    at com.sap.engine.services.ejb3.runtime.impl.AbstractInvocationContext.proceed(AbstractInvocationContext.java:177)
    at com.sap.engine.services.ejb3.runtime.impl.DefaultInvocationChainsManager.startChain(DefaultInvocationChainsManager.java:138)
    at com.sap.engine.services.ejb3.webservice.impl.DefaultImplementationContainer.invokeMethod(DefaultImplementationContainer.java:204)
    at com.sap.engine.services.webservices.espbase.server.runtime.RuntimeProcessingEnvironment.process0(RuntimeProcessingEnvironment.java:710)
    at com.sap.engine.services.webservices.espbase.server.runtime.RuntimeProcessingEnvironment.preProcess(RuntimeProcessingEnvironment.java:662)
    at com.sap.engine.services.webservices.espbase.server.runtime.RuntimeProcessingEnvironment.process(RuntimeProcessingEnvironment.java:322)
    at com.sap.engine.services.webservices.runtime.servlet.ServletDispatcherImpl.doPostWOLogging(ServletDispatcherImpl.java:199)
    at com.sap.engine.services.webservices.runtime.servlet.ServletDispatcherImpl.doPost(ServletDispatcherImpl.java:65)
    at com.sap.engine.services.webservices.servlet.SoapServlet.doPost(SoapServlet.java:61)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:754)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:847)
    at com.sap.engine.services.servlets_jsp.server.Invokable.invoke(Invokable.java:152)
    at com.sap.engine.services.servlets_jsp.server.Invokable.invoke(Invokable.java:38)
    at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.runServlet(HttpHandlerImpl.java:457)
    at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.handleRequest(HttpHandlerImpl.java:210)
    at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:441)
    at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:430)
    at com.sap.engine.services.servlets_jsp.filters.DSRWebContainerFilter.process(DSRWebContainerFilter.java:38)
    at com.sap.engine.services.httpserver.chain.AbstractChain.process(AbstractChain.java:78)
    at com.sap.engine.services.servlets_jsp.filters.ServletSelector.process(ServletSelector.java:81)
    at com.sap.engine.services.httpserver.chain.AbstractChain.process(AbstractChain.java:78)
    at com.sap.engine.services.servlets_jsp.filters.ApplicationSelector.process(ApplicationSelector.java:276)
    at com.sap.engine.services.httpserver.chain.AbstractChain.process(AbstractChain.java:78)
    at com.sap.engine.services.httpserver.filters.WebContainerInvoker.process(WebContainerInvoker.java:81)
    at com.sap.engine.services.httpserver.chain.HostFilter.process(HostFilter.java:9)
    at com.sap.engine.services.httpserver.chain.AbstractChain.process(AbstractChain.java:78)
    at com.sap.engine.services.httpserver.filters.ResponseLogWriter.process(ResponseLogWriter.java:60)
    at com.sap.engine.services.httpserver.chain.HostFilter.process(HostFilter.java:9)
    at com.sap.engine.services.httpserver.chain.AbstractChain.process(AbstractChain.java:78)
    at com.sap.engine.services.httpserver.filters.DefineHostFilter.process(DefineHostFilter.java:27)
    at com.sap.engine.services.httpserver.chain.ServerFilter.process(ServerFilter.java:12)
    at com.sap.engine.services.httpserver.chain.AbstractChain.process(AbstractChain.java:78)
    at com.sap.engine.services.httpserver.filters.MonitoringFilter.process(MonitoringFilter.java:29)
    at com.sap.engine.services.httpserver.chain.ServerFilter.process(ServerFilter.java:12)
    at com.sap.engine.services.httpserver.chain.AbstractChain.process(AbstractChain.java:78)
    at com.sap.engine.services.httpserver.filters.SessionSizeFilter.process(SessionSizeFilter.java:26)
    at com.sap.engine.services.httpserver.chain.ServerFilter.process(ServerFilter.java:12)
    at com.sap.engine.services.httpserver.chain.AbstractChain.process(AbstractChain.java:78)
    at com.sap.engine.services.httpserver.filters.MemoryStatisticFilter.process(MemoryStatisticFilter.java:57)
    at com.sap.engine.services.httpserver.chain.ServerFilter.process(ServerFilter.java:12)
    at com.sap.engine.services.httpserver.chain.AbstractChain.process(AbstractChain.java:78)
    at com.sap.engine.services.httpserver.filters.DSRHttpFilter.process(DSRHttpFilter.java:43)
    at com.sap.engine.services.httpserver.chain.ServerFilter.process(ServerFilter.java:12)
    at com.sap.engine.services.httpserver.chain.AbstractChain.process(AbstractChain.java:78)
    at com.sap.engine.services.httpserver.server.Processor.chainedRequest(Processor.java:475)
    at com.sap.engine.services.httpserver.server.Processor$FCAProcessorThread.process(Processor.java:269)
    at com.sap.engine.services.httpserver.server.rcm.RequestProcessorThread.run(RequestProcessorThread.java:56)
    at com.sap.engine.core.thread.execution.Executable.run(Executable.java:122)
    at com.sap.engine.core.thread.execution.Executable.run(Executable.java:101)
    at com.sap.engine.core.thread.execution.CentralExecutor$SingleThread.run(CentralExecutor.java:328)
    Caused by: RfcException: [null]
      message: Name or password is incorrect (repeat logon) on DXI mshost strsap31
      Return code: RFC_SYS_EXCEPTION(3)
      error group: 103
      key: RFC_ERROR_LOGON_FAILURE
    at com.sap.conn.rfc.api.RfcApi.RfcOpen(RfcApi.java:219)
    at com.sap.conn.jco.rt.MiddlewareJavaRfc$JavaRfcClient.connect(MiddlewareJavaRfc.java:1331)
    ... 87 more
    Caused by: RfcException: [DXI|strsap31]
      message: Name or password is incorrect (repeat logon)
      Return code: RFC_SYS_EXCEPTION(3)
      error group: 104
      key: RFC_ERROR_SYSTEM_FAILURE
    Exception raised by DXI|strsap31
    at com.sap.conn.rfc.engine.RfcIoOpenCntl.RfcReceive(RfcIoOpenCntl.java:2034)
    at com.sap.conn.rfc.api.RfcApi.RfcOpen(RfcApi.java:187)
    ... 88 more
    Caused by: com.sap.conn.rfc.exceptions.RfcGetException: Name or password is incorrect (repeat logon)
    at com.sap.conn.rfc.engine.RfcImp.ab_rfcerror(RfcImp.java:1157)
    at com.sap.conn.rfc.engine.RfcGet.rfcget_run(RfcGet.java:131)
    at com.sap.conn.rfc.engine.RfcGet.ab_rfcget(RfcGet.java:23)
    at com.sap.conn.rfc.engine.RfcRcv.ab_rfcreceive(RfcRcv.java:33)
    at com.sap.conn.rfc.engine.RfcIoOpenCntl.RfcReceive(RfcIoOpenCntl.java:1981)
    ... 89 more

    User id missing in client 000

Maybe you are looking for