Not appear the value when i execute the report

Hi, what reasons could be:
appear "#" instead a value for example "100", but only forthe records of the last load, the other records of another loads are ok, the report show
Infoobject value = 200
KF = 1,
but for the last record in the query
Infoobject value = #,
KF=  1
in the cube exist this record, it not must be # , is 100, the only thing that i did was change an attr Nav, of this infoobject, just mark the check of lowercase allowed,
i dont know what can i do to solve this problem that i made i m sure because i execute this report yesterday and it was ok....
help

i reactivate the Master data,
i was checking and this Infoobject has 10 records in the cube and in the KF that i evaluate has record 1 = 1, record 2= -1,  you know, and the others records that appears in the report has just 1, i guess this happend because i run the Delta load twice, i have just to load only one record trought Repair  load and now appear ok in the report, but the problem is i can do this repair for all the records because it works with delta, and the delta works wrong....

Similar Messages

  • Firefox does not appear on screen when started from the start menu, but task manager says the process is running

    Firefox does not appear on screen when started from the start menu or the shortcuts, but task manager says the process is running.

    No - I get the message basically saying "Can't run program while Firefox is running. Please close down Firefox & try again".
    I rebooted my computer and it all works now - but that's weird it was happening before. Kinda weirded out that it happened at all.
    To avoid that happening again, I still wanna know what to do to avoid it or fix it for next time. Thanks

  • How to Get the value when clicking on the link

    I had a problem with when clicking on the link.
    I need get the link value to the controller when clicking on the link.
    I am displaying the database columns in jsp using repeater in links.
    I am displaying the data like this:
    RED
    BLUE
    GREEN
    these are three links.when clicking on the link RED. RED should go to the controller.
    After getting RED to the controller i will get the RED value from the database.

    my requirement is like that only
    I have just given the example of emp and dept
    emp(empno,zone_group_id,zone_id,deptno,ename,emp_p_ind,last_update_datetime);
    dept_emp(empno,dept_no,loc,dname,sal_emp,grade,last_update_datetime);
    CREATE OR REPLACE VIEW emp_zone AS
    SELECT e.empno,
          (select zone_group_id from price_zone_group where rownum = 1) zone_group_id,
           d.loc zone_id,    
           d.grade,  
           d.last_update_datetime,
      FROM dept_emp d
          emp e
    WHERE d.empno=e.empno
       AND e.emp_p_ind = 'Y'
      WITH READ ONLY;
    Now
    my requirement is to get the data of emp_zone view and needs to store those data into some other temp table
    if any of the above base table got updated deleted or inserted then the view last_updatetime also will get updated but problem is why im not using base table
    direct because it is having huge data and it performance issue .i have to get the value on the basis of view only and using some logic

  • My ipod touch has a permanent image of the end of a USB cable with an arrow pointing to an icon of ITunes. I can't reset, and ipod does not appear on itunes when I plug it into the computer.  This happened after I agreed to a failed software update.

    My ipod touch has a permanent image of the end of a USB cable with an arrow pointing to an icon of ITunes. I can't reset using the two button method, and ipod does not appear on itunes when I plug it into the computer - and nothing else happens either.  This happened after I agreed to a software update which failed.  How can I get it going again?

    Try:
    - iOS: Not responding or does not turn on
    - Also try DFU mode after try recovery mode
    How to put iPod touch / iPhone into DFU mode « Karthik's scribblings
    - If not successful and you can't fully turn the iOS device fully off, let the battery fully drain. After charging for an least an hour try the above again.
    - If still not successful that usually indicates a hardware problem and an appointment at the Genius Bar of an Apple store is in order.
    Apple Retail Store - Genius Bar       

  • My iphone 4 will not turn on but when connected to the pc in itunes it says my device is in recovery mode and when i do SHIFT restore and select my ipsw it extracts then this 3914 error message appears someone help!!!

    my iphone 4 will not turn on but when connected to the pc in itunes it says my device is in recovery mode and when i do SHIFT restore and select my ipsw it extracts then this 3914 error message appears. i normal restore then it this error message appears 1601. and my iphone is in RECOVERY mode. and holding the power button and the home button doesnt do anything my latops just makes a ding sound after 6seconds. My iphone screen is just blank and will not come on and i really need help

    Has the iPod been wetted?
    Try DFU mode and then restore
    How to put iPod touch / iPhone into DFU mode « Karthik's scribblings
    Try on another computer.
    Also see:
    https://discussions.apple.com/message/12690674#12690674
    https://discussions.apple.com/message/13032101#13032101
    Last, make an appointment at the Genius Bar of an Apple store since it appears you have a hardware problem.
    Apple Retail Store - Genius Bar          

  • Ever since my last update I have been unable to add songs from my i tunes library onto my i phone.  The "add to" button does not appear for me when I connect my i phone.  Can anyone shed some light on this for me?

    Ever since my last update I have been unable to add songs from my i tunes library onto my i phone.  The "add to" button does not appear for me when I connect my i phone.  Can anyone shed some light on this for me?

    Thanks for that 'sberman' - because my iPhone is backed-up to my work computer (only at this stage) I have had to call our IT Department in Adleaide. (4 times this morning). The last guy managed to get the phone into 'DFU Mode' - no more recovery mode screen - (kind of 'asleep' perhaps) from my understanding of same. I am awaiting a call again from IT so they can get my computer to actually recognise my iPhone on the C Drive. This also happened to  one of my colleagues in Newman (WA). She got so frustrated with the whole process that she bought another phone the next time she was in 'civilisation.' She hasn't had any problems since. (Cross fingers).
    Thanks again, Sandra2474.

  • How to hold the values as  it's not holding the values when it cross 255

    DATA : fval1  TYPE edidd-sdata.
    DATA : fval2  TYPE edidd-sdata.
    DATA : fval3 TYPE edidd-sdata.
    DATA : fval4 TYPE edidd-sdata.
    DATA : fval5 TYPE edidd-sdata.
      DATA : len(3) TYPE n.
    values1 = wa_final-low.
      values2 = wa_final-high.
      IF wa_final-high IS NOT INITIAL.
        CONCATENATE values1 values2 INTO fval1 SEPARATED BY '-'.
      ELSE.
        fval2 = values1.
      ENDIF.
      IF fval3 IS NOT INITIAL.
        IF fval1 IS NOT INITIAL.
          fval = fval1.
          CONCATENATE fval3 fval INTO fval3 SEPARATED BY '/'.
        ENDIF.
        IF fval2 IS NOT INITIAL.
          fval = fval2.
          CONCATENATE fval3 fval INTO fval3 SEPARATED BY '/'.
        ENDIF.
      ELSE.
        IF fval1 IS NOT INITIAL.
          fval3 = fval1.
        ENDIF.
        IF fval2 IS NOT INITIAL.
          fval3 = fval2.
        ENDIF.
      ENDIF.
      DATA : len(3) TYPE n.
      len = STRLEN( fval3 ).
      IF len > 250.
        fval4 = fval3+0(250).
        fval3 = fval3+250(5).
    *    CONCATENATE fval4 fval3 INTO fval5.
      ENDIF.
           IF fval4 IS INITIAL.
              wa_final1-varbl31 = fval3.
            ELSE.
                CONCATENATE fval4 fval3 INTO fval5.
                wa_final1-varbl31 = fval5.
            ENDIF.
            MODIFY  it_final1 FROM wa_final1
            TRANSPORTING varbl31 WHERE agr_name = wa_final-agr_name.
    at this point also it's not holding the values when it exseds 255
    kindly please help

    H friends ,
    i am not the expert at the same time i know some thing in abap
    fval4 = fval3+0(250).
        fval3 = fval3+250(5).
    in the above case fval3 have 255 char at that time iam transporting 250 char to fval4 with this statment
    fval4 = fval3+0(250).
    and iam keeping  the remaining 5 char in fval3 with this statment
    fval3 = fval3+250(5)
    so that i can push some more values in fval3  and at i am
    CONCATENATE fval4 fval3 INTO fval5.
    so that fval5 may get all values this is the way i try but fval5 is not holding all the values 
    i asked solution for that
    fval 3 = fval3+250(250)
      dosen't  have any meaning i know that  friend
    my question is how to hold the remaining value

  • I added 3 contacts and saved on my iphone 5, but do not appear on my list of contacts. the names appear when they text or call me. I have to go search for their messages when i need to call them

    i added 3 contacts and saved on my iphone 5, but do not appear on my list of contacts. the names appear when they text or call me. I have to go search for their messages when i need to call them?

    Try to restore your iphone via iTunes or update to ios6.1.2.
    If itunes gives an error with restoring (DFU/Recovery or just normal)
    try this:
    open your computer and search on windows; C://windows/system32/drivers/etc/hosts
    open up the hosts file in note pad you will see IP adresses and more add another line and put in this:
    #74.208.10.249 gs.apple.com
    this is a by-pass to the cydia/saurik restore server, it has nothing to do with jailbreaking over voiding apple's warranty
    let me know if succeeded!

  • When someone calls me on Viber, WhatsApp and elsewhere do not appear on my iphone, and when you enjoy my photos on instagram also does not appear to do I do, take the technical assistance?

    when someone calls me on Viber, WhatsApp and elsewhere do not appear on my iphone, and when you enjoy my photos on instagram also does not appear to do I do, take the technical assistance?

    What iPhone do you have? You can check in settings>>general>> about.
    If you have a 3G you cannot update beyond iOS 4.2.1. The 3G is over 4 years old an was discontinued over 2 1/2 years ago. You need the latest ios to run the latest versions of some apps. If you have a 3GS you can update.
    If your phone is not responding, reset it by pressing and holding down both the home button ad lock/ sleep button simultaneously until the Apple logo appears.

  • When I import my photos from my iPhone 4S into iPhoto the location does not appear.  I have to open the info button on the photo click "photo place" then "find on map" and then the location appears.  How to I get the location to appear automatically?

    When I import my photos from my iPhone 4S into iPhoto the location does not appear.  I have to open the info button on the photo click "photo place" then "find on map" and then the location appears. How to I get the location to appear automatically when I import my photos from my iPhone?

    in your iPhoto preferences is look up location set to "automaticaly"?
    LN

  • I installed an airport express, on my mac book i can use the airplay using iTunes, but on my iPhone en ipad the icon for airplay not appears on the screan when i start the music player.

    I installed an airport express, on my mac book i can use the airplay using iTunes, but on my iPhone en ipad the icon for airplay not appears on the screan when i start the music player.

    Chances are, you have already tried this and already know the answer.
    But, if not....sorry, but no......since your printer is not AirPrint compatible, you must use the extra software workaround in the Mac.
    A newer AirPrint printer would allow you to do what you want.

  • TS2972 My itunes library on my home screen does not appear on another home screen on the same computer when itunes is opened on the other screen/user.  Home Sharing is turned ON.  How do I fix this problem?

    My itunes library on my home screen does not appear on another home screen on the same computer when itunes is opened on the other screen/user.  Home Sharing is turned ON.  How do I fix this problem?

    You'll have to contact the developer about this. Apple doesn't make this app;

  • No records were selected message when I execute the KE30

    Dear All,
    I have created a CO-PA Profitability Report by Report Painter and when I execute the KE30 ,system is giving a message as "No records were selected ".
    I have checked  the actual line item report (KE24),all the values are flowing and showing under value fields tab.Even in KE30 ,I could see the report layout ,but values are not appearing.
    Please help me to find where it went wrong.
    Regards
    Subbu

    Hi Subbu
    1. Check your record type..Billing data has record type as F... see your form in KE35 and check it
    2. Execute your report with selection parameters like Comp Code and the Period... Once the data is displayed, you can further refine the selection criteria
    3. Also check in KE35 -
    a. The Plan/Actual indicator.. You should select "Actual values" in it
    b. the currency type - Select as applicable to you
    Regards
    Ajay M

  • MRP_ATP_PUB.Call_ATP api not retrieving requested_date_quantity value when executed in custom schema but when executed in apps its working fine, can anyone help on this..

    The MRP_ATP_PUB.Call_ATP api not retrieving requested_date_quantity value when executed in custom schema but when executed in apps its working fine, can anyone help on this..
    We are passing the required values to the ATP API.
    1) The x_return_status is showing as 'S' i.e. success but x_atp_rec.Requested_Date_Quantity is not returning any value.
    2) If there is a grant issue how to identify it.
    Regards,
        Vinod Annukaran

    Pl do not post duplicates -0 MRP_ATP_PUB.Call_ATP api not retrieving requested_date_quantity value when executed in custom schema but when executed in apps its working fine, can anyone help on this..

  • Error when i execute the webservice /SAPAPO/SDM_PARCRTRC

    hi,
    I am getting this error when i execute the webservice /SAPAPO/SDM_PARCRTRC for product availability. please tell me where am i going wrong ..... ? wat parameters are missing ? how to interpret this error?
    An error has occurred. Maybe the request is not accepted by the server:
    XML Serialization Error. Object content does not correspond to Schema restrictions of type [http://sap.com/xi/APO/Global][/wsdl:definitions/wsdl:types/xsd:schema[3]/xsd:complexType[3]/xsd:simpleContent/xsd:extension/xsd:attribute[1]/xsd:simpleType].
    Quick response will be appreciated

    hi,
    due to the bad formatting of your posting it is hard to read. you might consider to use the code tag to enhance readability. moreover, 'executing a webservice' is a bit a vague description of what you do. are you consuming this service with any client program and this is throwing the exception or are you testing the webservice with any 3rd party tool and this is a server error returned to you?
    anyway, I think you ttry to consume that service from within ABAP and the error message says a lot despite of its bad readability:
    The client ist serializing a message (creating it from parameters) and is provided some argument for a parameter which doesn't conform to the WSDL. E.g. the WSDL declares some parameter to be an integer and between 0 and 100 and you try to supply it the value 234. THis would most probably result in your erromessage. or the WSDL says integer and you provided it a string (e.g. like 'foo' or '234').
    anton

Maybe you are looking for