Document status indicator in KMC

We have implemented KM and standard functionality of document status
viz to be approved, approved etc is available.Also when the document is
available we are able to view respective s/w logo
Our requirement is
1) If a document is sent for approval, can we put some symbols/images
preceding that document ?
2) Once the document is approved, a new symbol is preceded to that
document.
Our Aim to differentiate documents which are to be approved and which
are approved with usage of visual symbols.
Please guide us on this so that it can be achieved in standard SAP
Regards,
Deepak Kori

Dear Deepak,
This is possible to achive only if you additionally code for approval workflow.
Regards,
Shiva

Similar Messages

  • Need to change the status indicator in CV01n,CV02n and CV03n

    Hi,
        When i am creating the document in CV01n,if the status set to Release then the status indicator need to change in to green.

    Transaction Code - CV01                     Create Document Info Record
    Exit Name           Description
    CV000001            Check-in enhancement for document management
    CV110001            DMS: Enhancements for DMS Dialog (FB: CV110)
    CVDS0001            User exits for ALE DMS (DOCMAS)
    No of Exits:          3
    USER EXIT
    http://www.sap-img.com/abap/a-short-tutorial-on-user-exits.htm
    http://www.sapgenie.com/abap/code/abap26.htm
    http://www.sap-img.com/abap/what-is-user-exits.htm
    http://wiki.ittoolbox.com/index.php/HOWTO:Implement_a_screen_exit_to_a_standard_SAP_transaction
    http://www.easymarketplace.de/userexit.php
    http://www.sap-img.com/abap/a-short-tutorial-on-user-exits.htm
    http://www.sappoint.com/abap/userexit.pdfUser-Exit
    http://www.sap-img.com/ab038.htm
    http://help.sap.com/saphelp_46c/helpdata/en/64/72369adc56d11195100060b03c6b76/frameset.htm
    http://www.sap-img.com/abap/a-short-tutorial-on-user-exits.htm
    http://www.sap-img.com/abap/what-is-user-exits.htm
    http://expertanswercenter.techtarget.com/eac/knowledgebaseAnswer/0,295199,sid63_gci982756,00.html
    Rewards if useful.........
    Minal

  • Is there any way to get the finder window spinning wheel status indicator back?

    In Mac OS X Lion the bottom finder window frame is gone. Consequently the spinning wheel status indicator in the lower right corner is also gone. How do I get the status wheel back so I can tell whether the window view is still loading or hung?

    pixelthinker wrote:
    In Mac OS X Lion the bottom finder window frame is gone. Consequently the spinning wheel status indicator in the lower right corner is also gone. How do I get the status wheel back so I can tell whether the window view is still loading or hung?
    Up top menu > View > Show Status Bar
    Pete

  • Network Connectivity Status Indicator for IPv6 works wrong in Windows 7 and Windows 8

    Hi Folks,
    I am working on testing Network Connectivity Status Indicator for IPv6 in Windows 7 and 8.
    Waht is "Network Connectivity Status Indicator(NCSI)" you can refer to https://technet.microsoft.com/en-us/library/ee126135%28v=ws.10%29.aspx?f=255&MSPPError=-2147217396
    I found that even if Network Connectivity Status Indicator detect IPv6 connection to http://ipv6.msftncsi.com/ncsi.txt failed.
    Windows IE still use IPv6 to connect to website first, rather than stop using IPv6 and to use IPv4.
    It will cause IPv6 fallback to IPv4 problem, that's 21 secs and 7 secs delay for fallback in Windows 7 and 8.
    Does anyone suffer the same problem?
    Or someone know how this works?
    Thanks!

    Hi Roger_Wang0214,
    "Windows IE still use IPv6 to connect to website first, rather than stop using IPv6 and to use IPv4."
    By default Windows prefers IPv6 over IPv4,we can manually configure the IPv4 prefer over IPv6 if it has result in any troubles.
    Here is a link for reference :
    Resolving Internet connectivity issues after World IPv6 Launch (June 6, 2012)
    https://support.microsoft.com/en-us/kb/2533454
    "The "Prefer IPv4 over IPv6" Fix it solution will configure your computer to prefer IPv4, instead of IPv6. By default, Windows prefers IPv6 over IPv4. If you are having problems using IPv6 to connect to some websites, this may resolve the
    problem."
    For a Windows 7 machine ,we can try the following fixit tool to configure IPv4 prefer over IPv6 .For a Windows 8.1 machine ,we can configure it referring to the manual part .
    HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\Tcpip6\Parameters\DisabledComponents
    If the DisabledComponents entry is unavailable, we can create it (DWORD (32-bit) Value).Then set a value with "0x20"to prefer IPv4 over IPv6 by changing entries in the prefix policy table.
    Here is a link for reference :
    How to disable IPv6 or its components in Windows
    https://support.microsoft.com/en-us/kb/929852
    Best regards
    Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact [email protected]

  • How to find out the Accounting document status for sales order

    Hi
    We have created the sales document by referring the billing document of contract no.Aftre that we have raised invoice for sales document. Now system is generated both invoice , accounting document and the value is appearing against the invoice document. However the status against the accounting document is showing as not cleared. I want to know where we could see this status in Table,
    Normally we can see the status in FPLT for contracts since its having the billing plan no. Suppose if the billing plan is not available like S.O , How to check the status in table?
    I have refered so many tables but not helping. Since i want to get the uncleared value of accouting document.
    Please help me.
    Regards
    Thenna

    Hi Thenna
    The accounting document status in the document flow is determined dynamically when you display the document flow,
    it's not saved in a specific table.
    Here is the relevant logic:
    LV05CF01 -> form BUCHHALTUNGSBELEG
    IF vbrk-vbeln <> vbfa_tab-vbeln.
       PERFORM vbrk_ermitteln USING vbfa_tab-vbeln.
       REFRESH xbkpf.
       CALL FUNCTION 'FI_DOCUMENT_READ'
        LOOP AT xbseg WHERE bukrs EQ xbkpf-bukrs
                      AND   belnr EQ xbkpf-belnr
                      AND   gjahr EQ xbkpf-gjahr
                      AND   ( koart EQ 'D' OR koart EQ 'K' ).
        ENDLOOP.
                IF NOT sy-subrc IS INITIAL.
      SET STATUS TO 'No items are cleared'
                  l_xdoc_num-status = 'A'. <<<
                ELSE.
                  LOOP AT xbseg WHERE augbl IS initial
                                AND   umskz NE 'A'
                                AND   vorgn NE 'AZUM'
                                AND   ( koart EQ 'D' OR koart EQ 'K' ).
                  ENDLOOP.
                  IF NOT sy-subrc IS INITIAL.
      Set status to 'All items are cleared'
                    l_xdoc_num-status = 'C'. <<<
                  ENDIF.
                ENDIF.
    Regards,
    Alex

  • Status Indicator Light not working

    I've been having a recurring issue with the status indicator light on my 15.4-inch MacBook Pro 2.8 GHz (Mid-2009). I learned recently that it's normal for the status indicator light to be on when the computer starts up, shuts down and goes to sleep. Lately, the status indicator light has not appeared at all when the computer starts up, goes to sleep, and shuts down. I've tried almost everything and still nothing has worked
    1.) Checked to see if any of the ports are working: FireWire, Ethernet, MagSafe, SD card, USB, Mini-DisplayPort. These ports are behaving as normal, working fine.
    2.) Checked and successfully paired a seven button Apple Remote to test the IR receiver.
    3.) Ran an Apple Hardware Test, found nothing wrong, passed the test.
    4.) Reinstalled and erased my hard drive, still having issues.
    5.) Bluetooth, AirPort Extreme, microphone, audio ports, speakers, and iSight are working.
    6.) Battery works and the charger is working.
    7.) Backlighting for display and keyboard work.
    The computer is only 1 year and 4 months old. The issue began occurring two months ago. Now the computer does sleep, but if the fans are going, it takes a bit longer for the computer to go to sleep when I close the lid.
    I haven't replaced the hard drive or installed any new hardware.
    The battery and power information is still at 100%:
    Model Information:
    Serial Number: W0945***7VC
    Manufacturer: SMP
    Device name: bq20z451
    Pack Lot Code: 0000
    PCB Lot Code: 0000
    Firmware Version: 0003
    Hardware Revision: 0003
    Cell Revision: 0100
    Charge Information:
    Charge remaining (mAh): 4165
    Fully charged:No
    Charging: Yes
    Full charge capacity (mAh): 6662
    Health Information:
    Cycle count: 43
    Condition: Normal
    Battery Installed: Yes
    Amperage (mA): 3177
    Voltage (mV): 12109
    System Power Settings:
    AC Power:
    System Sleep Timer (Minutes): 15
    Disk Sleep Timer (Minutes): 10
    Display Sleep Timer (Minutes): 15
    Wake On AC Change: No
    Wake On Clamshell Open: Yes
    Wake On LAN: No
    Current Power Source: Yes
    Display Sleep Uses Dim: Yes
    GPUSwitch: 2
    Battery Power:
    System Sleep Timer (Minutes): 10
    Disk Sleep Timer (Minutes): 10
    Display Sleep Timer (Minutes): 2
    Wake On AC Change: No
    Wake On Clamshell Open: Yes
    Display Sleep Uses Dim: Yes
    GPUSwitch: 2
    Reduce Brightness: Yes
    Hardware Configuration:
    UPS Installed: No
    AC Charger Information:
    Connected: Yes
    ID: 0x0100
    Wattage (W): 85
    Revision: 0x0000
    Family: 0x00ba
    Serial Number: 0x009fe8db
    Charging: Yes
    My computer's warranty with Apple, including tech support, service, and repair, has expired. However, I do have a remaining two year warranty with Best Buy Geek Squad.
    I'm wondering how much would it cost out of pocket to take this computer to an Apple Store for service and repair with a Mac Genius?
    So is there anything that could be wrong with this computer and if so, please help!
    <Serial Number Edited by Host>

    studabaker wrote:
    I erased the disk with Disk Utility using the installation DVD ....
    If you used "Secure erase", you can be certain that there is nothing left on the disk that is causing your problem.
    Because you have a long wait for access to an Apple Authorized Service Provider, if you merely clicked "erase" (the one that does not take more than an hour), you could try Secure Erase now if you want to try the final possible fix you can do on your own.
    ... and installed the combo update recently, the size for that update was over 1GB.
    That is the right one.
    I have been regularly doing those permissions. Thanks for the suggestions.
    You're welcome.
    I'm taking my Mac to Geek Squad and Mac Genius next month when I visit my dad in Georgia, there's an Apple Store about 45 minutes away from his house and a Best Buy that sells Macs, cause it turns out Geek Squad's coverage for Apple/Mac is only in places where they sell Macs. I used my zip code and turned up 0 results but I typed the zip code for where my dad lives in North Georgia, and a Best Buy in Atlanta is available. So I will definitely go there and visit the Apple Store to at least see what my options are.
    If you need help from Apple before you can go to a physical location next month, other Apple Technical Support service option contacts are available here:
      http://www.apple.com/contact/
    Best Buy by far has the best warranty for computers from what the sales associate was telling me. Apparently, Best Buy warranty covers spills, drops & breaks, and overall maintenance issues. In fact, they told me if the computer can't be fixed, they'll replace it with a new one.
    It should surprise nobody when salesmen tell customers that their own warranty product is best. Because you have apparently already paid for the Best Buy warranty, you can take advantage of their warranty and enjoy the "best" results if you can find a location that honors it.
    Thanks for advice and if there's anything else you can think of, let me know.
    You're welcome. You have all my suggestions. However, if I think of anything else, I will post back here.
    We will watch for your status update. Please let us know what fix works for you.
    EZ Jim
    Mac Pro Quad Core (Early 2009) 2.93Ghz Mac OS X (10.6.7); MacBook Pro (13 inch, Mid 2009) 2.26GHz (10.6.7)
    LED Cinema Display; G4 PowerBook 1.67GHz (10.4.11); iBookSE 366MHz (10.3.9); External iSight; iPod4touch4.3.1

  • Service entry sheet reversal document (Status: Error in process) List repor

    Hi,
    I have a requirement, to have or develop report which gives service entry sheet reversal documents (Status: Error in process),
    while investigation i found below options (not exactly meeting my requirement)
    1) Display and Process Confirmations Centrally >Document Category>reverse documents
    which giving all reversed document list (need only error list) and it is giving only my puchasign group list (need all purchasing group list)
    2) I can execute PPB_PD with BUS2203>status>I1019
    is there any way/possible option that i can execute a report of reversal service entry sheets which ststus :error in process"
    Thanks,
    Jai

    Hi Christian,
    Thanks for your reply.
    But this is what has happened. No the SES was not deleted in ECC before the confirmation was deleted in SRM. Our users don't have access to ECC T-codes.
    Also I have checked the time at which the cancellation was created and everything is in sync.
    How can i change the status of SES from 'Error in process' to 'posted in backend'?
    Please advise
    Thanks

  • Messenger status indicator on a JSP page

    Greetings
    I would like to ask anyone, where can i find a status indicator for the most famous messengers eg. MSN, Yahoo, ICQ, IRC, Jabber. Actually there are two points i want to include to my JSP Page: 1. icons that indicate whether a user is offline or online, for each and every of his messengers (if any) 2. code or script that pops up the selected messenger, if the user i want to chat with, is online.
    Actually the second point i mention, is almost fullfilled, but my main problem is the online/offline indicator.
    Please help !
    Thanks in advance

    See for example Yahoo presence taglib in Coldtags suite:
    http://www.servletsuite.com/jsp.htm

  • Battery Status Indicator (in menu bar) does not update

    I've recently noticed that the battery status indicator in the menu bar gets "stuck," and won't update. I can force it to update by disabling and re-enabling it, or by changing the view style, but if I leave it alone, it won't change, even across sleep/wake cycles.
    Any ideas?

    Actually, the problem disappeared after a reboot. I reboot so infrequently, I didn't even consider that as a solution, but something else caused me to need to reboot, and after that, the indicator works fine.
    Still no idea what caused it to get stuck in the first place, but for now, it's better.
    Good luck!

  • Function Module/BAPI for updating Document Status.

    Hi Experts,
    Is there any Function Module/BAPI available for updating the document status ?
    Thank You,
    Radhika.

    unresolved!

  • Email notification when Document status changes in Solution Manager

    Hi,
    Is there a way to send email notification to certain people if the document status changes in Solution Manager?
    For example: A notification email should be send to business user when development is complete.
    When development is complete, document is set with status 'Build complete'. As soon as this status is set, we want to notify business user to test the object. Similarly on other document statuses as well.
    Thanks in advance.

    Hi Vikky
    Check out doco 'How to: Automatic email notification' on service.sap.com.
    SAP Support Infrastructure > SAP Solution Manager > Information for VARs ASPs and AHPs > Setup Documents (SP15+)
    Thanks
    Daniel

  • Macbook pro 17" 3g battery status indicator stuck on 100%

    Battery status indicator stuck on 100% Worked normaly until today
    resetting smc does not help
    Battery Information:
      Model Information:
      Serial Number:          9G95201YS4M0A
      Manufacturer:          DP
      Device name:          bq20z951
      Pack Lot Code:          0000
      PCB Lot Code:          0000
      Firmware Version:          0042
      Hardware Revision:          0001
      Cell Revision:          0119
      Charge Information:
      Charge remaining (mAh):          65262
      Fully charged:          Yes
      Charging:          No
      Full charge capacity (mAh):          65262
      Health Information:
      Cycle count:          221
      Condition:          Replace Now
      Battery Installed:          Yes
      Amperage (mA):          -1629
      Voltage (mV):          8072

    I closed the lid for about 10 minutes to do something and when I came back the status seemed to be working correctly (80%) and the health now seems normal. I made no other changes. I will keep an eye on it and post if it goes haywire again. Thanks for your help
    Battery Information:
      Model Information:
      Serial Number:          9G95201YS4M0A
      Manufacturer:          DP
      Device name:          bq20z951
      Pack Lot Code:          0000
      PCB Lot Code:          0000
      Firmware Version:          0042
      Hardware Revision:          0001
      Cell Revision:          0119
      Charge Information:
      Charge remaining (mAh):          9833
      Fully charged:          No
      Charging:          No
      Full charge capacity (mAh):          12217
      Health Information:
      Cycle count:          221
      Condition:          Normal
      Battery Installed:          Yes
      Amperage (mA):          -1550
      Voltage (mV):          7930

  • Authorization control for document status

    Dear All,
    I want to control the status change of Documets created,
    How can i achieve this, so that a perticular user /ID can change the perticular status,
    I have ,
    01
    02,
    03,
    04, Rel.
    05,
    Do i need to put some trace anf find Objects to control...
    or there is any standard method to do this..
    Please guide me..
    Regards
    Raghu

    Hi Raghu,
    Here are DMS authorizatoins objects. For handle status it should be C_DRAW_STA
    C_DRAD_OBJ          Create/Change/Display/Delete Object Link                         
    C_DRAW_BGR          Authorization for authorization groups                         
    C_DRAW_DOK          Authorization for document access                         
    C_DRAW_MUP          Authorization for Markups                         
    C_DRAW_STA          Authorization for document status                         
    C_DRAW_TCD          Authorization for document activities                         
    C_DRAW_TCS          Status-Dependent Authorizations for Documents                         
    C_DRZA_TCD          Document Distribution: Authorization for Recipient Lists                         
    C_DRZI_TCD          Document Distribution: Authorization for Distribution Order                         
    S_ECL_CAT          ECL Viewer: Authorization Object for Stamp Categories                         
    S_ECL_STP          ECL Viewer: Authorization Object for Printing with Meta Data                         
    S_ECL_STP2          ECL Viewer: Authorization Object for Printing with Meta Data                         
    Hope that it will help you
    //Håkan

  • What is causing flashing arrow next to battery status indicator?

    I have a flashing white arrow next to the battery status indicator on my ipod touch that is causing music to be unplayable. Everything else appears to be ok. Arrow goes away when doing anything other than music. Any help would be appreciated.

    Could be the Location Service icon . Go to SettingsPirvacy and either turn Location services on or off.
    Next:
    - Reset the iOS device. Nothing will be lost
    Reset iOS device: Hold down the On/Off button and the Home button at the same time for at
    least ten seconds, until the Apple logo appears.
    - Reset all settings      
    Go to Settings > General > Reset and tap Reset All Settings.
    All your preferences and settings are reset. Information (such as contacts and calendars) and media (such as songs and videos) aren’t affected.
    - Restore from backup. See:                                 
    iOS: How to back up                                                                
    - Restore to factory settings/new iOS device.

  • Excite Pro - Battery Status Indicator at 0%

    Battery status indicator is stuck at 0% - battery holds charge ok just don't know what it is. I presume the battery stats file is corrupted - is the only way to fix it a factory reset?
    Calibration either needs root - not possible or 60% charge - won't work as says 0%!!!!

    I think you should set it to factory settings.
    Press and hold power button and volume up button. Then in the menu choose factory reset.
    If this will not work, then the issue must be related to hardware failure

Maybe you are looking for