IH08 : Equipment list is adding new entry instead of updating with current

Hi,
The list is displaying the equipment many times in the list.
According to the requirement the equipment should be displayed only once with the current function location it is placed.
Please help.

Hi,
The list is displaying the equipment many times in the list.
According to the requirement the equipment should be displayed only once with the current function location it is placed.
Please help.

Similar Messages

  • Is there any way to to have the "Home" icon open a new tab instead of replacing the current page with the home page?

    I would prefer that the "Home" icon on the Navigation Toolbar open a new tab instead of replacing the current tab with the home page. Is there any way to accomplish this?
    Thank you.

    If you middle-click on the home icon it will open a new tab containing the home page.

  • Adding new entry in table J_1INEXCGRP

    Hi,
    I am MM functional,  due to some system error , for the excsie group I required to manitain the entry in table J_1INEXCGRP,  as that customization part is not included in request,  now I want to confirm which methode to be use
    SE12->Utilities -> Table content -> create entry   or  with SE16N
    can you please give the stpes for adding a new entry in this table it has only two fileds
    MANDT
    J_1IEXCGRP
    regards,
    zafar
    Moderator Message: Spoon-feeding is not entertained here.
    Edited by: kishan P on Jan 25, 2011 4:58 PM

    Hi Alok,
    Hope this steps - code will help you to resolve this issue.
    1. Create A Group for your table control. In Screen Painter.
    2. Write Screen modification routine for the same
    it can be like this..
    MODULE status_0100 OUTPUT.
      SET PF-STATUS 'SCREEN_100'.
      LOOP AT SCREEN.
        IF screen-group1 = 'MOD'.
          IF flag = ' '.
            screen-input = '0'.
          ELSEIF flag = 'X'.
            screen-input = '1'.
          ENDIF.
          MODIFY SCREEN.
        ENDIF.
      ENDLOOP.
    ENDMODULE.
    3. This will disable the display of the Fields in TABLE Control.
    4. in the PBO loop of the table control. Identify the lines which u want to keep active.
    Hope this will help
    <i><b>** Reward points to helpful answer</b></i>

  • Update statement inserts a new row instead of updating

    My code should just update a single specific row in the table. I used a simple procedure to update a record in the current application as well and it runs without any problem except this case. Every time the query runs, it actually inserts a new row instead
    of just updating an existing:
    So here is my c# code:
    try
    command.Parameters.Clear();
    command.Parameters.AddRange(vars);
    command.CommandText = "Update" + tableName;
    conn.Open();
    command.ExecuteNonQuery();
    conn.Close();
    this.GetData(tableName);
    catch
    throw;
    And here is my SQL code (please ingore 'Alter Procedure' statement, I just wanted to get the core script of the procedure):
    ALTER procedure [dbo].[UpdateExpenditureItems]
    (@ID int,
    @Name nvarchar(50),
    @IsGroup bit,
    @Parent nvarchar(50),
    @Description nvarchar(50)
    AS
    Begin
    --a new inserted row seems to be a result of running IF statement rather than ELSE
    if @Parent is not null
    begin
    declare @ParentID int
    set @ParentID = (select ID from ExpenditureItems where Name=@Parent);
    UPDATE ExpenditureItems SET Name =@Name, Parent =@ParentID, [Description] =@Description, IsGroup = @IsGroup WHERE ID=@ID;
    end
    else
    begin
    UPDATE ExpenditureItems SET Name =@Name, [Description] =@Description WHERE ID=@ID
    end
    end
    I ran the query itself from sql management studio and it works fine. The problem seems to be in c# code, but there's nothing unusual. Same code for operations with the databse works fine in other parts of the software... I appreciate your help!
    Thanks in advance!

    Please can you post your full C# code for this function? Also the code you sent is not calling an SP? so why do we need to validate against the SP?
    Fouad Roumieh
    So here is my code:
    //Update is called on OK button click
    private void okBut_Click(object sender, EventArgs e)
    //edit code runs here
    SqlParameter[] pars = new SqlParameter[5];
    pars[0] = new SqlParameter("@ID", int.Parse(idTB.Text));
    pars[0].SqlDbType = SqlDbType.Int;
    pars[1] = new SqlParameter("@Name", itemTB.Text);
    pars[1].SqlDbType = SqlDbType.NVarChar;
    pars[2] = new SqlParameter("@IsGroup", true);
    pars[2].SqlDbType = SqlDbType.Bit;
    pars[3] = new SqlParameter("@Parent", DBNull.Value);
    pars[3].SqlDbType = SqlDbType.Int;
    pars[4] = new SqlParameter("@Description", descTB.Text);
    pars[4].SqlDbType = SqlDbType.NVarChar;
    try
    DAL dal = new DAL();
    dal.UpdateData("ExpenditureItems", pars); //Update is called here
    catch (Exception ex)
    StaticValues.WriteEventLogXML(ex, this.Text);
    switch (StaticValues.user.Language)
    case "English":
    MessageBox.Show("Database error", "Error", MessageBoxButtons.OK, MessageBoxIcon.Error);
    break;
    default:
    break;
    finally
    this.DialogResult = System.Windows.Forms.DialogResult.OK;
    StaticValues.currentNode = itemTB.Text;
    public void UpdateData(string tableNameString, SqlParameter[] vars)
    string tableName = tableNameString.Replace(" ", string.Empty);
    try
    command.Parameters.Clear();
    command.Parameters.AddRange(vars);
    command.CommandText = "Update" + tableName;
    conn.Open();
    command.ExecuteNonQuery();
    conn.Close();
    this.GetData(tableName);
    catch
    throw;
    And here is GetData procedure:
    public void GetData(string tableNameString)
    string tableName = tableNameString.Replace(" ", string.Empty);
    command.CommandText = "Get" + tableName;
    command.Parameters.Clear();
    if (!StaticValues.dataSet.Tables.Contains(tableName))
    StaticValues.dataSet.Tables.Add(tableName);
    else
    StaticValues.dataSet.Tables[tableName].Clear();
    try
    adapter.SelectCommand = command;
    conn.ConnectionString = DAL.ConnectionString;
    command.Connection = conn;
    conn.Open();
    adapter.Fill(StaticValues.dataSet.Tables[tableName]);
    conn.Close();
    catch
    throw;
    And this is my complete code for sql procedure:
    USE [ISWM project]
    GO
    /****** Object: StoredProcedure [dbo].[UpdateExpenditureItems] Script Date: 13.04.2015 9:09:36 ******/
    SET ANSI_NULLS ON
    GO
    SET QUOTED_IDENTIFIER ON
    GO
    ALTER procedure [dbo].[UpdateExpenditureItems]
    (@ID int,
    @Name nvarchar(50),
    @Parent nvarchar(50),
    @Description nvarchar(50),
    @IsGroup bit
    AS
    Begin
    if @Parent IS NOT null
    begin
    declare @ParentID int
    set @ParentID = (select ID from ExpenditureItems where Name=@Parent);
    UPDATE ExpenditureItems SET Name =@Name, Parent =@ParentID, [Description] =@Description, IsGroup = @IsGroup WHERE ID=@ID;
    end
    else
    begin
    UPDATE ExpenditureItems SET Name =@Name, [Description] =@Description WHERE ID=@ID
    end
    end
    The codes posted above work great in other similar parts of the application where select, insert, delete and update is required.
    Concerning my current problem - I ran the procedure itself in SQL Server Management Studio, and it works well. I would say that there's something wrong with my c# code, but it can't be wrong because it's quite simple and works in other place in my application...
    I really don't get what's missing...

  • Update - Help - Brand New ipod - won't update with software

    IPod will not update with cd-rom it came with - this is the first - initial - brand new install of ipod
    win xp with sp2 installed
    used cd-rom that came with ipod - followed instructions to the tee - stated it can not update ipod - itunes does not see ipod - went to web site and downloaded 47mb file from june 05
    still will not update - states ipod not supported by this software - the ipod is BRAND NEW - 30gb color photo ipod??
    please help me

    Hi I had the same problem with my last ipod. i tried all of the steps on the apple support site but none of them worked. I decided to send my ipod in for a repair. Anyway when a week later my ipod came back it was fixed but when i loaded up the computer the disk locked again. I followed through the instructions which said to download the newest software. So i downloaded the new software again and this still didnt work. The last thing i tried to do was to use an old version of an updater so i used (ipod updater 2004-11-15) this ran through the restore process and after completing this, the menu on the ipod loaded up. I then connected to itunes and it allowed it to communicate and transfer the songs
    It worked for me i hope it works for you.
    Best of luck
    Daz Semple

  • HT4623 i have a new iphone 5 i updated with old i 4s how cand I change to new phone

    I have a new iphone5 I updated with my old Iphone 4s How can I change to my Iphone5 to update itunes?

    No idea what you are asking
    Please explain

  • Exchange 2007 - Empty OU list when adding New Mailbox in EMC

    When attempting to add a new mailbox using the Management Console, everything seems fine until you go to select which OU it belongs to. It shows two OU entries, the "Microsoft Exchange Security Groups" and "Users" folders.
    So far we've been using a custom one called "Hosting" which contains various sub-OUs depending on who the user belongs under, and this has been working just fine until this morning when nothing showed up any more.
    We've ensured there are no updates pending, and have even resorted to trying a reboot without any luck.
    We have 100 OUs under "Hosting", and just under 400 regular mailboxes set up as is. The OU is also visible using ADSI Edit or whe nbrowsing AD by it self.
    We are running Exchange Server 2007 v 08.03.0342.000, with Management Console 3.0 v 6.0 (Build 6002: SP2)
    Recipient Scope is set to the topmost OU, I've also attempted to switch this to use the full forest, but this did not produce any different outcome, the same list is provided me.

    I hope IPv6 is enabled on the server!
    http://social.technet.microsoft.com/Forums/exchange/en-US/bbeb9a96-ab56-4fa3-9f01-70b3dd24fdc3/msexchange-adaccess-event-id-2105
    http://technet.microsoft.com/en-us/library/ff360776(v=exchg.140).aspx
    Is there any other DC/GC in the environment.
    Cheers,
    Gulab Prasad
    Technology Consultant
    Blog:
    http://www.exchangeranger.com    Twitter:
      LinkedIn:
       Check out CodeTwo’s tools for Exchange admins
    Note: Posts are provided “AS IS” without warranty of any kind, either expressed or implied, including but not limited to the implied warranties of merchantability and/or fitness for a particular purpose.

  • Table TFIBLOPAY - Impact of Adding New Entries

    Hello SMEs,
    I’m looking for some expertise surrounding the use of table TFIBLOPAY “Origin on Online Payments”. I’ve only been able to maintain via SM30 and had to add a value in order to configure the following item in SPRO: Financial Accounting --> Bank Accounting --> Business Transactions --> Payment Transactions --> Online Payments --> Define Process Steps.
    By doing this, I was able to set Payment Requests from an Origin to be automatically released.   Is this the proper procedure to do?
    Secondly, when making a change to this table, I received a warning from SAP stating the entry “may be overwritten”.  Is this warning only for SAP-delivered items someone changes or does it pertain to items that are added?
    Thirdly, I only maintained an entry in field TFIBLOPAY-ORIGIN; none of the other columns in the table were updated.  Are other values expected?
    Thanks,
    Dan
    When making this change, I received the following message:
    Do not make any changes (SAP entry) Message no. SV117 Diagnosis You have changed an entry which, according to the name space definition is managed by SAP. System Response Your changes may be overwritten at each subsequent upgrade or release change. Procedure Avoid changing this data. If the change is inavoidable, document it carefully, so that it can be repeated, if necessary, after an upgrade or release change. The best way to do this is to put the data in a change request, which you can export before an upgrade or release change, and import again afterwards.   X

    HI,
    please search in SCN forum before you post:
    Re: Adding a ValueField to an existing Operating Concern?
    Best regards, Christian

  • Reminder app problem adding new entry.

    I updated my iPad to IOS 5. Testing the "reminder" app lets me easily add new reminders. After three tries all the buttons under "edit" disappeared. Is there any way to reset/reinstall the app or to get the buttons back. As I'm from Germany maybe there are not the correct translations for "Erinnerungen" (Reminder) or "Bearbeiten" (Edit). Sorry.
    Can somebody help?

    The format of your ldif file is incorrect and does not containt valid LDIF format (see RFC 2849)
    First an empty line is a separator for entries within LDIF, so the data appears as several LDAP entries not just one.
    Second, the attribute name is attributeTypes and not attributeType.
    Third, there must be a colon ':' separator between attributetypes and the value for that attribute type definition.
    Regards,
    Ludovic

  • T020 - Adding new entries

    Having taken a copy of a standard FI transaction, I need to add an entry in T020 for it to work.
    Is there any IMG entry for this, or is the entry made to the table direct in SM30 ?

    YOu will reach the same table maintenance from SAP IMG or sm30.
    YOu can maintain the entries in sm30 as well.
    Take help of a Functional consultant before you make changes though.
    Regards,
    ravi

  • Eliminating the auto sync action when adding new entry in calendar on my BB Curve 8330

    Hi everyone,
    I am using my Yahoo e-mail as my primary profile for my Calendar (CICAL) and Messaging (CMIME) as my Default Services.  I do a daily sync with my Outlook 2003 calendar, notes, contacts, etc, via USB but I do not sync my BB calendar with my Yahoo calendar (I don't even use Yahoo calendar for that matter).  Every time I edit an entry on my BB calendar I see the arrows on the top right corner flashing.  I guess this means my Curve is trying to sync the changes to some other application, perhaps Yahoo calendar.  How do I turn this feature off?  I would like to minimize the amount of wireless transmission from my BB and I feel that this is an unnecessary activity since I'm not wirelessly syncing my calendar to anything else.
    Thank you.
    Solved!
    Go to Solution.

    Right I agree. The BlackBerry will alays display those arrows when it's sending/receiving data. The only way it won't is if you turn the radio off.
    If someone has been helpful please consider giving them kudos by clicking the star to the left of their post.
    Remember to resolve your thread by clicking Accepted Solution.

  • Republish to Flickr from LR4 posts as new photos instead of updates them (only one set, not all)

    I have a single set on Flickr that I cannot republish updates to from LR4 - republishing a modified photo posts it as a new photo.  All other sets seem to work fine.  I use the "built-in" Flickr plugin and LR4.3 with a Flickr Pro account.  This issue started with LR4.2 when I got my Nikon D800.  I've tried just about everything I can think of and have been searching for any similar problems for months and decided to finally ask for help myself.
    Back in October I created a set of an event, and published the photos to Flickr without issue.  A week later I wanted to republish a few photos and noticed that they instead published to the set as new.  If I mark to republish, yet another copy is posted as new.  After some testing, this is only for images in this one particular set - any other images in any other set update their existing version as expected.
    After a while I began to wonder if the machine tag I added was causing it (active:event=) so I removed the tag from the image on both sides and tried to republish again with the same results.
    Naturally I delete the new copy of the image from Flickr which then dissassociates the LR photo with anything on Flickr.  I found another (cludgy) plugin which can associate photos in LR with photos on Flickr and that fixes the link between the two.  But again, republish from LR and a new copy shows up.
    Any ideas?  This has been driving me nuts.  I haven't found any special permissions or settings on the Flickr set or within LR which would explain why this one set is affected and no others.  I don't want to delete the set on Flickr and lose the history.  I'm trying to avoid having to manually update the images on Flickr where I would also have to manually update the titles, etc.

    This has happened for LR4.2, 4.3, 4.4, and now LR5.  The seemingly random nature of this bug is irratating.  Last week while still on LR4.4 I published a photo, changed it, and was able to republish it without issue.  Today on LR5 I published a set and went to republish a handful of photos only for them to be added as new photos to the set.  LR5 indicated that they were photos to republish and not new ones to the set.

  • Retrieving the new entries of an updated ATOM feed/API

    I am using Java servlets to read several ATOM feeds.while reading those feeds below is the problem which i encountered
    An illustration of the problem .....................
    Suppose
    At 9:00 AM
    Feed entries are
    X
    Y
    At 9:10 AM
    Feed entries are
    a
    b
    c
    X
    Y
    newly added entries are a,b,c
    i read the feed at 9:00am and noted down the entries X,Y
    after 10 minutes again i read the feed
    using Etag (or) id method i detected that the feed has changed....................
    now how to retrieve those newly added entries of a feed at 9:10 Am?
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    i thought of following the below approach
    at 9:00 Am notedown the entry id of latest entry...............................
    at 9:10 Am (it is modified) read the feed entries until you get the entry who id is equal to the entry which we stored at 9:00Am
    These entries which we read here are newly added ones...............
    is this the right approach to get the newly added entries of a feed?
    (or) is there any efficient approach ?
    --rama
    Edited by: Ramaa on Oct 17, 2008 5:51 AM

    I am using Java servlets to read several ATOM feeds.while reading those feeds below is the problem which i encountered
    An illustration of the problem .....................
    Suppose
    At 9:00 AM
    Feed entries are
    X
    Y
    At 9:10 AM
    Feed entries are
    a
    b
    c
    X
    Y
    newly added entries are a,b,c
    i read the feed at 9:00am and noted down the entries X,Y
    after 10 minutes again i read the feed
    using Etag (or) id method i detected that the feed has changed....................
    now how to retrieve those newly added entries of a feed at 9:10 Am?
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    i thought of following the below approach
    at 9:00 Am notedown the entry id of latest entry...............................
    at 9:10 Am (it is modified) read the feed entries until you get the entry who id is equal to the entry which we stored at 9:00Am
    These entries which we read here are newly added ones...............
    is this the right approach to get the newly added entries of a feed?
    (or) is there any efficient approach ?
    --rama
    Edited by: Ramaa on Oct 17, 2008 5:51 AM

  • Creating new record instead of update existing one in Bank application

    HI Mate
    Here is my issue and I want from ur help
    Bank information iview---when i am doing "EDIT" option in that it will edit the bank details,But when i check the records in SAP HR system.it is creating extra record instead of replace that record with payroll date.
    Could anyone please help me to fine the solution ASAP.as it is very import for me
    Thanks
    Keshari

    Note 965324
    Check your time contraints
    As per the timeconstraint validation if you edit the record it is
    changing this validity for the future and the gap is included. That is
    the system standard behavior as per the configuration. To achieve the
    desired behavior you need to create a new record or change
    timeconstraint to 1 (but in this case only one record may exist at a
    given period).
    I kindly ask you to refer to note 818957 which explains the Use Cases x
    Timeconstraint configuration.
    ie
    to achieve the functionality you have to create new future record.
    Reason is you are using TC:3, in which gaps are allowed, but you dont
    want gap in between.
    When an employee wanted to change his/her bank details
    via portal effective future date, system is
    giving error as "Change in the payroll past not possible".  This error
    appears for the scenario as mention below :
    1.  Payroll is processed and Exited for the period 16th Dec 2010 to
    31st Dec 2010   on  28th Dec 2010  (3 days in advance).
    2.  Employee wanted to change bank details on 29th Dec 2010 effective
    1st Jan 2011 via ESS portal.
    3.  An error Change in the payroll past not possible" is shown while
    saving the data.
    In your case either you have to use TC:1, since you don't want gap in
    between, or you have use new button to create future record.

  • HT1918 itunes hooked up to an e-mail no longer good tried to chg and add new email but it show system set me up with new account instead of updating new email need to merge and use the current email with old account

    I have had itunes for years, however, old account was setup under [email protected] and I no longer have that e-mail or ATT internet service so everytime I want to update my e-mail account with my new [email protected] it wll not let me because I tried to update from my itues account and just changed the e-mail id field and it allowed me to update however it actually just made me have another seperate account under my current e-mal.
    I need to merge the two how can  I do that now that this system has me as two different accounts. One is Tracy Rucker the other one has all of my names
    Tracy Randle Wlliams Rucker?
    Help please no verication e-mails can be verified with the old sbcglobal.net account

    In iTunes, do Store->View my AppleID
    Click "Deuthorize ALL"
    Then, on any computers you still have, do Store->Authorize this computer.  If there are less than 5, you will have no problem.
    You can only do "deauthorize all" once a year, so in the future, if you ever throw a computer away, remember do to "Store->Deauthorize this computer" first.

Maybe you are looking for