Getting no attributes changes after change run monitor program is executed

Hi ,
We have a z-program where we are calling function module RSDDS_CHANGE_MONITOR . The structure of this function module is changes after upgrade from  BI 3.5 to 7.0. Accordingly i have adjusted the z-program . But the result is No Attribute Change Run Found .
The function module called  is as follows
CALL FUNCTION 'RSDDS_CHANGERUN_MONITOR'
EXPORTING
  I_WITH_DETAILS           = RS_C_TRUE
  I_T_CHABASNM             =
  I_T_HIEID                =
   IMPORTING
     E_TS_STATE_CR            = l_cr_state
     E_TS_CHANM_IN_AGGR       = l_t_chanm
     E_TS_HIER_CR             = l_t_hieid
   E_TS_CHABASNM_CR         =
     E_T_AGGREGATE_CR         = l_t_aggrstate
   E_TS_TREXAGGR_CR         =
     E_TSX_MSG_CR             = l_t_msg
   EXCEPTIONS
     ERROR                    = 1
     OTHERS                   = 2
  IF SY-SUBRC <> 0.
MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
        WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
  ENDIF.
The l_cr_state has the details of the status in BI 7.0
But after upgrade , its empty.
Pls help on the issue.
Regards,
Sarang

go through this link:
http://help.sap.com/saphelp_nw04/helpdata/en/64/32a5682e6a4e0cbb3f8a33970d11a8/frameset.htm

