Generate a report that shows all customers that have changed groupcodes

We use our groupcodes on the business partner to define retail customers, wholesale customers or vendors.  I have been requested to generate a report by data range any customers who have changed from retail to wholesale.
The information can be viewed via the change log one record at a time, but the user is requesting a report by date range.  So they can say in the last 30 days what customers were retail and are now wholesale. 
How can I access the data in the change logs?
Erin

Hi Erin,
There is a 3rd party tool for SAP that can generate standard ALV reports. It is based on an sql editor, and the report can be generated with a few clicks.
Read a bit more here: [alv report generator|http://www.hovitaga.com/report-generator-overview]
See it in action: [Report Generator video|http://www.youtube.com/watch?v=cKSBvz_sd98]
Download a free version from here: [Download free version|http://www.hovitaga.com/try]
I hope this helps.
Best regards,
Tamas

Similar Messages

  • Query that show all users who have access in BW cubes & Query's Owner

    Hi Experts,
    Good day !!!
    I would like to know if it's possible to create a query that tell us who has access to all the cubes in BW? This is a business requrement that we should create if possbile.  We also wonder if we may also create a query for shows us all the queries and who created them? We are doing this manually for each query. We only manually look for all the areas that I have access, but if it can be done systematically, that would save a lot of time.
    Thanks in advance guys !!!
    Best Regards,
    Marshanlou

    Hi,
    Then For this You need to create the table of your own fields with all the user names in R/3 side and Develop the report,
    Bue users will not the stay in same company , They will be changing and some user will be coming, every time u can t go enhancement.
    Regards
    Radha

  • Vendor report that shows all vendors missing tax id information

    I would like to create a report that shows all vendors that are missing the tax id information.  Please direct me on where to go.
    thx
    Trace

    Dear,
    Enter T-code MASS.
    Select Object Type LFA1 and click on execute button.
    Than click on Fields tab, Find your required field and click on execute button.
    Than enter vendor list for which you want to find out the list.
    And click on execute button.
    Regards,
    Mahesh Wagh.

  • Show all devices that do not have an inventory

    How can I run a report or show all devices that do not have an inventory? We have some devices that do not initially upload or run their first inventory. If I manually run it or send it to run from the console it works but I need to know which pcs to run it on.
    Thanks,
    Scott

    scottdw wrote:
    >
    > I can't seem to make that work. Can you tell me how you have your set
    > up?
    >
    > nop1983;2190757 Wrote:
    > > scottdw,
    > >
    > > >
    > > > How can I run a report or show all devices that do not have an
    > > > inventory? We have some devices that do not initially upload or
    > > > run their first inventory. If I manually run it or send it to run
    > > > from
    > > the
    > > > console it works but I need to know which pcs to run it on.
    > > >
    > > >
    > > > Thanks,
    > > > Scott
    > >
    > > Would a Report on devices without any last scan date be good
    > > enough? I use this to see if any of me devices are not uploading
    > > inventory.
    > >
    > > --
    > >
    > > Niels Poulsen
    > >
    > > Novell Knowledge Partner
    > >
    > > -------------------------------
    > > A TRUE RED DEVIL
    Sure.
    Custom Report Definition
    Type Devices
    Columns Machine Name
    Asset Tag (Device)
    Criteria Device Is Retired = No
    and
    Last Scan Date not within one year before Report Date
    If you want I can export it to an xml file for you?
    Niels Poulsen
    Novell Knowledge Partner
    A TRUE RED DEVIL

  • Report to Show All Machines with ANY Deployment Failures

    I need to generate a report, daily, that displays all machines that have
    any kind of an deployment failure. This list will then be used to generate tickets for consultants in that area to check on them.
    I know I can look at specific deployments and see which machines show up as failed, but I am not seeing a report that shows all machines that have
    any kind of a failed deployment. Does one exist, or will I need to create it?

    you can try this report to list all failed deployments(only for applications but not packages).
     select
    all
    SMS_AppDeploymentAssetDetails.AppName as 'App Name',
    CASE WHEN SMS_AppDeploymentAssetDetails.AppStatusType = '1' Then 'Success'
    when SMS_AppDeploymentAssetDetails.AppStatusType = '2' Then 'In Progress'
    when SMS_AppDeploymentAssetDetails.AppStatusType = '3' Then 'Requirements Not Met'
    when SMS_AppDeploymentAssetDetails.AppStatusType = '4' Then 'Unknown'
    when SMS_AppDeploymentAssetDetails.AppStatusType = '5' Then 'Error'
    else 'Unknown'
    End as 'App Status Type',
    CASE WHEN SMS_AppDeploymentAssetDetails.ComplianceState = '1' Then 'Compliant'
    WHEN SMS_AppDeploymentAssetDetails.ComplianceState = '2' Then 'Non-Compliant'
    WHEN SMS_AppDeploymentAssetDetails.ComplianceState = '4' Then 'Error'
    WHEN SMS_AppDeploymentAssetDetails.ComplianceState = '6' Then 'Partial Compliance'
    else 'Unknown'
    End as 'Compliance State',
    CASE WHEN SMS_AppDeploymentAssetDetails.DeploymentIntent  = '1' Then 'Install'
    WHEN SMS_AppDeploymentAssetDetails.DeploymentIntent  = '2' Then 'Uninstall'
    WHEN SMS_AppDeploymentAssetDetails.DeploymentIntent  = '3' Then 'Preflight'
    else 'Unknown'
    End as 'Deployment Intent',
    SMS_AppDeploymentAssetDetails.DTName as 'Deplyoment Type Name',
    CASE WHEN SMS_AppDeploymentAssetDetails.InstalledState  = '1' Then 'Uninstall'
    WHEN SMS_AppDeploymentAssetDetails.InstalledState  = '2' Then 'Install'
    WHEN SMS_AppDeploymentAssetDetails.InstalledState  = '3' Then 'Unknown'
    else 'Unknown'
    End as 'Installed State',
    CASE WHEN SMS_AppDeploymentAssetDetails.IsMachineAssignedToUser = '1' Then 'Yes'
    Else 'No'
    End as 'Device Assigned to User?',
    SMS_AppDeploymentAssetDetails.MachineName as 'Device Name',
    CASE WHEN CHARINDEX('\',SMS_AppDeploymentAssetDetails.UserName)>0 THEN SUBSTRING
    (SMS_AppDeploymentAssetDetails.UserName,CHARINDEX('\',SMS_AppDeploymentAssetDetails.UserName)+1,255)
    ELSE SMS_AppDeploymentAssetDetails.UserName END 'User Name'
    from fn_AppDeploymentAssetDetails(1033) AS SMS_AppDeploymentAssetDetails
    where SMS_AppDeploymentAssetDetails.AppStatusType = '5'
    ORDER BY 1
    Original query posted on http://systemcenteradmin.com/?p=67
    Eswar Koneti | Configmgr blog:
    www.eskonr.com | Linkedin: Eswar Koneti
    | Twitter: Eskonr

  • Screen or Report that shows all Responsibilities for Org Unit

    How can we find out in Oracle application from the front end,,,, the screens... or may be report that shows all responsibilities for ORG Unit ‘Vision Operation’ (204).
    SELECT FR.RESPONSIBILITY_NAME, FPOV.PROFILE_OPTION_VALUE ORGID, NAME ORG_NAME
    FROM FND_PROFILE_OPTIONS FPO,
    FND_PROFILE_OPTION_VALUES FPOV,
    FND_RESPONSIBILITY_TL FR,
    HR_ALL_ORGANIZATION_UNITS HOU
    --HR_OPERATING_UNITS HOU
    WHERE --UPPER (FPO.PROFILE_OPTION_NAME) LIKE UPPER ('MO%OPERATIN%')
    PROFILE_OPTION_NAME = 'ORG_ID'
    AND FPO.PROFILE_OPTION_ID = FPOV.PROFILE_OPTION_ID
    AND FPOV.LEVEL_VALUE = FR.RESPONSIBILITY_ID
    AND HOU.ORGANIZATION_ID = FPOV.PROFILE_OPTION_VALUE
    the above query displays the data from the backend,,I want to see how to see that data from the front end,, does anyone know the navigation, thank you so much in advance.

    Hello Kashif,
    Thank you for the reply. So, there is no screen that shows all the responsibilities that are assigned to a operating unit.
    The link that you provided really did not give any information that i was looking for.
    And as you said .. "there is no specific screen to show all except responsibilities form".... what does the responsibilities form show,
    I have also tried to look in the System Administrator -> Profile -> System
    and in the Responsibility, I query for Payables manager, and look which Orgs are assigned to it, I am not able to find it. I know I am wrong, but can you please help me how to see which responsiblity is assigned to which Operating Unit.
    Thank you

  • Where is the F9 expose function in Lion that shows all windows open?

    where is the F9 expose function in Lion that shows all windows open?

    Hello.
    What you’ve used and loved as Expose and Spaces is now called “Mission Control”.
    http://appleslut.com/blog/software/osx-lion-mission-control

  • When I type in "www" in the navagation space I get a drop down that shows all the web sites I have visited! How do I turn this off?

    # Question
    When I type in "www" in the navagation space of the home page I get a drop down that shows all the web sites I have visited! How do I turn this off? edit

    That drop-down shows matches from your History and/or Bookmarks. To change what is shown, see "Controlling Behavior" in this article:
    *https://support.mozilla.com/en-US/kb/Location%20bar%20autocomplete
    <br />
    The information submitted with your question indicates that you have out of date plugins with known security and stability issues that should be updated. To see the plugins submitted with your question, click "More system details..." to the right of your original question post.
    *Adobe PDF Plug-In For Firefox and Netscape "9.3.2"
    **New Adobe Reader X (version 10) with Protected Mode just released 2010-11-19
    **See: http://www.securityweek.com/adobe-releases-acrobat-reader-x-protected-mode
    *Next Generation Java Plug-in 1.6.0_20 for Mozilla browsers
    #'''Check your plugin versions''': http://www.mozilla.com/en-US/plugincheck/
    #*'''Note: plugin check page does not have information on all plugin versions'''
    #'''Update Adobe Reader (PDF plugin):'''
    #*From within your existing Adobe Reader ('''<u>if you have it already installed</u>'''):
    #**Open the Adobe Reader program from your Programs list
    #**Click Help > Check for Updates
    #**Follow the prompts for updating
    #**If this method works for you, skip the "Download complete installer" section below and proceed to "After the installation" below
    #*Download complete installer ('''if you do <u>NOT</u> have Adobe Reader installed'''):
    #**Use the links below to avoid getting the troublesome "getplus" Adobe Download Manager and other "extras" you may not want
    #**Use Firefox to download and SAVE the installer to your hard drive from the appropriate link below
    #**Click "Save to File"; save to your Desktop (so you can find it)
    #**After download completes, close Firefox
    #**Click the installer you just downloaded and allow the install to continue
    #***Note: Vista and Win7 users may need to right-click the installer and choose "Run as Administrator"
    #**'''<u>Download link</u>''': ftp://ftp.adobe.com/pub/adobe/reader/
    #***Choose your OS
    #***Choose the latest #.x version (example 9.x, for version 9)
    #***Choose the highest number version listed
    #****NOTE: 10.x is the new Adobe Reader X (Windows and Mac only as of this posting)
    #***Choose your language
    #***Download the file
    #***Windows: choose the .exe file; Mac: choose the .dmg file
    #*Using either of the links below will force you to install the "getPlus" Adobe Download Manager. Also be sure to uncheck the McAfee Scanner if you do not want the link forcibly installed on your desktop
    #**''<u>Also see Download link</u>''': http://get.adobe.com/reader/otherversions/
    #**Also see: https://support.mozilla.com/en-US/kb/Using+the+Adobe+Reader+plugin+with+Firefox (do not use the link on this page for downloading; you may get the troublesome "getplus" Adobe Download Manager (Adobe DLM) and other "extras")
    #*After the installation, start Firefox and check your version again.
    #'''Update the [[Java]] plugin''' to the latest version.
    #*Download site: http://java.sun.com/javase/downloads/index.jsp (Java Platform: Download JRE)
    #*Also see "Manual Update" in this article: http://support.mozilla.com/en-US/kb/Using+the+Java+plugin+with+Firefox#Updates
    #* Removing old versions (if needed): http://www.java.com/en/download/faq/remove_olderversions.xml
    #* Remove multiple Java Console extensions (if needed): http://kb.mozillazine.org
    #*Java Test: http://www.java.com/en/download/help/testvm.xml

  • Cant get iMovie08 to show all photos that are in iphoto.

    Can't get iMovie08 to show all photos that are in iphoto.
    only shows about 30, when there are actually about 60 or so in one album.
    any ideals?

    Can't get iMovie08 to show all photos that are in iphoto... only shows about 30, when there are actually about 60 or so in one album... any ideals?
    Do the photos display correctly in the media browser when the mail library ("iPhoto") heading is selected? If so, you could simply add the photos from the library rather than the specific album. Alternately, if you have to select your photos from an "album," you could try reselecting the photos in the main library in the iPhoto application and create a different album to see if all photos then show up in the secondary album in the iMovie media browser.
    If the "missing" photos do not show up under the main "iPhoto" heading in the iMovie media browser and do not show up in the main library in the iPhoto application, then the files may be corrupted. In this case, simply re-import the original files if possible. You could also try to force a rebuilding of the thumbnail cache, but this is usually done automatically when the application itself detects inefficiencies in thumbnail access or when the application is updated. In any case, there does not appear to be a manual menu option to do this arbitrarily when the user so desires. I suppose you could try to locate and delete the cache manually and hope this forces an automatic rebuild the next time the iPhoto application is opened but I am personally not that familiar with the package structure to advise such action at this time. You might check the iPhoto forum and see if anyone can help you further in this area of endeavor.

  • I have photoshopp cc, and I am used to photoshop elements. In photoshop it wont allow me to just click on a layer, and have it select that layer . I have to click on the layer in the box that shows all my layers in order to select it. I also want it to no

    I have photoshop cc, and I am used to photoshop elements. In photoshop it wont allow me to just click on a layer, and have it select that layer . I have to click on the layer in the box that shows all my layers in order to select it. I also want it to not only select the layer on the actual project, but put a hashed line around it that allows me to resize it manually, without having to do it in another window. Does that make sense? I cant even get the layer to select. PLEAE HELP. Id also be able to just click on the layer and drag it. It wont let me, and I am confused.

    If you were serious to learn Photoshop, I'd advise you to take Photoshop classes at your nearest community college or some such institution, to take a subscription to lynda.com, to watch all the Photoshop videos at Adobe TV, to google for specific video tutorials on You Tube and for other tutorials in text format.
    Even the Help menu in Photoshop can be a great starting place.
    Don't expect to find in Photoshop the kind of hand-holding features that Elements has and that appeal to beginners and amateurs.

  • I have a desktop imac with snow leopard 10.6.8 OS  I have a time capsule that shows all restore dates of 2009 but there is a Jan 2012 restore that is faded looking and will not open to be restored.

    I have a desktop imac with snow leopard 10.6.8 OS
    I have a time capsule that shows all restore dates of 2009 but there is a Jan 2012 restore that is faded looking and will not open to be restored.
    Thanks for any help you may give.

    Whatever is in the Finder window wasn't backed-up on that particular backup.
    See the pink box in Time Machine - Frequently Asked Question #15A

  • Is there a way to base a collection from a query that shows all Distribution Points?

    Hi,
    I am able to create a query in Excel that shows all distribution points in my SCCM hierarchy:
    i.e.
    SELECT v_DistributionPointInfo.ServerName 
    FROM SMS_EY0.dbo.v_DistributionPointInfo v_DistributionPointInfo
    Is there anyway to get this query into SCCM Queries so that I can base a Collection off of the query.  This way, I will have a dynamic collection to show me all of my 630+ distribution points?
    Thanks!

    Thanks alot for the statement. In my situation it didn't worked. The probem is, that the data in SMS_DistributionPointInfo.Servername is written as FQN. In SMS_R_System.Name the Name is without FQ.
    I have successfuly tested the following query in SQL:
    Select
    * from
    v_r_system
    where
    v_r_system.Name0
    in (Select
    REPLACE(Servername,
    'FQN-String',
    '') from
    v_DistributionPointInfo)
    But this doesn't work in WQL
    Select
    * from
    SMS_R_System where
    SMS_R_System.Name
    in (Select
    REPLACE(Servername,
    'FQN-String',
    '') from
    SMS_DistributionPointInfo)
    Do you see another solution for my problem?
    Kind regards Stefan Somogyi

  • "ADF Navigation List" does not shows all items that are in table

    Hi
    Thank you for reading my post
    I am tring to use "ADF Navigation List" , (it can be draged from data control platte into a form)
    but when i drag and drop it on my form it does not shows all items that are available in my table ?
    it just shows 10 item when i have 60 record in my Table.
    Thanks

    Hi,
    in the pageDef ile, select the iterator for this list and set the fetch size to -1 (its 10 by default)
    Frank

  • Query showing all customers with or without transactions

    The content of the cube are all customers with transactions only.  I want to create a report that will display all the customers with or without transactions.  I tried to create a multiprovider combining the sales cube and customer master data.  I created a query but it only displays the customes with transactions.  Is there any other way wherein i can generate a report showing all customers with or without transactions?

    hi,
    the same problem happened, but no update whether it's solved, 'selection constant' should work
    Multiproviders and filter on time
    the link mentioned should be this
    http://help.sap.com/saphelp_nw04/helpdata/en/e7/5f983c1a356858e10000000a114084/content.htm
    Re: Determining NULL records

  • Report to show all purchase orders for which invoice tolerence is greater than 3%?

    Hi Experts,
    Recently our company cofigured 3% tolerence limit for invoice.Now, I have got a requirement to create a report to show all the PO's for which the
    invoice tolerence limt is eq 3 %.Kindly anyone advise ,is there any table that stores the inovoice tolerence limit based on PO? How to achieve this requirement.
    Thanks in advance
    Thanks & Regards,
    Anusha.B

    Hi,
    I was wondering don't you have in your company MM consultant who suppose to give you the required tables name .
    Regards.

Maybe you are looking for