Midnight format in timesheet not working

I am using Standard XI to create a timesheet that is filable. However, midnight is showing at 00:00 am not 12:00 am. Anything in that 12 am hour is 00.  Is there a script I can add to change it?
I tried to download a free version of Pro to see if I could get something to work with that but it says my computer already has a program that is similar and won't download but I have no idea what that other program would be.
I don't see anyway to add a document level script using Standard XI. What would I try next?

As I have it scripted right now a start time of 12:00 am and an end time of 1:00 am equals -11.00 hours not 1.00 hour. What script would I have to add so the calculation is correct?
Here is the script I have right now:
// start time
// Start time field name
var cStartName = "start1mon1";
// Start time format:
var cStartFormat = "HH:MM";
// end time
// end time field name
var cEndName = "end1mon1";
// End time format:
var cEndFormat = "HH:MM";
// some conversion functions
// function to convert time string to minutes
function Time2Num(cTime, cFormat) {
// convert time string to minutes
// convert time string to date object
var oDate = util.scand("mm/dd/yyyy " + cFormat, "01/01/1970 " + cTime);
// convert date object to number of milliseconds
var nTime = oDate.getTime();
// convert milliseconds to minutes and return value
return Math.round(nTime / (1000 * 60));
} // end Time2Num function
function Num2Time(nMinutes) {
// convert time string to Hours and Minute
// hours in nMinues
var nHrs = Math.floor(nMinutes / 60);
// remainder minutes from hours in nMinutes
var nMins = nMinutes / 60;
// return formatted time string
return nHrs, nMins;
} // end Num2Time
// end conversion functions
// perform the calculation using the fields:
// get the values of the fields
var cStartTime = this.getField(cStartName).value;
var cEndTime = this.getField(cEndName).value;
// clear the value
event.value = "";
// test for not null time strings
if(cStartTime != "" && cEndTime != "") {
// compute the time difference in minutes
nDiff = Time2Num(cEndTime, cEndFormat) - Time2Num(cStartTime, cStartFormat);
event.value = Num2Time(nDiff);
} //end not null values
I have no prior knowledge of JavaScript, only what I have found here on the forums and a lot of luck. I would appreciate help on this problem. Thanks!

