Informing a group of users when an accoun gets created

Hi Experts,
We have a requirement where one of the scenarios is to inform the users as in the Sales Engineers, when a Prospect will be converted to Customer(This will be done by the master data team).
So as soon as the customer is created, the sales engineers should be informed of their creation.
Any views around how can we achieve this in system??
Regards
Aakshi Suri

Hi,
Develop you own FM for send e-mail.
Use tcode bus7 with event DSAVE
Denis

Similar Messages

  • Need to send a mail to group of users when sales order saved

    Hi
    user requirement is send a mail to group of users when sales order is saved

    hi Sanjay,
    Have a look on Michal's blog, it's for JMS, but it works for others: [PI/XI: Quick tip: Preserving attributes of XI messages via MultipartHeaderBean|PI/XI: Quick tip: Preserving attributes of XI messages via MultipartHeaderBean]
    Mickael

  • How to notifiy to a user when Euipment is automatically created?

    Dear All,
    How to notifiy to a user when Euipment is automatically created when an asset is created in AS01. I am an Abapper who needs to use a workflow to send the mail to the user to notify the same. If anyone has configured the same , then kindly guide me.
    Regards,
    Fawaz

    You can try using Powershell
    [Reflection.Assembly]::LoadWithPartialName("Microsoft.AnalysisServices")
    $SSASServerName = "servername"
    $SSASDB = "database"
    $SSASServer = New-Object Microsoft.AnalysisServices.Server
    $SSASServer.Connect($SSASServerName)
    $SSASDatabase = $SSASServer.Databases.Item($SSASDB)
    $SSASDatabase.Roles | select Role,Members,CreatedTimestamp | where {$_.CreatedTimestamp -gt (Get-Date).AddMinutes(-60)}
    --Prashanth

  • When does delivery gets created?

    Hello,    
    I've a issue in generating deliveries for certain kind of sub-contracting materials. We were not able to generate deliveries for those materials no more.
    It was working fine till now. Recently we have upgraded our system and this problem is occuring after that is what I heard from Functional but I seriously don't trust that statement because if that is case it should stop delivering every materials of that kind but that is not the case.
    When does delivery gets created via FM GN_DELIVERY_CREATE.
    At what point it create the delivery?
    If any had experienced the similar kind of issue earlier please suggest me the solution.
    Thanks in advance.
    Regards,
    Rajkumar M.

    Hi,
    The SAPSQL_ARRAY_INSERT_DUPREC error is not bothering me much.
    My worry is once "Enter batch" error message comes, I am not interested to create the delivery any more.
    So I come out of the transaction by pressing return key.
    Now when I press return key, system gives me the delivery number, this should not be the case as message given was an error message.
    If I go to the SE16N, I could see the delivery number in database.
    Also system prompts me to save the delivery which I am not interested to do, just I want to come out after error message.
    What could be the reason, I don't know. Ever after error message system gives you the delivery.
    Which is very strange.
    Any input is apprecited,
    Regards,
    Dipak

  • User Exit IDOC creation - When purchase order gets created

    Hi All,
    The requirement is whenever user creates a Purchase Order in the current SAP system an IDOC needs to get created and be sent to another SAP system where a Sales Order will be created.
    Can anybody suggest the correct User exit/enhancement at the time of Purchase order creation which could be used ?
    Also the function modules for creating the IDOCs within the user-exit.
    Thanks for your help.

    Hi Meghna,
    Your requirement is SAP standard function which means you don't have to use any user exit.
    What you need to do is configure output control, then when a PO saved, a idoc will send to vendor automaticly.
    Here is a step brief
    1. configure output type in NACE
    2. Add condition record in NACE
    3. Setup partner profile in WE20
    if you need detailed doc, give me your email, I can send you.
    Regards,
    Brown

  • How to send a mail to the user when a job gets canceled?

    Hi experts,
                      I need to send a mail when a job gets canceled to the user.I know the FM for sending mail and i can find if a job is canceled from tbtco,but i want to know how to send the mail from the same program ,once it got canceled ?
    thanks in advance,
    helpful answers will be awarded with points
    regards,
    ashwin

    Hi Ashwin
    Use the below peace of code:
    REPORT ZBCJOBMONITOR .
    TABLES: SOMLREC90,
            TBTCO.
    DATA: MAILDATA   LIKE SODOCCHGI1.
    DATA: MAILTXT    LIKE SOLISTI1 OCCURS 10 WITH HEADER LINE.
    DATA: MAILREC    LIKE SOMLREC90 OCCURS 0  WITH HEADER LINE.
    DATA: I_TBTCO    LIKE TBTCO OCCURS 0 WITH HEADER LINE.
    SELECTION-SCREEN BEGIN OF BLOCK B1 WITH FRAME TITLE TEXT-001 .
    SELECT-OPTIONS: S_JOB FOR TBTCO-JOBNAME.
    SELECT-OPTIONS: S_JOBC FOR TBTCO-JOBClass.
    SELECT-OPTIONS: S_REC FOR SOMLREC90-RECEIVER.
    SELECTION-SCREEN END OF BLOCK B1.
    START-OF-SELECTION.
      CLEAR:    MAILDATA, MAILTXT, MAILREC, I_TBTCO.
      REFRESH:  MAILTXT, MAILREC, I_TBTCO.
      PERFORM GET_ABENDED_JOBS.
      PERFORM BUILD_RECEIVERS.
      LOOP AT I_TBTCO.
        PERFORM BUILD_TEXT_MESSAGE.
        PERFORM SEND_MAIL_NODIALOG..
      ENDLOOP.
         Form  BUILD_TEXT_MESSAGE
    FORM GET_ABENDED_JOBS.
      SELECT * FROM TBTCO
              INTO CORRESPONDING FIELDS OF TABLE I_TBTCO
                         WHERE JOBNAME IN S_JOB
                           AND STATUS = 'A'
                           AND JOBCLASS IN S_JOBC
                           AND SDLSTRTDT = SY-DATUM.
    ENDFORM.
         Form  BUILD_TEXT_MESSAGE
    FORM BUILD_TEXT_MESSAGE.
      DATA: DATE(10) TYPE C.
      DATA: TIME(10) TYPE C.
      MAILDATA-OBJ_NAME = 'MONITOR'.
      MAILDATA-OBJ_DESCR = 'Batch Job Monitor'.
      MAILDATA-OBJ_LANGU = SY-LANGU.
      CONCATENATE 'Job Name:' I_TBTCO-JOBNAME
                  INTO MAILTXT-LINE SEPARATED BY SPACE.
      APPEND MAILTXT.
      PERFORM FORMAT_DATE USING I_TBTCO-SDLSTRTDT
                                DATE.
      CONCATENATE I_TBTCO-SDLSTRTTM+0(2) ':'
                  I_TBTCO-SDLSTRTTM+2(2) ':'
                  I_TBTCO-SDLSTRTTM+4(2)
                     INTO TIME.
      CONCATENATE 'Start Date/Time:' DATE TIME
                INTO MAILTXT-LINE SEPARATED BY SPACE.
      APPEND MAILTXT.
      CONCATENATE 'Job Class:' I_TBTCO-JOBCLASS
                INTO MAILTXT-LINE SEPARATED BY SPACE.
      APPEND MAILTXT.
      MAILTXT-LINE = 'Job has terminated abnormally'.
      APPEND MAILTXT.
    ENDFORM.
         Form  BUILD_RECEIVERS
    FORM BUILD_RECEIVERS.
      LOOP AT S_REC.
        CLEAR MAILREC.
        MAILREC-RECEIVER = S_REC-LOW.
        MAILREC-REC_TYPE  = 'U'.
        APPEND MAILREC.
      ENDLOOP.
    ENDFORM.
         Form  SEND_MAIL_NODIALOG
    FORM SEND_MAIL_NODIALOG.
      CALL FUNCTION 'SO_NEW_DOCUMENT_SEND_API1'
           EXPORTING
                DOCUMENT_DATA              = MAILDATA
                DOCUMENT_TYPE              = 'RAW'
                PUT_IN_OUTBOX              = 'X'
           TABLES
                OBJECT_HEADER              = MAILTXT
                OBJECT_CONTENT             = MAILTXT
                RECEIVERS                  = MAILREC
           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.
      IF SY-SUBRC <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
    ENDFORM.
         Form FORMAT_DATE
    FORM FORMAT_DATE USING IN
                           OUT.
      CALL FUNCTION 'CONVERT_DATE_TO_EXTERNAL'
           EXPORTING
                DATE_INTERNAL            = IN
           IMPORTING
                DATE_EXTERNAL            = OUT
           EXCEPTIONS
                DATE_INTERNAL_IS_INVALID = 1
                OTHERS                   = 2.
    ENDFORM.
    Regards,
    Sree

  • Auto Script which creates SAP Account when AD gets created.

    Hello Experts - Requirement is "Create SAP User account automatically when AD account gets created", can I acheive this through ECATT scripts?
    If this is possible, idea is to create an ECATT script and schedule it to run every night to find all new users on AD and create their account on SAP and lock their accounts.
    Do you think this can be acheived thru ECATT's?
    If not ECATT, is there any way out to acheive my objective. We are planning to reduce overhead for SAP User admins, I was thinking on following steps:
    1) New User request for AD
    2) After approval create AD account
    3) Design a scrip, which will look for all new users on AD and will create & lock them on SAP (Nightly Job or something)
    Your thoughts?
    Your suggestions are much appreciated.
    Thanks.

    Hi Martin,
    I have a customer with 16 million users in SU01. They don't use IdM and don't need it either at the moment.
    I have another customer with 700 users and they are implementing IdM because it makes sense. They need it to reduce complexity.
    There are no IdM license costs, unless you provision non-SAP systems.
    You can skip GRC by using a well designed concept for report RSUSR008_009_NEW if it meets your requirements - particularly the number of systems. It does however have it's limits (per ABAP client) and is not user friendly at first. Also no nice pie-charts for managers, etc.
    Emergency User Access comes in many shapes and sizes... SAP declined a development suggestion from me to improve the "FireFighter" tool so I developed it on my own for my customers using BAPIs and they are happy. The main requiremenent not fullfilled is that the user context changes so that you loose access to HR data, queries, variants, workflow items, purchase orders, etc. The FireFighter users also become obvious targets of attacks and the application users (dialog) need authority to change the FireFighter's passwords to use the application  - which means that they can use RFC to do the same without using the FireFighter transactions / logs / etc.
    Regarding other IdMs, I have experience with some, but documented here on SDN is only the password syncronization problems which Novell suffers from. These "problems" are intentional - or better said --> their own fault for using "hacks"...
    If you search for "Novell" you will find them.
    Cheers,
    Julius

  • Extract PO Requisitions when PO gets created

    Hi,
       We have a generic extractor to extract data from EBAN table (PO Requisitions).  However our generic extractor has delta set on ERDAT field which is changed date of PO requistion.  However when a PO gets created from the requisition from R/3 the PO requisition changed on date field i.e. ERDAT doesnt get a new timestamp.
    So we are not able to extract delta's from EBAN table when PO gets created off the requisition.
    Is there any way I can set delta on a different field of the EBAN table or is there some standard extractor which can do the same?
    Thanks

    we cannot create a generic extractor on EBAN table. There are few currency and unit fields, that refer to some other table.so  Its better to createa  view and proceed.
    For creating a view u can check with ABAPer on EBAN, it should be only Database view other views are not supported in Generic extraction
    After creating the view, go to generic extraction (RS02) and create Generic data source and save it.Replicate in BW side, then create DSO(ODS) then create Transformation between Datasource and DSO.
    Note: Generic extraction give after images. So its not recommended directly to the cube because there is no overwirte option in the cube.

  • I'm a Microsoft Outlook for Mac user, I need information of how to know when e-mail was readed and confirm receipt of e-mails sent. thank you!  regards Mauricio

    I'm a Microsoft Outlook for Mac user, I need information of how to know when e-mail was readed and confirm receipt of e-mails sent. thank you!  regards Mauricio

    Mail and Address book

  • Pt:tree of community groups and users

    I am creating a community emailer portlet for emailing the users of a community. I want to use a pt:tree that lists the groups and users who have membership in the community. I want the individual users, groups and users in groups to be checkable. I've been playing with the pt:tree for a while now without success. Can anyone help? This seems like it would be a common question, but I can not find any answeredthreads on this. Thank you!

    "Vikram" <[email protected]> wrote in message
    news:3eb6f601$[email protected]..
    >
    Hi,
    We are having problems seeing users or groups in our LDAP repository, thruWLS(7.0
    sp2) console. I created a Custom Security Realm(myRealm) in which I addedthe
    Novell LDAP Authentication provider as one of the authentication providersbesides
    a Default Weblogic Authentication Provider (for system user account). WhenI click
    on Users or Groups, I see either the "system" user account or"Administrators,
    Deployers, Operators, Monitors" groups.These groups and user accounts areprovided
    by the Weblogic Default Authentication provider. I am unable to see any ofour
    LDAP groups or User accounts. If I try to login to the WLS console with anLDAP
    user account, the authentication goes successfully. So WLS isauthenticating the
    user correctly but is not displaying the User and Group information in theconsole.
    We need to be able to look at the Group information in order to configurea Group
    Portal.
    Just out of curiosity, I configured an LDAP authentication provider in theCompatibility
    Security Realm and I was not able to see any of our LDAP users or groupsin the
    Compatibility Secyrity Realm also. I did reboot the WLS after configuringthe
    LDAP authentication provider in both the cases.
    I would appreciate if anybody can suggest probable reasons or workaroundsto list
    the LDAP groups in the WLS 7.0 console.
    I believe this is fixed in the latest 7.0 sp.

  • How can i disable debug information from the end user

    By changing debug flag in the url to YES it is possible to view debug information. i want to disable debug information, so that end user could not see debug information. can anyone please tell me the solution.

    Sundhar,
    when you export the application select Debugging:No
    It's one of the available properties together with Build Status, Export Comments, Export Supporting Objects Definitions and so on.
    Bye,
    Flavio
    http://www.oraclequirks.com

  • [Forum FAQ] How do I send an email to users when the data in the report have been changed in Reporting Services?

    Introduction
    There is a scenario that the data in the report changes infrequently, so the users want to be informed and get the most updated data once the data changes. By default, report server always run the report with the most recent data. Is there a way that we
    can subscribe the report, so that we can send an email to users when the data in the report has been changed?
    Solution
    To achieve this requirement, we can create a subscription for the report, then create a trigger in the table which including the report data. When this table has data insert, update or delete, it will be triggered and execute the subscription to send email
    to users.
    In the Report Manager, create a subscription for the report and make it only execute one time.
    When we create a subscription, a corresponding SQL Agent job will be created. Then we can use the query below to find out the job based on ScheduleId:
    -- List all SSRS subscriptions
    USE [ReportServer];  -- You may change the database name.
    GO 
    SELECT USR.UserName AS SubscriptionOwner
          ,SUB.ModifiedDate
          ,SUB.[Description]
          ,SUB.EventType
          ,SUB.DeliveryExtension
          ,SUB.LastStatus
          ,SUB.LastRunTime
          ,SCH.NextRunTime
          ,SCH.Name AS ScheduleName   
              ,RS.ScheduleId
          ,CAT.[Path] AS ReportPath
          ,CAT.[Description] AS ReportDescription
    FROM dbo.Subscriptions AS SUB
         INNER JOIN dbo.Users AS USR
             ON SUB.OwnerID = USR.UserID
         INNER JOIN dbo.[Catalog] AS CAT
             ON SUB.Report_OID = CAT.ItemID
         INNER JOIN dbo.ReportSchedule AS RS
             ON SUB.Report_OID = RS.ReportID
                AND SUB.SubscriptionID = RS.SubscriptionID
         INNER JOIN dbo.Schedule AS SCH
             ON RS.ScheduleID = SCH.ScheduleID
    ORDER BY USR.UserName
             ,SUB.ModifiedDate ;
    Create a trigger in the table which including the report data.
    CREATE TRIGGER reminder
    ON test.dbo.users
    AFTER INSERT, UPDATE, DELETE
    AS
    exec [ReportServer].dbo.AddEvent @EventType='TimedSubscription', @EventData='b64ce7ec-d598-45cd-bbc2-ea202e0c129d'
    Please note that the command ‘exec [ReportServer].dbo.AddEvent @EventType='TimedSubscription', @EventData='b64ce7ec-d598-45cd-bbc2-ea202e0c129d'’ is coming from the job properties. We can go to SQL Server Agent Jobs, right-click the corresponding job to open
    the Steps, copy the step command, and then paste it to the query.
    Then when the user table has data insert, update or delete, the trigger will be triggered and execute the subscription to send email to users.
    References:
    Subscriptions and Delivery (Reporting Services)
    Internal Working of SSRS Subscriptions
    SQL Server Agent
    Applies to:
    Reporting Services 2005
    Reporting Services 2008
    Reporting Services 2008 R2
    Reporting Services 2012
    Please click to vote if the post helps you. This can be beneficial to other community members reading the thread.

    Thanks,
    Is this a supported scenario, or does it use unsupported features?
    For example, can we call exec [ReportServer].dbo.AddEvent @EventType='TimedSubscription', @EventData='b64ce7ec-d598-45cd-bbc2-ea202e0c129d'
    in a supported way?
    Thanks! Josh

  • Can you create a group of users in Messenger

    Currently the last post of information in reference to my question shows as follows:
    there is not a way to create a group. From the client side, you can
    create folders and organize users that way. From the server side, you
    can add an eDir group object to the contact list but it will
    automatically be broken out by user rather than just adding the group
    object.
    If you are interested in a group in Messenger so that you can chat with
    more than one person at a time, currently you can do that by inviting
    users to her chat, or by highlighting multiple users and then clicking
    on Send Message. That will automatically invite everyone to the chat.
    I will submit an enhancement request.
    Has Novell or anyone released a way to do this as of yet or a new version that has this enhancement, this post was back in 2005 so I don't know if it was ever done and I have searched for it in the Novell Documentation, maybe I missed it..
    Thanks
    Paul

    In article <[email protected]>, Pbolin260 wrote:
    > Has Novell or anyone released a way to do this as of yet or a new
    > version that has this enhancement, this post was back in 2005 so I don't
    > know if it was ever done and I have searched for it in the Novell
    > Documentation, maybe I missed it..
    >
    I've not heard of that capability. The enhancement request is a good
    idea. Would be nice to be able to make folders of groups of users too.
    Craig Johnson
    Novell Support Connection SysOp

  • Is there configuration to have message for users when a spec object is already open for edit?

    We are on v6111 and appreciate the warning message that tells the second user when two users have editted the same spec object and changes of the first have already been saved.  What we are coming up against is users who want to know that someone else has already opened the spec object for edit.  Is there a configation for this?  Users don't like being informed after they enter data that someone else already saved a different edit ... they would like the warning before they do the actual work because it feels like a wasted effort ... If warned up front, they can come back and do the data entry later.  We are trying to find the appropriate configuration option to put the warning message in the appropiate UX process/timing.  Thank you!

    Hi Beckie,
    Sorry, but there is no out-of-the-box configuration to show this type of message.
    Regards,
    Ron

  • No Free/Busy Information for Exchange 2010 users in Outlook 2010 client, 2010 OWA shows this information fine

    I have looked for hours and hours on Google and this web site for this type of issue and nothing seems to help.
    Problem:
    On my new Windows 2008 R2 /Exchange 2010 server with IIS7 installed, I can use Outlook 2010 client to login and send and receive e-mail but when I try to busy search internal Exchange users I get no information (cross-hatch), but the sender of the Meeting Request
    can see their own free/busy information fine.  And OWA users can see free/busy information fine, as can Outlook 2003 client users against this Exchange 2010 server when logged in.
    I don't know if I have a certificate problem with regard to IIS7 or Exchange 2010, I did not create my own certificate , it is just what was installed by default when I installed and configured Win2K8 server, IIS7 and Exchange.
    On the Windows 7 workstations with Outlook 2010 client, I am not logging into the Exchange 2010 server DNS domain, if that makes any difference.  On these workstations I can ping "autodiscover.my.exchange.server.com" and my.exchange.server.com
    with no problem.  I even used this Microsoft KB to install a new _autodiscover dns entry, but it did not help :
    When I turn on logging on my Outlook 2010 client, I see this in my C:\Users\Administrator\AppData\Local\Temp\1\outlook logging\20131208-135658864-fb.log :
    2013/12/08 13:56:58.864: Getting ASURL
    2013/12/08 13:56:58.864: URL returned from cached autodiscover: blah blah 
    2013/12/08 13:56:58.864: Request to URL: 
    2013/12/08 13:56:58.864: Request action: 
    2013/12/08 13:56:58.864: Request XML: <?xml version="1.0"?>
    2013/12/08 13:56:59.051: Request sent
    2013/12/08 13:56:59.051: Response error code: 00000000
    2013/12/08 13:56:59.051: HTTP status code: 0
    2013/12/08 13:56:59.051: -------------------------------
    2013/12/08 13:56:59.051: There is an error in request/response.
    2013/12/08 13:56:59.051: XML response:
    2013/12/08 13:56:59.051: -------------------------------
    2013/12/08 13:56:59.051: Getting ASURL
    2013/12/08 13:56:59.644: Failed to get ASURL. Error 8004010F
    At an Exchange shell console I enter this command and get these results :
    Exchnage Management Shell :
    VERBOSE: Connecting to BPExchange2010.my.exchange.server.com
    VERBOSE: Connected to BPExchange2010.my.exchange.server.com.
    [PS] C:\Windows\system32>Test-OutlookWebServices -id:[email protected] -TargetAddress:[email protected]
    ll.com
    RunspaceId : c929eacd-d53c-49d7-8532-c4b74e61b8be
    Id         : 1019
    Type       : Information
    Message    : A valid Autodiscover service connection point was found. The Autodiscover URL on this object is 
    Type       : Success
    Message    : [Server] Successfully contacted the UM service at https://bpexchange2010.my.exchange.server.com/ews/exchan
                 ge.asmx. The elapsed time was 234 milliseconds.
    [PS] C:\Windows\system32>
    ** Also frequently when I log into Outlook 2010 client and start to send a meeting request , I get the Security Alert dialog :
    autodiscover.my.exchange.server.com
    Information you exchange with this site cannot be viewed or changed by others.  However, there is a problem with the site's security certificate.
    Green Check Mark :  The security cerficate is from a trusted certifying authority
    Green Check Mark: The security certificate date is valid
    Red X :  The name on the security certificate is invalid or does not match the name of the site.
    Do you want to proceed ?  .  I either import the certificate or click YES, but does not help this issue.
    NOTE: Each user that shows as NO INFORMATION cross-hatch, these users have appointments and have logged into outlook before.
    When I do this autodiscover url from a Windows 7 pc with outlook 2010 I get  :
    This XML file does not appear to have any style information associated with it. The document tree is shown below.
    <Autodiscover xmlns="http://schemas.microsoft.com/exchange/autodiscover/responseschema/2006">
    <Response>
    <Error Time="14:47:01.5656198" Id="401440650">
    <ErrorCode>600</ErrorCode>
    <Message>Invalid Request</Message>
    <DebugData/>
    </Error>
    </Response>
    </Autodiscover>
    Can anyone assist ?  What am I missing ?
    Thank You
    NOTE:  When will this go away.  I had to strip out a lot of helpful information to post this.  "Body text cannot contain images or links until we are able to verify your account."

    Hi,
    How many users encounter this issue, all users with Outlook 2010 or some specific users?
    According to your post, the Error code 600 indicates that your Autodiscover service is working well. as for the certificate mismatch issue, we can also following the KB below to resolve it:
    http://support.microsoft.com/kb/940726/en-us
    The Free/Busy information in Exchange 2010 is using the Availability service to
    retrieve it. Please directly access
    https://mail.mydomain.ae/EWS/Exchange.asmx in IE and see whether a proper XML file is returned.
     Or we can go to
    https://testexchangeconnectivity.com and check MS Exchange Web Services Connectivity Tests.
    Thanks,
    Winnie Liang
    TechNet Community Support

