How to forbit item update??

hello,
i try to control item update in a record under forms
my record structure is:
dt_begin, dt_end, price
i want to update the price anyway but i want to control (conditions) dt_begin and dt_end updates
what trigger can i use???
thank a lot for anwsers
@+ Rosagio

what trigger can i use???What are the conditions when you want to adjust the update_allowed-property? At database-retrieval? Then use a POST-QUERY-trigger. At entering data, when it may be a WHEN-VALIDATE-ITEM-trigger at the specific item.

Similar Messages

  • HOW TO MAKE ITEM UPDATABLE/NON-UPDATABLE DYNAMICALLY

    Hi ,
    I have a form with tabular layout on a multi record lock .
    From shows 20 records at a time and there is a scroll bar to scroll down .There is an item "flag" in the block which is not visible in the form with values "Y" or "N" .
    I need to make some text items in the record updatable when that record has "flag" ="Y" .Documentation say's we need to use set_item_instance_property to do that .
    I tried it in when-new-record-instance,pre-query and key-exeqry triggers with no luck .
    I would really appreciate if you could give me the following info
    1) How to loop through each record in a block to check value of "flag"
    2) Which trigger to use and level form,block etc .
    Thanks,

    Ram,
    Thanks for the update . Now it works . Another problem though ...
    My form displays 20 records at a time and I have a scroll bar .
    I need to change the background of Item to white when it is updatable and gary when it is not updatable .
    I've created a visual attribute and was using it with set_item_instance_property like this ..
    declare
    last_rec number;
    begin
    last_record;
    last_rec := :system.cursor_record;
    first_record;
    for i in 1 .. last_rec
    loop
    if :ANNUAL_FUNDS.flag != 'Y' then
    begin
    Set_Item_Instance_Property( 'EXP_FUNDS', CURRENT_RECORD, UPDATE_ALLOWED , PROPERTY_FALSE);
    Set_Item_Instance_Property( 'EXP_FUNDS', CURRENT_RECORD, VISUAL_ATTRIBUTE, 'VI_UPDATE');
    end;
    end if;
    if :system.last_record = 'TRUE' or i = last_rec then
    exit;
    else
    next_record;
    end if;
    end loop;
    FIRST_RECORD;
    end;
    When I took out the loop the way you've mentioned
    it's changing the background color of the item for the record in which cursor is in . Users want to look at the screen in a glance and go directly to the item which is updatable .
    Is there any way we can loop through all records once and change properties in one shot ?
    Sorry to bother you,
    Asha

  • Valdation and how to check Item Updated/Orignal Values

    I have validation "Funciton Returning Boolean" that has worked but I'm trying to add additional logic to only
    update one of my form items if it's orignal value hasn't changed.
    So the user can update the Account Field which will fire the validation which updates the Fund Code field.
    The fund code field can also be changed, so when the Account field is changed, I don't want to change the fund code field if it's be change already by the user.
    I created a hidden item "P8_ORIGNAL_FUND" that I update "P8_FUND_CODE" with a "Before Region Compulation" with the Items value.
    The if statement with the Fund Code check isn't working when the Fund Code is never changed, so it appears I'm not setting the P8_ORIGNAL_FUND field I believe correctly?
    (VALIDATION CODE)
    Declare
    OutFund Varchar2(6);
    OutOrgn Varchar2(6);
    OutProg Varchar2(6);
    BEGIN
    Apex_Validations.FRSAcct_Valid(:P8_FRS_Acct, OutFund, OutOrgn, OutProg);
    If Trim(OutFund) is null Then
    :P8_PAGE_FOCUS := 'P8_FRS_ACCT';
    Return False;
    Else
    If :P8_FUND_CODE = :P8_ORIGNAL_FUND Then
    :P8_FUND_code := OutFund;
    End If;
    :P8_ORGN_code := OutOrgn;
    :P8_PROG_code := OutProg;
    Return True;
    End If;
    END;
    Edited by: SPoulos on Apr 6, 2010 9:29 AM

    IF NVL (:New.ColName, 'appropriate NVL value) != NVL (:Old.ColName, 'appropriate NVL value') THEN...
    is what you are looking for.

  • After updating to Mavericks the apps store gives me the message "This update is not available for this Apple ID either because it was bought by a different user or the item was refunded or cancelled."  How do I still update my apps??

    After updating to Mavericks the apps store gives me the message "This update is not available for this Apple ID either because it was bought by a different user or the item was refunded or cancelled."  How do I still update apps such as iphoto??

    What happened was you never accepted these apps into your Mac App Store account.
    Drag & drop the apps in the Trash and use OS X Recovery to install them again. after installing the apps be sure to accept them into your account this time from the Purchases pane of the Mac App Store.
    OS X Recovery -
    http://support.apple.com/kb/HT4718

  • How do I download updates for my apps in iTunes 11.0?  I can't find a button or menu item anymore?

    How do I download updates for my apps in iTunes 11.0?  I can't find a button or menu item anymore?

  • How to find item is updating in Sharepoint designer workflow?

    Is there anyway we can get when list item updating in sharepoint designer workflow?. I have status ="New" it is need to send only one time when new item created.
    But now it is sending emails when item is updating with status="New". So I want check if it is new then only check status="New" and send email. otherwise No.
    ItsMeSri SP 2013 Foundation

    Hi ,
    According to your description, my understanding is that you want to send email in workflow only when the item is created and the status is New.
    For this issue, I suggest you create a new Yes/No column called “Edited”, and set the default value to No. When you edit it after creation, change the column to Yes.
    You can set the workflow like the screenshot:
    Best Regards,
    Wendy
    Forum Support
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact
    [email protected]
    Wendy Li
    TechNet Community Support

  • Conflict between Client object model and Item Updated Event Receiver in sharepoint 2010

    Hello All,
    As per my requirement I have a two custom list.
    Agent Details
    Port Name
    Agent Details contains Agent code, Port Name,  email, address and phone of Agent. Its possible that one Agent Code is connected with multiple Port Name.
    Basically what I am doing is I am getting port name connected with Agent code, using jquery and bind those values with check box(using javascript created dynamically) and bind all with Div tag.
    Now when my custom edit form of Agent list open up it shows me different port name binding with checkbox group.
    when user select the check box and click confirm button my clicent object model script will run and add this selected value into Port Name list. 
    After confirm one more button named Save will enable asking user to edit the email, phone or address value and when I click on save my Item updated event fires which update the values of the selected port name(These port name I am getting from port
    name list) to Agent Details custom list.
    Now when I am trying to update the values my event receiver fires or some times it got stuck(not firing). So could you please help me the possible alternative for this requirements.
    Can we user the Ecma Script(Client object model to preserve the value of selectec port) and Item updated event receiver on the same time?
    Is anything am doing wrong then please guide me.

    Hi,
    As I understand, when you updated values in the agent details list the Item updated event receiver got stuck sometimes.
    The item update event receiver will fire after the item has been saved, and the client object model script or the Ecma Script runs before the item is saved, so there is no conflict between the client object model script and item update event receiver.
    You could find out the reason about the item update event receiver gets stuck by debugging the event receiver.
    When you want to debug your event receivers, you have to attach to OWSTIMER.EXE and wait till they are executed. You can control this behavior using the Synchronization attribute. Also, if you’re looking for an easy way to debug an event receiver without
    having to manually attach a debugger to your code, you can use the System.Diagnostics.Debugger.Launch() method.
    The articles below are about how to debug in the event receiver in SharePoint 2010.
    http://sharepoint-kings.blogspot.jp/2013/02/debugging-event-receivers-in-sharepoint.html
    http://chakkaradeep.com/index.php/event-receivers-in-sharepoint-2010/
    http://sharesaint.com/?p=77
    Best regards,
    Sara Fan
    TechNet Community Support
    Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact
    [email protected]

  • Planning Group Changes - Vendor / Customer Line Item update

    Dear SAP Experts
    We have updated the Vendor and Customer master records with new planning groups. Although these have been updated in all the master records the vendor and customer existing line items as seen in the FBL1N and FBL5N reports have not been updated.
    Can you please tell me how they can be updated.
    With many thanks
    Pete

    Try running program "RFFDNA00" in Transaction code SA38. Here you can select vendors and customers.
    This program will delete and re-construct the data in cash management.
    Hope this helps.
    Shail

  • How to install this update and solve USB and touchpad issues?

    I have Equium M50 (59E) and got bitten by an update that took out my touchpad and keyboard .I have made fresh install of XP Home and have all updated drivers and all is going well .The last update i cant seem to fathom is for
    Driver Ana _2005_10_24_V1.2 it is for ,Standard Open HCD USB Host Controller........X 2 .........
    The update fixes all kinds of issues of the kind i am having and is a recomended update from Driver detective ,that i use offten .
    The trouble is it says to uninstall drivers for the one i have installed allready and when i do this it knocks off my USB mouse leaving me not able to install the new ones .When i reboot it installs the ones i dont want reinstalled .
    This is the read me off the new update and realy it is beyond me to underdstand what to do ............so here it is ?
    Driver revision history:
    Twinhan VP704A Driver Release note
    Note:
    1.In case the system crashes while running with VP704A, Please install ULI
    USB 2.0 host driver in \ULiUSB20Driver
    2. For XP/SP1, please update with the patch in
    <http://www.microsoft.com/downloads/details.aspx?displaylang=zh-tw&familyid=733dd867-56a0-4956-b7fe-e85b688b7f86>
    3.In XP/SP1, updating driver will crash the system, while new install is ok.
    The trick to update driver in XP/SP1 is shown in the following steps,
    a. Uninstall the driver
    b. Unplug and plug the USB device
    c. Install the driver
    4. To support remote controller, please launch Agent.exe in \Agent.
    Further details can be found in \Agent\Readme.txt
    Known issues:
    1. Multi-instance is not supported
    2. Remote wakeup is not supported
    3. High CPU usage in Analog audio/video capture
    4. Bad VBI Signal using YUY2 color format
    5. AV out of sync if audio captured from wrong filter.
    (Fix:using the filter "USB Audio Device" in WDM stream capture device)
    6. Noise with analog-TV and FM Radio
    (Fix:using the filter "USB Audio Device" in WDM stream capture device)
    Driver revision history:
    2005/10/24, Version: 1.0.2.8
    Bugs fixed and new features:
    1.Crossbar not properly set.
    2005/10/21, Version: 1.0.2.7
    Bugs fixed and new features:
    1.Firmware version read from FLASH OK!
    2005/10/14, Version: 1.0.2.6
    Bugs fixed and new features:
    1.Mutil-Access driver blank part below part screen when VBI!
    2.Mutil-Access driver HCT driver verify crash fix!
    2005/10/07, Version: 1.0.2.5
    Bugs fixed and new features:
    1.Tuner Power off when S-Video,Composite.
    2005/09/30, Version: 1.0.2.4
    Bugs fixed and new features:
    1.Agent.exe updated for repeat bug!
    2.TI5150 Register for Video Format fix!
    2005/09/29, Version: 1.0.2.3
    Bugs fixed and new features:
    1.A trial driver build for multiple access support. (in the folder "\Multi-Access")
    Note: "USB Audio device" filter provided by system does not support mutil-Access.
    2.Reset TI5150 when a new frequency is set
    2005/09/27, Version: 1.0.2.2
    Bugs fixed and new features:
    1.Fix I2C unstable access on some devices.
    2005/09/23, Version: 1.0.2.1
    Bugs fixed and new features:
    1.Analog TV becomes darker sometimes.
    2005/09/15, Version: 1.0.2.0
    Bugs fixed and new features:
    1.Fix INF for Windows 2000 installation.
    2.FM radio scan policy changed!
    2005/09/13, Version: 1.0.1.9
    Bugs fixed and new features:
    1.USB serial number string not visible with USBView, firmware update required.
    2.FM radio scan policy, return unlock if PLLOffset>=9x12.5KHz
    2005/09/13, Version: 1.0.1.8
    Bugs fixed and new features:
    1.After switching between A/D/AV several times, video display becomes dark in THDTV 2.61
    2005/09/12, Version: 1.0.1.7
    Bugs fixed and new features:
    1.Improve channel lock status check performance
    2.Pinnacle INF Fix.
    2005/09/09, Version: 1.0.1.6
    Bugs fixed and new features:
    1.Add some audio initialization function.
    2005/08/31, Version: 1.0.1.5
    Bugs fixed and new features:
    1.NTSC & PAL mode resolution separation.
    2005/08/30, Version: 1.0.1.4
    Bugs fixed and new features:
    1.AvgTimePerFrame.
    2.Frame Drop.
    3.Pinnacle inf file HCT chkinf fail.
    2005/08/22, Version: 1.0.1.3
    Bugs fixed and new features:
    1.Add Remote controller interface in digital source filter.
    2.A new Remote controller test tool with source code in \Test_RC.
    2005/08/16, Version: 1.0.1.2
    Bugs fixed and new features:
    1.Reorg Pinnacel & Twinhan's driver & folder.
    2.VP704A_BDA_Test tool, add system code test.
    3.Set IR protocol standard by registry keys "IRSTANDARD", "IRSYSCODECHECK1" in INF file.
    4.Firmware update
    2005/08/15, Version: 1.0.1.1
    Bugs fixed and new features:
    1.Serial number function is lost while adjusting TV audio volume
    2.RC6A CIR support
    (This firmware uses GPIO3 (M9207 pin 80) to decode RC6 protocol.
    The hardware should be reworked to connect M9207 pin 80 to CIR module and the fimrware
    EEPROM should be flashed with \Firmware\M9207.bin )
    3.Serieal number, MAC address and OEM device name supported.
    Please refer to further details in \Firmware\readme.txt.
    4.Ioclt sample source code included.
    2005/08/08, Version: 1.0.0.10
    Bugs fixed and new features:
    1.Analog TV audio volume increase.
    2005/08/04, Version: 1.0.0.9
    Bugs fixed and new features:
    1.Analog TV Video mode set failure.
    2005/08/03, Version: 1.0.0.8
    Bugs fixed and new features:
    1.Off-centerf requency scan +/- 125Khz
    2.Fix duplicated program scanned in MCE.
    2005/08/02, Version: 1.0.0.7
    Bugs fixed and new features:
    1.THBDAConsole.exe "ulFixedBW", "ulDisableOffFreqScan", "ulMCEFreqTranslate" bug fixed
    2005/07/28, Version: 1.0.0.6
    Bugs fixed and new features:
    1.THBDAConsole.exe "ulFixedBW", "ulDisableOffFreqScan", "ulMCEFreqTranslate" support
    2.Improve I2C communication stability.
    3.Unify Signal strength & quality indication as THBda ioctl interface.
    4.Capture filter Lock status check.
    2005/07/28, Version: 1.0.0.5
    Bugs fixed and new features:
    1. The same signal strength & quality indications as VP7046.
    2. Debug build driver
    2005/07/21, Version: 1.0.0.4
    Bugs fixed and new features:
    1.Update INF.
    2005/07/20, Version: 1.0.0.3
    Bugs fixed and new features:
    1.Improve performance in PCM4
    2.Switching from Analog TV Mode to FM Mode failure
    2005/07/04, Version: 1.0.0.2
    Bugs fixed and new features:
    1.Production Tool FM test OK!
    And here is the readme from the other file within the update ?
    ULi PCI to USB Enhanced Host Controller Driver V1.72 for Windows 98 SE, Windows ME , Windows 2000 and Windows XP
    INTRODUCTION
    This driver supports ULi EHCI host Controller under Windows 98 SE, Windows ME , Windows 2000
    and Windows XP.
    CONTENTS OF THIS DOCUMENT
    1. Installation Instructions
    2. Uninstallation Instructions
    1. Installation Instructions
    (Windows 98 SE & Windows ME)
    A.When ULi USB 2.0 Controller has attached on system
    1. Install ULi USB2.0 Driver
    - Run the setup program.
    - This program will copy driver files into your Windows system,then restart your computer.
    2. After system reboot, Windows will find the new hardware "ULi PCI to USB Enhanced
    Host Controller" and install the driver.
    B.If no ULi USB 2.0 Controller on system
    1. Install ULi USB2.0 Driver
    - Run the setup program.
    - This program will copy driver files into your Windows system, then turn off your computer.
    - Attach ULi USB 2.0 Controller card on your system and then reboot your computer.
    2. After system reboot, Windows will find the new hardware "ULi PCI to USB Enhanced
    Host Controller" and install the driver.
    (Windows 2000)
    A.When ULi USB 2.0 Controller has attached on system
    1. Install ULi USB2.0 Driver
    - Run the setup program.
    - This program will install and load the driver and you don't have to reboot the
    computer.
    B.If no ULi USB 2.0 Controller on system
    1. Install ULi USB2.0 Driver
    - Run the setup program.
    - This program will copy driver files into your Windows system, then turn off
    your computer.
    - Attach ULi USB 2.0 Controller card on your system and then reboot your computer.
    2. After system reboot, Windows will find the new hardware "ULi PCI to USB Enhanced
    Host Controller" and install the driver.
    (Windows XP)
    A.When ULi USB 2.0 Controller has attached on system
    1. Install ULi USB2.0 Driver
    - Run the setup program.
    - Click "NEXT"
    - This program will install and load the driver and you don't have to reboot the
    computer.
    - After install ULi USB 2.0 driver successfully. System will detect "USB 2.0 Root
    Hub". Please select "install the software automatically (Recommended)" and then
    click "Next" button to continue install.
    - This program will install and load the driver and you don't have to reboot the
    computer.
    B.If no ULi USB 2.0 Controller on system
    1. Install ULi USB2.0 Driver
    - Run the setup program.
    - This program will copy driver files into your Windows system, then turn off
    your computer.
    - Attach ULi USB 2.0 Controller card on your system and then reboot your computer.
    2. After system reboot, Windows will find the new hardware "ULi PCI to USB Enhanced
    Host Controller", continue to install.
    - After install ULi USB 2.0 driver successfully. System will detect "USB 2.0 Root
    Hub". Please select "install the software automatically (Recommended)" and then
    click "Next" button to continue install.
    Notice:
    If you can't setup driver successfully. Please reboot your system and then follow
    above steps to install driver again.
    2. Uninstallation Instructions
    1. Open "Control Panel" folder.
    2. Invoke "Add\Remove Programs" icon.
    3. Choose "ULi USB2.0 Driver" item.
    4. Click on "Add/Remove" button to remove drivers.
    Change List:
    1.74
    1.fix issue that multi-interface keyboard can not be detected on the usb2.0 hub.
    2.support all USB2.0 Host Controller.
    1.73
    1.fix issue that On Win98SE , Blue screen when unplugging some USB2.0 Scanner after scanning image.
    2.fix issue that On Win98SE, Blue screen when unplugging some USB2.0 Scanner from USB 2.0 Hub after scanning image.
    3.fix issue that On Win98SE, Blue screen while copying files across the SUNBOX UH-204 Hub.
    4.fix issue that wirless lan will disconect when plug-in usb device.
    1.72
    1.Fix issue that system will crash when USB HD copy large file.
    1.71
    1.improve Power management function in Win98/ME.
    1.70
    1.Improve the function of devcie detection.
    1.62
    1.Fix the problem that a USB floppy under USB 2.0 HUB cannot function when system resume from suspend.
    1.61
    1.Fix the problem that some USB device under USB 2.0 HUB cannot be found if system resume from suspend.
    1.60
    1.To support power management functions when a HUB with USB device plug into
    a root HUB.
    1.57
    1.Fix USB floppy with USB 2.0 HUB can't be detect issue.
    2.Fix issue that audio can't display smooth when USB device attach to system.
    3.Fix system can't detect USB dvice when USB device attach to system in
    suspend mode.
    4.Fix issue that when USB root HUB have full loading, USB HD sometimes
    transaction fail.
    1.56
    1. Fix issue that DVD decoder device can't display properly.
    1.55
    1. Fix OTI USB 2.0 hand drive can't be detect issue.
    2. Fix USB mouse can't use after resume from suspend.
    1.54
    1.Improve driver security.
    1.53
    1. Fix bulk transfer may stop if USB device is plugged in USB 2.0 hub
    2. Fix USB 2.0 mass storage device can't be access after resuming from standby if there is another USB 1.1 device existing
    1.52
    1. Fix system pages fault when accessing mass storage device in Win98SE, or scandisk failure when selecting
    automatically fix file system errors
    2. Fix system may hang up in Win98SE/ME if USB 2.0 cardbus card is plugged
    v.1.51
    1. Improve USB 2.0 cardreader compatibility.
    2. Fix USB IDE devices can't be accessed after resuming from standby/hibernation.
    v1.50
    1. Improve bulk transfer
    v1.48
    1. Fix USB 2.0 LAN driver installation hanging up
    2. Fix some USB 1.1 cardreader can't be identified when plugged into USB 2.0 hub
    3. Fix some laptops Win98SE booting hanging up
    v1.47
    1. Improve bulk transfer performance.
    2. Fix USB 2.0 bulk webcam preview failure.
    v1.46
    1. Support USB 2.0 and 1.1 Isochronous devices
    2. Fix system hanging up when rebooting system if USB 2.0 host controller is disabled in Win9X/ME
    3. Fix system hanging up when uninstalling driver if there are USB 2.0 devices connected in Win2K/XP
    4. Improve device detection capability in Win9X/ME
    v1.45
    1. Fix system hanging up when resuming from ACPI sleep mode.
    2. Fix mouse sometimes doesn't disappear when it's unplugged.
    3. Fix Win9X composite device detection failure and improve Win2K/XP composite device
    v1.44
    1. Support composite device
    2. Improve device detection
    v1.43
    1. Improve IDE read/write transfer failure rate with USB 2.0 to IDE bridge on PC card platform
    2. Fix high-speed device detected as full-speed device
    3. Fix some USB mouses detection failure problem
    4. Fix some USB 2.0 hubs detection failure problem
    5. Fix Win98SE crashing if ULi EHCI 1.42 is installed
    v1.42
    1. Fix PC Card ejection hanging up in Win98/ME
    2. Fix suspend/resume hanging up in Win98
    3. Solve sometimes USB 1.1 device can't be detected if OS boots with USB 2.0 and 1.1 devices plugged
    4. Fix some PC Card USB 1.1 device detection failure
    v1.41
    1. Add new feature that system can install driver before device is plugged.
    2. Fix PCMCIA OHCI controller resource assign issue on Windos ME.
    v1.40
    1. Support Win9X/ME/2K/XP with ULi USB 2.0 driver.
    2. Fix PCMCIA EHCI controller detecting USB 2.0 device problem in Win9X/ME.
    v1.32
    1. Fix issue that driver can't detect Microsoft driver in Windows XP
    if OS path is not c:\windows.
    2. Fix issue that driver can't detect USB 2.0 controller device in in some system.
    v1.31
    1. Fix issue that driver can't install on Windows 2000.
    v1.30
    1. Fix issue that Win9X/ME shows no USB 2.0 Root Hub.
    2. Fix issue that hanging up when second entry into Win9X S1 with HID device plugged.
    3. Fix issue that sometimes when you click "Scan for hardware changes".
    to PNP ULi USB2.0 controller, system will informs you the usbehci.sys
    file can't be found.
    4. Fix issue that v1.20 finds no EHCI controller to install driver for after different
    verison of ULi EHCI controller devices are plugged and unplugged.
    5. Support installing driver for more than one ULi EHCI controller devices existing on
    system at the same time.
    6. Fix Win2K/XP shows USB Root Hub for USB 2.0 Root Hub.
    v1.20
    1.Support ULi USB 2.0 Host controller driver for Windows 98SE/ME/2000/XP.
    ULi Coporation. (ULi) web sites:
    http://www.uli.com.tw/ (Taiwan)
    CAN ANYONE TREAT ME LIKE A TWO YEAR OLD AND GIVE SOME GUIDANCE AS TO HOW TO ACHIEVE THIS UPDATE .
    i WOULD BE VERY GRATEFULL AND KIND OF THINK IT WOULD BE BENIFICIAL TO A LOT MORE PEOPLE AS I SEE A LOT OF XP AND PROBLEMS OF THE KIND THIS UPDATE IS SUPPOSED TO FIX .

    It says above 2 relevant and 1 correct answere available .............
    I'm new here so could anyone direct me to these answeres?

  • How to use Delta Update in InfoSpoke

    How to use Delta Update in InfoSpoke & to include in Process Chain

    Initialization / delta updates are what we do every day, and it is usually the update method of choice for most data targets. The delta mechanism ensures the consistency of transactional data. So if some data is wrong in the early stage of data flow, we have to not only correct the data itself but also the related records in subsequent data targets.
    Unfortunately, such data can't be avoided in daily extractions. In some situations, the data to ODS is correct but reports errors while loading from ODS to Cubes.
    Here is one example:
    Some FI documents transferred in R/3 with LSMW's background mode and one of the line items 'Negative posting signal' was inserted with 'x' while the right one should be 'X'.
    This line time stays cool in my ODS Z1CCWO01, but encounters errors while loaded into several Cubes when the process chain's running.

  • As i am fresher Please share the doc of ECMA script using java script in SharePoint 2013 also how we can insert,update,delete records in list using ECMA script.

    As i am fresher Please share the doc of ECMA script using java script in SharePoint 2013 step by step also how we can insert,update,delete records in list using ECMA script.
    Thanks and Regards, Rangnath Mali

    Hi,
    According to your post, my understanding is that you want to use JavaScript to work with SharePoint list.
    To create list items, we can create a ListItemCreationInformation object, set its properties, and pass it as parameter to the addItem(parameters) function
    of the List object.
    To set list item properties, we can use a column indexer to make an assignment, and call the update() function so that changes will take effect when you callexecuteQueryAsync(succeededCallback,
    failedCallback). 
    And to delete a list item, call the deleteObject() function on the object. 
    There is an MSDN article about the details steps of this topic, you can have a look at it.
    How to: Create, Update, and Delete List Items Using JavaScript
    Thanks & Regards,
    Jason
    Jason Guo
    TechNet Community Support

  • Send one mail for multiple list item update

    i have 3 lists storing customer details which are displayed in a page. i need to send mail whenever there is customer details update(any or all 3 lists). should send only one mail per customer details update(not per list item update).Please advise how to
    achieve this using SharePoint workflow.

    Hi,
    According to your post, my understanding is that you want to send an email when this are list items update.
    A workaround is that we can use one big list to store the customer details from these three lists, then let users update their information in the big list and send email.
    Or we can create a form to update these 3 lists, then send a mail when the form saved.
    http://social.msdn.microsoft.com/Forums/sharepoint/en-US/39f2d0bf-6cfd-4b61-b0b7-ff89113406d5/update-multiple-list-from-a-single-form-using-infopath-in-sharepoint-2010?forum=sharepointcustomizationprevious
    Best Regards
    Dennis Guo
    TechNet Community Support

  • I have an iBook G4 running on OS X 10.4.11 and I just got a new ipod and can't figure out how to get it updated to be able to sync my ipod PLEASE HELP

    I have an iBook G4 running on OS X 10.4.11 and I just got a new ipod and can't figure out how to get it updated to be able to sync my ipod PLEASE HELP

    You could go hunting for a fair price on a refurbished or restored Intel-based Mac or MacBook, as most early models of CoreDuo and Core2Duo can run Snow Leopard 10.6.8, and some much more recent.
    The Apple Store's Special Deals section that is online has some fairly recent examples of hardware with an OS, original accessories as noted, power cord, and complementary one year coverage. Eligibility for extended AppleCare plans are noted & may be available for various items in the store. Subject to availability. Refurbished. Like new. The price difference can be about the same as the additional two year AppleCare plan may cost, so get that too.
    Third party repaired restored or available through other channels vary in quality, quantity, condition, and may be lacking in some or most original accessories; they should include basic hardware as originally equipped and have the boot-install software disc set as intended for that build model & year specification, included.
    Auction sites rarely have that much of a kit together, w/ missing discs, scruffy, extra fees, etc. On the other hand, companies that restore and repair Macs for a living and are authorized Apple service centers may have something, if you aren't in the market for something holiday new or really quick. Older models if reasonably refurbished can still shine years later.
    Hopefully this helps somewhat.
    Good luck & happy computing!

  • How i Rename Item Code and Description

    Dear All,
    Can you please tell me how i change Item code and item description in sap b1 8.8.

    This can be very annoying.  If there's a typo in the product code, we cannot update it anymore (since there are already transactions with this product) and the item is not displayed in the correct place when the item list is sorted on the item code.  We can start a new product with the correct code and transfer the items in stock to the new product code, but then all the current transactions are still linked with the old/deprecated product.  Very annoying.
    If someone could find a method to rename the item code without losing the linked transactions, this would really be helpful.  Thanks!
    Regards,
    Pieter Verhaeghe

  • No commitment Item Update while creation of Sales order

    hi,
    I have  maintained Derivation Rule
    Co Code / GL/ BA/ Plant / S Loc/ = Fund / Comitement / Fund Center.
    Stil in that case at the time of creation of Sales order, systeme is giving error (++No commitment Item Update M V2225++)
    And also i have maintained the Comitement Item in GL master.
    Could you give me some solution.
    Thanks
    Nilesh R

    Hi Nilesh R,
    Please check the following information of Consulting Note 1268001 (the same for funds center is valid to commitment item):
    1.  You receive the error message in a Sales Order (SD) process.
       a) SD customizing settings for FM objects.
       You can set "commitment item" as an optional entry in SD customizing settings for field status. This can be checked in the IMG path: SPRO -> Public Sector Management -> Funds Management Government-> Actual and Commitment Update/Integration -> Integration ->
       Maintain Field Status for Assigning FM Account Assignments
       You should have a record with Object type = '04' (sales order).
       It is not necessary to have the field as required (unless you want to insert it in the origin process) due to the fact that
       this can avoid the account assignment derivation between CO objects and FM objects. The field can not be hidden otherwise it will be not derived.
       For more information, check note 572729.
    The system response depends on how you defined the fields of the FM dialog box using Customizing activity 'Maintain Field Status for Assigning FM Account Assignments':
         -  The fields of the FM dialog box are defined as ready for input ('Opt. entry' or 'Req. entry') in Customizing:
            If you change the reference object in the sales order, the system does not re-derive FM data automatically. For that, you
            must navigate to the FM dialog box and, by choosing icon 'Redetermine account (F5)', trigger the derivation manually.
         -   The fields of the FM dialog box are defined as not changeable ('Display') in Customizing:
             If the reference object is changed in the order, FM data is redetermined automatically.
         -  The fields of the FM dialog box are defined as not displayable ('Hide') in Customizing:
             FM data is not determined.
    Therefore, set the field status to optional permit the user to enter the FM objects manually and still benefit from the possibility to
    automatically derive the FM objects from a CO object.
    For more information on integrating Plant Maintenance, Sales and Distribution and Project System, see the SAP Library Accounting -> Public Sector Management -> Funds Management -> Actual and Commitment Update -> Integration with Plant Maintenance, Integration with Sales and Distribution and Integration with Project System (Network).
    You can also check the documentation available in the IMG menu of the status (written above).
       b) If you do not want to integrate sales order process within PSM-FM, you should consider to deactivate this integration in
          customizing transaction OFUP. In release EA-PS 1.10 and 2.00 modification note 591573 is available.
    Please also check consulting note 1267998 and let me know if you have used FMDERIVE trace tool.
    If you want to have SD integrated to FM, please check if in OFUP the flag of this integration is accordingly set.
    If you work with free-of-charge sales order line items mixed with line items having value, please consider to apply note 1441847 (if it is valid to your current release/package).
    I hope this answer your inquiry.
    Best Regards,
    Vanessa Barth.

