BOM Change Log does not work

The change log for BOMs has been functional since the implementation of B1 in September of 2007.  Recently, it appears that the change log is not long keeping track of changes.  Has anyone ever seen this before, or have any ideas on how fix this issue?
Thanks,
Jordan

Hi,
you are still using old version. Maybe the change
The maintenance even has been stop by SAP support. The PL upgrade is also unavailable. Maybe you could contact partner around your country ask them about the latest PL of B1 2004B.
if you escalate it to them, I am not sure they will answer.
You need to upgrade to the new version i.e. 2005B. The maintenance is still available.
Anyway, try this query :
SELECT count(T0.[LogInstac]) FROM AITT T0
Let me know how much it has been
Rgds,

Similar Messages

  • Call log does not work. Iphone 4

    Hi, I'm an Iphone 4 user, software currently on IOS 6.1.3, updated a couple of weeks ago.
    Everything's fine and all, though one major problem that's been persisting - the call history is not working. Whenever an oncalling call (regardless if it's someone in my contact list or not) comes, the call log does not record the number and the entire log remains blank. I've tried resetting the settings as well as 'hard reset', but neither of these two have worked.
    It's become absolutely frustrating, especially when I sold items off at Trademe and can't even track the phone numbers of anyone that gives a call saying they want to buy something (for the moment, I've currently got all pages saying that anyone interested should text my number, but as always, someone ignores that and just calls anyway). Not to mention it makes it a particularly big headache for work purposes as well and it obviously can't go on like this forever.
    It'd be really appreciated if anyone can come up with a solution that can resolve this issue.
    Thanks. 

    meehow wrote:
    ..I just upgrade my E52 from 034.001 to 052.003 and noticed that 'call log' function does not work anymore. The symptom is that nothing happens when pressing:
    - "green" call button,
    - Log option from the main menu,
    - missed calls from the desktop.
    I had to switch the phone to active Standby Mode which I never used before - this is the only way to see missed calls - the small "pop up" on the desktop.
    Any suggestions how to fix it? Is it a known issue?...
    I don't know how widespread your experience is but it is not universal as all the functions you describe work correctly for me with an E52 and 052.003 firmware.
    Even if the upgrade reverted the log settings for Log Duration to "None" the "Green" key and the Log menu icon should bring the log up but with it empty, of course.

  • Problem with SerialNumbers with 2007 PL 47: BOM in documents does not work

    Hi everybody.
    I have the following problem: i need to create documents through DI API (2007 PL 47).
    The items in document are BOM (sale type) with just one item as a child: this item child is managed with serial numbers.
    When i try to create a delivery notes with DI API, i receive the following error:
    "Found error:-10,You should use existing serial/batch numbers for this document type  [(----) 29-51]".
    The following code (VB . NET) is used for the insertion of the delivery (just one line with only one item BOM, with only one item child):
                Dim nErr As Long
                Dim errMsg As String = ""
                Dim delivery As SAPbobsCOM.Documents
                Dim deliveryLines As SAPbobsCOM.Document_Lines
                Dim serialNumbers As SAPbobsCOM.SerialNumbers
                delivery = oCompany.GetBusinessObject(BoObjectTypes.oDeliveryNotes)
                delivery.DocObjectCode = BoObjectTypes.oDeliveryNotes
                delivery.CardCode = "C0020"
                delivery.DocDate = Today
                delivery.DocDueDate = Today
                delivery.TaxDate = Today
                ' CREATE A LINE WITH BOM
                deliveryLines = delivery.Lines
                deliveryLines.SetCurrentLine(0)
                deliveryLines.ItemCode = "GARANZIA"
                deliveryLines.WarehouseCode = "Mc"
                deliveryLines.Quantity = 1
                ' ASSIGN A SERIAL NUMBER RELATED WITH CHILD ITEM IN A BOM
                serialNumbers = deliveryLines.SerialNumbers
                serialNumbers.SetCurrentLine(0)
                serialNumbers.SystemSerialNumber = 2
                delivery.Add()
                oCompany.GetLastError(nErr, errMsg)
                If (0 <> nErr) Then
                    MsgBox("Found error:" + Str(nErr) + "," + errMsg)
                End If
    Obviously the SystemSerialNumber used is available in a warehouse.
    The process, through the BOne interface, work correctly.
    The same code work correctly with the 2007 PL 42, but does not work with the 2007 PL 49.

    Hello everybody,
    I have the same problem that Marco has, still can't add the serial numbers for child items managed with serial numbers when the item in the document lines objet is a BOM, sale type.
    I'm using SBO 2007 SP01 PL08 and I didn't try the code I'm using on a previous PL.
    I wonder if any body has the solution.
    Thanks in advance.

  • My problem is simple: my recently changed Password does not work

    my problem is simple: my recently changed Password does not work

    Flash Player doesn't require a password so it's not as simple as you make it out.
    Where exactly are you being asked for a password , and for what?

  • Changing framerate does not work

    It doesn't seem to matter to the output file I get what kind of framerate I select when constructing the output VideoFormat. Am I doing something wrong ? I want to get a framerate of 30 FPS.
    FileTypeDescriptor outputType = new FileTypeDescriptor(
           FileTypeDescriptor.MSVIDEO);
    Format outputFormat[] = new Format[1];
    Dimension videoDimension = new Dimension(320, 240);
    int maxDataLength = 230400;
    float fps = 30.0f;
    outputFormat[0] = new VideoFormat(VideoFormat.YUV, videoDimension,
           maxDataLength, Format.byteArray, fps);
    ProcessorModel processorModel = new ProcessorModel(videoDataSource, outputFormat,
           outputType);

    captfoss wrote:
    Am I doing something wrong? Probably. I couldn't say because I don't use ProcessorModels (neither does anyone else sucessfully, at least).I see. What's the alternative to using ProcessorModels? And how does the alternative deal with changing the framerate?
    >
    I want to get a framerate of 30 FPS.That may or may not be possible...regardless, once you get your processor, you need to get the FrameRateControl control on it, and use that to set the frame rate.Hmm. I retrived the controls from the processor, and changed the FrameRateControl one, but it still doesn't seem to change the FPS. If I check out the properties of the video in Windows Explorer or in mplayerc it says it's 4 FPS (trying with 4 FPS since I'm just testing with a webcam ATM and I figured I'd see the difference easier that way), but the video itself runs in 16 FPS (like it always has) and the size of the video file is equvivalant to 16 FPS not 4. Does the capturing device have to support to the framerate you selected?
    I suppose this doesn't matter though, if there's an easier way to do this without using ProcessorModels, but I'll include the code anyways.
    Control[] controls = processor.getControls();
    FrameRateControl frameControl = null;
    for(int i = 0; i < controls.length; i++) {
            if(controls[i] instanceof FrameRateControl) {
                    frameControl = (FrameRateControl) controls;
    frameControl.setFrameRate(fps);
    }Edited by: lauritzm on Dec 10, 2008 10:00 AM                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

  • Two tableViews on one page - changing pages does not work

    I have a BSP page with two htmlb:tableViews :
    <htmlb:tableView id              = "tbl1"
                     table           = "<%= controller->r_model->t_table_1 %>"
                     headerVisible   = "TRUE"
                     footerVisible   = "TRUE"
                     headerText      = "bla bla"
                     iterator        = "<%= controller %>"
                     selectionMode   = "SINGLESELECT"
                     visibleRowCount = "<%= lv_visible_rows %>"
                     design          = "STANDARD"
                     keepSelectedRow = "TRUE"
                     keyColumn       = "ONR"
                     sort            = "<%= cl_htmlb_tableview=>c_sort_mode_server %>" />
    <htmlb:tableView id              = "tbl2"
                     table           = "<%= controller->r_model->t_table_2 %>"
                     headerVisible   = "TRUE"
                     footerVisible   = "TRUE"
                     headerText      = "bla bla 2"
                     iterator        = "<%= controller %>"
                     selectionMode   = "SINGLESELECT"
                     visibleRowCount = "<%= lv_visible_rows_2 %>"
                     design          = "STANDARD"
                     keepSelectedRow = "TRUE"
                     keyColumn       = "ONR"
                     sort            = "<%= cl_htmlb_tableview=>c_sort_mode_server %>" />
    Since visibleRowCount is 10 and the number of lines in the table is more than 10, a paginator (Step X of Y...) is shown.
    Now, if I click on the "Next Page" icon, table_1 moves from page 1 to page 2. If I then click on "Next Page" for table_2, table_2 changes to page 2, but table_1 changes back to page 1!
    Is that the standard behaviour? What can I do against it?

    Hi Sebastian,
    this is the code I used
    <htmlb:tableView id              = "t1"
                     table           = "<%= controller->t1 %>"
                     headerVisible   = "TRUE"
                     footerVisible   = "FALSE"
                     headerText      = "header 1"
                     emptyTableText  = "No Scenarios Found"
                     iterator        = "<%= controller %>"
                     selectionMode   = "SINGLESELECT"
                     visibleRowCount = "<%= lv_visible_rows %>"
                     design          = "STANDARD"
                     keepSelectedRow = "TRUE"
                     keyColumn       = "ONR"
                     sort            = "<%= cl_htmlb_tableview=>c_sort_mode_server %>" />
    <htmlb:tableView id              = "t2"
                     table           = "<%= controller->t2 %>"
                     headerVisible   = "TRUE"
                     footerVisible   = "FALSE"
                     headerText      = "header 2"
                     emptyTableText  = "No Scenarios Found"
                     iterator        = "<%= controller %>"
                     selectionMode   = "SINGLESELECT"
                     visibleRowCount = "<%= lv_visible_rows_planned %>"
                     design          = "STANDARD"
                     keepSelectedRow = "TRUE"
                     keyColumn       = "ONR"
                     sort            = "<%= cl_htmlb_tableview=>c_sort_mode_server %>" />
    The page is stateful.

  • Adobe website very slow: Changing region does not work.

    I change my region to South Africa English as the USA server takes forever to respond. I am hoping this will make it
    faster. However, every time I click it defaults back to USA even though I set it to remember my location.
    Image of what I do below:

    Same with me: My settings for "Germany - German" are always lost. Even worse: when I go to the captivate wish form and change the region setting, then I am thrown to the homepage of Adobe in Germany - but I would have expected to get the wish form in German language.

  • Title in combination with videoclip does not work.

    I did pre-order the dutch version Premiere Elements 9. (Del. mid okt.) Until that time I installed the english trialversion PE 9.
    I tried to place a title at the same place as my videoclip.(videotracks 1 and 2). This results in a black screen. Changing tracks does not work.
    When I place a title over a still image(photo-jpeg) then I see both title and image at the same time. Is this a problem with the trialversion?
    or can't this be done in Elements. I know that in Premiere Pro this was possible.
    What am I doing wrong?

    I'm sorry, but I don't know enough about what you've done to tell you what you've done wrong.
    But first, make sure you are in Timeline, not Sceneline mode.
    Your video should be on the Video 1 track.
    Position the CTI playhead on this clip and click on the "T" in the lower right of the Monitor panel to open the Titles workspace. Create your title.
    The title will appear on the Video 2 track, at the position of the CTI, over your background video. You can also move it around and change its placement on the timeline if you'd like.

  • Change Password on first use does not work properly.

    I have created apex application user in Oracle Apex 3.2 as follows
    BEGIN
    APEX_UTIL.CREATE_USER(
    p_user_name => 'NEWUSER1',
    p_web_password => 'secret99');
    END;
    As in the documentation
    p_change_password_on_first_use  IN      VARCHAR2    DEFAULT 'Y',
    User should be prompted to change password at first use. But it does not work properly. There is no such message. Still accepts user to log in with old passord that was first given to the user. I have tried explicitly to ensure change password at first log in. by
    BEGIN
    APEX_UTIL.CREATE_USER(
    p_user_name => 'NEWUSER1',
    p_web_password => 'secret99',
    p_change_password_on_first_use =>'Y');
    END;
    Still does not work. How can I ensure user to change password on first login.
    Hasan Al Mamun
    Programmer
    Bangladesh Bank
    Dhaka, Bangladesh

    Might be a long way around the problem but I would utilize a boolean flag in a column (FIRST_LOGIN) your custom auth table set to 'Y' when you create their account. Then on the login page have a page process something like:
    ** NOT TESTED **
    declare
    v_first VARCHAR2(10;
    v_session NUMBER;
    begin
    v_session := APEX_CUSTOM_AUTH.GET_NEXT_SESSION_ID;
    select FIRST_LOGIN into v_first from AUTH_TABLE where user_name = :P101_USERNAME and :P101_PASSWORD;
    if v_first = 'Y' then
    wwv_flow_custom_auth_std.login(
    P_UNAME => :P101_USERNAME,
    P_PASSWORD => :P101_PASSWORD,
    P_SESSION_ID => v_session,
    P_FLOW_PAGE => :APP_ID||':2' *** THIS IS YOUR PAGE TO HAVE THEM RESET THEIR PASSWORD ***
    else
    wwv_flow_custom_auth_std.login(
    P_UNAME => :P101_USERNAME,
    P_PASSWORD => :P101_PASSWORD,
    P_SESSION_ID => v_session,
    P_FLOW_PAGE => :APP_ID||':1' *** MAIN LOGIN PAGE *****
    EXCEPTION WHEN OTHERS THEN
    *** handled **
    end;
    The page 2 in this example would have an few items for them to enter their new password twice, a page process to update their password in the auth table and then redirect them to the intended first page.
    Not sure if it meets your setup.
    Ricker

  • Change password on the first use - does not work

    Change password on the first use - does not work.
    Created a user and specified 'Change password on the first use' - when user logs in - the 'Change password' window does not pop- up.
    Please advise.

    (APEX 4.0.2) I am running into this same issue - if you don't set the password expiration and locking to 'Yes', the user gets into the app without being asked to change the pw.
    When you do set expiration and locking - after the user logs on with their temporary password, it does take them to the change password page (4155:50) but the username is blank. Because the username didn't get to the page the old password will never match and you get the "Invalid password" message.
    What am I missing? Anyone successful doing this?
    Simple application, default authentication, no javascript, HTTP_SERVER, no ssl.
    Thanks,
    Steve

  • I cannot access my Apple ID after I made changes reset password m does not send to my email and birthday does not work,

    after changes to to my Apple ID I can no longer log in or reset. The reset does not go to my email and the birthday option does not work. How do I access  Or install a new I'd without accessing the old password?

    If you have this product,
    http://www.symantec.com/business/support/index?page=content&id=TECH165159
    you have to go back to Snow Leopard.
    To re-install SL, back up your home directory, format and re-install.

  • HT4623 my iphone doesn't work here in Albania after i made an update,it says that u have to change ur Sim Card cuz does not work with ur Carrier...what do i do?

    Hpls help me ,my iphone does not work after i updated and restore it..it says that u have to change ur Sim Card..cuz the carrier that u use its not known
    But it has worked perfectly before the update!

    Your iPhone was almost certainly jailbroken to unlock it from the original carrier. Restoring the iPhone has now removed that jailbreak and the iPhone has relocked back to the original carrier. Only that carrier can authorize an official, permanent unlock, so you will need to contact that original carrier and ask if you would qualify for unlocking.
    Regards.

  • When logging in into yahoo mail after typing in password Firefox is adding something, login fails all the time. At yahoo mail Notepad does not work because it is impossible to close the list of items and they cover information, so I have to go to IE.

    When logging in into yahoo mail after typing in password Firefox is adding something, probably remembered password and login fails all the time. At yahoo mail Notepad does not work because it is impossible to close the list of items and they cover information, so I have to go to IE.

    Only when i go to a different browser (like IE) after i clear it , then all that shows up is the pages i visited in IE , that is what bugs me , why is IE browsing history sowing up in Firefox ??
    Basically , i can clear the history in Firefox , and then for a example , go to Craigslist , using IE7 (launching it from a complete different Icon , in other words at that time i never open Firefox) , then after closing out , or even leaving open as it does not seem to matter , i go into Firefox , and hit History , and there is every place i visited in IE7 , on my History in Firefox

  • I have an apple ID which I use to sign into icloud for my iPad and iPhone.But when I use the same ID for setting up iCloud on my Macbook it says INCORRECT ID or password, try again. I tried changing my passwords but it does not work for the macbook.

    I have an apple ID which I use to sign into icloud for my iPad and iPhone.But when I use the same ID for setting up iCloud on my Macbook it says INCORRECT ID or password, try again. I tried changing my passwords several times but it does not work for the macbook.

    You will have to provide the correct password to delete the existing account, if you have tried but are not getting the password reset email, contact Apple for assistance by going to https://expresslane.apple.com, then click More Products and Services>Apple ID>Other Apple ID Topics>Lost or forgotten Apple ID password.

  • I changed my appleID, it worked fine but now I can not restore icloud backup in a new ipad (old appleid does not work and it is grey colored so I'm unable to change it)

    Some months ago I changed my email address and so my appleID. Everything worked fine, but last week my ipad broke and when I tried to restore my icloud backup in my new ipad it does not work: it asks me for the password of the OLD appleID (it doesnt work); and in icloud configuration page the field for appleid is colored grey so I can not change it.
    any clues? thank you in advance

    My suggestion is to change apple id back. I know it is not something you want to hear, but there are suppose to be ways around it and usually they work, but not right now. I suspect that is consequences of Apple getting their servers ready for ios7. Normally in your situation - you should be able to get all your stuff back, but apps, and then you can sync those or download from icloud. But lately (last week) it does not seem to work normal way.

Maybe you are looking for

  • Need help in creating alert message in HTML template.

    Hi All, I am using internet service for BBPMAININT. In the template 120, i am checking for the length of partner number should not be greater than 4 characters. For this i have created a method in javascript which gives a popup. I have create a param

  • Need advice on what component(s) to use

    I'm trying to put together a UI that displays a background image and displays on top of that image several jpanels, jlabels, and icon type images . I'd like the user to be able to drag the panels etc. to a desired location. I'll then need to grab the

  • Using external function in xquery

    hi all, i'm using the Java Api to access Berkeley dbxml. i'm trying to raise a number, i get from the database,to a power the code i use is : String Query = "declare namespace power = 'java:java.lang.Math';"; Query += "declare function power:pow($thi

  • Export-import roles of portal 7.01 to 7.4

    Dear experts We are working with SAP NW 701 and the client are in process of update portal to 7.4 My questions: How can export the content that we have  (Roles, Workset, Pages, iViews) of the portal 701 to 7.4? The client not want update the applicat

  • Message reads - could not back up iphone 4 because backup cannot be saved on this computer. Any suggestions?

    I have a message show up on my pc (XP pro) saying "itunes could not back up , iphone, because backup could not be saved on this computer". Any ideas as to what the problem could be?