Similar Messages

  • How to stop material description changed after changing customer on SO

    I have updated material description on a SO. However after changing the Sold-to, the material description refreshed back to original.
    Anyone knows how to stop system to change material description back to default?

    Hi
    In standard SAP when we change sold to party in sale order system redetermine prices and taxes but this is new thing for me that system also redetermines material description. Amitesh Anand I have also chcked this in my system and material description is getting changed after changing the customer.
    Field is VBAP-ARKTX and you can ask your ABAPER to write the code in userexit MV45AFZZ and 
    USEREXIT_PRICING_PREPARE_TKOMP. I have checked this system is calling this exit. Give it a try and update the status.
    Thank$

  • My MacBook is almost two years old and has started running really slow. It gets bogged down when it is running different programs at the same time, like Safari and Pages. It didn't react this way until recently. Any advice would be very welcome.

    My MacBook is almost two years old and has started running really slow. It gets bogged down when it is running different programs at the same time, like Safari and Pages. It didn't react this way until recently. Any advice would be very welcome.

    Launch Disk Utility and select the icon of the internal drive (the drive itself, not the volume icons below it.) Is the SMART status "Verified?" If not, replace the drive immediately. If the status is "Verified," the drive may still be failing. Back up all data, if you haven't already done so. Reinstall Mac OS X, then run Software Update. Test with all wired peripherals disconnected. If it's still slow, you have a hardware problem.
    Mac OS X 10.6 Help: Reinstalling Mac OS X

  • HCM Master Data Loan repayments date change after payroll run

    I am facing a challenge in a case in which the car loan has been posted in the month of Dec’13 and payroll have been executed  till Feb’14.
    Now, the employee has taken relevant approvals for getting the car loan moved from Dec’13 to Nov’13 loan payment and this will also result in change in the end date of the loan.
    Is there any option/possibility in SAP that we can change the start and end date of an employee who has taken Loan keeping in mind that the payrolls have been executed.
    Hope it clarifies my problem if this still need to be explain further, please let me know.

    Hi Sonu16,
    The Query is not very clear to me.
    I think u want to change the date of joining after the payroll run along with position. If that is the case then u can do it.
    Please followw the given steps :-
    1) Go to PU03 for Payroll Status and delete all the dates, before doing it take a snapshot of the PU03. So that after changing it u can revert back to what it was.
    2) Go to PA41, move to HIRING action and u'll get BEGDA in modifiable mode, then change it. Save it. But the noticeable thing is that ur present Position shud have a creation date well before ur new HIRING date otherwise u won't be allowed to change.
    3) Thinking u have changed the date in Step #2, then go to SE16 and select PA0001, go to debugger mode and change the POSITION id. save it and come out and refresh it. Changes will be updated.
    Hope this solves the purpose.
    Regards,
    ARNAV...

  • The Visible attribute on alv grid column is not changed after Change Layout

    Setup:
    I have a program that displays output in an ALV grid (using cl_salv_table).
    The ALV grid is displayed within a custom control on a subscreen.
    I have 4 subscreens being used on a tabstrip control.  So I have 4 ALV grids total (one on each subscreen).
    On each ALV grid, I have set the set_layout_change function to true so that the user can hide and unhide columns etc. on each grid via the button on the alv grid toolbar.
    I also allow the user to dowload the contents of all 4 grids to excel.  To do this I have a custom button that when clicked goes to each ALV grid - gets the column metadata (via cl_salv_columns_table-get() ) and checks the visibility to determine if the column should be downloaded or not (via cl_salv_column-is_visible() ) to excel.
    The Problem:
    As I said I have 4 grids being displayed via a tab control.  Let's say the user is on tab 1 and unhides some columns on the alv grid 1 via the Change Layout... button.  And then the user navigates to tab 2.  If they click the download button at that point - when the download code is run and it checks the visibility of the columns on alv grid 1 - the changes that were made via the Change Layout... button have not synchronized yet.  When I call is_visible() for a column that was unhid it still comes back as false. 
    The only way I have found to remedy this is to make the user click on a button on the alv grid's toolbar before navigating to a different tab to force the synchronization between the changes made and the backend column metadata.  However, this is not the best option and requires training for the user that they have to do this for the download to work correctly. 
    The Question:
    1) why is the Change Layout... button not automatically synchronizing the changes it made to the back end?  Is there a way to make it do this?
    2) OR, is there a way that I can force the synchronization within the code and not force the user to click a button on the alv grid?  If there is a way to force the synchronization - where do I put that code?  As far as I can tell, when I switch between tabs - I am unable to catch that action in my PAI events.
    Thanks in advance for any help.

    I was able to resolve this issue with a satisfactory solution.
    In my program I had a local class definition to handle the grids' events.  When the synchronization wasn't working I only had two events defined: for link_click and added_functions. 
    I created another definition for event after_salv_function:
                   on_after_salv_function for event after_salv_function of cl_salv_events importing e_salv_function
    There is no code in the method implementation - but adding this event handler now causes a synchronization to occur after the Change Layout is done.

  • Getting duplicate SCCM guids after changing comp name

    OK I understand the duplicate GUIDS I get when imaging as I believe the person who set up the image is putting the agent on the image, but I went to several machines running Win7 and changed their names, now they are all showing up with duplicate
    GUIDS? It also appears that what we had set for 2007 is not clearing them out in 2012 - anyone have away to fix these? What I saw was for 2007, so I am sure I am just missing something. Thanks for your time.

    Below is the official document for your reference.
    http://technet.microsoft.com/en-us/library/bb694095.aspx
    Juke Chou
    TechNet Community Support

  • Scedule lines data change after MRP run

    I generates a schedule lines when I run the MRP for certains articles. When I run again MRP, It modifies the data's of schedule line (quantity per ex) even thoough I have already transmetted the request (schedule lines) to the vendor.
    How to prevent to make changes in the schedule line once I sent the info to the vendor. Instead I would like that the MRP creates new schedule line.
    Than you for any help.
    Ahmed.

    Hi Ahmed,
    In MRP-4 view have you maintained 1 or 2 for Indv. / Coll indicator?
    Regards,
    Vivek

  • How do I get my playlists back after changing computers and operating systems?

    Bought a new computer and got upgraded 64 bit OS.  Used PC Mover to move everything from old PC to new one.  Itunes did not come with it.  Went into Itunes to download 64 bit version and after several iterations of problems with getting the right version, seemed to work and I could see many of my songs in the window when downloading.
    However, when I finally got to Itunes, it opens but no playlists are visible.  Authorized computer.  Followed some websites that said take an old playlist and copy it over to Itunes folder by renaming 'itl' library from new to old and back again. Still doesn't work.
    Help.
    Ben.

    not sure i get this.  how do i create new ones?  if i sync my ipod, will i also lose all the songs i have on it?
    what about audiobooks stuff...is that gone also?

  • How to get email to send after changing msn password?  Going to settings-mail- enter id

    Very frustrated &amp; this is second attempt for help. Changed my MSN password 2 days ago &amp; now emails stuck in outbox.
    Tried going to settings-email-reenter account name &amp; put in new password. Didn't work. Tried turning phone off to refresh &amp; repeated
    Still will not send.

    If you have mail stuck in the outbox, the only solution I know is to delete the account and then readd it.

  • Default design change after changes in breakpoint

    I design the default page with box 1, 2 and 3 horizontally aligned. I create a breakpoint and change the defalut so that box 1 and 2 are still hoizontally aligned but 3 has moved down (and happens to be bigger). When I go back to default, box 3 moves to the center of the horizontal alignment.
    Default:
    Box 1
    Box 2
    Box 3
    Breakpoint changes:
    Box 1
    Box 2
    Box 3
    Default after breakpoint changes:
    Box 1
    Box 3
    Box 2
    Need to know how to fix this. Any ideas? Is this just a bug? If so, it's a pretty big one that makes Reflow lose a lot of it's function.
    EDIT: Never mind. Found the answer in a different thread. This was true as of July 2013:
    http://forums.adobe.com/message/5485654#5485654
    Message was edited by: Faraday007

    I guess you have an Intel GPU, this is a know bug in Mesa. (workaround disable-enable composition [Alt+Shift+F12 two times])
    https://bugs.kde.org/show_bug.cgi?id=241402
    https://bugs.freedesktop.org/show_bug.cgi?id=30220
    Last edited by djgera (2010-09-16 16:44:02)

  • MIRO - Vendor not changed after change Reference Document Category option

    Hi,
    When are doing MIRO, under PO referance tab --> Reference Document Category --> select Purchase order / Schedulling Agreement option and enter PO number there, then it's line item shows. Other thing is that Vendor of that PO (XYZ) should show in the screen.
    My problem is that when we are changing the Purchase order / Schedulling Agreement option to Delivery Note, the vendor remains same...means same as PO Vendor (XYZ).
    Note: - Same problem in the changing the Delivery Note option to Purchase order / Schedulling Agreement.
    please help...
    Regards...

    We are using ECC 6.0 and we have this functionality.
    I want to clear you that this is happening is some cases not in all.. Most of the cases, it automatically changed the Vendor data...
    plz. tell now...
    Edited by: @ABAP@ on Aug 27, 2009 4:18 PM

  • Get windows error 999 after installing itunes and program won't open.

    I get a windows error 999 message when I try opening Itunes after a new install, what is my problem?

    had to install OS X Mavericks again. after install, everything runs smoothly again. ran recovery from restart then installed mavericks over old mavericks.

  • How to get an eText output after registering its concurrent program

    I have registered a concurrent program based on eText template in Oracle Apps. 11.5.10. After that, I had registered its template in XML Publisher keeping its type as eText-Outbound. Now when I run the request, my concurrent program runs fine without publishing any output i.e. the template doesnt get attached to the program. So when I manually attach the template to the report explicitly and run it now, it faces a error which is in Java script. Please suggest the needful.

    Hi Gurus,
    Can anyone please tell Concurrent program and data definition registration process for Output type as E text.
    Best Regards,
    Mahesh

  • How to the get the count even after we exit the program and start again.

    Hi,
    I have a DAQ program which takes scans every 3 sec, scan number is incremented is been tagged with the filename of each scan. What my requirement is to save that scan number somewhere and get that number the next time I start the program, hence there is no repeatation of the scan numbers ever and I always end up having sequential scan files.
    One solution which came to my mind is to save that number in the computer as excel or txt file and read back again the next time I start the program. I am just wondering if there is any better way of doing it.Please let me know.
    Thanks,
    Ankit

    well ,
    you can get an array of the files in the directory and scan for the highest number....
    or use the the ini-file vis to write that number before exit (or after each file written)
    here I first wrote the key  ... however I hope you got the key
    Greetings from Germany
    Henrik
    LV since v3.1
    “ground” is a convenient fantasy
    '˙˙˙˙uıɐƃɐ lɐıp puɐ °06 ǝuoɥd ɹnoʎ uɹnʇ ǝsɐǝld 'ʎɹɐuıƃɐɯı sı pǝlɐıp ǝʌɐɥ noʎ ɹǝqɯnu ǝɥʇ'

  • How to get the erroe message, if i run java program using .bat file

    Hi,
    I have a java file which accepts two inputs as command line argument. I want to make this pgm a tool. So have created a *.bat file which has the following command
    java myprogram arg1 arg2
    I'm gonna share this program with others. So i'll keep the class file and the .bat file in a commaon folder. All the users have to do is, edit the .bat file to give his/her args and run the .bat file. The pbm is, if the user input is not valid, I have put displays in the pgm to show it.
    But if i run thru .bat, I'm not getting the error message or I don't know where it is getting displayed.
    Can anyone help me with this ?
    Thanks,
    Mary

    When i run from the console, I can see the output.
    But, when i double click on the .bat file from the
    folder, it runs fine and i couldn't see the output.
    nullThat's because the error message is printed, and then the console is closed. The message is there but you need to read really really fast :)