Maybe you are looking for

  • Wireless connection working on and off

    Hello all in desperate need of help! using Lenovo 3000 N200, Windows Vista Premium 32 bit. Wireless router: Edimax, g, WEP Hexadecimal  security. My wireless can't connect to router, unless it does so after disconnecting from a different network. Aft

  • DataServices 3.1 AIX/DB2 Profiler server problem.

    This is a brand new DS 3.1 installation. Profiler repository set up and added to job server and web mgmt console; server restarted. In Designer, job server is active and running jobs, but Profiler server is crossed out showing non-running status.

  • Launching Indesign cc 2014 on mac I have an Error speaking about the right access to the preferences folder

    My user is an Administrator and I can run all the other apps I use (Ps, Lightroom, Illustrator) Only Indesign can't start. I uninstalled it and installed it again. Nothing changed. I try a translation of the error message: Can not start Adobe InDesig

  • Installing Windows 7 Professional

    Hi I currently have: Machine: ThinkPad R400 OS: Windows Vista Home Premium SP2 32-bit Processor: Intel Core 2 Duo @ 2.10 GHz I am planning to (clean) install Windows 7 Professional 32-bit on my laptop. I would like to know if this is the 'right time'

  • Why nokia apps are the only ones you can't install...

    Ok Nokia, You created N97. You know that 73M is a joke for the phone's memory (drive c). In the name of all N97 users, why on earth you keep releasing apps like ovi maps with 7-14M where I can only install them on drive c and not on mass memory (wher