How to list mail/documents in inbox?

hello guys,
   I want to find a fm to list all notifications in the "unread documents"/"document" folders within workspace's inbox. Dose any standard fm support this?
   thanks a lot
   Plz help me in this regard

Thanks, Siddharth Chordia  and all of your people.
By read the code of fm 'BWNO_INBOX_READ', I find the program process is like below:
first , call function 'SO_USER_READ_API1', to get the object-id of user's inbox;
then, call function 'SO_FOLDER_READ', use 'object-id' and 'uname', and export the folder_content.
Want to list those unread doc, just mark flag in parameter 'FILTER'.
And to Deepa Kulkarni 
'SAP_WAPI_GET_WI_ALL' and other 2 fms are work with workitems, but not with notifications; thanks a lot .
Thanks a lot again.

Similar Messages

  • How to send mail to SAP inbox

    Hello,
      Could any body tell me how to attach a report output to a mail which need to be send to SAP Inbox.
    The report is ALV report. Is there any Function Module to do so.
    Regards,
    Satya

    email to SAP Inbox
    Send mail to User's SAP Inbox also
      RECLIST-RECEIVER = IT_ZMMTACCUID-ACCTUSRID.
      RECLIST-REC_TYPE = 'B'.
      APPEND RECLIST.
      CLEAR RECLIST.
    SEND THE DOCUMENT BY CALLING THE SAPOFFICE API1 MODULE FOR SENDING
    DOCUMENTS WITH ATTACHMENTS
      CALL FUNCTION 'SO_NEW_DOCUMENT_ATT_SEND_API1'
           EXPORTING
              DOCUMENT_DATA              = DOC_CHNG
              PUT_IN_OUTBOX              = 'X'
           IMPORTING
              SENT_TO_ALL                = SENT_TO_ALL
            NEW_OBJECT_ID              =
           TABLES
              PACKING_LIST               = OBJPACK
              OBJECT_HEADER              = OBJHEAD
              CONTENTS_BIN               = OBJBIN
              CONTENTS_TXT               = OBJTXT
              RECEIVERS                  = RECLIST
           EXCEPTIONS
              TOO_MANY_RECEIVERS         = 1
              DOCUMENT_NOT_SENT          = 2
              DOCUMENT_TYPE_NOT_EXIST    = 3
              OPERATION_NO_AUTHORIZATION = 4
              PARAMETER_ERROR            = 5
              X_ERROR                    = 6
              ENQUEUE_ERROR              = 7
              OTHERS                     = 8.
    following options are available for field
    RECLIST-REC_TYPE
         Name
    P     Private distribution list
    C     Shared distribution list
         O     SAPoffice user
         B     SAP user
         U     Internet address
    X     X.400 address
    R     SAP user in another SAP System
    A     External address
         F     Fax number
         D     X.500 Address
         L     Telex number
    H     Organizational unit/position
    J     SAP object
    G     Organization object/ID
    Regards
    amole

  • How to send mail to portal inbox and user email id in  ESS leave workflow ?

    Hi
    currently i am working on sap ess workflows . i have customized standard workflow (ws12300111) where when manager approvesor rejects the leave in portal, mail has to send to user's portal inbox and  email id assigned to user .
    in workflow level - i have used 'sendmail' step and given agent as initiator . now mail is going to sap inbox .
            can you please guide me (step by step if Posiible) how should i do it.
    Regards,
    Sreeharsha. 
    Points will be rewarded.

    mail has to send to user's portal inbox and email id assigned to user
    Not sure if you want a email or SAP mail. Can you clarify the above statement?
    If you want to send a notification mail which needs to be displayed in UWL
    Search for keyword SONIC in this forum and blogs section. You will get the solution
    If you want to send a notification email to the email id of the user
    You need to determine the email id of the user and use the sendmail step to send email (your SCOT settings need to be condigured by your BASIS team)
    Thanks,
    Prasath N

  • How to list the documents in the Portal Activity Report?

    Hello,
    In the Portal Activity Report I would like to see the documents list with number of uploads, number of downloads and the username who have accessed the documents for monthly. Can any one help me where to mention all the details regarding this one. I didn't found anything regarding this in the Portal Activity Report.
    Thnx in advance.
    cheers,
    Murali

    Hello,
    Can anyone help me solving this problem.
    Thnx in advance
    cheers
    Murali

  • How to list Financial documents in General Ledger View

    Dear Sir,
    The Financial Document posted during MIRO does not show profit-center against the line item pertaining to Vendor Credit GL  ( in Tcode FB03) . However when we click on "General Ledger View" then Profit-Center gets reflected against all Line Items of the document .
    We want to display multiple Financial documents with Profit Center , pl guide us as how can we do it .
    We assure to give full points for the suggested solution pl .
    With Rhanks and Rgds
    B Mittal

    Hi,
    1 - Enter transaction FBL1N
    2 - Ctrl + F8 to change layout
    3 - Check "find" and search "Profit Center"
    4 - Press left-right arrow and confirm.
    Regards

  • How to list all documents that has linked a image file?

    Hi everyone,
    I'd like to know if there's a way to find all linked file to a file: i have a logo image that a lot of inDesign files have linked to it and i'd like to find all those inDesign files.
    I know that Bridge CS6 can list all linked files of a .indd file but i'd like the opposite
    Regards,
    Snowblood13x

    You might be able to do it via scripting. If you have to search an entire volume it would be impractical, but something like this AppleScript would open all of the ID files inside of a chosen folder and its sub folders. Once the ID file is open it could check for a specific link and if it exists leave the file open otherwise close:
    global mylinkname
    --change YourLinkNameHere to the logo link's name
    set mylinkname to "YourLinkNameHere"
    tell application "Finder"
        activate
        set the thisFolder to (choose folder with prompt "Choose a folder. The extension of all files inside will be hidden.")
        my ProcessFolder(thisFolder)
        tell application "Adobe InDesign CS6"
            activate
            display dialog "Done"
        end tell
    end tell
    on ProcessFolder(thisFolder)
        set theseItems to list folder thisFolder without invisibles
        repeat with i from 1 to count of theseItems
            set thisItem to alias ((thisFolder as text) & (item i of theseItems))
            set the iteminfo to info for thisItem
            if folder of the iteminfo is true then
                ProcessFolder(thisItem)
            else
                ProcessItem(thisItem)
            end if
        end repeat
    end ProcessFolder
    on ProcessItem(thisalias)
        tell application "Finder"
            if creator type of file thisalias is "InDn" and kind of file thisalias is not "InCopy® Lock File" then
                tell application "Adobe InDesign CS6"
                    activate
                    --set user interaction level of script preferences to never interact
                    open thisalias
                    set llist to name of every link of active document
                    if mylinkname is not in llist then
                        tell active document
                            close
                        end tell
                    end if
                    --set user interaction level of script preferences to interact with all
                end tell
            end if
        end tell
    end ProcessItem

  • External Mail To SAP Inbox

    Hi,
    Can one explain me How To send mail to SAP Inbox through externall mail id like abc( at )y a hoo.com  to SAP inbox ETC,
    IF POSSIBLE PLEASE EXPLAIN in detail. . .
    THANKS & REGARDS
    Priyanka M Jain

    Hi .
       Try this it might help you
    https://wiki.sdn.sap.com/wiki/display/Basis/SAP%20to%20send%20external%20mails
    Re: Unable to send mails from SCOT

  • How to send mail to distribution list ?

    Hi Everybody,
    Pls let me know how to send mail to distributed list???
    Thanks & Regards,
    raju<b></b>

    Hi ,
      Use Function Module 'SO_NEW_DOCUMENT_SEND_API1'.
      U need to pass Distribution list to Receiver and 'C' to receiver type refer the below code for clarification.
    Determine the Distribution List.
            gv_rec_list-receiver = gv_distribution.
            gv_rec_list-rec_type = 'C'.
            APPEND gv_rec_list.
    Check if Distribution List is deleted.
            SELECT SINGLE objnam
                     FROM soid
                     INTO lc_objnam
                     WHERE objnam = gv_rec_list AND
                           dlitp  = lc_dli.
            IF sy-subrc = 0.
              CALL FUNCTION 'SO_NEW_DOCUMENT_SEND_API1'
                EXPORTING
                  document_data              = gv_doc_data
                  document_type              = 'RAW'
                  put_in_outbox              = 'X'
                TABLES
                  object_content             = gv_obj_cont
                  receivers                  = gv_rec_list
                EXCEPTIONS
                  too_many_receivers         = 1
                  document_not_sent          = 2
                  document_type_not_exist    = 3
                  operation_no_authorization = 4.
              CASE sy-subrc.
                WHEN '1'.
                 message i001(as) with 'TOO MANY RECEIVERS'.
                  EXIT.
                WHEN '2'.
                 message i001(as) with 'DOCUMENT NOT SENT'.
                  EXIT.
                WHEN '3'.
                 message i001(as) with 'DOCUMENT TYPE DOES NOT EXIST'.
                  EXIT.
                WHEN '4'.
                 message i001(as) with 'OPERATION NO AUTHORIZATION'.
                  EXIT.
              ENDCASE.
              Hope this might have helped you.
    Thanks,
    Prashanth

  • When I delete an e-mail, it automatically puts another e-mail in my inbox which says "no sender".  What am I doing wrong and how to get all these off my I-Pad?

    When I delete an e-mail, it automatically puts another e-mail in my inbox which reads "No Sender", thus I have numerous e-mails that have not really been deleted.  How can I delete all these e-mails and how to correct the issue of deleting e-mails?

    Here is one way of doing it. Left click on picture, list opens click on save as. In next window box apears save as type PNG(*.png). Then go to my pictures and print picture from there. I am not sure what print target is? That is in the list also. That may be how it is directly printed. Never used that short cut. Try it and see. I know for sure saving it to file works.

  • How can I forward an e-mail document on adobe

    I want to know how can I forward a e-mail document from adobe and I saved the document called Princess Pink but cannot find it. two questions need answer

    Hi Ohtigers
    Is your document a PDF?
    Did you have it open in Reader or Acrobat Prod?
    Can you log into https://files.acrobat.com/ and search for your document?
    If your document is a PDF, you can open it in Adobe Reader and you can send the file using Adobe SendNow
    Select 'Tools' from the top bar
    In the right hand panel select 'Send Files'
    Click on  'Sign In' - you will be prompeted to enter your Adobe ID and password
    Enter an email address into the To field
    Option: Fille out the Subject and Message fields
    Select Send Link button

  • How do I keep new e-mails in my Inbox after I've opened them?

    When I close a new e-mail in my inbox after I've opened it to read it, it disappears into my old mail box. This does not happen with Internet Explorer. How do I keep an e-mail in my inbox after I've opened it?

    Always keep an eye on 'More like this', the column to the right of your initial post.    You will often find answers and direct leads to your questions there.
    >>>>>>>>>
    In this case all five options show they are related, and within those are other links.

  • How do I see the number of e-mails in my inbox using the standard mail app?

    Hi,
    Before ios7 I used to be able to see how many e-mails were in my inbox for each synced account.  Now this information doesn't appear like it used to.  It is very frustrating for me as I used to use this as a tool to prompt a tidy up of my inbox for each account.  When the number started to increase above 50 I would delete rubbish ones and sort ones to keep into other folders.  Does anybody know anything about the reasons behind this or if you can turn the function back on?
    Basically I would go to my inbox and start scrolling through my inbox and the top of each mail item it would say something like '3 of 52' '4 of 52' and so on...
    Any help would be much appreciated, thanks.

    Delete them from your inbox.

  • How to List view web part to display document library for only users with access permission

    Hi
    I am trying to accomplish this requirement but I don't know if that is possible or how to get there.  Any suggestion or advice are helpful.
    On a site collection, I have several document libraries,  with each library have unique permission to a few user or SharePoint group.
    I want to create a web part page and make that the site home page.  On this web part page, I want to create a Content Search Web Part to list the content of the document library that the logged on users have permission to see. 
    Is this possible with CSWP or is there anything easier or if it is not possible at all,  please advise.
    Thanks
    Swanl

    Hi ,
    Based on your description, my understanding is that you want to create a Content Search Web Part to list the documents that the logged on users have access permission.
    It is feasible with CSWP, you can follow the below step:
    Edit Content Search Web Part->Change query-> Select a query: Items matching a content type (System); Restrict by app: Current site collection; Restrict by content type: Document.
    Best Regards,
    Lisa Chen
    Forum Support
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet
    Subscriber Support, contact [email protected]

  • How can I set up a rule to delete all messages older than 6 months left in Apple Mail's main inbox?

    How can I set up a rule to delete all messages older than 6 months left in Apple Mail's main inbox?
    I have created other rules to move some of my daily messages into specific folders and I don't wish to auto-delete those.
    Just the general stuff that keeps piling up in my me.com main email box.  Mail such as FB announcements and other low priority stuff I want to look at before deleting but don't want to keep longer than a week or month.
    TIA
    thokitts

    Thanks, but I am looking for a more automated solution than hand marking emails as junk. I might as well move them to the trash myself.
    Again, these are emails I want to receive and quickly read, but not keep longer than a week or month or so. By setting a rule to toss any older than 30 days back then my Mail program (and thus my hard drive) won't be wasting so much space. For example, currently I have over 6000 read messages, with their attachments, in my main email box. I'd rather not have to physically attend to sorting the one I don't want out.
    The one I do keep for other reasons get moved into other folders.
    It seems this should be possible.
    thokitts

  • I installed Firefox v. 3.6.15 on 3/21/2011. Since then Firefox crashes and closes completely when I click on certain e-mails in my inbox. How can I fix this?

    I run v. 10.6.7 Mac OS X on my iMac. Java is v. 10.6, Update 4. My Adobe reader is v. 9.4.3. Clicking on random e-mails in my inbox causes Firefox to completely close. I get a window that says "Firefox quit unexpectedly". When I click on "Reopen" I get a window that says "Well, this is embarrassing. Firefox is having trouble recovering your windows and tabs. This is usually caused by a recently opened web page. There are no 'Crash ID(s), because my desktop goes back to the homepage because Firefox completely closes. Does anyone have instructions on how to correct this?

    Hi their firefox has updated to 4.0 [http://www.mozilla.com/en-US/firefox/features/ 4.0 Features] Please can you try the following for me
    [[Firefox crashes]]

Maybe you are looking for

  • Error: the serial number is not for a qualifying product

    I own design standard creative suite 5 , and recently bought CS6 design standard.  I get an error when I try to activate the software that I do not have a qualifying product.  How can that be? I am using the correct serial number. Thanks,  (I downloa

  • Could not able to join physical tables in obiee using a dataconversion func

    Hi, i am trying to join physical tables wc_perf_ratings_d and w_wrkfc_evt_month_f with condition as "Oracle Data Warehouse"."Catalog"."dbo"."Dim_WC_PERF_RATINGS_D"."RATING_CD" = to_char(round( "Oracle Data Warehouse"."Catalog"."dbo"."Fact_W_WRKFC_EVT

  • How to shrink TBS_DATA

    Dear All, I am working on Oracle 10g I am trying to import a DMP file with no data in it and the DMP file is about 2MB. After import it turns out that the TBS_DATA that is booked for usage is about 30 GB. It looks like when creating the objects/ the

  • Upgraded ecc 6.0 version font error in sap script printout

    hi i have a errror in a form print out the font has c hanged in the new version please suggest on the same as in 4.6b the font was different now in ecc6.0 the printoutput font is different in the script output.. pls suggest asap regards Arora

  • Suddenly cannot open mail app on my computer

    cannot open mail app? Has always been fine, much of touched something I'm not familiar with??