Auto add line on specified date

I am working on a Numbers document and all I am horribly failing at doing is to automate a function on the first of every month. On the 1st of the month, using the internal clock, I want it to add the next sequential line. In this case, each line starts with a month then the payments due that month. I have the auto add payments set up so that when I select and drag the month colum down for the current month it will imput the data. I simply want to automate the month column as well so that when it is opened it is current.
Thank You

While you cannot use a formula rto add a line to a table, you cold use a reorganize rule to show a row only when the date in a specified column is equal to or less than TODAY().
With the 'Show rows..." control turned off, enter the date you want each row to become visible, then set a rule to determine which rows will be visible.
In the image, Table 1 is the original table; Table 1-1, the table that is selected, is a duplicate of Table 1. The reorganize rule shown below this table has been appiied to it to make each row appear on the first day of its month. With this rule, all rows continue to be visible after their appearance.
Regards,
Barry

Similar Messages

  • Flash Builder 4.5 Auto-Gen Code For PHP Data Service Produces Errors

    Hello
    I'm currently running a fresh install of MAMP on my Mac and when I start a new flex project, add a php data service that pulls from a mysql database I have. Everything works fine until I try to compile. The error I'm getting is 'uid' being the primary key which is a bigint(20). The file _Super_Users.as (auto-gen based on the user table below) reports 2 errors: [Managed] requires uid to be of type 'String'. (same error on 2 lines of code) Now the MySQL table wants it to be a int, the auto gen code seems to want it to be an int as well but for some reason its putting in these requires for String on the getter and setters for 'uid'. The is before I even add any of my own code, just auto-gen then compile.
         * data/source property getters
    [Bindable(event="propertyChange")]
        public function get uid() : int /*error line*/
            return _internal_uid;
         * data/source property setters
        public function set uid(value:int) : void /*error line*/
            var oldValue:int = _internal_uid;
            if (oldValue !== value)
                _internal_uid = value;
    This is what my database looks when I export it:
    CREATE TABLE `users` (
      `uid` bigint(20) unsigned NOT NULL,
      `name` varchar(150) NOT NULL,
      `first_name` varchar(50) NOT NULL,
      `middle_name` varchar(50) NOT NULL,
      `last_name` varchar(50) NOT NULL,
      `gender` tinyint(1) NOT NULL,
      `locale` varchar(5) NOT NULL,
      `link` varchar(255) NOT NULL,
      `username` varchar(50) NOT NULL,
      `email` varchar(255) NOT NULL,
      `picture` varchar(255) NOT NULL,
      `friends` text NOT NULL,
      `created` datetime NOT NULL,
      `updated` datetime NOT NULL,
      PRIMARY KEY (`uid`)
    ) ENGINE=InnoDB DEFAULT CHARSET=latin1;
    It's empty right now...
    Apache 2.0.64
    MySQL 5.5.9
    PHP 5.2.17 & 5.3.5
    APC 3.1.7
    eAccelerator 0.9.6.1
    XCache 1.2.2 & 1.3.1
    phpMyAdmin 3.3.9.2
    Zend Optimizer 3.3.9
    SQLiteManager 1.2.4
    Freetype 2.4.4
    t1lib 5.1.2
    curl 7.21.3
    jpeg 8c
    libpng-1.5.0
    gd 2.0.34
    libxml 2.7.6
    libxslt 1.1.26
    gettext 0.18.1.1
    libidn 1.17
    iconv 1.13
    mcrypt 2.5.8
    YAZ 4.0.1 & PHP/YAZ 1.0.14
    I tried to give as much info as possible, if you need more let me know...

    I discovered my problem was uid seems to be a built in global or something and was filling in that data field with a bunch of letters and number, like the device id. Because of the letters flex was throwing a fit. So if you're using Facebook API in flex be sure to not go with uid for the user id, which is was facebook api calls it.

  • Urjent-how to add line items in tcode-FBL3N

    Hi Experts,
      How to add line items customer, customer name,  vendor and vendor name in FBL3N.
    Thanks in advance.
    mahe
    Moderator message - Please do not use words like "urjent". Please ask a specific question. Please search the forum. This question has been asked and answered before. Post locked
    Edited by: Rob Burbank on Apr 29, 2009 11:27 AM
    Edited by: Rob Burbank on Apr 29, 2009 11:28 AM

    Hi,
    Check the BTE's:
    00001020     POST DOCUMENT:       Prior to final checks             SAMPLE_INTERFACE_00001020
    00001025     POST DOCUMENT:       Final checks completed       SAMPLE_INTERFACE_00001025
    00001030     POST DOCUMENT:       Posting of standard data     SAMPLE_INTERFACE_00001030
    00001050     POST DOCUMENT:       Accounting interface           SAMPLE_INTERFACE_00001050
    Thanks & Regards,
    Harish

  • Trying to add month with a Date

    Hi All,
    I am trying to add month with a date. it will take the earlier month and add one month . Here is my code
    declare @CollectionDate date='10-30-2014'
    select @CollectionDate
    ;WITH CTemp AS (
    SELECT TransactionDate=CAST(@CollectionDate AS DATE) ,RemainingTransaction=1
    UNION all
    SELECT TransactionDate=DATEADD(MONTH,1,CONVERT(date, CONVERT(varchar(4), YEAR(TransactionDate))
    +'-'+CONVERT(varchar(2),MONTH(TransactionDate))
    +'-'+ CONVERT(varchar(2),DATEPART(day, @CollectionDate)))),
    RemainingTransaction+1
    FROM CTemp
    WHERE RemainingTransaction < 9
    select * from CTemp
    When I am giving date 10-28-2014 then it is working fine. But when the date is 10-31-2014 then it shows me the error
    Msg 241, Level 16, State 1, Line 3
    Conversion failed when converting date and/or time from character string.
    I can undestand it is for the month of February but how do I overcome it?
    Can anyone help me on this?
    Thanks in advance!!
    Niladri Biswas

    Try the below:
    --To find the last day of the month, use the below:
    declare @CollectionDate date='10-30-2014'
    select @CollectionDate
    ;WITH CTemp AS (
    SELECT TransactionDate=CAST(@CollectionDate AS DATE) ,RemainingTransaction=1
    UNION all
    SELECT TransactionDate=cast(DATEADD(day,-1,DATEADD(month,MONTH(Transactiondate)-1,DATEADD(year,YEAR(TransactionDate)-1900,0))) as DATE),
    RemainingTransaction+1
    FROM CTemp
    WHERE RemainingTransaction < 9
    select * from CTemp
    --Just to add a month, use the below
    declare @CollectionDate date='10-30-2014'
    select @CollectionDate
    ;WITH CTemp AS (
    SELECT TransactionDate=CAST(@CollectionDate AS DATE) ,RemainingTransaction=1
    UNION all
    SELECT TransactionDate=DATEADD(month,-1,TransactionDate),
    RemainingTransaction+1
    FROM CTemp
    WHERE RemainingTransaction < 9
    select * from CTemp
    EDIT: You may change -1 to 1 if you want the future months.(I am bit confused whether you are looking for previous months or future months.)

  • How to add a day to Date() ( i.e 2002Oct10 to 2002Oct11 )

    Hi anyone, How to add a day to Date().
    <%
    String R, fulldate;
    java.util.Date Rdate = new java.util.Date();
    R = Rdate.toString();
    String DD=Rdate_string.substring(8,10);
    String MM=Rdate_string.substring(4,7);
    String YY=Rdate_string.substring(24,28);
    fulldate = YY+MM+DD;
    //ie. fulldate = 2002Oct10 but I want it to be 2002Oct11
    %>
    pls. help and thanks a lot.

    Hi,
    Please replace the following line in your program,
    String DD=Rdate_string.substring(8,10));
    with
    String DD=String.valueOf(Integer.parseInt(Rdate_string.substring(8,10)) + 1);
    This will work fine. Basically what this code is doing is that, it will get the Integer from the String, increment it by 1 and then change the integer to the String again.
    Hope this helps,
    Rajat,
    OTN Team

  • Make changes to auto generated line items when posting invoice thru MIRO?

    Hi All,
    My requirement is to make some changes in line items data when posting invoice through MIRO transaction.
    I have written a substitution for the same, The issue is that some line items get automaticaly created (i.e inter company posting). I need to make changes to these line items as well but substitution is not being triggered for these auto generated line items.Is there any way by which I can update in these line items as well ?
    further do we have any internal table which holds all the line items at runtime....to which I can refer and make the changes. I have searched but could not find one.
    Can anybody provide some inputs on this.
    Thanks,
    Lucky.

    Hi Kaushik,
    Thanks for your reply.
    I am using BADI INVOICE_UPDATE but here we will not be having line items which are auto generated.
    When we do inter company posting, line items are automatically created and these are not avaliable in the BADI. I am not sure if we can trap these line items any where.....the possible alternative which I can think of is to use memory reference and modify the internal table which holds all the items but unfortunately I am not able to find any such internal table to refer to at run time ...have u got any idea on this?
    Thanks,
    Lucky.

  • Customer credit memo can't auto calculate the net due date

    Hi all,
    Our user used F-27 to entry customer credit memo (PK = 11),
    [F-27|http://www.flickr.com/photos/44956360@N08/5206144134/]
    and payment term use net 60 days,
    [F-27 - screen 2|http://www.flickr.com/photos/44956360@N08/5206144210/]
    but the system display the net due date doesn't add 60 days
    [F-27 - screen 3|http://www.flickr.com/photos/44956360@N08/5206144292/]
    To use fbl1n display the net due date doesn't add 60 days
    [FBL1N|http://www.flickr.com/photos/44956360@N08/5206144344/]
    Why the system can't auto calculate the net due date when user used PK = 11, but If user use PK = 01, the system can auto calculate the net due date.
    Best regards,
    Eric

    Hi Henri,
    I found the answer, when user enter the original document number in reference field of credit memo, the system can auto calculated the net due date!
    no reference doc
    [PIC1|http://www.flickr.com/photos/44956360@N08/5208025267/]
    input reference doc
    [PIC2|http://www.flickr.com/photos/44956360@N08/5208623198/]
    Thanks for your help.
    Best regards,
    Eric

  • How to add line item to sales order item table?

    Kindly help me the with the below requirement .
    Add line item to sales order(va01) dynamically on click of button. The button is also custom created push button.
    In the above requirement I have added the pushbutton to va01 tcode. But when I click on that button I need to add line item to sales order item table.
    I tried a lot but I am not successful. If possible can u please help on this.
    Regards,
    Rachel

    Hi!
    It's quite easy even in the standard SAP to add a line item for a customer order, I don't think it worth to develop a new button for this.
    However if you wanted to add a line automatically, the you can do the following in the program MV45AFZZ, FORM USEREXIT_SAVE_DOCUMENT.
    You can use similar code, but with some modifications.
    DATA: lv_posnr.
    LOOP AT xvbap.
    MOVE xvbap-posnr TO lv_posnr.   "get the last posnr
    ENDLOOP.
    ADD 10 TO lv_posnr.
    MOVE 'XYZ' TO xvbap-matnr.   "enter your material number here
    MOVE lv_posnr TO xvbap-posnr.
    * fill additinal field data in XVBAP if necessary
    MOVE 'I' TO xvbap-updkz.                  "Insert line
    APPEND xvbap.
    Regards
    Tamá

  • PO PLD Add line text....

    Respected All,
    In Purchase order PLD  in item description  i want to add line Text in same table of item description how i can do this.
    Regards
    Mangesh

    Hi
    Please kindly check the following tips to see if this can be helpful to some extend:
    1) Enlarge repetitive area to 40 for example and tick box u201CHeight Adjustmentu201D
    2) Create a calculation field on the very left side in the new row of the repetitive area => Line  No.
    Create appropriate boarders as well
    3) Create a data field for the text :
    Tables:Purchase Order-rows
    Column:text
    Note: On the u201CFormatu201D tab in the parameter u201CLine Breaku201D Choose u201CDivide into rowsu201D
    4) Create a text field and call up the tab u201CVariableu201D and select variable 157 and write u201CTypeu201D in the text field.  In the u201CGeneralu201D  tab un-tick the u201Cvisibleu201D tick box
    5) Create another text field and give the value u201CTu201D and un-tick as well the u201Cvisibleu201D tick box on the u201CGeneralu201D tab. In the u201CGeneralu201D  tab un-tick the u201Cvisibleu201D tick box
    6) Create a calculation field
    Type: Formula
    Field 1: the variable field from point 4)
    Operation: Not Equal
    Field 2: the text field created in step 5)
    Un-tick the u201Cvisibleu201D checkbox on the u201CGeneralu201D tab
    7) Link the u201CGeneral Rowu201D number field of the u201Ctext rowu201D to the calculation field from step 6)
    Locate the exclusive number of the calculation field either via the field index table or from the u201CGeneralu201D tab of the field properties of the calculation field.
    8)  Create a calculation field
    Type: Formula
    Field 1: the variable field from point 4)
    Operation: Equal
    Field 2: the text field created in step 5)
    Un-tick the u201Cvisibleu201D checkbox on the u201CGeneralu201D tab
    9) Link the u201CGeneral Rowu201D number field of the u201Citem rowu201D to the calculation field from step 8)
    Locate the exclusive number of the calculation field either via the field index table or from the u201CGeneralu201D tab of the field properties of the calculation field.
    10) Link each filed, except the u201CGeneral Row No.u201D field, of the item and the text line to itself.e.g. use the index to locate these.
    These fields should be: quantity /item no/price/total etc.
    And link as well the data field created in step 3) to itself.
    Best Regards
    Helen Sun
    SAP Business One Forums Team

  • Terminated with error: br REP-501: Unable to connect to the specified data

    Dear All,
    Oracle DB 10g installed on Windows 2003 Server machine and client is Windows 7 Pro. Forms are running fine. If I run report by puting everything in URL it is also giving result. But only when i am trying to call report via form I get an error REP-501: Unable to connect to the specified data. The report log file contains below result. Is this something to to AUTHID=ANONYMOUS??? I need your assistance in this regard as I have been facing this problem since quite a long time now.
    [2011/10/22 3:55:55:34] Info 56013 (ConnectionManager:release): Connection 0 is released
    [2011/10/22 3:55:55:34] Info 50132 (JobObject:reset): jobid = 72 Get command line: REPORT=E:\AuditSys\twoconsecutive_estimate.jsp USERID=AUDITSYS@customerdb P_USERID="MAJAN" P_REPORTNAME="Bills which have been estimated for 3 months consecutively" P_REGIONCODE="" P_TARIFF="" P_PRIGOV="" P_AREAFROM="2" P_AREATO="91" P_BILLMONTH="9" P_BILLYEAR="2011" P_MONTHS="3" BATCH=YES DESTYPE=cache DESFORMAT=HTML AUTHID=ANONYMOUS
    [2011/10/22 3:55:55:34] Debug 50103 (ConnectionImpl:runJob): Job queue for jobid = 72 is 0
    [2011/10/22 3:55:55:34] Debug 50103 (ConnectionImpl:runJob): jobid = 72 is in current queue
    [2011/10/22 3:55:55:34] Debug 50103 (ConnectionImpl:runJob): Calling findDuplicatedJob for jobid = 72
    [2011/10/22 3:55:55:34] Debug 50103 (JobManager:findDuplicatedJob): Found no duplicated job for job 72
    [2011/10/22 3:55:55:34] Debug 50103 (ConnectionImpl:runJob): No Duplicate jobs for jobid = 72
    [2011/10/22 3:55:55:34] Debug 50103 (ConnectionImpl:runJob): Job 72 is Enqueued
    [2011/10/22 3:55:55:34] Debug 50103 (JobManager:firstToRun): job 72 is first to run
    [2011/10/22 3:55:55:34] Debug 50103 (JobManager.runJobLocal): Trying to get engine for Job 72
    [2011/10/22 3:55:55:34] Debug 50103 (EngineManager:getIdleEngine): Target max engines = 1
    [2011/10/22 3:55:55:34] Debug 50103 (EngineManager:getIdleEngine): rwEng-0 is used = true
    [2011/10/22 3:55:55:34] Debug 50103 (EngineManager:getIdleEngine): rwEng-0 state is 1
    [2011/10/22 3:55:55:34] State 56004 (EngineInfo:setState): Engine rwEng-0 state is: Reserved
    [2011/10/22 3:55:55:34] Debug 50103 (JobManager.runJobLocal): Job 72 got Engine rwEng-0
    [2011/10/22 3:55:55:34] Debug 50103 (JobManager:runJobInEngine): Job 72 calling setCommand on engine rwEng-0
    [2011/10/22 3:55:55:34] Debug 50103 (EngineManager:updateEngineState): Engine rwEng-0 status is 3
    [2011/10/22 3:55:55:34] State 56004 (EngineInfo:setState): Engine rwEng-0 state is: Running
    [2011/10/22 3:55:55:34] Debug 50103 (EngineManager:updateEngineState): Engine rwEng-0 status is 5
    [2011/10/22 3:55:55:34] State 56004 (EngineInfo:setState): Engine rwEng-0 state is: Idle
    [2011/10/22 3:55:55:34] Debug 50103 (JobManager:runJobInEngine): Send job 72 to engine rwEng-0
    [2011/10/22 3:55:55:34] Debug 50103 (EngineManager:updateEngineState): Engine rwEng-0 status is 3
    [2011/10/22 3:55:55:34] State 56004 (EngineInfo:setState): Engine rwEng-0 state is: Running
    [2011/10/22 3:55:55:96] State 56016 (JobManager:updateJobStatus): Job 72 status is: Terminated with error:
    REP-501: Unable to connect to the specified database.
    [2011/10/22 3:55:55:96] Debug 50103 (JobManager:notifyWaitingJobs): Master job 72 notify its duplicated jobs.
    [2011/10/22 3:55:55:96] Debug 50103 (JobManager:updateJobStatus): Finished updating job: 72
    [2011/10/22 3:55:55:96] Debug 50103 (EngineManager:updateEngineState): Engine rwEng-0 status is 1
    [2011/10/22 3:55:55:96] State 56004 (EngineInfo:setState): Engine rwEng-0 state is: Ready
    [2011/10/22 3:55:55:96] Exception 501 (): Unable to connect to the specified database.
    Thanks,
    Zia

    Dear guys, it is quite an urgency here and I am not getting any clue from anywhere else .... please give me some tips to handle the issue if anybody has some...
    Regards,

  • Auto add js in header

    I write customtag for form vodation
    now i can use code suggesion
    As <input type="text" name="ftext"
    test="email">
    <input type="text" name="fphone"
    test="phone">
    but it use include javascript for cheack input'value format
    how to auto add javascript link As spray?

    Hi,
    this wiki:
    http://wiki.sdn.sap.com/wiki/display/Snippets/Displaycustomerfieldsinheaderoflogisticsinvoiceverification+transactions
    it´s about creating a subscreen under "Basic Data" tab but it´s not about creating a "New" tab in header of MIRO transaction.
    Best regards.
    Edited by: Pablo Casamayor on Dec 9, 2009 2:14 PM

  • Order Line Schedule Ship Date

    Hi ,
    How is the schedule ship date in order line calculated?
    Currently its taking from Request date when i try to schedule it from tools .
    I tried to modify this through defaulting rules but it doesnt take effect.
    The requirement is :
    Schedule ship date=Request date +Transit Time
    How do i take the transit time from the ship method ?
    Thanks

    Why Cant the Schedule ship date be less than Request date in Order line when Request Type is Arrival?
    I followed the document 262124.1 which was mentioned in the document 251449.1.
    The setup is only partially working for me .
    For example the document mentions:
    Scenario :
    Ist Case(Works Fine)
    If Order Date Type - Ship, then we add the Transit Time to the Scheduled Ship Date to get the  Scheduled Arrival Date
    Request Date =23-Sep-2010
    Transit Time =3 days
    Request type in Customer ship to= Ship
    After booking:
    Schedule ship date=23-Sep-2010
    Schedule Arrival Date=26-Sep-2010
    2nd Case (Doesnt Work)
    If Order Date Type - Arrival, then we subtract Transit Time from the Scheduled Arrival Date to get the Scheduled Ship Date for the order line.
    Request Date =23-Sep-2010
    Transit Time =3 days
    Request type in Customer ship to= Arrival
    After booking:
    It should be
    Schedule ship date=20-Sep-2010
    Schedule Arrival Date=23-Sep-2010
    But i Get
    Schedule ship date=23-Sep-2010
    Schedule Arrival Date=26-Sep-2010
    Please advise .

  • BAPI_PR_CHANGE : Add line items

    I've read some contradicting posts regarding bapi: BAPI_PR_CHANGE. I was under the impression you could add line items to a requisition using this BAPI? Can it be said for certain it can not be done? The documentation is rather lacking.
    Thanks!
    Enrique Leon

    it's very easy to do this with this BAPI.
    If you have experiences with BAPI_PO_CHANGE you have done this within some minutes.
    Here's some sample-coding. Maybe this will help you:
    LOOP AT it_change_pr INTO wa_change_pr.
        ADD 10 TO lv_pr_counter.
        wa_pritem-preq_item      = lv_pr_counter.                "Item Number of Purchase Requisition
        wa_pritem-material       = wa_change_pr-orig_matnr.  "Materialnumber
        wa_pritem-plant          = lv_plant.                 "Plant
        wa_pritem-pur_group      = lv_pur_group.             "Purchasing Group
        wa_pritem-store_loc      = lv_store_loc.             "Storage Location
        wa_pritem-quantity       = wa_change_pr-menge.       "Purchase Requisition Quantity
        wa_pritem-unit           = wa_change_pr-meins.       "Purchase Requisition Unit of Measure
        wa_pritem-del_datcat_ext = lv_del_datcat.            "Date type (day, week, month, interval)
        wa_pritem-deliv_date     = lv_deliv_date.            "Item Delivery Date
        wa_pritem-fixed_vend     = wa_change_pr-lifnr.       "Fixed Vendor
        CLEAR: temp_matnr.
        CONCATENATE '0000000000' wa_change_pr-matnr INTO temp_matnr.
        SELECT SINGLE * FROM mbew
          WHERE matnr = temp_matnr
          AND   bwkey = wa_change_pr-werks.
        IF sy-subrc = 0.
          wa_pritem-preq_price   = mbew-stprs.                "Price in purchase requisition
          wa_pritem-price_unit   = mbew-peinh.                "Price Unit
        ENDIF.
        wa_pritem-purch_org  = lv_purch_org.                "Purchasing Organization
    **    wa_pritem-po_unit    = wa_change_pr-meins.        "Purchase Order Unit of Measure
        wa_pritem-vend_mat   = wa_change_pr-matnr.          "Material number used by vendor
        wa_pritemx-preq_item      = lv_pr_counter.
        wa_pritemx-preq_itemx     = 'X'.
        wa_pritemx-material       = 'X'.
        wa_pritemx-plant          = 'X'.
        wa_pritemx-store_loc      = 'X'.
        wa_pritemx-pur_group      = 'X'.
        wa_pritemx-quantity       = 'X'.
        wa_pritemx-unit           = 'X'.
        wa_pritemx-del_datcat_ext = 'X'.
        wa_pritemx-deliv_date     = 'X'.
        wa_pritemx-fixed_vend     = 'X'.
        wa_pritemx-preq_price     = 'X'.
        wa_pritemx-price_unit     = 'X'.
        wa_pritemx-purch_org      = 'X'.
        wa_pritemx-vend_mat       = 'X'.
        APPEND wa_pritemx TO it_pritemx.
        APPEND wa_pritem TO it_pritem.
      ENDLOOP.
      CALL FUNCTION 'BAPI_PR_CHANGE'
        EXPORTING
          number                      = lv_banfn
    *   PRHEADER                    =
    *   PRHEADERX                   =
    *   TESTRUN                     =
    * IMPORTING
    *   PRHEADEREXP                 =
    TABLES
         return                      = it_change_return
         pritem                      = it_pritem
         pritemx                     = it_pritemx
    *   PRITEMEXP                   =
    *   PRITEMSOURCE                =
    *   PRACCOUNT                   =
    *   PRACCOUNTPROITSEGMENT       =
    *   PRACCOUNTX                  =
    *   PRADDRDELIVERY              =
    *   PRITEMTEXT                  =
    *   PRHEADERTEXT                =
    *   EXTENSIONIN                 =
    *   EXTENSIONOUT                =
    *   PRVERSION                   =
    *   PRVERSIONX                  =
    *   ALLVERSIONS                 =
    CALL FUNCTION 'BAPI_TRANSACTION_COMMIT'
    * EXPORTING
    *   WAIT          =
    * IMPORTING
    *   RETURN        =

  • Append a text line on blob data.

    Hi All,
    I need append a text line on blob data.
    I haven't found prosper example or guide yet.
    Following is example blob data which i should handle with.
    Date: Thu, 29 Oct 2009 18:36:56 +0900 (KST)
    From: IBM
    To: IBM
    Subject: JavaMail Attachment
    Mime-Version: 1.0
    Content-Type: multipart/mixed;
         boundary="----=_Part_10_1177830964.1256809016187"
    ------=_Part_10_1177830964.1256809016187
    Content-Type: text/plain; charset=us-ascii
    Content-Transfer-Encoding: 7bit
    Ideas
    ------=_Part_10_1177830964.1256809016187--
    and I should add a new line on head of above blob data like this,
    Message-ID: <1631215930.1256809016203.JavaMail.SYSTEM@ibm-demo>
    so what i want is every blob data which doesn't have Message-ID line, update with random msg id.
    please give me an tip or sample for this.
    Thanks in advance,
    Beomwoo.

    I have to develop some program which correct abnormal email data of Oracle Collaboration Suite mail 10g.
    OCS store the mail body into a blob column named as body on es_body table.
    Normal mail body have to include Message id header information like following.
    Message-ID: <[email protected]>
    Date: Sat, 31 Oct 2009 19:48:04 +0900 (KST)
    From: bbuser1 kim <[email protected]>
    To: bbuser1 kim <[email protected]>
    Subject: 111111111111111
    Mime-Version: 1.0
    Content-Type: text/plain;charset=US-ASCII
    Content-Transfer-Encoding: 7bit
    Accept-Language: en-US
    X-Mailer: Oracle Collaboration Suite Web Access 10.1.2.4.3
    When a message body doesn't have the message id line on first line.
    I want add random message id on first line.
    So, What i want exactly is how to update blob column data with adding a line like 'Message-ID: <[email protected]>'.
    Any idea?
    Thanks in advance,
    Beomwoo.

  • Please help re auto-curve line altering feature

    to all Illustrator artists and experts: Can you please tell me the name of the Illustrator auto-curve line altering feature and how to adjust it or turn it off?  When I draw a line, and want that line not to be a perfect curve, when I complete the line Illustrator automatically alters it to make it a perfect curve.  This is changing my original line from what I intended to a homogenized curve I didn't intend.  Thank you for any help you can provide!

    can't Illustrator simply save each part of my various movements as I draw the line - without "snapping" them all away
    DoubleClick the Pencil or Brush tool (the tool icons in the program, not your hardware stylus) and turn off the Edit Selected Paths option. (This is a one-time setting. You don't have to revisit it each time you draw a path.)
    You must use the Pencil tool or the Brush to achieve the results you desire. The Pen tool is specifically made to produce Bezier curves.
    For clarity: All of the path drawing tools in Illustrator (including the Pencil and Brush) draw Bezier curves. They just employ different user interfaces for doing it.
    The Pen Tool (the software tool in the program, not your stylus) employs an interface intended to allow you to explicitly place each anchorPoint and curve handle exactly where you want it. That's its purpose. So there is no "smoothness" setting for the Pen tool. The Pencil and Brush tools try to programmatically and automatically construct Bezier curves by interpreting the bitmap "path" you scribe by stroking with the pointing device. Therefore, they have Smootness settings to alter the interpreting algorithm.
    That's pretty much standard practice across drawing programs like Illustrator.
    There are a few commands (Roughen, Zig Zag, etc.) in the Filters (CS3) and/or Effects (CS4) menus to alter the jaggedness of selected path(s) after you've drawn them.
    Generally, though, I agree with the comments of others: You need to sit down with the documentation and work through learning the program. Franky, I would add that you'd be better off doing that without using a stylus, just to minimize confusion. If you work with a mouse, you'll know what the program is capable of and how results are supposed to be achieved. Then, when you use the stylus, you'll be better able to discern whether a problem is due to a limitation of the program, or if it is something about your stylus settings, or just the small handful of stylus-supportive features in the program.
    JET

Maybe you are looking for

  • Why oh why, weird performance on joining large tables

    Hello. I have a large table cotaining dates and customer data. Organised as: DATE CUSTOMER_ID INFOCOLUMN1 INFOCOLUMN2 etc... Rows per date are a couple of million. What I'm trying to do is to make a comparison between date a and date b and track chan

  • Argument count mismatch error: Expected 1, got 0.

    I am writing a datagridcolumn array to the cookie, and upon retreiving the user data it immediately throws "argument count mismatch error: Expected 1, got 0" on MediaGridColumnInfo(). I assume there is a disconnect between what I am saving and what i

  • Event ID 1904

    Log Name:      Application Source:        HHCTRL Date:          20/05/2014 11:16:02 Event ID:      1904 Task Category: None Level:         Information Keywords:      Classic User:          N/A Computer:      ADMINONLY-PC Description: The description

  • Nokia E71 plugin incompatible with iSync 3.1.0 / Snow Leopard (OSX 10.6.1)

    After upgrading to Snow Leopard the calendar sync has stopped working towards my Nokia E71. However, when disabling the calendar sync option , the contacts are syncing just fine. I wonder if there'll be a fix for this in the near future? When contact

  • Data Modeler - Importing Object Privileges

    Is there a way to import object privileges to DM (from database or Oracle Designer) or do I just have to add them manually to the model?