Similar Messages

  • Format option does not work in reply mode re Bt Ya...

    Hi There - I wonder if anyone has had this problem?  When clicking on reply to a recipient's email I find that the format option does not work! (I use this to highlight my reply in a different text colour)  It works fine when I compose a new email msg but not when using reply.
    I am finding this switch over to this 'new improved' Yahoo email a nightmare to be honest.  I would never have tried it out had I known I would not be able to switch back. 
    Why didn't I heed that age old saying 'why fix it if it ain't broke'
    I would appreciate any help.
    Many Thanks
    Heddybell

    Hi Stephanie
    Thanks for replying to me.
    No - none of those.  Formatting just does not work!  It was as if I had not tried to format - it just did NOTHING.
    However, by some miracle (and believe me it was) I have been able to return to my old BT Yahoo Classic  and the problem is no more!
    Wow!  That 'All-new Bt Yahoo Mail' leaves a lot to be desired!  Thank goodness I got out of it even there was no 'Switch Back' available.  Like I said "It was a miracle'!!!!!
    Thanks again
    Heddybell

  • Auto-refresh formatted search is not working properly...

    I have created a User Defined Field in Item Master named: FLD1 (Alphanumeric 30)
    Then I have created a User Defined Field in Marketing Documents Row: FLD1 (Alphanumeric 30)
    Now I want as follows u2013
    In Marketing Documents if I select any Item, the value saved in FLD1 in the Item Master will come automatically in the Field FLD1 of the Marketing Document.
    I did as follows u2013
    I have created a formatted search for the above marketing document (in Sales Quotation) for the field FLD1 as follows u2013
    Option: Search in Existing User-Defined Values according to Saved Query
    Query: GetItemFLD1 (SELECT $[OITM.U_FLD1] )
    Option: Auto Refresh  -
    When Exiting Altered Column
    Field: Item Description
    Option: Display Saved User-Defined Values
    But the above is not working automatically --- after saving the document if I click on the Formatted Search Marker then the value comes otherwise not.
    Can any one please explain the reason behind?
    for SAP B1 2007 B SP0 PL7
    Edited by: Narottam Das on May 5, 2009 1:53 PM

    Check this thread for explanation of Syntax of FMS:
    [Refer to Sales Order From Payment Means;
    Refer Suda Sampath  reply that explains clearly

  • Simple date format update/cleansing not working

    Dear All,
    Some rows are not being updated after update
    create table X(
    Surname varchar2(20),
    dob varchar2(20),
    dobupdate varchar2(20));
    insert into X values('Hookman','22-Apr-78','22-Apr-78');
    insert into X values('Beverly','21/06/1966','21/06/1966');
    insert into X values('Wickham','01/23/1985','01/23/1985');
    insert into X values('Logmann','26/Dec/1972','26/Dec/1972');
    insert into X values('Scooby','30.04.1966','30.04.1966');
    insert into X values('Trumph','15-August-1967','15-August-1967');
    insert into X values('Delaware','Aug-03-1961','Aug-03-1961');
    insert into X values('Wicked','03.Sep.1961','03.Sep.1961');
    insert into X values('Orlando','18.September.1961','18.September.1961');
    SURNAME DOB DOBUPDATE
    Hookman 22-Apr-78 22-Apr-78
    Beverly 21/06/1966 21/06/1966
    Wickham 01/23/1985 01/23/1985
    Logmann 26/Dec/1972 26-DEC-1972
    Scooby 30.04.1966 30-APR-1966
    Trumph 15-August-1967 15-August-1967
    Delaware Aug-03-1961 03-AUG-1961
    Wicked 03.Sep.1961 03-SEP-1961
    Orlando 18.September.1961 18.September.1961
    9 rows selected.
    =====================================
    --Code below is meant to update person Beverly
    Update x set dobupdate = to_char(to_date(dobupdate,'DD/MM/YYYY'),'DD-MON-YYYY')
    where dobupdate like '__/__/____';
    error - not valid month
    =======================================================
    --Code below is meant to update person  Trumph
    Update x set dobupdate = to_char(to_date(dobupdate,'DD-MONTH-YYYY'),'DD-MON-YYYY')
    where dobupdate like '__-_____-____';
    0 row/s updated
    =========================================================
    --Code below is meant to update person Orlando
    Update x set dobupdate = to_char(to_date(dobupdate,'DD.MMMM.YYYY'),'DD-MON-YYYY')
    where dobupdate like '__._____.____';
    0 row/s updated
    Where am I going wrong. I hvae no problems with updating other records in the table except fot just these three patterns.
    Help please.
    Cube60

    Thanks Warren, both suggested codes did not work and I can see why now. Alex has pointed it out.
    Alex brought me to realise Wickham's DOB is in the American format. The update query could not resolve that format and how to update it but at least it could have updated that of Beverly and left that of Wickham.
    After deleting Wickham completely, the update query worked on Beverly.
    Am just doing some data cleansing from a poorly designed Access database now meant for Oracle.
    So nothing can be done to resolve such mixture of date formats, I mean Uk and American.
    But now, Why are the update statement below coming with 0 records updated.
    The dates to be update are written like this 15-August-1967 and 18.September.1961 respectively
    --Code below is meant to update person Trump
    Update x set dobupdate = to_char(to_date(dobupdate,'DD-MM-YYYY'),'DD-MON-YYYY')
    where dobupdate like '__-__-____';
    0 row/s updated
    =========================================================
    --Code below is meant to update person Orlando
    Update x set dobupdate = to_char(to_date(dobupdate,'DD.MMMM.YYYY'),'DD-MON-YYYY')
    where dobupdate like '__._____.____';
    0 row/s updated
    many thanks
    cube60
    Message was edited by:
    cube60

  • Colum names mapping from formate file is not working

    Hi All,
    i tried to import data from text file using BULK INSERT format file option, am able to load the data from file to table but when i change the column name order in the input file it is not inserting according to change column order 
    BULK INSERT monsanto55_Steelwedge_monsanto_manualBuild_filters.dbo.bulk_test
       FROM '\\192.168.97.23\poc\bulk.txt'
       WITH( FORMATFILE = '\\192.168.97.23\poc\build.fmt',FIRSTROW = 2)
    TABLE COLUMS: P_Id,LastName,FirstName,age,Address,City,no
    Format file is :
    10.0
    7
    1       SQLCHAR             0       12      "\t"     1     P_Id                   ""
    2       SQLCHAR             0       255     "\t"     2     LastName               SQL_Latin1_General_CP1_CI_AS
    3       SQLCHAR             0       255     "\t"     3     FirstName              SQL_Latin1_General_CP1_CI_AS
    4       SQLCHAR             0       12      "\t"     4     age                    ""
    5       SQLCHAR             0       255     "\t"     5     Address                SQL_Latin1_General_CP1_CI_AS
    6       SQLCHAR             0       255     "\t"     6     City                   SQL_Latin1_General_CP1_CI_AS
    7       SQLCHAR             0       12      "\r\n"   7     no                     ""
    input data file:
    P_Id FirstNameLastName
    ageAddress Cityno
    1 first
    one 11
    sanathnagar HYD 5
    2 second
    two 12
    xyz abc
    0
    3 third
    three 20
    ameerpet SEC
    30
    according to mapping the data in table must be like:
    P_Id,LastName,FirstName,age,Address,City,no
    1 one first 11 sanathnagar HYD 5
    2 two second 12 xyz abc 0
    3 third three 20 ameerpet SEC 30
    but it inserting same as input file format so first name and last name are miss matching
    please let me know if you have any idea.
    Thanks,

    Hi All,
    i tried to import data from text file using BULK INSERT format file option, am able to load the data from file to table but when i change the column name order in the input file it is not inserting according to change column order 
    BULK INSERT monsanto55_Steelwedge_monsanto_manualBuild_filters.dbo.bulk_test
       FROM '\\192.168.97.23\poc\bulk.txt'
       WITH( FORMATFILE = '\\192.168.97.23\poc\build.fmt',FIRSTROW = 2)
    TABLE COLUMS: P_Id,LastName,FirstName,age,Address,City,no
    Format file is :
    10.0
    7
    1       SQLCHAR             0       12      "\t"     1     P_Id                   ""
    2       SQLCHAR             0       255     "\t"     2     LastName               SQL_Latin1_General_CP1_CI_AS
    3       SQLCHAR             0       255     "\t"     3     FirstName              SQL_Latin1_General_CP1_CI_AS
    4       SQLCHAR             0       12      "\t"     4     age                    ""
    5       SQLCHAR             0       255     "\t"     5     Address                SQL_Latin1_General_CP1_CI_AS
    6       SQLCHAR             0       255     "\t"     6     City                   SQL_Latin1_General_CP1_CI_AS
    7       SQLCHAR             0       12      "\r\n"   7     no                     ""
    input data file:
    P_Id FirstNameLastName
    ageAddress Cityno
    1 first
    one 11
    sanathnagar HYD 5
    2 second
    two 12
    xyz abc
    0
    3 third
    three 20
    ameerpet SEC
    30
    according to mapping the data in table must be like:
    P_Id,LastName,FirstName,age,Address,City,no
    1 one first 11 sanathnagar HYD 5
    2 two second 12 xyz abc 0
    3 third three 20 ameerpet SEC 30
    but it inserting same as input file format so first name and last name are miss matching
    please let me know if you have any idea.
    Thanks,
    Hi all,
    Thanks for your response, and sorry for wrong question here i need to supply default values to column of
    table based on input file so default values of columns will be changed based on input file, and one more thing i don't have any rights to change the table structure my work is to load data from file to table. Is there any chance to supply default values by XMLformat
    file instead of .fmt file
    or any other scenarios please let me know the possibility.

  • Boot Camp Windows install format to NTFS not working.

    As a preface I am new to Apple and more complex computer issues in general. With that said I have spent several hours trying to get Windows 8.1 installed from the DVD media to a partition created using Boot Camp Assistant. I have tried several suggestions and looked through many threads, blogs and articles and none seem to have the correct answer. Below are the steps that I have followed and the issue that I run into every time.
    Open Boot Camp Assistant
         Select Download the latest Windows support software from Apple
         Select Install Windows 7 or later version
         Download support software to USB Drive (leave connected)
         Create a Partition (200GB)
    Hold Option on Reboot and Select Windows
    Begin the Windows install process
    Select Custom: Install Windows only (advanced)
    Installation asks: Where do you want to install Windows?
    Select Drive 0 partition 4: BOOTCAMP
         Error Message Details:
              Windows cannot be installed to this disk. The selected disk is of the GPT partition style.
              Windows cannot be installed to this hard disk space. Windows must be installed to a partition formatted as NTFS.
    Solution I found from many threads is that I need to "Format" the partition. To do so I:
         Select Drive 0 Partition 4: BOOTCAMP
         Select Format
         Select Drive 0 Partition 4 (No longer titled as BOOTCAMP after the reformat)        
              Error Message Details:
                   Windows cannot be installed to this disk. The selected disk is of the GPT partition style.
    I cant seem to find a solution to this. Any help would be appreciated. I have tried removing all other connected drives and devices, and recreating the partition several times with no luck.
    Machine Info:
    OS X Yosemite 10.10.2
    Mac (27-inch, Late 2013)
    Processor: 3.2 GHz Intel Core i5
    Memory 8 GB 1600 MHz DDR3
    I also have VMware Fusion installed on the machine and already used the Windows installation media to create a virtual machine. Is it possible to transfer my virtual machine to a Boot Camp partition? I did a little research and it looks as though thats not possible (at least not easily) but I figured I'd ask anyway.

    Sorry for the delayed response. I'm still working to get a solution so any help is much appreciated. Thanks.
    The installation media I purchased is for windows 8.1. Is that the issue? Do I need to install 8 not 8.1?
    Output for sudo gpt -vv -r show /dev/disk0:
    gpt show: /dev/disk0: mediasize=1000204886016; sectorsize=512; blocks=1953525168
    gpt show: /dev/disk0: PMBR at sector 0
    gpt show: /dev/disk0: Pri GPT at sector 1
    gpt show: /dev/disk0: Sec GPT at sector 1953525167
           start        size  index  contents
               0           1         PMBR
               1           1         Pri GPT header
               2          32         Pri GPT table
              34           6        
              40      409600      1  GPT part - C12A7328-F81F-11D2-BA4B-00A0C93EC93B
          409640  1560546816      2  GPT part - 48465300-0000-11AA-AA11-00306543ECAC
      1560956456     1269536      3  GPT part - 426F6F74-0000-11AA-AA11-00306543ECAC
      1562225992         696        
      1562226688   391297024      4  GPT part - EBD0A0A2-B9E5-4433-87C0-68B6B72699C7
      1953523712        1423        
      1953525135          32         Sec GPT table
      1953525167           1         Sec GPT header
    Output for sudo fdisk /dev/disk0:
    Disk: /dev/disk0 geometry: 121601/255/63 [1953525168 sectors]
    Signature: 0xAA55
             Starting       Ending
    #: id  cyl  hd sec -  cyl  hd sec [     start -       size]
    1: EE 1023 254  63 - 1023 254  63 [         1 - 1953525167] <Unknown ID>
    2: 00    0   0   0 -    0   0   0 [         0 -          0] unused     
    3: 00    0   0   0 -    0   0   0 [         0 -          0] unused     
    4: 00    0   0   0 -    0   0   0 [         0 -          0] unused 

  • Format Cross tab not working in JDev 10.1.2.2.0.1929 - BIBeans:10122

    We recently upgraded JDev from 10121_1913 to 10.1.2.2.0.1929
    and Bi beans from: 10121 to 10122
    All the features are working fine, however I'm not able to use the "Format Crosstab" button on my Crosstab Presentations.( It works on the Graph presentations)
    When I click the format Crosstab button, nothing comes-up, but I get a null pointer exception in the Dos window.
    Mon Feb 19 16:09:38 CST 2007 In DefaultBuilderDialog::runDialog null
    java.lang.NullPointerException
    at oracle.dss.addins.editor.presentation.GridViewOptionsTool$1.getPreferredSize(GridViewOptionsTool.java:53)
    at java.awt.Window.pack(Window.java:438)
    at oracle.bali.ewt.wizard.WizardDialog.runDialog(Unknown Source)
    at oracle.dss.datautil.gui.DefaultBuilderDialog.runDialog(DefaultBuilder Dialog.java:524)
    at oracle.dss.addins.common.wizard.AbstractBuilderDialog.runDialog(AbstractBuilderDialog.java:275)
    at oracle.dss.datautil.gui.DefaultBuilderDialog.run(DefaultBuilderDialog.java:495)
    at oracle.dss.addins.editor.presentation.GridViewOptionsTool.runTool(GridViewOptionsTool.java:76)
    at oracle.dss.addins.editor.presentation.PresentationToolbarButton.actionPerformed(PresentationToolbarButton.java:69)
    at javax.swing.AbstractButton.fireActionPerformed(AbstractButton.java:1786)
    at javax.swing.AbstractButton$ForwardActionEvents.actionPerformed(AbstractButton.java:1839)
    at javax.swing.DefaultButtonModel.fireActionPerformed(DefaultButtonModel.java:420)
    at javax.swing.DefaultButtonModel.setPressed(DefaultButtonModel.java:258)
    at javax.swing.plaf.basic.BasicButtonListener.mouseReleased(BasicButtonListener.java:245)
    at java.awt.AWTEventMulticaster.mouseReleased(AWTEventMulticaster.java:2
    31)

    Opened SR with oracle. This has been identified as a bug - 5910576
    However if anyone needs a quick fix, you may want to contact oracle & get the 2 class files & update your biaddins.jar

  • Mac formated Multimedia HD Not Working with TV

    Hi guys,
    I have a multimedia external HD, Blue Sens K30 to plug in the TV and watch movies. The unit says Windows and Linux system, but since Mac most usually open everything i bought it anyways. Here is a description of the disk
    http://www.blusens.com/en/productos/hogar-digital/K30/
    I formated as Mac OS X with register, give it a name and threw there a bunch of movies. Today i connected to the TV and the screen says NO PARTITION. I don´t know if i am obligated to do a partition or the Disk/TV might be not undertanding the Mac OS formatting. Under formating i see a UNIX formating option, which i believe could be more universal than Mac.
    What do you think i can do? Does anybody knows what format the Apple TV Disk is in? I believe it also is for connecting to a regular TV.
    Thanks for any info,
    Sebastian

    This doesn't work for me. I've got a MacBook Pro with Snow Leopard and have deleted and installed NMT about 6 times and still no luck.
    I had installed iSync first and found another posting which said this interferes if you installed it first so I uninstalled it and reinstalled NMT.
    NMT appears to install - as soon as I open it, it goes into a window saying 'searching for device' but it never finds my C5 which is connected by USB.
    It searches and searches and there is no menu and no buttons other than one to connect by Bluetooth.
    I tried that and it found my C5 but after it had finished the setup of that it went back to the same screen with no other options. It was still searching for a device.
    Any advice anyone?

  • Number formatted Amount field not working in Excel 2010

    Hi,
    We have BI reports in EBS 11.5.10.2 designed using word 2007 RTF templates. The output is selected to write to Excel so that they can calculate on amount fields. Recently we upgraded to Office 2010 and the amount filed which has number format when downloaded to Excel will not allow to use functions like Sum. If i deleted the table column and add the column back, then it works. Is anyone runing into similar issues....

    Interesting to note this is still a problem, but even more interesting is as to why Excel works fine the first time you bring in the xsd, but not after you save it.  I found information that says it's related to resolving externally referenced xsds,
    which is fine, but again, why does it work the first ime and not the second?   If it were a problem with external xsds then it should never work at all so I think that answer is bogus.
    Something has to be getting corrupted on the save and it's not important enough to MS to spend the time to fix it.

  • File format plug-ins not working

    I cannot get any of my file format plug-ins working with 5.1.  They were working fine with 5.0.  I am using some of the plug-ins here but none are working since I upgraded.
    http://www.telegraphics.com.au/sw/
    Is there anyway to check whether Photoshop has even recgonized these plug-ins?  There doesn't seem to be anyway to scroll in the about screen in photoshop to check there.

    Thanks!  Ok, I'm getting "NO VERSION - 32-bit plug-in not supported in 64-bit" for those plug-ins.
    Is there any workaround?

  • Format Date function not working correctly

    Hi,
    I am using the following code to display a system date:
    <?xdofx:sysdate('DD-Month-YYYY')?>
    However the date always appears as:
    18-March -2011 (with space after 'March')
    rather than
    18-March-2011 (no space after the month)
    Can anyone tell me how to get the date to display without the space after the month?
    Thanks

    Some options:
    http://winrichman.blogspot.com/2008/08/xslt-extended-functions.html (right side screen shot)
    BI Publisher:formating date using xdofx
    Modify the output from current_date

  • Smartform Style paragraph formats - Number Chaining not working

    Hi
    I have created two paragraph formats L1 (level 1) and L2 (level 2). L1 is the top outline paragraph and L2 is its child. They both have a list numbering type of 1, 2, 3, ...  I have tried ticking the Number Chaining radio button on L1 & L2, and on just L2, but can't get the L2 to output with L1's number.
    I.e.
    Should be:
    1  TESTL1
    1.1 TESTL2
    Outputs as:
    1  TESTL1
    .1 TESTL2
    Also after an L2 occurs the numbering is restarted, for example.
    Should be:
    1  TESTL1
    1.1 TESTL2
    1.2 TESTL2
    2. TESTL1
    2.1 TESTL2
    Outputs as:
    1  TESTL1
    .1 TESTL2
    .2 TESTL2
    1 TESTL1
    Any ideas, I have tried various ways but no success.
    Thanks in advance for your help.
    Daniel

    Hi
    Solved. The problem is just a visual one. When you look at the output in the Text tab of the Text Module the output is incorrect. When you output through print preview etc, it is output correctly.
    Bug for SAP to fix.
    Thanks
    Dan

  • Formatted Search for Delivery Date field in SO not working

    Hi All
    Can anyone help me as to why my formatted search is not working?
    I am currently using SAP B1A SP01 Patch 19.
    I have created a user query as follows:
    SELECT $ [$10.0.DATE] + 5
    When I add this to the delivery field within the Sales Order and bring through the saved query which I set to auto refresh when the Posting Date field changes and to Display Saved Values it doesn't work.
    Any ideas?
    Thanks and best wishes
    Gail

    HI Gail,
    If I am not mistaken you want to add days to the posting date...if that is so then try this out:
    SELECT $[ORDR.DocDate.DATE]+5 From ORDR T0 For Browse
    Set The indicator to Auto Refresh when the fields change
    Nagesh

  • Format Trigger not working in 10g Report.

    I have a report with two eclipses
    (*) Debit (*) Credit . Please note that the two asterics denotes eclipses.
    I have a format triggers on these eclipses based on the database item Debit_credit.
    IF :debit_credit = 'CREDIT' THEN
    RETURN FALSE;
    ELSE
    RETURN TRUE;
    End if;
    and vis-visa. However the format trigger is not working. Regardless of the value of
    debit_credit. I even created a frame around these eclipses and put my format trigger all to no avail. Please help.

    Create a boilerplate text in your repeating frame (get rid of the field :debit_credit from your layout, but leave it in your query). I created the boilerplate field B_1. My format trigger looks like:
    function B_1FormatTrigger return boolean is
    begin
      if upper(:debit_credit) = 'CREDIT' then
           srw.set_field(0, to_char('(*) CREDIT'));
       else srw.set_field(0, to_char('(*) DEBIT'));
      end if;
      return (TRUE);
    end;I hope I understood your question OK...I am not sure what an eclipses is?

  • Iweb Hyperlink Format not working!

    Hello,
    I am using version 3.0.3 of iWeb. I think this must be the latest version.
    No matter what I do, I cannot get the FORMAT tab to do anything within the hyperlinks section of the inspector.
    Let's I want to change the color of how a button behaves (rollover, click etc), I click on that element (text, box, anything), I select Inspector, I go to hyperlink tab, and the FORMAT subtab is not working.
    Has anyone else had this issue?
    What do i need to do??
    I'm totally frustrated.
    Thanks

    Hello Old Toad,
    Thanks for your response, but believe me, i've tried EVERYTHING.
    I've selected Text, I've highlighted the text, I've gone to the INSPECTOR window, selected the hyperlink tab, and the FORMAT TAB always remains INACTIVE: i.e. all the buttons are dark grey and do nothing when I press them.
    I paid for this software upgrade also (iLife 11).
    I really like iWeb actually, it produces what I want, except this formatting of URLs (and perhaps sub-menus).
    Im getting really desperate to find why my FORMAT of hyperlinks is not working.
    Thanks

Maybe you are looking for

  • KE24 Report comparison with FI GL account balance report

    Hi Friends, I'm comparing KE24 transaction code COPA actual line item balance with FI GL account balance report, but I'm not able to match it/not sure how to match it. Could you please let me know how to compare these two reports mainly to know wheth

  • RFC- JDBC- Mail

    Hi I want to send something through RFC adapter to JDBC to update or insert some data and I want to have return code and send it through mail adapter. RFC sender interface should be Async, other interface can be sync or aync but as far as I know, in

  • Cap One EO Doubles My CL!

    Hello all...The Cap One EO has treated me right yet again!!! They called me on Thursday, only 2 days after I sent my email. I asked for 2x my CL, plus an upgrade to a World Elite MC. I just logged in and saw I had already been granted my CLI to $15,0

  • Error screen after formatting my macbook

    I formatted my MacBook Air a few days ago in order to decongest it because it showed I had barely any disk space left despite me removing almost everything from the computer. Before formatting it, I backed the hard drive up to an external drive in Ma

  • My Dock is broken. Stacks don't work, either. A little help? :(

    Right, here's the problem: http://www.birchlabs.co.uk/Dock1.png The transparent black bezel is... messed up to the extent that it's painful to look at. If that were the only problem, I could put up with it, but it gets worse. http://www.birchlabs.co.