Getting date range in Find User Form

Hello experts,Actually my goal is to get list of users having termination date within date range.But here my problem is when i added this business logic in Find user form which does loop on all users i was unable to get the list of users having termination within date range as the termination date of user object is string.
By gettting problem in the above way we tried to query date attribute of the task property of user object which is set with the value of termintion date when the user is created.The task property code is given below
<Properties>
<Property name='tasks'>
<List>
<Object name='Conseco Account Termination Date'>
<Attribute name='date' value='01/10/2008'/>
<Attribute name='task' value='Conseco Account Termination Date'/>
</Object>
<Object name='Sunset Date'>
<Attribute name='date' value='2/22/2008'/>
<Attribute name='task' value='Sunset Date'/>
</Object>
</List>
</Property>
</Properties>
Could anyone help me in referring the date attribute of 'Conseco Account Termination Date' property

Because the date is stored as a string, you'll need to use a different format. Use yyyy/MM/dd. You can use the stringToDate and dateToString methods.

Similar Messages

  • Query in Find User Form

    Find User Form throws a query and return "result" attribute with user's list. Where's this Query?

    Yes, I'd really love to know this too.
    Anybody have an idea where this Query can be found?
    Thanks

  • Filter Data with Date range.Dates are selected in user form

    Does anybody could help me to create a user form, that user could select the date and time from either calendar or other control button (from Userform control Toolbox) and the VBA code would filter the data on Excel SpreadSheet depending on input...
    I want user to specify start time and the end time, that I would know the period of time which is on interest and filter the data depending on inputs...
    This is part of my table on Sheet1:
    ID                     Time
      Products
    ProdNoExit
    8
    04-06-2013 23:00
    15
    1
    8
    04-06-2013 23:30
    205
    1
    8
    05-06-2013 00:00
    235
    1
    8
    05-06-2013 00:30
    587
    1
    8
    05-06-2013 01:00
    874
    1
    8
    05-06-2013 01:30
    155
    1
    8
    05-06-2013 02:00
    150
    1
    8
    05-06-2013 02:30
    258
    1

    How about this?
    Right-click your tab name, and paste this code into the window that opens.
    Option Explicit
    Private Sub Worksheet_Change(ByVal Target As Range)
    If Target.Count > 1 Then Exit Sub
    If Target.Address = "$A$1" Or _
    Target.Address = "$G$1" Then
    Range("Database").AdvancedFilter _
    Action:=xlFilterInPlace, _
    CriteriaRange:=Range("Criteria"), Unique:=False
    End If
    End Sub
    Knowledge is the only thing that I can give you, and still retain, and we are both better off for it.

  • [MDX] Define date range based on user selection

    Hi All,
    I'm trying to define date range (of 3 months) using mdx based on user selection.
    This is what I'm trying to do:
    - If user select 2013, I would like range to be: from
    1 Oct 2013 to 31 Dec 2013
    - If user select Aug 2013, I would like range to be: from
    1 Jun 2013 to 31 Aug 2013
    - If user select 15 Sep 2013, I would like range to be : from
    15 Jul 2013 to 15 Sep 2013
    It is not a problem to get the upper bound of the range like this:
    ClosingPeriod(
    [Date].[Calendar].[Date],
    [Date].[Calendar].CurrentMember
    But I'm not able to get the lower bound of the range:
    OpeningPeriod(
    [Date].[Calendar].[Date],
    ParallelPeriod(
    [Date].[Calendar].[Month Number],
    2,
    ClosingPeriod(
    [Date].[Calendar].[Date],
    [Date].[Calendar].CurrentMember
    Error:If user selection is
    15 Aug 2013, I get
    14 Jun 2013
    If user selection is Apr 2013, I get
    (null)
    And even more strange, if user selection is
    2013, I get 28 Oct 2013
    Any idea of how to solve this ?
    Thanks,
    Guillaume

    Hello Guillaume,
    Can you please check if the following works for you? By the way, the performance will suffer due to all these IIF, the solution is very complex in order to avoid null in ParallelPeriod.
    with member measures.high as MemberToStr(ClosingPeriod(
       [Date].[Calendar].[Date],
       [Date].[Calendar].CurrentMember
    member measures.low as
    MemberToStr(
    iif(ClosingPeriod(
       [Date].[Calendar].[Date],
       [Date].[Calendar].CurrentMember
    ) IS ClosingPeriod(
       [Date].[Calendar].[Date],
       [Date].[Calendar].CurrentMember
    ).Parent.LastChild  --last date of the month
    OpeningPeriod(
       [Date].[Calendar].[Date],
    Ancestor(ClosingPeriod(
       [Date].[Calendar].[Date],
       [Date].[Calendar].CurrentMember
    ), [Date].[Calendar].[Month]).lag(2)
    iif([Date].[Calendar].CurrentMember.level is
    [Date].[Calendar].[Date]
    and
    Right(CSTR([Date].[Calendar].CurrentMember.Properties("KEY0")),4)="0429" --take care of 4/29
    OpeningPeriod(
       [Date].[Calendar].[Date],
    Ancestor(ClosingPeriod(
       [Date].[Calendar].[Date],
       [Date].[Calendar].CurrentMember
    ), [Date].[Calendar].[Month]).lag(2)
    OpeningPeriod(
       [Date].[Calendar].[Date],
       ParallelPeriod(
          [Date].[Calendar].[Month],
          2,
          ClosingPeriod(
             [Date].[Calendar].[Date],
             [Date].[Calendar].CurrentMember
    select  {measures.low,measures.high } on 0
    from [Adventure Works]
    where
    --[Date].[Calendar].[Date].&[20070815]
    --get [Date].[Calendar].[Date].&[20070615]
    --[Date].[Calendar].[Date].&[20070530]
    --get[Date].[Calendar].[Date].&[20070330]
    --[Date].[Calendar].[Date].&[20070429]
    --get [Date].[Calendar].[Date].&[20070201]
    --[Date].[Calendar].[Calendar Year].&[2007]
    --get [Date].[Calendar].[Date].&[20071001]
    --[Date].[Calendar].[Month].&[2007]&[4]
    --get [Date].[Calendar].[Date].&[20070201]
    --[Date].[Calendar].[Month].&[2007]&[5]
    --get [Date].[Calendar].[Date].&[20070301]
    --[Date].[Calendar].[Date].&[20070228]
    --get [Date].[Calendar].[Date].&[20061201]
    --[Date].[Calendar].[Date].&[20070831]
    --get [Date].[Calendar].[Date].&[20070601]
    If this does not work for you, I would suggest opening a ticket with Microsoft Support, with an advisory type of request.
    Hope this helps.
    Thanks.
    Meer Al - MSFT

  • If I give 27 th week of 2007, can I get date range ( any FM is there ?)

    In my selection screen I am giving 27 th week and year 2007,
    I need to know know the date range ( monday to sunday ) for that week .
    For eg. if I give <b>1st</b> week and year <b>2007</b>,
    It should display 01/01/2007 to 07/01/2007 ( like DD/MM/YYYY ).
    is there any function module available to know this ?

    Hi sam ,
    just execute the code by giving date and  see if this works for u ,,
    check with input as 01/01/2007 i hope this will do ..
    parameters : P_DATE LIKE SCAL-DATE.
    DATA : HDATE LIKE SY-DATUM,
           LDATE LIKE SY-DATUM.
    data: WEEKno  LIKE  SCAL-WEEK,
          refmonDAY  LIKE  SY-DATUM,
          REFSUNDAY  LIKE  SY-DATUM.
       CALL FUNCTION 'GET_WEEK_INFO_BASED_ON_DATE'
        EXPORTING
          DATE          = p_date
        IMPORTING
          WEEK          = weekno
          MONDAY        = refmonday
          SUNDAY        = refsunday.
          write:/ 'weeknumber', weekno, 
          write:/ 'monday' ,refmonday.
          write:/  'sunday', refsunday.
    see if this works for u ..
    can you can tell me ur input criteria as how u r passing the date if u r query is not completed ..
    regards,
    vijay

  • How to get date range of Current week

    Hi Gurus,
    I need to create report of current(this) week manual bills created by one user. I have date Field called CREAT_DATE.Based on this date column i need to create report.
    Could anybody help to get this query.
    Example:
    select .....
    from ....
    where
    CREAT_DATE
    Thank You
    Vikram

    It kind of depends on your definition of "current week". If you mean something like the last 7 days, then
    SELECT columns
    FROM table
    WHERE creat_date BETWEEN TRUNC(sysdate - 7) and TRUNC(sysdate +1)would do it.
    If you mean Monday until today, then:
    SELECT columns
    FROM table
    WHERE creat_date BETWEEN NEXT_DAY(TRUNC(sysdate - 7), 'MONDAY') and TRUNC(sysdate +1)Read up on the various date functions for other possibilities.
    TTFN
    John

  • Hyperion Planning customization on getting data from RDBMS posting to form

    Hi, gurus,
    I am having requirement to retrieve some data from RDBMS and put it on a particular form at Hyperion Planning. We had customized a bit on the same form with modifying its jsp file by adding in some access control upon various user login and add graphic icon. Could anyone share some light on this POC and my understanding is the data will go through ODI and pass to a temporary table and then update to the Essbase table, please comment and point me to the reference on Hyperion planning customization.
    Thanks,
    Fei

    Hi,
    You shouldn't need to go down the route of customizing planning, I would say only go down that route if all the options are not feasible.
    In theory you should be able to use ODI to retrieve and transform the data from a relational table, then load it directly into essbase.
    The planning form will query the data in essbase and present the data in the grid.
    Cheers
    John
    http://john-goodwin.blogspot.com/

  • Found Stale Data Exception while Editing User form & process form

    Found Stale Data Exception only when I try to edit a set of 40 users that I created long ago. The other users are fine - they are getting provisioned and created in OIM. Has any body has an idea as to why this error is coming? and how to resolve as it is coming only for a limited set of users. ???
    ERROR [ACTIVE] ExecuteThread: '1' for queue: 'weblogic.kernel.Default (self-tuning)' XELLERATE.WEBAPP - Class/Method: tcManageUserAction/editUser encounter some problems: {1}
    Thor.API.Exceptions.tcStaleDataUpdateException
         at com.thortech.xl.ejb.beansimpl.tcUserOperationsBean.updateUserData(Unknown Source)
         at com.thortech.xl.ejb.beansimpl.tcUserOperationsBean.updateUser(Unknown Source)
         at com.thortech.xl.ejb.beans.tcUserOperationsSession.updateUser(Unknown Source)
         at com.thortech.xl.ejb.beans.tcUserOperations_voj9p2_EOImpl.updateUser(tcUserOperations_voj9p2_EOImpl.java:3474)
         at Thor.API.Operations.tcUserOperationsClient.updateUser(Unknown Source)
         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 Thor.API.Base.SecurityInvocationHandler$1.run(Unknown Source)
         at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
         at weblogic.security.service.SecurityManager.runAs(Unknown Source)
         at weblogic.security.Security.runAs(Security.java:41)
         at Thor.API.Security.LoginHandler.weblogicLoginSession.runAs(Unknown Source)
         at Thor.API.Base.SecurityInvocationHandler.invoke(Unknown Source)
         at $Proxy59.updateUser(Unknown Source)
         at com.thortech.xl.webclient.actions.tcManageUserAction.editUser(Unknown Source)
         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 org.apache.struts.actions.DispatchAction.dispatchMethod(DispatchAction.java:280)
         at com.thortech.xl.webclient.actions.tcLookupDispatchAction.execute(Unknown Source)
         at com.thortech.xl.webclient.actions.tcActionBase.execute(Unknown Source)
         at com.thortech.xl.webclient.actions.tcAction.execute(Unknown Source)
         at org.apache.struts.action.RequestProcessor.processActionPerform(RequestProcessor.java:484)
         at org.apache.struts.action.RequestProcessor.process(RequestProcessor.java:274)
         at org.apache.struts.action.ActionServlet.process(ActionServlet.java:1482)
         at org.apache.struts.action.ActionServlet.doPost(ActionServlet.java:525)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:727)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:820)
         at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:227)
         at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:125)
         at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:292)
         at weblogic.servlet.internal.TailFilter.doFilter(TailFilter.java:26)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:42)
         at com.thortech.xl.webclient.security.SecurityFilter.doFilter(Unknown Source)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:42)
         at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:3496)
         at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
         at weblogic.security.service.SecurityManager.runAs(Unknown Source)
         at weblogic.servlet.internal.WebAppServletContext.securedExecute(WebAppServletContext.java:2180)
         at weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:2086)
         at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1406)
         at weblogic.work.ExecuteThread.execute(ExecuteThread.java:201)
         at weblogic.work.ExecuteThread.run(ExecuteThread.java:173)
    ERROR [ACTIVE] ExecuteThread: '1' for queue: 'weblogic.kernel.Default (self-tuning)' XELLERATE.WEBAPP - Class/Method: tcManageUserAction/editUser encounter some problems: {1}
    Thor.API.Exceptions.tcStaleDataUpdateException
         at com.thortech.xl.ejb.beansimpl.tcUserOperationsBean.updateUserData(Unknown Source)
         at com.thortech.xl.ejb.beansimpl.tcUserOperationsBean.updateUser(Unknown Source)
         at com.thortech.xl.ejb.beans.tcUserOperationsSession.updateUser(Unknown Source)
         at com.thortech.xl.ejb.beans.tcUserOperations_voj9p2_EOImpl.updateUser(tcUserOperations_voj9p2_EOImpl.java:3474)
         at Thor.API.Operations.tcUserOperationsClient.updateUser(Unknown Source)
         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 Thor.API.Base.SecurityInvocationHandler$1.run(Unknown Source)
         at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
         at weblogic.security.service.SecurityManage
    Thanks,
    - oidm

    Stale data exception means something has changed about the user when you are updating them. So if you get a result set that has 50 users in it, then you go through each row and update, you will get this error because you have modified the over all result set.
    You need to do a findUsers for each user row, and then perform the update on that result set. Then move on to the next user and do the same thing. Don't update a result set that has more than 1 row.
    -Kevin

  • Getting data into a standard eBS form from a custom form

    To automatically enter (existing) customer information into a standard eBS form, we've created a custom query forms. This form queries for a customer and places the customer information into some global variables. This works fine.
    Now, this query forms gets called using the zoom button of eBS.
    First, the custom form got called with call_form. This worked, but after returning from the queryform, the toolbar was not as it was (missing some extra buttons, ect).
    We fixed this issue by using (as stated in the developer guide) fnd_function.execute. This restored the correct toolbar, but no data gets returned into the eBS form. With some testing, it seems our custom code in the custom.pll stops working after the call to fnd_function.execute. When I diagnose the global values, they contain the right information. Can somebody suggest a way to let our custom code continue with processing after a call to fnd_function.execute?

    Is there somebody with some insights into this problem?

  • How can I get data from barcode reader to forms

    Hi Experts,
    Forms 6i
    I would like to gather data from barcode reader.
    Any idea if you got please share.
    Thanks in advance.

    Hi,
    I think its working same like keyboard.  Either you type the code manually or you can read it from scanner.  With the help of keyboard you can able to type anything on the cursor position, on the same way the barcode-scanner is also working.  Just like a copy and paste the scanner copies the data from physical device and paste it into your corrent cursor position.  There is no separate program codings needed for this job.

  • How to specify date range in Planning web form?

    Hi,
    I want to specify a Month range in column of Planning 9.3.1 form.
    I thought $forecastmth : Dec would work but it does not.
    I even tried Oct:Dec and it does not work.
    Any suggestions?
    Thanks in Advance

    As of the current version of Planning (11.1.1.3), there is no way to specify a range during the creation of a web input form. You have to add the months you want (in the order you want them) to the form individually. There's no way to add a function that produces a member list, other than the built-in @DESCENDANTS, @LEV0, @CHILDREN, etc functions.
    I have seen clients build alternate hierarchies to support this type of requirement, but that's a fairly indirect way to achieve this. Back in the days when we would build VBA planning apps. you could put a range into a substitution variable (eg. "Oct":"Dec"), however I don't think that a Planning web input form will interpret this correctly.
    - Jake

  • How to get data dynamically into the input form fields.

    hey guys,
           I have created an input form in VC and it has 2 fields which r 'drill-down' type.Now what i want is that the entries for the fields should come automatically on deployment in the portal.what i mean is that e.g. u have a field 'location' and it is drill down type. Now when u run the model , in the input form the 'location' field entries should be populated automatically i.e the entries should b fetched from the server directly.If u guys have any idea then plz help me.I m very liberal in awarding points.

    Hi Anshul,
    1.Create an form in your workarea.
    2.Double click on the form element.
    3.Add an dropdown component by clicking the Add button(+)
    4..Go through the below link to populate values in it,
    http://help.sap.com/saphelp_nw04s/helpdata/en/bf/39becc90824d4d999eb05336345e5e/frameset.htm
    http://help.sap.com/saphelp_nw04s/helpdata/en/96/c33a3382914f6d8aeba11413e3e356/frameset.htm

  • Query to get date range in Week

    Hello all,
    I wanted the get the results in terms of week like, if sysdate is 26/7/2007 Then
    I have to get previous 7 weeks including the week where sysdate exists.
    Results should come in this manner
    23rd to 27th 1 week
    16 - 20th July 2007 as 2nd week like this till 7 weeks
    I have a query but it is not giving in the above manner
    So please anybody can make a query as mentioned above.
    Query:
    SELECT TO_DATE(TO_CHAR(SYSDATE,'DD-MON-YYYY')) + ( ROWNUM - 6)+(ROWNUM+2)D,TO_DATE(TO_CHAR(SYSDATE,'DD-MON-YYYY')) + ( ROWNUM - 6)+(ROWNUM+2) R FROM DUAL CONNECT BY LEVEL < 6

    What do you want?
    -- A week
    select sysdate, sysdate+7 from dual;
    --A week from monday to sunday
    select nexT_DAY(SYSDATE, 'MONDAY'), NEXT_day(sysdate-7, 'SUNDAY') FROM DUAL
    BE CAREFUL MONDAY AND SUNDAY IF YOUR DDBB IS IN ENGLISH
    select
    nexT_DAY(SYSDATE, 'MONDAY'), NEXT_day(sysdate-7, 'SUNDAY'), TO_char(sysdate,'d'),
    (sysdate -TO_char(sysdate,'d')) as firstone,
    (sysdate + 7-TO_char(sysdate,'d') )as lastone
    FROM DUAL
    Message was edited by:
    cth

  • SQL Query to get Date Range Values

    Hi,
    The database is Oracle11i.
    I am looking for a way to generate list of dates from a fixed date in the past (could be hardcoded) to current day (sysdate).
    That is, if the fixed date is 19 June 2011 and assuming that today is 24 June 2011 the SQL should be able to generate the
    following:-
    19-June-2011
    20-June-2011
    21-June-2011
    22-June-2011
    23-June-2011
    24-June-2011
    And the constraint is that I can't make any change to the database in question. I can only fire an SQL query (SELECT). No
    usage of time dimension kind of approach (time dimension is not available here) and no procedures, PL/SQL etc. Is there any way?
    Thanks

    Jaimeen Shah wrote:
    Hi,
    The database is Oracle11i.
    I am looking for a way to generate list of dates from a fixed date in the past (could be hardcoded) to current day (sysdate).
    That is, if the fixed date is 19 June 2011 and assuming that today is 24 June 2011 the SQL should be able to generate the
    following:-
    19-June-2011
    20-June-2011
    21-June-2011
    22-June-2011
    23-June-2011
    24-June-2011
    And the constraint is that I can't make any change to the database in question. I can only fire an SQL query (SELECT). No
    usage of time dimension kind of approach (time dimension is not available here) and no procedures, PL/SQL etc. Is there any way?
    Thanks
    SQL> def date_start = '13/11/2010'
    SQL> def date_end   = '22/11/2010'
    SQL> with
      2    data as (
      3      select to_date('&date_start', 'DD/MM/YYYY') date1,
      4             to_date('&date_end',   'DD/MM/YYYY') date2
      5      from dual
      6    )
      7  select to_char(date1+level-1, 'DD/MM/YYYY') the_date
      8  from data
      9  connect by level <= date2-date1+1
    10  /
    THE_DATE
    13/11/2010
    14/11/2010
    15/11/2010
    16/11/2010
    17/11/2010
    18/11/2010
    19/11/2010
    20/11/2010
    21/11/2010
    22/11/2010

  • How to get next series number for user form?

    Hi,
    I am using UDO for my form with Manage series inorder to maintain automatic documnet number.
    Like sales order screen if u open the form it should display with next generated document number.
    In my form it is not displaying the next number
    I want to display primary as selected and next series number.Please help me.
    I have used the following code
    If (FormUID = "FM_PURCHASEINDENT") And (pVal.ItemUID = "SerName") Then
                    If (pVal.EventType = SAPbouiCOM.BoEventTypes.et_COMBO_SELECT) And (pVal.Before_Action = True) Then
                        Dim oForm As SAPbouiCOM.Form
                        Dim oComboBox As SAPbouiCOM.ComboBox
                        Dim oEditText As SAPbouiCOM.EditText
                        Dim str As String
                        Dim lNum As Long
                        oForm = SBO_Application.Forms.Item(FormUID)
                        oComboBox = oForm.Items.Item("SerName").Specific
                        str = oComboBox.Selected.Value
                        'SBO_Application.MessageBox("Selected Series: " & str)
                        '// The following method provides the next value of the series
                        lNum = oForm.BusinessObject.GetNextSeriesNumber(CLng(str))
                        oEditText = oForm.Items.Item("SrValue").Specific
                        oEditText.String = lNum
                        oForm.Update()
                    End If
                End If
    Regards
    Jambu

    Hi,
    This is a little example for UDO with series (www.expertone.es/ficheros/SIMPLE_UDO.rar)
    Code in Vb6.0
    <b>Public Sub Load_UDO(ByRef rsbo As SAPbouiCOM.Application)</b>
    Dim oFormParams As SAPbouiCOM.FormCreationParams
    Dim oForm As SAPbouiCOM.Form
    Dim oCombo As SAPbouiCOM.ComboBox
       Set oFormParams = rsbo.CreateObject(cot_FormCreationParams)
       oFormParams.XmlData = DameXML(App.Path & "XMLEXO_UDO.srf")
       Set oForm = rsbo.Forms.AddEx(oFormParams)
       'Load series in combo
        Set oCombo = oForm.Items("EXO_CBO1").Specific   
        <b>oCombo.ValidValues.LoadSeries oForm.BusinessObject.Type, sf_Add</b>
        oCombo.Select 0, psk_Index
         RellenarNumDoc rsbo, oForm      
        oForm.Visible = True
    End Sub
    <b>Private Sub RellenarNumDoc(ByRef rsbo As SAPbouiCOM.Application, ByRef rForm As SAPbouiCOM.Form)</b>
        With rForm.DataSources.DBDataSources("@EXO_OUDO")
            .SetValue "DocNum", .Offset, CStr(rForm.BusinessObject.GetNextSerialNumber(rForm.Items("EXO_CBO1").Specific.Selected.Description))
        End With
    End Sub
    Private Function DameXML(ByVal vsRuta As String) As String
    Dim xmlDoc As New MSXML2.DOMDocument
       xmlDoc.Load vsRuta
       DameXML = xmlDoc.xml
    End Function

Maybe you are looking for

  • About to fail Java..HELP

    Here's the story..I am horrable at Java. I took this class..I am having a lot of trouble and the teacher will not help me.. Here's my assignment.. Write a program to compute mileage statistics for an automobile. Mr. Magoo has kept track of several ta

  • Unable to clear backup data

    Have a mid 2013 MBP - with 4 GB ram and 500 GB drive. though i have deleted the big outlook back up files totaling 140 GB - still the drive shows a back up of 139 GB - how can i clear this space and increase my storage capacity. Kindly give me some s

  • Help me on this oracle.apps.po.event.document_action_event

    1. How can i Verify in E-business the event oracle.apps.po.event.document_action_event. how can i make sure it is enabled and has a subscription assigned to it? Thanks Venki

  • Print the amount in text number in one document

    Hi, I have one report in Crystal Report 10 , and i try to convert the amout to show me in text numbers, this application is to print one check and I need to print the amount in numbers in Text. I use this formula in my system but for some reason the

  • Solman 7.1 - Monitoring CCMS RZ20 Central Autoreaction Method

    Hello, I'm trying to configure Solution Manager 7.1 for using CCMS. With new solution manager the connection of systems through SMSY is no longer possible. Aside from that I didn't found a possiblity to assign RFC Destinations for System Monitoring.