DELL 3110 does not work on SAP R/3 4.6C

Hi SDN,
I've to install a printer DELL 3110 in an SAP R/3 4.6C. according to SAP OSS Note 8928, the Device type that I should use is "PCL5" but I didn't find this device in drop down list!!
If I use SAPWIN, printed document does not appear as it should.
What I would like to now is what device type shoud I use and what access methos (C,F,L,etc) ??
the printer is located at
printserver\printer and from windows everything prints OK.
Thanks in advance,
best Regards,
Pedro

HP driver works fine. Tks

Similar Messages

  • CTI - SAP CRM & SAP BCM: ANI does not work in SAP standard

    Hello Experts,
    our customer wants to work with a CTI in SAP CRM WebUI Role (Non IC; CEBP).
    For the CTI the SAP CRM 7.0 (on HANA) and SAP BCM where itegrated.
    We are using the Slim Communication Toolbar as recommended by SAP.
    The Problem ist that the ANI (Automatic Number Identification) does not work.
    The Callers Number is not identified. Function Module BUPA_SEARCH2 is not called.
    No Changes were made in this area. We are completely using the SAP standard.
    Has anybody experienced issues related to this one?
    It would be great if somebody could give me some help and/or information!
    Thank you!
    Kind Regards
    Martin Gaschk

    Hello Andrei,
    the issue was solved by SAP.
    The relevant startup component for ANI in the CMS integration profile (Tx CRM_IC_FW_PROF) was inactive:
    Component:
    BUSINESS PARTNER IDENTIFICATION
    Class:
    CL_CRM_IC_FW_BP_SEARCH_SRV
    Thanks for your support!
    Kind regards
    Martin

  • Substitution rule does not work in SAP CRM

    Hi,
    In our client, we have work flow set up for substitutions. Manager A has specified B as his substitute for approving work flow items during his absence. I checked the table T77S0, WFLOW AUTOF is set to 'X'. I checked the table HRUS_D2, here the entry shows as 
    User   User   Start date         End date                   Substitute profile            Substitute Active
    A          B      03/10/2014        01/01/9999                0001                                    X
    However B is not able to receive the workflow items of A. When I tried to forward using SWIA, then B is getting workflow items. Not sure, why the substitution is not working. User A has set up workflow substitute in SAP CRM Web UI.
    Any suggestions to resolve this will be greatly appreciated.
    Thanks.
    With regards,
    Ravi

    You assigned substitution profile 0001 which is disciplinary or something like that - this substitution profile has no meaning and is only an example.  try not assigning a substitution profile or use profile 'all' which contains the 'NO_CLASS' task class which is the default classification for tasks in the system.
    you can see substitution definition in SAP Web Application Server → Business Management → SAP Business Workflow → Basic Settings (Organization Management) → Substitute Profile.
    see also: Maintaining and Activating Substitutes (SAP Library - SAP Business Workflow)

  • RFC Destination does not work for /sap/xi/adapter_plain service

    Hi
    We are facing a strange issue. Our business partner is trying to connect to our XI box, RFC Detination type 3 through a reverse proxy at our end. If he used /sap/xi/engine service, he gets a 500 response " empty request received". Howerevr if he connects using /sap/xi/adapter_plain, he is not getting any response, just a green tick at the bottom with no message. SMICM shows " wrong content in header response"
    Regards
    Monika

    Hi
    We are able to send data to our business partner. When he is trying to send data to us, he is not able to do so.
    He needs to do so via a reverse proxy. We have replicated the scenario on our side to cross check.
    We are able to connect to our XI with http/https without reverse proxy. However with reverse proxy we are not able to do so.
    Also in case of http without reverse proxy, the message processing does not happen even thought RFC Connection test is successful/
    Regards
    Monika

  • Dell soundcard does not work, need upgrade?

    I purchased a Dell Intel core duo processor E4500 (2 MB L2 cache, 2.20 Ghz, 2 Gb SD Ram, Windows Vista) earlier this year. After I installed Audition 3.0 I received a message that read: Have direct sound Card Driver selected, for best results select ASIO sound card driver". When recording and during playback could only get a very faint volume. On my old Dell I used the regular Dell soundcard and it worked, though without great results. Will changing the soundcard remedy this and if so, are there recommendations for an ASIO soundcard? Thanks! Jim

    If you have a free port, I'd go with Firewire instead of USB. Firewire's faster and doesn't get quite as much traffic congestion as USB.
    There are tons of great interfaces at many different price ranges.
    You might go to www.sweetwater.com and take a look at their inventory. Once you have a few items picked out, call and talk to one of their sales techs about your needs and they'll help you chose the right one.
    I just bought some new Mackie MR8 active monitors and a PreSonus HP4 headphone amp from them yesterday. I'd say about three quarters of all my gear was purchased through Sweetwater.

  • Temporary Table In SAP Query - Does not Work?

    DECLARE @date DATE
    DECLARE @delrows INT
    DECLARE @delquan INT
    DECLARE @a INT
    DECLARE @recrows INT
    DECLARE @recquan INT
    SET @a=0
    IF OBJECT_ID('tempdb..##tab) IS NOT NULL DROP TABLE ##tab
    CREATE TABLE ##tab
    [Date] date,
    [Delivery Rows] varchar(40),
    [Delivery Total Units] varchar(40),
    [Receipts Rows] varchar(40),
    [Receipts Total Units] varchar(40),
    WHILE @a!=7
         BEGIN
         SET @date=DATEADD(day,-@a, getdate())
         SELECT @delrows=ISNULL(COUNT(DLN1.[LineNum]),0), @delquan=ISNULL(SUM(DLN1.[Quantity]),0)
         FROM ODLN
         INNER JOIN DLN1 ON ODLN.[DocEntry]=DLN1.[DocEntry]
         WHERE ODLN.[CreateDate] = @date
         SELECT @recrows=ISNULL(COUNT(PCH1.[LineNum]),0) , @recquan=ISNULL(SUM(PCH1.[Quantity]),0)
         FROM OPCH
         INNER JOIN PCH1 ON OPCH.[DocEntry]=PCH1.[DocEntry]
         WHERE OPCH.[DocDate]=@date
         SET @a=@a+1
              INSERT INTO ##tab VALUES(@date,@delrows,@delquan,@recrows,@recquan)
    END
    SELECT * FROM ##tab
    {/code}
    Can anyone explain why this query does not work in SAP? It works fine on SQL but gives me this message in SAP:
    1). [Microsoft][SQL Server Native Client 10.0][SQL Server]Incorrect syntax near ')'.
    2). [Microsoft][SQL Server Native Client 10.0][SQL Server]Statement 'Service Contracts' (OCTR) (s) could not be prepared.
    Edited by: Chris Candido on Feb 2, 2011 8:38 PM

    Chris,
    There are several areas in your code which needed changes. 
    1. On the field name for your temp table you had spaces.
    2. The SAP table name ODLN, OPCH, PCH1 had to be fully referenced like
    [dbo].[ODLN]
    3. You really need not have ## in front of your temp table, it could just be #
    The select at the end is actually what causes the most problem as for some reason from within SAP it does not produce the result.  I would suggest you put the whole code into a Stored Procedure and call the SP from SAP.  Corrected SQL below.  If you remove the Select line at the end the query would work with in SAP, but keep it give give you an error. SP is the best option for this.
    DECLARE @date DATE
    DECLARE @delrows INT
    DECLARE @delquan INT
    DECLARE @a INT
    DECLARE @recrows INT
    DECLARE @recquan INT
    SET @a=0
    IF object_id('tempdb..#tab') IS NOT NULL
    BEGIN
       DROP TABLE #tab
    END
    CREATE TABLE #tab
    [Date] date,
    DeliveryRows varchar(40),
    DeliveryTotalUnits varchar(40),
    ReceiptsRows varchar(40),
    ReceiptsTotalUnits varchar(40),
    WHILE @a!=7
    BEGIN
    SET @date=DATEADD(day,-@a, getdate())
    SELECT @delrows=ISNULL(COUNT(DLN1.LineNum),0), @delquan=ISNULL(SUM(DLN1.Quantity),0)
    FROM [dbo].[ODLN]
    INNER JOIN DLN1 ON [dbo].[ODLN].DocEntry=DLN1.DocEntry
    WHERE [dbo].[ODLN].CreateDate = @date
    SELECT @recrows=ISNULL(COUNT([dbo].[PCH1].LineNum),0) , @recquan=ISNULL(SUM([dbo].[PCH1].Quantity),0)
    FROM [dbo].[OPCH]
    INNER JOIN [dbo].[PCH1] ON [dbo].[OPCH].DocEntry=[dbo].[PCH1].DocEntry
    WHERE [dbo].[OPCH].DocDate=@date
    SET @a=@a+1
    INSERT INTO #tab VALUES(@date,@delrows,@delquan,@recrows,@recquan)
    END
    SELECT * FROM #tab
    Suda Sampath

  • TouchPad lock key does not work anymore on Dell XPS L401X

    Hi everyone,
    On my Dell XPS L401X laptop, there is a key to lock/unlock the touchpad. It used to work fine on Windows and on new fresh install ArchLinux, but now it does not work anymore. If I remember correctly, I did not change, configure any shortcut so far.
    Any hint to fix this problem?
    Many thanks!
    Tinh

    Try mapping the button as shown here: https://wiki.archlinux.org/index.php/To … are_Toggle
    I'm sorry i can't help more.

  • Why UDO does not work more  in SAP B1 P16?

    Someone of you has tried to use UDO in SAP B1 Patch 16?
    It does not work more what worked in patch 14 created by code.
    I have also created master and detail tables (from menu Options…)
    and the object by hand but I do not succeed to make to work it!
    Can you help me?
    Message was edited by:
            Andrea Scavazza
    Message was edited by:
            Andrea Scavazza
    Message was edited by:
            Andrea Scavazza

    Hi everybody,
    I am using SBO SP1 PL16 and I have problems with Update in Default Form.
    1. I create a Master Data Table and a Lines Master Data Table
    2. I create an UDO using Default Form
    3. When I test it I get the following behavior:
    a) When I add master data an lines at the same time, there is no problem.
    b) When I update any data in master or lines, I press Update Button and the message "successfully" is displayed but automatically it gets the old information
    c) I tried to find the right information in the table but it was not saved.
    Anyone has the same problem?

  • I am using Windows 8. My trackpad (Dell XPS) does not scroll in Firefox. The scroll works in Chrome and IE.

    Trackpad scrolling (up an down) does not work with touch on dell xps running windows 8

    Application Basics
    Name: Firefox
    Version: 29.0
    User Agent: Mozilla/5.0 (Windows NT 6.3; WOW64; rv:29.0) Gecko/20100101 Firefox/29.0
    Crash Reports for the Last 3 Days
    All Crash Reports
    Extensions
    Name: avast! Online Security
    Version: 9.0.2018.95
    Enabled: true
    ID: [email protected]
    Name: LastPass
    Version: 3.1.1
    Enabled: true
    ID: [email protected]
    Name: Xmarks
    Version: 4.2.1
    Enabled: true
    ID: [email protected]
    Important Modified Preferences
    browser.cache.disk.capacity: 358400
    browser.cache.disk.smart_size_cached_value: 358400
    browser.cache.disk.smart_size.first_run: false
    browser.cache.disk.smart_size.use_old_max: false
    browser.places.smartBookmarksVersion: 6
    browser.sessionstore.upgradeBackup.latestBuildID: 20140421221237
    browser.startup.homepage_override.buildID: 20140421221237
    browser.startup.homepage_override.mstone: 29.0
    browser.tabs.warnOnClose: false
    dom.mozApps.used: true
    extensions.lastAppVersion: 29.0
    gfx.direct2d.disabled: true
    gfx.direct3d.last_used_feature_level_idx: 0
    layers.acceleration.disabled: true
    network.cookie.prefsMigrated: true
    places.database.lastMaintenance: 1399426196
    places.history.expiration.transient_current_max_pages: 104858
    plugin.disable_full_page_plugin_for_types: application/pdf
    plugin.importedState: true
    print.printer_CutePDF_Writer.print_bgcolor: false
    print.printer_CutePDF_Writer.print_bgimages: false
    print.printer_CutePDF_Writer.print_colorspace:
    print.printer_CutePDF_Writer.print_command:
    print.printer_CutePDF_Writer.print_downloadfonts: false
    print.printer_CutePDF_Writer.print_duplex: 0
    print.printer_CutePDF_Writer.print_edge_bottom: 0
    print.printer_CutePDF_Writer.print_edge_left: 0
    print.printer_CutePDF_Writer.print_edge_right: 0
    print.printer_CutePDF_Writer.print_edge_top: 0
    print.printer_CutePDF_Writer.print_evenpages: true
    print.printer_CutePDF_Writer.print_footercenter:
    print.printer_CutePDF_Writer.print_footerleft: &PT
    print.printer_CutePDF_Writer.print_footerright: &D
    print.printer_CutePDF_Writer.print_headercenter:
    print.printer_CutePDF_Writer.print_headerleft: &T
    print.printer_CutePDF_Writer.print_headerright: &U
    print.printer_CutePDF_Writer.print_in_color: true
    print.printer_CutePDF_Writer.print_margin_bottom: 0.5
    print.printer_CutePDF_Writer.print_margin_left: 0.5
    print.printer_CutePDF_Writer.print_margin_right: 0.5
    print.printer_CutePDF_Writer.print_margin_top: 0.5
    print.printer_CutePDF_Writer.print_oddpages: true
    print.printer_CutePDF_Writer.print_orientation: 0
    print.printer_CutePDF_Writer.print_page_delay: 50
    print.printer_CutePDF_Writer.print_paper_data: 1
    print.printer_CutePDF_Writer.print_paper_height: 11.00
    print.printer_CutePDF_Writer.print_paper_name:
    print.printer_CutePDF_Writer.print_paper_size_type: 0
    print.printer_CutePDF_Writer.print_paper_size_unit: 0
    print.printer_CutePDF_Writer.print_paper_width: 8.50
    print.printer_CutePDF_Writer.print_plex_name:
    print.printer_CutePDF_Writer.print_resolution: 0
    print.printer_CutePDF_Writer.print_resolution_name:
    print.printer_CutePDF_Writer.print_reversed: false
    print.printer_CutePDF_Writer.print_scaling: 1.00
    print.printer_CutePDF_Writer.print_shrink_to_fit: true
    print.printer_CutePDF_Writer.print_to_file: false
    print.printer_CutePDF_Writer.print_unwriteable_margin_bottom: 0
    print.printer_CutePDF_Writer.print_unwriteable_margin_left: 0
    print.printer_CutePDF_Writer.print_unwriteable_margin_right: 0
    print.printer_CutePDF_Writer.print_unwriteable_margin_top: 0
    privacy.cpd.offlineApps: true
    privacy.cpd.siteSettings: true
    privacy.sanitize.migrateFx3Prefs: true
    privacy.sanitize.timeSpan: 0
    storage.vacuum.last.index: 0
    storage.vacuum.last.places.sqlite: 1399426196
    Graphics
    Adapter Description: Intel(R) HD Graphics 3000
    Adapter Description (GPU #2): NVIDIA GeForce GT 555M
    Adapter Drivers: igdumd64 igd10umd64 igd10umd64 igdumd32 igd10umd32 igd10umd32
    Adapter Drivers (GPU #2): nvd3dumx,nvwgf2umx,nvwgf2umx nvd3dum,nvwgf2um,nvwgf2um
    Adapter RAM: Unknown
    Adapter RAM (GPU #2): 3072
    Device ID: 0x0116
    Device ID (GPU #2): 0x0dcd
    DirectWrite Enabled: false (6.3.9600.16384)
    Driver Date: 1-29-2014
    Driver Date (GPU #2): 3-4-2014
    Driver Version: 9.17.10.3347
    Driver Version (GPU #2): 9.18.13.3523
    GPU #2 Active: false
    GPU Accelerated Windows: 0/1 Basic
    Vendor ID: 0x8086
    Vendor ID (GPU #2): 0x10de
    WebGL Renderer: Google Inc. -- ANGLE (Intel(R) HD Graphics 3000 Direct3D9Ex vs_3_0 ps_3_0)
    windowLayerManagerRemote: false
    AzureCanvasBackend: skia
    AzureContentBackend: cairo
    AzureFallbackCanvasBackend: cairo
    AzureSkiaAccelerated: 0
    JavaScript
    Incremental GC: true
    Accessibility
    Activated: false
    Prevent Accessibility: 0
    Library Versions
    NSPR
    Expected minimum version: 4.10.3
    Version in use: 4.10.3
    NSS
    Expected minimum version: 3.16 Basic ECC
    Version in use: 3.16 Basic ECC
    NSSSMIME
    Expected minimum version: 3.16 Basic ECC
    Version in use: 3.16 Basic ECC
    NSSSSL
    Expected minimum version: 3.16 Basic ECC
    Version in use: 3.16 Basic ECC
    NSSUTIL
    Expected minimum version: 3.16
    Version in use: 3.16

  • Flash player does not work with Ie or Firefox with win 8.1?

    Flash player does not work with Ie or Firefox with win 8.1 64, If i try and play a video I get the message to install Flashplayer.
    If I try and install it it says it is already installed. Your onsite  installer says it is not applicable to my machine.
    I have followed all the normal steps re enabling addons and active filters etc.
    all to no avail Pc is Dell 6 months old, Flashplayer has never worked on this machine. Last MS update mid Dec 2014.
    Version of flashplayer is 15....03.......

    Flash Player is a built-in component of Internet Explorer.  There's nothing separate to download or install.
    Firefox requires a different version of Flash Player (the NPAPI plug-in), which will be served to you if you go here: http://get.adobe.com/flashplayer using Firefox; however, there are some unique stability issues related to Firefox on Win8.1, and you're probably better off using Google Chrome if you want a more optimal experience with Flash Player.
    For problems where IE isn't being detected by sites that require Flash:
    First, confirm that ActiveX Filtering is configured to allow Flash content:
    https://forums.adobe.com/thread/867968
    Internet Explorer 11 introduces a number of changes both to how the browser identifies itself to remote web servers, and to how it processes JavaScript intended to target behaviors specific to Internet Explorer. Unfortunately, this means that content on some sites will be broken until the content provider changes their site to conform to the new development approach required by modern versions of IE.
    You can try to work around these issues by using Compatibility View:
    http://windows.microsoft.com/en-us/internet-explorer/use-compatibility-view#ie=ie-11

  • Adobe flash player does not work on Firefox, but does on Wind Exp

    I have reinstalled Adobe Flash Player many times and also reinstalled Firefox, but flash player does not work. Every tim I try to play something it tells me to install the latest version of flash player. Flash player works fine on on Windows Explorer

    IE uses a different version of Flash (ActiveX) than other browsers use, you need to install the Plugin version of Flash.
    1.Download the Flash setup file from here: <br />
    [http://fpdownload.adobe.com/get/flashplayer/current/install_flash_player.exe Adobe Flash - Plugin version]. <br />
    Save it to your Desktop.<br />
    2. Close Firefox using File > Exit <br />
    then check the Task Manager > Processes tab to make sure '''firefox.exe''' is closed, <br />
    {XP: Ctrl+Alt+Del = Processes tab}
    3. Then run the Flash setup file from your Desktop.

  • FLASH PLAYER 10.1 does not work on my 32bit browser

    the newest  version  of  FLASH PLAYER 10.1 would  not  work  on  my  32bit  FIREFOX browser.  so  I  installed  flash  player  on  a  32bit  VERSION of  internet  explorer. it worked fine for a few days till ADOBE asked me if i wanted to update  my  player.      NOW IT DOES NOT WORK  ! ! !      NOW  IT  DOES  THE  SAME  "GREEN  FLASHING  BLANK  SCREEN THING"  THAT  IT  DOES  ON  MY  FIREFOX  BROWSER  ! ! !    WHAT GIVES ? ! ? ! ? !

    Hello I have a Dell inspiron 6400 computer with window's home vista and with the latest standard Internet explorer. i was enjoying the fact that i could watch Youtube and other such sites until i was prompt to downlaod the latest version (10.1) flash player. which like anyone else I did, but not the mcfee anti virious as it would be inconflicsion with Norton anti virious.
    Now when i go to view a youtube etc I just get a blank or black screen.
    Please how can i rectify this problem
    ta,

  • Itunes 8.02.2 does not work on my computer

    Hi,
    *I have a dell computer runing xp sp3 pro verison. I installed Itunes 8.02.2 then I restart my computer Itunes does not work for me at all. I have no malware or spyware on my computer. I have tried the tips on apple web site to make itunes start up and work. So I remove 8.02.2 itunes from my computer. Then I installed 8.01.11 the old version of Itunes and it works just fine on my computer. I think that 8.02.2 has a lot of bugs in it. Also, I have a dell notebook with xp sp3 home and the same problem happends to my with version 8.02.2. I got itunes to work on my notebook buy installing 8.01.11. I hope people tell apple that there are some problems with 8.02.2.*
    I hope apple comes out with a new version of itunes that don't have problems like 8.02.2
    *Thanks alot*

    I followed the instructions posted in http://support.apple.com/kb/HT1737 and dont work.
    1) My iPhone battery is 100%.
    2) My PC is a notebook, and only have USB ports at the keyboard.
    3) & 4) I turned off/on several times the PC and the iPhone.
    5) Uninstall (reboot pc) and reinstall iTunes.
    Where can I download a previous version of iTunes?
    Thanks in advance.

  • Apple USB keyboard does not work with one internal usb port

    Hi everyone,
    hope someone can help me to solve my problem. I have a MPB13 retina late 2013 since something like 3 months. I have additional screen (dell), usb wired keyboard (apple) and BT magic mouse.
    Since a few days, my usb keyboard does not work well. It only want to work properly when plugged to the rights side usb port internal port and not anymore on the left one. It also work on a usb external concentrator. Before, I had no problem, it worked perfectly. There was no problem such as cofee on it...
    After searching the web on such problem, I tries a few things such as:
    I tried the keyboard on another computer (windows): works fine
    I tried usb stick and external DVD reading on the left internal usb ports: works fine
    I switch the MPB off and turn it back on: the usb keyboard still does not work on the left usb port
    I tried the SMC and PRAM reset : nothing
    Any idea ??
    Thanks
    Guillaume

    I'm facing the same problem, found any solutions ?

  • CJ20N is not working in SAP ECC 6.0

    Hello Everybody.
    In my SAP ECC 6.0 I log in SPANISH and launch tcode: CJ2ON - Project Builder and it transaction code does not work my session hangs and the message in the status bar is: 
    STARTING APLICATION PROJECT BUILDER (English)
    Inicio Aplicación Project Builder (Spanish)
    For my Customer is a must to use this tcode in Spanish. In English this transacction works fine.
    Here the level components:
    SAP_BASIS            | 700        | 0006  | SAPKB70006           | SAP Basis Component                                         |
    SAP_ABA
    700
    0006
    SAPKA70006
    Cross-Application Component
    PI_BASIS
    2005_1_700
    0007
    SAPKIPYJ77
    PI_BASIS 2005_1_700
    ST-PI
    2005_1_700
    0002
    SAPKITLQI2
    SAP Solution Tools Plug-In
    SAP_BW
    700
    0006
    SAPKW70006
    SAP NetWeaver BI 7.0
    SAP_AP
    700
    0003
    SAPKNA7003
    SAP Application Platform
    SAP_HR
    600
    0003
    SAPKE60003
    Human Resources
    SAP_APPL
    600
    0003
    SAPKH60003
    Logistics and Accounting
    EA-IPPE
    400
    0003
    SAPKGPID03
    SAP iPPE
    EA-APPL
    600
    0003
    SAPKGPAD03
    SAP R/3 Enterprise Add-On PLM, SCM, Financials
    EA-DFPS
    600
    0003
    SAPKGPDD03
    SAP R/3 Enterprise Defense Forces & Public Securit
    EA-HR
    600
    0003
    SAPKGPHD03
    SAP R/3 Enterprise Add-On HR
    EA-FINSERV
    600
    0003
    SAPKGPFD03
    SAP R/3 Enterprise Financial Services
    FINBASIS
    600
    0003
    SAPK-60003INFINBASIS
    Fin. Basis
    EA-PS
    600
    0003
    SAPKGPPD03
    SAP R/3 Enterprise Public Services
    EA-RETAIL
    600
    0003
    SAPKGPRD03
    SAP R/3 Enterprise Retail
    EA-GLTRADE
    600
    0003
    SAPKGPGD03
    SAP R/3 Enterprise Global Trade
    ECC-DIMP
    600
    0001
    SAPK-60001INECCDIMP
    DIMP
    ERECRUIT
    600
    0003
    SAPK-60003INERECRUIT
    E-Recruiting
    FI-CA
    600
    0003
    SAPK-60003INFICA
    FI-CA
    FI-CAX
    600
    0003
    SAPK-60003INFICAX
    FI-CA Extended
    INSURANCE
    600
    0003
    SAPK-60003ININSURANC
    SAP Insurance
    IS-CWM
    600
    0003
    SAPK-60003INISCWM
    Industry Solution Catch Weight Management
    IS-H
    600
    0003
    SAPK-60003INISH
    SAP Healthcare
    IS-M
    600
    0003
    SAPK-60003INISM
    SAP MEDIA
    IS-OIL
    600
    0003
    SAPK-60003INISOIL
    IS-OIL
    IS-PS-CA
    600
    0003
    SAPK-60003INISPSCA
    IS-PUBLIC SECTOR CONTRACT ACCOUNTING
    IS-UT
    600
    0003
    SAPK-60003INISUT
    SAP Utilities/Telecommunication
    SEM-BW
    600
    0003
    SAPKGS6003
    SEM-BW: Strategic Enterprise Management
    LSOFE
    600
    0003
    SAPK-60003INLSOFE
    SAP Learning Solution Front-End
    | ST-A/PI              | 01H_ECC600 | 0000  |      -               | Application Servicetools for ECC 600            
    Have you experienced this issue, can you please give your ideas to solve it ?

    Hello,
    SWUF is workflow runtime system administration? Seems it disappeared in 4.6 or 4.7.
    Try SWDC_RUNTIME and SWDC_DEFINITION - not sure if they are in ECC6.
    Let us know if this is the solution.
    regards
    Rick Bakker
    Hanabi Technology

Maybe you are looking for

  • How can I delete an email message on iphone that keeps reappearing after I delete it?

    I have received 1 email that I can not delete from my iphone 4.  I delete it and it ust reappears. same if I move it to trash. Can anyone tell me how to get rid of this email?

  • Page Item In all !!

    I want to know if there are some way to know if discoverer execute the report with the page item in <all>? My regards.

  • Select multiple equipment records in selection screen

    hi need to select multiple equipment records. Not a range of equipment records but many equipment records. I am using this as select option SELECT-OPTIONS: s_equip FOR equi-equnr. Please help

  • External Optical Drives

    Unfortuantly my version of the Macbook doesn't have dual layer burning capabilities. So I am thinking of buying a 5.25" drive enclosure and dual Layer DVD drive. My question is will any combination of enclosure and optical drive be useable by my Macb

  • How to Debug an ABAP Program

    Hi Friends, I am new to ABAP. Can anyone of you let me how to debug an ABAP program in detail. I would like to know whether my logic is working properly and see the field values during debugging. If any one of you have an How to document which speaks