Maybe you are looking for

  • I can't seem to run a hardware diagnostics on my MacBook Pro.

    I recently had an issue with the Wi-Fi hardware on my MacBook.  I wasn't able to view any local networks.  Instead, the menu option stated that there was an issue with my wireless hardware.  I resterted my MacBook and the issue persisted.  My compute

  • APP-FND-00676

    I am getting APP-FND-00676 error message. The error message is as follows. APP-FND-00676: The flexfield routine FDFGDC cannot read the default reference field specified for this descriptive flexfield. The developer specified a context field (via the

  • Posting of Back dated billing documents to COPA

    Dear All, At present,I am not creating the sales gl accounts as revenue elements. After some time (say after 6 months) ,I would create the Revenue Elements ,then can I post the old billing documents to COPA? If so please let me know the T Code for po

  • Crystal and xml

    i have a report where the data set is xml.   when i try to attach the xml as the dataset i receive the following error message LOG IN FAILED SYSTEM DATA: THE TABLE (CHILDREN) CAN NOT BE THE CHILD TABLE TO ITSELF IN NESTED RELATIONS any ideas what wou

  • I can't add gmail address to iMessage -was working before

    Hi My children have iPad airs set up under my apple ID (I have an iPhone 5s). All software is up to date. Until recently they were using their own email(gmail) addresses (over wifi only) in iMessage to message their friends. All of a sudden their ema