Document upload from MOSS to Solution Manager

Is there a way to move documents from MOSS to Solution Manager ?
Thanks!
Regards,
Nagarajan

Hi Jose Sorli,
Make the below entry in the bcos_cust table(can be done using transaction sm30) of the satellite system. This entry helps in sending the incident messages from the satellite systems to the solution manager's service desk.
Column 1: Application: OSS_MSG
Column 2: + : W
Column 3: RFC Destination: <<name of the rfc destination b/n your satellite system and solution manager system>>
Column 4: + : CUST620
Column 5: + : 1.0
Dont forget to reward points to useful answers.
best regds,
Alagammai.

Similar Messages

  • How to send Service Ticket from CRM to Solution Manager.

    Hi all,
    at present we are creating service tickets relevant to SAP operations in our CRM instance and we plan to continue to do so.
    We also would like to forward these created service tickets to the Solution Manager Service Desk.
    There is functionality in Solution Manager to bind into an external service desk. However I believe this is only really relevant to binding in another Solution Manager - in any case, there is seemingly very little documentation about this available.
    Has anyone ever done this - sending service tickets from CRM to Solution Manager Service Desk? If so, could someone please let me know where I can find the documentation on that. Any help is much appreciated.
    Cheers,
    Wolfgang

    Hi,
    Use "Rule Modeler" for sending emails and also maintain "IF" condotions there.
    Regards,
    Ankush

  • Configuration documents of CRM 2007 in Solution Manager

    Hi all,
    I have new version of CRM 2007 in our landscape and Solution manager as well.
    So we need to get/download configuration documents of CRM 2007 by Solution manager but not sure what configuration we need to do in Solution manager to get these CRM documents.
    So kindly suggest me the way to get this done, thanks.
    Regards,
    Himanshu chauhan.

    Hi,
    This link might not be sufficient but will let you know how powerful Solution Manager is.
    http://www.sap.info/index.php4?ACTION=noframe&url=http://www.sap.info/public/INT/int/index/PrintEdition-17873d3e79f60eb30-int/0/articleContainer-214343d5145200a438
    This link will be useful to you providing you how to create non SAP systems in your Solution Manager Landscape.
    http://help.sap.com/saphelp_sm40/helpdata/en/bc/0e90000e58f64fb184a4cba0323e39/content.htm
    This is one good guide for you.
    www.sappro.com/downloads/NonSAPsystems.pdf
    Meanwhile i will try for more indepth coverage of the subject.
    Feel free to revert back.
    --Ragu

  • How to post message from SAP to solution manager

    Dear Friends,
    We have configured solution manager service desk and the users were able to send messages so that we can view it in solman ITSM.
    Now we want to bifurcate the messages from different people, hence we woule like to use of Problems in incident management of solman.
    How a end user can create a message so that it comes and fall in problems folder of incident management,
    Normally create support message from SAP will make the message to be visible in incidents of solman ITSM, but we want the message to fall in problems section of ITSM in solman.
    Please help.
    Thanks
    Suresh

    Hi,
    In 7.1 we do have dedicated services as Problem management, with the transaction type SMPR. you can create ZMPR and proceed similar to SMIN ( incident) in ITSM.
    also refer here  Problem Management in SAP Solution Manager 7.1 - Part 2
    Thanks
    Jansi

  • Documents uploaded from SharePoint Task to a specific document library

    This is done in SharePoint online. Users get assigned a task. (I am doing this from workflow using SPD). They need to upload a document and save the task. (I am using a multiline textbox with rich text for this).
    Questions:
    1. Is there a way to have the documents go to a certain document library? When we have a rich textbox, the default save location is 'site assets'. Is there a way to have the default location to a certain document library?
    2. Is there a way to force a certain naming format to the document?
    3. Is using a multiline rich textbox the right one?
    Would appreciate any pointers.
    Thanks, Faye

    Hi Faye,
    According to your description, my understanding is that you want to change the destination library where the document would be uploaded to in the multiple line of text column.
    #1. We can choose the destination library when we upload the documents, please refer to the picture below:
    #2. To force a naming format for the documents, I recommend to create another workflow associated with the destination library to update the name of the documents and set the workflow to start when an item is created.
    #3. To achieve this goal, use the multiple line of text column is a good way to upload documents by OOB. You can also create workflows in Visual Studio to enable users to upload documents.
    http://social.technet.microsoft.com/Forums/sharepoint/en-US/c8c8ad46-ab67-4966-8b81-3afda8a86da9/upload-a-document-from-a-task-form-in-a-sharepoint-2013-visual-studio-workflow?forum=sharepointdevelopment
    Best regards.
    Thanks
    Victoria Xia
    TechNet Community Support

  • Collaboration Rooms and Document Uploads from Network

    Hi,
    We are starting to use Collaboration Rooms and would like the Documents iview to point to our network file system, so when a user uploads a file he can do it via the portal or our network drive. We are using FSR's elsewhere and are wondering how to incorporate it into a collab room document iview. Our portal environment is NW04 Stack 12.
    Any assistance would be most appreciated.
    Thanks,
    Kris

    Hi Kris,
    what you need to do is to create a collaboration room template that would integrate a KM Navigation iView that points to the file share. Of course, first you need to integrate the share via repository manager in KM.
    I hope you know how to integrate the share into KM. For more on how to create a room template check the info in this thread:
    Collaboration Room Creation error on NW04 SP9
    Hope this helps,
    Robert

  • Reg: Document upload from DMS to local System

    Hi All,
    I have to download documents from DMS to my local system. I am following:
    1) CALL FUNCTION 'BAPI_DOCUMENT_GETDETAIL2'
         EXPORTING
              documenttype    = 'XXX'
              documentnumber  = 'XXXX'
              documentpart    = '000'
              documentversion = '00'
         IMPORTING
              documentdata    = ls_documentdata2
              return          = ls_return
         TABLES
              documentfiles   = li_documentfiles.
    2) Getting file name & path from li_documentfiles & changing the path &  name of the file.
    3)   CALL FUNCTION 'BAPI_DOCUMENT_CHECKOUTVIEW2'
             EXPORTING
                  documenttype    = 'IBD'
                  documentnumber  = 'WWI-00000000000000000086'
                  documentpart    = '000'
                  documentversion = '00'
                  documentfile    = ls_documentfiles1
             IMPORTING
                  return          = ls_return
             TABLES
                  documentfiles   = li_documentfiles1.
    Summary:
    1) CALL FUNCTION 'BAPI_DOCUMENT_GETDETAIL2' - it does not return file name & path
    2) i am changing path name & file name & passing to  ls_documentfiles1.
    3) CALL FUNCTION 'BAPI_DOCUMENT_CHECKOUTVIEW2' - This F/M does not save the file into given path. It always stores at "C:\Documents and Settings\TEMP\SapWorkDir". Also Name of the file is determined by the system. The file name which i pass, is not taken into account.
    Kindly help me out to download the document from SAP to my local system.
    Early response will be highly appreciated.
    Best Regards,

    Hi,
    Try this...use the FM BAPI_DOCUMENT_CHECKOUTVIEW2 to download the files to the directory that sap is saving..Then use the class method CL_GUI_FRONTEND_SERVICES=>FILE_COPY to move the files to the directory you want..
    Thanks
    Naren

  • Help!  Solution Manager removing documents

    I'm new to Solution Manager and I  have something very strange going on.  Whenever a document is signed as complete in acceptance review as soon as it is saved it disappears from the business process it was stored under.  If I find the document it still exists in Solution Manager but it is not associated to anything.  If I try where used I get the message "No usages for the document found"  If I look at the history for the business process it says the document was removed.
    Noit sure what to do.  Anyone's help would be greatly appreciated.
    Thanks,
    Richard

    Richard
    When you upload a document and store it then press the save button in solar02 top row it will sav ur doc
    next
    if doc is there and not shown this happen if som1 press "-" minus button which removes the link from the project for this doc
    but it is still stored in KW which solman uses
    so if doc is to be removed then press Delete button
    Hope above clarificaiton helps
    Regards
    Prakhar

  • How to export all documents of a Solution Manager Project?

    Hello,
    I am currently trying to export all documents that exist inside a Solution Manager project (which documents these are, I can see via SI80 -> select project). That means, I need to export between 300 and 7000 documents from SAP to a MS Windows directory.
    Is there any way to do this automatically?
    My approaches so far:
    1) Use the "Knowledge Workbench" tool to connect to the Knowledge Warehouse of the Solution Manager and "check out" all documents to the specific project.
    Problem: The resulting local folder structure is horrifying and all documents are not named by their titles as seen in SAP, but named after the template that was used to create them. So flattening the folder structure would result in many, many name collisions.
    2) Using SOLAR02 to get an overview over all documents via "Environment->Project Analysis->Assignments->Documentation", and selecting everything.
    Problem: I found no download option here, only some kind of overview over all documents.
    The forum threads:
    [Re: download all document in SOLAR01]
    [Mass download of documents from SM to PC;
    didn't help either.
    I would appreciate any help.
    Thanks!
    Edited by: Andreas Seemann on Mar 2, 2011 2:15 PM

    Hello Andreas,
    You might take a peak at this link
    Export of SOLMAN-project
    SOLAR_PROJECT_ADMIN can also copy documentation, plus there is more information on  SAP Knowledge Workbench.
    Using it for the first time is a bit cryptic so they recommend reading the SAP Notes 336968 , 196078 and 817529.
    erhaps worth a view?
    Regards,
    Paul

  • Monitoring of Standalone EP 7.0 system in Solution Manager 7.0

    Hi Experts,
    I need to configure Solution manager 7.0 for monitoring EP 7.0 (Stand alone ) system.
    Can you share documents related to configuration of Solution Manager 7.0 for monitoring EP 7.0 system?
    Thanks,
    Anit

    Hi,
    EP Monitoring is done by Solution Manager Diagnostics.
    Some Basis steps for ref
    1. Definition of EP system thru SMSY in solution manager system
    2. SMD agent installation in EP system with CCMS ping cofiguration in both solman and EP system
    3. Wily Introscope Enterprise manager installation in solution manager system
    3. From SMD wizard, you can configure the list of activities to be monitored for a EP system.
    For detailed info check SMD installation guide
    Regards
    KT

  • ASAP Focus methodology in Solution Manager 4.0

    Hi
    I got a request about including the ASAP Focus methodology into Solution Manager. I have found the ASAP Focus Implementation .zip file, and I have unpacked it on the Solution Manager server. My question is how (and if) I can upload this information into Solution Manager 4.0?
    Thanks for your input!
    Best Regards,
    Thomas

    Dear Thomas,
    "ASAP Focus Methodology Implementation Roadmap" can be found from
    http://service.sap.com/solutionmanager -> Download -> Other content
    After download it, you can import it into your system via STMS.
    Note 826586 can be reviewed for further details.
    Hope this answers your query.
    Regards
    Amit

  • Error message in "Check Solution Manager"

    I'm running SolMan EHP1 SP6. The BI repository and Solution Manager are running on the same box. The BI repository is loaded in client 001. The System SID is PS4.
    I'm performing the "Diagnostic Self Check" in Root Cause Analysis. When I select the "Check Solution Manager" button I'm getting an error message
    Text = BI Setup check 'MYSELF_DEST' failed - Reason: ;Incorrect client 300; use BI client 001
    Action = The CCMSBISETUP job was not completed successfully. Please run CCMSBISETUP again from the transaction solman_admin and/or adjust the corresponding BI objects in RSA1 if necessary.
    In RSA1 the source system is defined as PS4CLNT001. So I'm not sure what the problem is.
    It is my understanding that I can configure CCMSBISETUP in solman_workcenter by selecting "System Monitoring", then Setup, then Configure IT Performance Reporting. When I do this the default value for RFC destination from Solution Manager to BI: is set to NONE
    The system requires and entry for the RFC destination from BI to Solution Manager - Does anybody know what RFC destination belongs here?

    Hi,
    The CCMSBISETUP job was not completed successfully. Please run
    CCMSBISETUP again from the transaction solman_admin and/or adjust the
    corresponding BI objects in RSA1 if necessary.
    Alternatively, please perform again Initial and Basic configuration
    for SolMan by running transaction solman_setup. This should solve the
    issue.
    Notice that you must have the latest version (13) of SAP Note 1405878
    applied in the solution manager system.
    Hope this helps.
    Cheers
    SH

  • How to Unlock the Object in SAP Solution Manager

    Hi all,
    Iam trying to Upload the TS into Solution manager, but the Project Documentation TAB is locked by another User.So i am unable to get ADD button enable
    I dont have access to SM12 or SE03. How to Unlock this
    Regards

    This is not the right forum to ask your doubt. Post this in Solution Manager forum
    SAP Solution Manager
    Regards,
    Prateek

  • Problem Uploading from Acrobat 9 Standard

    My documents uploaded from Acrobat 9 Standard to Adobe .com "upload" (it authenticates me and then the uploading dialog box comes up and then tells me it was sent successfully, and asks me if I want to view the uploaded file). When I go to my workspace, however,  the documents do not show up in my workspace. Any ideas. Win xP sp 3
    My adobe ID and my workspace ID are the same
    I can go into my workspace at adobe.com and use the workspaces menu to upload a file from  my computer, but the if I try and do it from within the Acrobat 9 application using their "Upload Documents to Acrobat.com" button on the tool bar , it doesn't seem to show up.
    Message was edited by: fedupandcrazy3876
    I am SOOOO Sorry. OK. I see that it adds the files to the "All Files" main category. I was jumping too soon and was looking right in the shared workspaces, completely blowing by the "All Files" up there at the top.

    Never mind. I found it by hunt and peck. I like Pro 9 better. It was straight forward. This is not.

  • Configuring Solution Manager: Alternative Role to SAP_ALL

    This is a general question regarding configuring Solution Manager and note 834534.  I am configuring Solution Manager 7.0 at a client site.  The main components that I am configuring are on the Monitoring and Operations side; for example, System Monitoring,  Service Desk, Issue Management, and Change Management for Maintenance Optimizer.  CHaRM will follow later on.  Additionally, the client would like to use the project side of Solution Manager.
    When I took training for Solution Manager from SAP, the SAP instructor advised the class to have SAP_ALL when configuring Solution Manager  The problem I am having is that the client will not issue me SAP_ALL in the Solution Manager instance, regardless of the recommendation in note 834534.  I can understand the client's reluctance to issue SAP_ALL, even though Solution Manager is not a financial system in of itself, however, I have found that I am constantly having to ask for authorizations as I step through the wizards and the Scenario-specific settings.  When I run into issues which require further investigation by running transactions to check certain settings that are not specifically tiedd to a wizard or scenario-specific setting transaction, I run into further delays as I ask for additional authorizations to troubleshoot issues.
    We have implemented the roles and assigned them to my ID in Solution Manager as outlined by the SAP Solution Manager Security Guide to the fullest extent possible; and I have been issued "Basis Roles" that the client issues to their Basis team.  Regardless of these actions, I still run into authorization issues.
    My question is, apart from the SAP Solution Manager Security Guides recommendations (which does not mention SAP_ALL), is there a role being developed, or has been developed that can be assigned to the Solution Manager configurator in lieu of SAP_ALL (as per note 834534)?  I would think that this issue has been raised before, particularly since many companies have implemented SOX controls and are skittish about issuing SAP_ALL.
    Your feedback is most appreciated.

    Thanks for the reply, Nesimi.
    While I appreciate that you do not use SAP_ALL, is that the case when you are configuring a brand new, clean system?  Are you using the Configuration Wizards with out SAP_ALL? I ask this because when I ran the first configuration wizard, one of the steps is to create a "configuration user", which creates a user with SAP_ALL. However, I cannot use that wizard generated user ID because it has the role SAP_ALL.
    In general, I am operating on 3 sources of information that says I need SAP_ALL to configure the system (not necessarily to operate it):
    1.  An SAP Instructor for the Solution Manager Operations and Monitoring Class
    2.  The IMG Activity "Create Configuration User" documenation in SPRO
    3.  Note 834534
    I will review the english version of the link http://help.sap.com/saphelp_smehp1/helpdata/de/40/8ac473d40943ddb23def12bdb33437/frameset.htm that you have thoughtfully provided. 
    With respect to note 123640, I am not sure if that solves my problem or answers the fundemental question that I have in that given the 3 sources I quoted above.  It seems to me that SAP's approach in indicating clearly that they prefer that the configuration user should have SAP_ALL is flawed given today's corporate governence policies.  Clearly this recommendation is only for the initial configuration, and SAP_ALL can be taken away and replaced by the roles and recommendations in the SolMan security guide; to maintain Solution Manager.  But when it comes down to the question "what do you need to configure Solution Manager, because we won't give you SAP_ALL", I am hard pressed to give an answer despite literally spending hundreds of hours researching "documenation" which does not give clear cut answers.  I think SAP needs to address this issue instead of taking the easy way out and saying you need "SAP_ALL" as illustrated in the 3 sources of readily available information cited above.

Maybe you are looking for