Maybe you are looking for

  • What is file system?

    Hi all,             May I know what File System is and how it is useful?My requirement is to transfer file from SAP system(OS is Windows NT) to Nonsap sytem.I am given with solution to map the File systems. What is meant by Filesystem and in what way

  • AppServer or Web App error (9.0.4) and BROKEN PIPE

    Hi, I'm still using 9.0.4, and have started getting the following message in the base server.log of the Oracle Container..... 07/12/16 21:18:33 Internal error in HttpServer java.lang.ArrayIndexOutOfBoundsException at java.lang.System.arraycopy(Native

  • Lenovo G550 Model 20023 OS

    Hello, I bought my Lenovo G550 model 20023 around 4 years ago. When I recieved the laptop there was not any operating system on it and the seller told me that this model does not have one. But now, after years!, by accident I came across this link th

  • Adding dock icon _CFURLAliasData

    Hello all,     We are doing a deployment with a hybrid of two applications.  One is Mac native and the other is a Windows program running inside of VMware Fusion 4 in unity mode.    We can make a dock icon for the Mac application, no sweat... but wha

  • VIP ping no response on a CSS 11050

    Our management system pings devices to verify they are active. The VIP often drops pings (mostly in the morning) and then recovers after a few minutes. The web load balancing never stops and the services are always active. The real addresses on the C