Personalization Tables not Updating

Hi all
I am running WLCS/PS with an SQL Server 7.0 Database.
I created a personalization portal and then I tried to create a new user in order
to modify my portal and this message appeared in my WLCS Dos window
Pls see attaches file
Thanx for your help
Bola
[files.txt]

Thanx for your reply
Looking at the database revealed that there is only one primary key for that table
which is the identifier and rows can be inserted into the database in MS Access.
There are currently 10 users in my database and the ones created are brand new
ones so when you say "Looks like a user with that PrimaryKey already exists in
your database", do you mean a row of that user currently exists or what.
Pls explain
Bola
"Daniel Selman" <[email protected]> wrote:
Bola,
Looks like a user with that PrimaryKey already exists in your database.
Sincerely,
Daniel Selman
"Bola Taylor" <[email protected]> wrote in message
news:3b77b7ff$[email protected]..
Hi all
I am running WLCS/PS with an SQL Server 7.0 Database.
I created a personalization portal and then I tried to create a newuser
in order
to modify my portal and this message appeared in my WLCS Dos window
Pls see attaches file
Thanx for your help
Bola

Similar Messages

  • Validity Table not updating for 0IC_C03 while updating data

    Hi,
    1.Validity table not updating for 0IC_C03 while updating data in my BW 7.4 With HANA data base?
    Key fields : 0Plant
                       0Calday
    if you run this programe after loading data - RSDG_CUBE_VALT_MODIFY it is updating.
    2. I am not getting no marker update option in non-cumulative Info cube 0ic_c03 manage tab or in DTP tabs check as per 7.4 modifications?
    and  2LIS_03_BX in DTP I am getting below this option only
    Can you please give me solution for this issues.
    Regards
    Umashankar

    Hi Uma,
    Please go through the below link which might be helpful.
    Not able to Edit Validity Table : RSDV
    Marker Update Option is available under Collapse tab of Info cube.
    Thanks,
    Karan

  • Buffer table not update

    Hello all,
    I tried to create  a Scart for a category id meant for Classic scenario but I get an error that "Buffer Table not update " and it is resulting in a ABAP Dump.However, for the Categoryid for Ext. Classic Scenario it is working fine.
    I tried SWU_OBUF also.
    Any body ,Pl enlighten on how to proceed further?
    Thanks & Regards,
    Nagarajan
    Addl Info:
    1) Activated the Global settings for Extended Classic Scenario
    2) Activated the BADI for control of Extended Classic Scenario

    Hi,
    Go to the SMQ1 and SMQ2 in both the frontend and backend systems and check for any queues of material replication still running or held.
    Delete all the obsolete entries in this.
    This may help you as in our system it worked once for this buffer table not uptodate issue.
    Best regards,
    Sridhar.

  • Parts master table not updating

    SP3 parts inventory table not updating even though set to synchronise through webtools

    thank you had to rebuild links on table

  • Database table not updating

    Hi all,
    I am updating the database table with following syntex, but table not updating.
    MODIFY ZTEST_BAR FROM TABLE I_ZTESTBAR.
    Please help.
    PKB

    Hi,
    firstly you can define internal table and work area as below:-
    internal tables
    DATA : I_ZTESTBAR TYPE TABLE OF ZTEST_BAR.
    work areas
    DATA : I_ZTESTBAR_LINE LIKE LINE OF I_ZTESTBAR .
    here internal table having the same structure as that of ztable which include MANDT.
    Then to update field, you can use add following code:-
    *Update Ztable
    INSERT INTO ZTEST_BAR VALUES I_ZTESTBAR_LINE.
    COMMIT WORK.
    Hope this works for you.
    Thanks..........

  • With_item table not updating

    Hi,
    with_item table is not updating.
    Following error message is thrown:
    "Internal number range not updating in remittance challan."
    Thanks in advance.
    Regards,
    Sriram

    hi
    Use t-code SM30 and check J_1IEWTNUM , J_1IEWTNUMGR_1 tables.
    Or just use J1INHC t-code and check where is the problem.
    Regards
    Tanmoy

  • Table not update

    Hi
    Expert
    I am PP Consultant i having problem in Material Master while creating Material Batch activation tick is missing.
    When production order is created this material accept  stock without batch.
    Now i remove all stock from system as dispatch takes place & again i activated the batch for same material.
    But still this material shows without Batch even though batch is activated and that stock related table is not updated why?
    How to activate the batch through table?
    Thanks
    Pert

    this is almost related to the functional configuration. As per my knowledge if all the configurations are correct, the batch will generate automatically during the production order creation.
    This is not related to abap issue. Post the issue respective SCN forum, so that you can get the proper solution.

  • COSS Table not updating

    Hi Friends,
    We are using Project System in our client. We have to fetch the Project details using BAPI - presently we are using BAPI_PROJECT_GETINFO bapi for this purpose.
    However, in the E_ACTIVITY table, we are not able to fetch any Planned costs and Actual costs data. When we debugged, we found that the source of this fields to be COSS and COSP tables.
    But the problem is I'm not able to populate the COSS and COSP tables.
    When I tried Primary cost planning via CJR4 also, this table is not updated for the WBS element.
    Please help.
    Regards
    Srini.

    USE [ClubManagement]
    GO
    /****** Object:  Trigger [dbo].[DailyAtten]    Script Date: 03/04/2015 18:14:54 ******/
    SET
    ANSI_NULLS ON
    GO
    SET
    QUOTED_IDENTIFIER ON
    GO
    ALTER
    TRIGGER [dbo].[DailyAtten]
    ON [dbo].[Temp_AValue]
    AFTER UPDATE
    AS
    BEGIN
    Delete from MCheckInOut
    Delete
    from HOCheckInOut
    DECLARE @sqry
    NVARCHAR(2000)
    DECLARE @mqry
    NVARCHAR(2000)
    DECLARE @cols
    NVARCHAR(2000)
    DECLARE @vals
    NVARCHAR(2000)
    DECLARE @hmqry
    NVARCHAR(2000)
    SET @cols
    = STUFF((SELECT
    DISTINCT '],['
    + CONVERT(NVARCHAR, [CHECKTYPE])
    FROM [dbo].[CHECKINOUT]
    ORDER BY
    '],[' + CONVERT(NVARCHAR, [CHECKTYPE])
    FOR XML
    PATH('')), 1, 2,
    + ']'
    SET @sqry
    = 'SELECT [UserID],[SENSORID], CONVERT(DATETIME,CONVERT(NVARCHAR, YEAR([CHECKTIME])) + ''-'' + CONVERT(NVARCHAR, MONTH([CHECKTIME])) + ''-'' + CONVERT(NVARCHAR, DAY([CHECKTIME]))) AS [chDate], 
    RIGHT([CHECKTIME],8) AS chTime, CHECKTYPE ' +
    'FROM [dbo].[CHECKINOUT]'
    SET @mqry
    = 'SELECT [UserId],[SENSORID], [chDate], '
    + @cols +
    ' ' +
    'FROM (' + @sqry
    + ') AS DT '
    +
    'PIVOT (MAX(DT.[chTime]) FOR DT.[CHECKTYPE] IN ( '
    + @cols  +
    ' )) AS PT ' +
    --'wHERE    [SENSORID] = 1' +
    'ORDER BY PT.[chDate]'
    SET @hmqry
    = 'SELECT [UserId],[SENSORID], [chDate], '
    + @cols +
    ' ' +
    'FROM (' + @sqry
    + ') AS DT '
    +
    'PIVOT (MAX(DT.[chTime]) FOR DT.[CHECKTYPE] IN ( '
    + @cols  +
    ' )) AS PT ' +
    'WHERE [SENSORID] = 1' +     
    'ORDER BY PT.[chDate]'
    insert
    into MCheckInOut
    EXECUTE(@mqry)
    insert
    into HOCheckInOut
    EXECUTE(@hmqry)
    END
    GO

  • ZL Table not updating

    Hi Guy's,
    I have two groups of employees A & B fo group A employee group when i run time evaluation using PT60 Zl table gets updated where as when i run time evaluation for group B employee Zl Table does not gets updated. Zl table also conatains a rule but i dont know why that PCR is not working for Group B.
    Plz suggest me how i can updte ZL table
    Thanks a lot.

    Hello,
        The operation that adds wage types into DZL is ADDZL, you could search for this operation in your PT60 log, search for it with the group of employees that have entries in ZL and then with the groups that dont, you must be able to catch the difference hopefully
    Best regards,

  • TDS TABLE Not updating

    Hi Experts,
    I m using TDS 4.9 version whenever i do A/P invoice the WH(TDS ) calculation is doing good but the related table @CXS_TDS_ENTRY is not updating
    Plz suggest me
    Rajesh B K

    Hi,
    Pls. reinstall ur TDS addon, AddOn is not properly installed.
    Regards,
    Mahesh.

  • BO tables not updated - sum_* ; fact_fault etc.

    Hello all,
    I am a newbie to BO. Recently discovered that almost all of the summarization tables do not refresh with data they used to refresh in the past. Same for fact_fault table - I am not sure if last one is customized or by default.
    Can someone tell me how and when those tables are updated? I found a package which is wrapped and it is totally unclear.
    thanks in advance
    Regards
    Ivo

    Hello all,
    I am a newbie to BO. Recently discovered that almost all of the summarization tables do not refresh with data they used to refresh in the past. Same for fact_fault table - I am not sure if last one is customized or by default.
    Can someone tell me how and when those tables are updated? I found a package which is wrapped and it is totally unclear.
    thanks in advance
    Regards
    Ivo

  • MB1C transaction - material doc posted sucessful but MSEG table not updated

    Hi Experts,
    Standard transaction MB1C to post material documents... posted the document successfully and i get the message "Document 4900001978 posted" but when I go and check the table MSEG.. the entry is not found.
    Any ideas why is that not updated in table MSEG?
    In the program SAPMM07, which module updates the table MSEG?
    All ideas are welcome and highly appreciated.

    Hi Balu,
    I checked in tx. ST22 and there was no such thing happened. In MB1C tx, i got the info "document 49000.. posted". How can I find where they are updating the table MSEG.
    Thanks for your efforts.

  • Table not updating while command button is held down

    Hi guys,
    My application obtains data and then outputs this into a table which updates after each set of data is read. This part works fine, however I also require the user to be able to hold down one of two buttons to control control the function of an actuator (forwards and rearwards). To explain this further, when one of these buttons are pressed a voltage is output, when released the voltage is reset to zero. However, while the button is held down the table does not continue to update, when the button is released the table then updates through all the queued values. I understand that this is most likely a problem with the holding of the button causing the other user interface events to not be processed. I have therefore tried using ProcessSystemEvents(), ProcessDrawEvents(), and experimented with using an async timer to control the updating of the UI through the use of PostDeferredCallback(), all without success.
    If anyone can help with a solution that would allow me to perform both of these required functions simultaneously it would be greatly appreciated!
    Thanks in advance
    Ben
    Solved!
    Go to Solution.

    Could you use a toggle button instead of a simple button to be hold down? If yes, then in the button callback you could simple test the value of the toggle (1 if pressed, 0 if released) and operate turn on/off the output voltage to the actuator. You'll have a commit event every time the operator changes button state. (you may need to apply some security limit switch or timeput on the control in case the user forgets to turn the toggle off: the situation is similar to a three-state switch that controls a motorized window blind).
    Proud to use LW/CVI from 3.1 on.
    My contributions to the Developer Zone Community
    If I have helped you, why not giving me a kudos?

  • File to rfc...database tables not updated ??

    Hi XI Friends..
    in my File to BAPI..
    it is successfully executed..and it is showing chequered glag in sxmb_moni..and also in runtime workbench it is showing success..but the database tables are not updating..
    i gone thru the link.. reciver rfc adapter..
    http://help.sap.com/saphelp_nw04/helpdata/en/c8/e80440a832e369e10000000a155106/frameset.htm
    now i am working on SP 17.
    so how can i set the values in ...
    <i>Commit Control for Individual BAPI Calls</i>and
    <i>BAPI Advanced Mode.
    In the Successful RETURN-TYPE Values table, what values i have to enter that should lead to a successful execution</i>
    its Asyncronous call..
    in standard BAPI ther is no commit.
    please tell me ..what values in need to give to update database tables..instead of RFC wrapper..
    regards
    ram

    Hi Friends..
    i created ZRFC and in that rfc i given standard bapi and commit work..
    i tested in sap ..the table is updating..
    thru XI..the table is not updating...
    it showing likw this..in receiver rfc adpater monitering...
    <i>Receiver channel 'CC_IN_SAP_WorkOrderCompletion' for party '', service 'SAP_ERP_DEV' (internal name 'RfcClient[CC_IN_SAP_WorkOrderCompletion]')
    Client data: {jco.client.lang=EN, jco.client.snc_mode=0, jco.client.client=400, jco.client.passwd=******, jco.webas.ignore_jdsr_error=1, jco.client.user=aar, jco.client.sysnr=10, jco.client.ashost=53.249.196.86}
    Repository data: {jco.client.lang=EN, jco.client.snc_mode=0, jco.client.client=400, jco.client.passwd=******, jco.webas.ignore_jdsr_error=1, jco.client.user=aar, jco.client.sysnr=10, jco.client.ashost=53.249.196.86}
    Current pool size: 1, maximum pool size : 1
    Channel History
    - OK: 2006-12-19 11:12:58 CET: Message processed for interface ZBAPI_ALM_CONF_CREATE</i>
    and in messagemonitering audit log..
    <i>2006-12-19 11:12:58 Success Message successfully received by messaging system. Profile: XI URL: http://dcexi0602.alcan.com:50000/MessagingSystem/receive/AFW/XI Credential (User): XIISUSERDGX
    2006-12-19 11:12:58 Success Using connection AFW. Trying to put the message into the receive queue.
    2006-12-19 11:12:58 Success Message successfully put into the queue.
    2006-12-19 11:12:58 Success The message was successfully retrieved from the receive queue.
    2006-12-19 11:12:58 Success The message status set to DLNG.
    2006-12-19 11:12:58 Success Delivering to channel: CC_IN_SAP_WorkOrderCompletion
    2006-12-19 11:12:58 Success RFC adapter received an asynchronous message. Attempting to send tRFC for ZBAPI_ALM_CONF_CREATE with TID XIVqvZy8z94TkgWVR9u01m0m
    2006-12-19 11:12:58 Success The message was successfully delivered to the application using connection AFW.
    2006-12-19 11:12:58 Success The message status set to DLVD.
    </i>
    but the table is not updating...
    please guide me..
    regards
    ram

  • Database table not updating with the changes

    Hi friends,
                    Iam having a tablecontrol where iam gettting the data from the ztable for a particular key field.  When i change certain fields in the table control and when i click save, it should update the changes in the ztable.
       module save output.
       modify zslip_po1 from table x_po1_slip.
    here slpno is the key field.  if I change a field for a particular slpno it should update the changes for that slpno value only.
    but it is not updating the changes. although iam setting the slpno field dynamically.
    Please give me ideas.
    thanks and regards
    Murali Krishna T

    Hi,
    1. Have 2 Internal Tables, the first one must contain the original data(before change ) and the second one  contains the update data(after changed ie. table control data).
    2. loop the first table and read the data from the second table using index.
    3. inside the loop, compare the work area of both the internal table.
       if both are same, then no change was made to that particular record, so no need for updation
       if both are not same, then some changes were made on that record, so need to update.
    4. use modify command to update that particular record from the work area.
    i think in performance wise also this logic will be helpful, since we are updating only the changed record.
    since this is addon table, so i hope the no of records will also less, so no need to worry about loop.
    check with this, it may work out......
    thank you,
    SenthilPandi C
    Edited by: SenthilPandi ChandraSekaran on Feb 4, 2010 5:36 PM

Maybe you are looking for

  • How do I make a single page website that scrolls like this adobe muse site?

    Hi there, I'm working on this site: http://johanspeaks.businesscatalyst.com/index.html I would like a nav bar to function and scroll through the single page like this site: http://asiercarazo.com/ I can't figure out if it's different pages, sub pages

  • My iPod shows up, but doesn't install correctly. Help?

    Alright, 2 days ago I could plug my iPod (5th Generation iPod video, 30gig) into my PC and it would work just fine. Now when I plug it in it won't work. So I tried uninstalling it and then reinstalling it, now in the hardware monitor it shows up with

  • Pass loginid to form on startup

    Hello, I would like to pass the userid to a form through the formsweb.cfg file. Currently, we are using forms6i in a sort of web based setup. When a user attempts to signin to an application, they first sign in to the network sso setup via a browser.

  • ITunes Music Locations - controlling workstations remotely via script?

    I do storage administration at a company with over 2000 users scattered across the globe. Predictably, at least have use iTunes. We redirect the "My Documents" folder to a network location to force the backup of critical project data. This creates a

  • Columnbreaks in version 1.0?

    My question is a simple one: Are columnbreaks considered to be part of version 1.0 of TLF? And if not, does anybody know a workaround on how to achieve this? thanks a lot in advance, Roland