Programme error

hi all
          PARAMETER: P_EMAIL1 LIKE SOMLRECI1-RECEIVER,
           P_SENDER LIKE SOMLRECI1-RECEIVER,
           P_DELSPL AS CHECKBOX.
*DATA DECLARATION
DATA: GD_RECSIZE TYPE I.
Spool IDs
TYPES: BEGIN OF T_TBTCP.
        INCLUDE STRUCTURE TBTCP.
TYPES: END OF T_TBTCP.
DATA: IT_TBTCP TYPE STANDARD TABLE OF T_TBTCP INITIAL SIZE 0,
      WA_TBTCP TYPE T_TBTCP.
Job Runtime Parameters
DATA: GD_EVENTID LIKE TBTCM-EVENTID,
      GD_EVENTPARM LIKE TBTCM-EVENTPARM,
      GD_EXTERNAL_PROGRAM_ACTIVE LIKE TBTCM-XPGACTIVE,
      GD_JOBCOUNT LIKE TBTCM-JOBCOUNT,
      GD_JOBNAME LIKE TBTCM-JOBNAME,
      GD_STEPCOUNT LIKE TBTCM-STEPCOUNT,
      GD_ERROR    TYPE SY-SUBRC,
      GD_RECIEVER TYPE SY-SUBRC.
DATA:  W_RECSIZE TYPE I.
DATA: GD_SUBJECT   LIKE SODOCCHGI1-OBJ_DESCR,
      IT_MESS_BOD LIKE SOLISTI1 OCCURS 0 WITH HEADER LINE,
      IT_MESS_ATT LIKE SOLISTI1 OCCURS 0 WITH HEADER LINE,
      GD_SENDER_TYPE     LIKE SOEXTRECI1-ADR_TYP,
      GD_ATTACHMENT_DESC TYPE SO_OBJ_NAM,
      GD_ATTACHMENT_NAME TYPE SO_OBJ_DES.
Spool to PDF conversions
DATA: GD_SPOOL_NR LIKE TSP01-RQIDENT,
      GD_DESTINATION LIKE RLGRAP-FILENAME,
      GD_BYTECOUNT LIKE TST01-DSIZE,
      GD_BUFFER TYPE STRING.
Binary store for PDF
DATA: BEGIN OF IT_PDF_OUTPUT OCCURS 0.
        INCLUDE STRUCTURE TLINE.
DATA: END OF IT_PDF_OUTPUT.
CONSTANTS:C_DEV LIKE  SY-SYSID VALUE 'DEV',
          C_NO(1)  TYPE C   VALUE ' ',
          C_DEVICE(4) TYPE C   VALUE 'LOCL'.
*START-OF-SELECTION.
START-OF-SELECTION.
Write statement to represent report output. Spool request is created
if write statement is executed in background. This could also be an
ALV grid which would be converted to PDF without any extra effort
  WRITE 'Hello World'.
  NEW-PAGE.
  COMMIT WORK.
  NEW-PAGE PRINT OFF.
  IF SY-BATCH EQ 'X'.
    PERFORM GET_JOB_DETAILS.
    PERFORM OBTAIN_SPOOL_ID.
Alternative way could be to submit another program and store spool
id into memory.
*submit ZSPOOLTOPDF2
       to sap-spool
       spool parameters   %_print
       archive parameters %_print
       without spool dynpro
       and return.
Get spool id from program called above
IMPORT w_spool_nr FROM MEMORY ID 'SPOOLTOPDF'.
    PERFORM CONVERT_SPOOL_TO_PDF.
    PERFORM PROCESS_EMAIL.
    IF P_DELSPL EQ 'X'.
      PERFORM DELETE_SPOOL.
    ENDIF.
    IF SY-SYSID = C_DEV.
      WAIT UP TO 5 SECONDS.
      SUBMIT RSCONN01 WITH MODE   = 'INT'
                      WITH OUTPUT = 'X'
                      AND RETURN.
    ENDIF.
  ELSE.
    SKIP.
    WRITE:/ 'Program must be executed in background in-order for spool',
            'request to be created.'.
  ENDIF.
      FORM obtain_spool_id                                          *
FORM OBTAIN_SPOOL_ID.
  CHECK NOT ( GD_JOBNAME IS INITIAL ).
  CHECK NOT ( GD_JOBCOUNT IS INITIAL ).
  SELECT * FROM  TBTCP
                 INTO TABLE IT_TBTCP
                 WHERE      JOBNAME     = GD_JOBNAME
                 AND        JOBCOUNT    = GD_JOBCOUNT
                 AND        STEPCOUNT   = GD_STEPCOUNT
                 AND        LISTIDENT   <> '0000000000'
                 ORDER BY   JOBNAME
                            JOBCOUNT
                            STEPCOUNT.
  READ TABLE IT_TBTCP INTO WA_TBTCP INDEX 1.
  IF SY-SUBRC = 0.
   MESSAGE S004(ZDD) WITH GD_SPOOL_NR.
    GD_SPOOL_NR = WA_TBTCP-LISTIDENT.
   MESSAGE S004(ZDD) WITH GD_SPOOL_NR.
  ELSE.
    MESSAGE S005(ZDD).
  ENDIF.
ENDFORM.                    "obtain_spool_id
      FORM get_job_details                                          *
FORM GET_JOB_DETAILS.
Get current job details
  CALL FUNCTION 'GET_JOB_RUNTIME_INFO'
    IMPORTING
      EVENTID                 = GD_EVENTID
      EVENTPARM               = GD_EVENTPARM
      EXTERNAL_PROGRAM_ACTIVE = GD_EXTERNAL_PROGRAM_ACTIVE
      JOBCOUNT                = GD_JOBCOUNT
      JOBNAME                 = GD_JOBNAME
      STEPCOUNT               = GD_STEPCOUNT
    EXCEPTIONS
      NO_RUNTIME_INFO         = 1
      OTHERS                  = 2.
ENDFORM.                    "get_job_details
      FORM convert_spool_to_pdf                                     *
FORM CONVERT_SPOOL_TO_PDF.
  CALL FUNCTION 'CONVERT_ABAPSPOOLJOB_2_PDF'
    EXPORTING
      SRC_SPOOLID              = GD_SPOOL_NR
      NO_DIALOG                = C_NO
      DST_DEVICE               = C_DEVICE
    IMPORTING
      PDF_BYTECOUNT            = GD_BYTECOUNT
    TABLES
      PDF                      = IT_PDF_OUTPUT
    EXCEPTIONS
      ERR_NO_ABAP_SPOOLJOB     = 1
      ERR_NO_SPOOLJOB          = 2
      ERR_NO_PERMISSION        = 3
      ERR_CONV_NOT_POSSIBLE    = 4
      ERR_BAD_DESTDEVICE       = 5
      USER_CANCELLED           = 6
      ERR_SPOOLERROR           = 7
      ERR_TEMSEERROR           = 8
      ERR_BTCJOB_OPEN_FAILED   = 9
      ERR_BTCJOB_SUBMIT_FAILED = 10
      ERR_BTCJOB_CLOSE_FAILED  = 11
      OTHERS                   = 12.
  CHECK SY-SUBRC = 0.
Transfer the 132-long strings to 255-long strings
  LOOP AT IT_PDF_OUTPUT.
    TRANSLATE IT_PDF_OUTPUT USING ' ~'.
    CONCATENATE GD_BUFFER IT_PDF_OUTPUT INTO GD_BUFFER.
  ENDLOOP.
  TRANSLATE GD_BUFFER USING '~ '.
  DO.
    IT_MESS_ATT = GD_BUFFER.
    APPEND IT_MESS_ATT.
    SHIFT GD_BUFFER LEFT BY 255 PLACES.
    IF GD_BUFFER IS INITIAL.
      EXIT.
    ENDIF.
  ENDDO.
ENDFORM.                    "convert_spool_to_pdf
      FORM process_email                                            *
FORM PROCESS_EMAIL.
  DESCRIBE TABLE IT_MESS_ATT LINES GD_RECSIZE.
  CHECK GD_RECSIZE > 0.
  PERFORM SEND_EMAIL USING P_EMAIL1.
perform send_email using p_email2.
ENDFORM.                    "process_email
      FORM send_email                                               *
-->  p_email                                                       *
FORM SEND_EMAIL USING P_EMAIL.
  CHECK NOT ( P_EMAIL IS INITIAL ).
  REFRESH IT_MESS_BOD.
Default subject matter
  GD_SUBJECT         = 'Subject'.
  GD_ATTACHMENT_DESC = 'Attachname'.
CONCATENATE 'attach_name' ' ' INTO gd_attachment_name.
  IT_MESS_BOD        = 'Message Body text, line 1'.
  APPEND IT_MESS_BOD.
  IT_MESS_BOD        = 'Message Body text, line 2...'.
  APPEND IT_MESS_BOD.
If no sender specified - default blank
  IF P_SENDER EQ SPACE.
    GD_SENDER_TYPE  = SPACE.
  ELSE.
    GD_SENDER_TYPE  = 'INT'.
  ENDIF.
Send file by email as .xls speadsheet
  PERFORM SEND_FILE_AS_EMAIL_ATTACHMENT
                               TABLES IT_MESS_BOD
                                      IT_MESS_ATT
                                USING P_EMAIL
                                      'Example .xls documnet attachment'
                                      'PDF'
                                      GD_ATTACHMENT_NAME
                                      GD_ATTACHMENT_DESC
                                      P_SENDER
                                      GD_SENDER_TYPE
                             CHANGING GD_ERROR
                                      GD_RECIEVER.
ENDFORM.                    "send_email
      FORM delete_spool                                             *
FORM DELETE_SPOOL.
  DATA: LD_SPOOL_NR TYPE TSP01_SP0R-RQID_CHAR.
  LD_SPOOL_NR = GD_SPOOL_NR.
  CHECK P_DELSPL <> C_NO.
  CALL FUNCTION 'RSPO_R_RDELETE_SPOOLREQ'
    EXPORTING
      SPOOLID = LD_SPOOL_NR.
ENDFORM.                    "delete_spool
*&      Form  SEND_FILE_AS_EMAIL_ATTACHMENT
      Send email
FORM SEND_FILE_AS_EMAIL_ATTACHMENT TABLES IT_MESSAGE
                                          IT_ATTACH
                                    USING P_EMAIL
                                          P_MTITLE
                                          P_FORMAT
                                          P_FILENAME
                                          P_ATTDESCRIPTION
                                          P_SENDER_ADDRESS
                                          P_SENDER_ADDRES_TYPE
                                 CHANGING P_ERROR
                                          P_RECIEVER.
  DATA: LD_ERROR    TYPE SY-SUBRC,
        LD_RECIEVER TYPE SY-SUBRC,
        LD_MTITLE LIKE SODOCCHGI1-OBJ_DESCR,
        LD_EMAIL LIKE  SOMLRECI1-RECEIVER,
        LD_FORMAT TYPE  SO_OBJ_TP ,
        LD_ATTDESCRIPTION TYPE  SO_OBJ_NAM ,
        LD_ATTFILENAME TYPE  SO_OBJ_DES ,
        LD_SENDER_ADDRESS LIKE  SOEXTRECI1-RECEIVER,
        LD_SENDER_ADDRESS_TYPE LIKE  SOEXTRECI1-ADR_TYP,
        LD_RECEIVER LIKE  SY-SUBRC.
  DATA:   T_PACKING_LIST LIKE SOPCKLSTI1 OCCURS 0 WITH HEADER LINE,
          T_CONTENTS LIKE SOLISTI1 OCCURS 0 WITH HEADER LINE,
          T_RECEIVERS LIKE SOMLRECI1 OCCURS 0 WITH HEADER LINE,
          T_ATTACHMENT LIKE SOLISTI1 OCCURS 0 WITH HEADER LINE,
          T_OBJECT_HEADER LIKE SOLISTI1 OCCURS 0 WITH HEADER LINE,
          W_CNT TYPE I,
          W_SENT_ALL(1) TYPE C,
          W_DOC_DATA LIKE SODOCCHGI1.
  LD_EMAIL   = P_EMAIL.
  LD_MTITLE = P_MTITLE.
  LD_FORMAT              = P_FORMAT.
  LD_ATTDESCRIPTION      = P_ATTDESCRIPTION.
  LD_ATTFILENAME         = P_FILENAME.
  LD_SENDER_ADDRESS      = P_SENDER_ADDRESS.
  LD_SENDER_ADDRESS_TYPE = P_SENDER_ADDRES_TYPE.
Fill the document data.
  W_DOC_DATA-DOC_SIZE = 1.
Populate the subject/generic message attributes
  W_DOC_DATA-OBJ_LANGU = SY-LANGU.
  W_DOC_DATA-OBJ_NAME  = 'SAPRPT'.
  W_DOC_DATA-OBJ_DESCR = LD_MTITLE .
  W_DOC_DATA-SENSITIVTY = 'F'.
Fill the document data and get size of attachment
  CLEAR W_DOC_DATA.
  READ TABLE IT_ATTACH INDEX W_CNT.
  W_DOC_DATA-DOC_SIZE =
     ( W_CNT - 1 ) * 255 + STRLEN( IT_ATTACH ).
  W_DOC_DATA-OBJ_LANGU  = SY-LANGU.
  W_DOC_DATA-OBJ_NAME   = 'SAPRPT'.
  W_DOC_DATA-OBJ_DESCR  = LD_MTITLE.
  W_DOC_DATA-SENSITIVTY = 'F'.
  CLEAR T_ATTACHMENT.
  REFRESH T_ATTACHMENT.
  T_ATTACHMENT[] = IT_ATTACH[].
Describe the body of the message
  CLEAR T_PACKING_LIST.
  REFRESH T_PACKING_LIST.
  T_PACKING_LIST-TRANSF_BIN = SPACE.
  T_PACKING_LIST-HEAD_START = 1.
  T_PACKING_LIST-HEAD_NUM = 0.
  T_PACKING_LIST-BODY_START = 1.
  DESCRIBE TABLE IT_MESSAGE LINES T_PACKING_LIST-BODY_NUM.
  T_PACKING_LIST-DOC_TYPE = 'RAW'.
  APPEND T_PACKING_LIST.
Create attachment notification
  T_PACKING_LIST-TRANSF_BIN = 'X'.
  T_PACKING_LIST-HEAD_START = 1.
  T_PACKING_LIST-HEAD_NUM   = 1.
  T_PACKING_LIST-BODY_START = 1.
  DESCRIBE TABLE T_ATTACHMENT LINES T_PACKING_LIST-BODY_NUM.
  T_PACKING_LIST-DOC_TYPE   =  LD_FORMAT.
  T_PACKING_LIST-OBJ_DESCR  =  LD_ATTDESCRIPTION.
  T_PACKING_LIST-OBJ_NAME   =  LD_ATTFILENAME.
  T_PACKING_LIST-DOC_SIZE   =  T_PACKING_LIST-BODY_NUM * 255.
  APPEND T_PACKING_LIST.
Add the recipients email address
  CLEAR T_RECEIVERS.
  REFRESH T_RECEIVERS.
  T_RECEIVERS-RECEIVER = LD_EMAIL.
  T_RECEIVERS-REC_TYPE = 'U'.
  T_RECEIVERS-COM_TYPE = 'INT'.
  T_RECEIVERS-NOTIF_DEL = 'X'.
  T_RECEIVERS-NOTIF_NDEL = 'X'.
  APPEND T_RECEIVERS.
  CALL FUNCTION 'SO_DOCUMENT_SEND_API1'
    EXPORTING
      DOCUMENT_DATA              = W_DOC_DATA
      PUT_IN_OUTBOX              = 'X'
      SENDER_ADDRESS             = LD_SENDER_ADDRESS
      SENDER_ADDRESS_TYPE        = LD_SENDER_ADDRESS_TYPE
      COMMIT_WORK                = 'X'
    IMPORTING
      SENT_TO_ALL                = W_SENT_ALL
    TABLES
      PACKING_LIST               = T_PACKING_LIST
      CONTENTS_BIN               = T_ATTACHMENT
      CONTENTS_TXT               = IT_MESSAGE
      RECEIVERS                  = T_RECEIVERS
    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.
Populate zerror return code
  LD_ERROR = SY-SUBRC.
Populate zreceiver return code
  LOOP AT T_RECEIVERS.
    LD_RECEIVER = T_RECEIVERS-RETRN_CODE.
  ENDLOOP.
ENDFORM.                    "send_file_as_email_attachment
could any one please suggest me te steps to execute in background

Gopi,
In se38  enter the program name
In Menubar  
   program>execute>background.
If you want to schedule it ..
Scheduling Background Jobs:
1.        Background jobs are scheduled by Basis administrators using transaction SM36.
2.        To run a report in a background, a job needs to be created with a step using the report name
and a variant for selection parameters. It is recommended to create a separate variant for each
scheduled job to produce results for specific dates (e.g. previous month) or organizational units (e.g.
company codes).
3.        While defining the step, the spool parameters needs to be specified
(Step-> Print Specifications->Properties) to secure the output of the report and help authorized users
to find the spool request. The following parameters needs to be maintained:
a.        Time of printing: set to “Send to SAP spooler Only for now”
b.        Name – abbreviated name to identify the job output
c.        Title – free form description for the report output
d.        Authorization – a value defined by Security in user profiles to allow those users to access
this spool request (authorization object  S_SPO_ACT, value SPOAUTH).  Only users with matching
authorization value in their profiles will be able to see the output.
e.        Department – set to appropriate department/functional area name. This field can be used in
a search later.
f.        Retention period – set to “Do not delete” if the report output needs to be retained for more
than 8 days. Once the archiving/document repository solution is in place the spool requests could
be automatically moved to the archive/repository. Storage Mode parameter on the same screen
could be used to immediately send the output to archive instead of creating a spool request.
Configuring user access:
1.        To access a report output created by a background job, a user must have at
least access to SP01 (Spool requests) transaction without restriction on the user
name (however by itself it will not let the user to see all spool requests). To have
that access the user must have S_ADMI_FCD authorization object in the profile with
SPOR (or SP01) value of S_ADMI_FCD parameter (maintained by Security).
2.        To access a particular job’s output in the spool, the user must have
S_SPO_ACT object in the profile with SPOAUTH parameter matching the value used
in the Print Specifications of the job (see p. 3.d above).
3.        Levels of access to the spool (display, print once, reprint, download, etc) are
controlled by SPOACTION parameter of S_SPO_ACT. The user must have at least
BASE access (display).
On-line reports:
1.        Exactly the same configuration can be maintained for any output produced
from R/3. If a user clicks “Parameters” button on a SAP Printer selection dialog, it
allows to specify all the parameters as described in p. 3 of
“Scheduling background jobs” section. Thus any output created by an online report
can be saved and accessed by any user authorized to access that spool request
(access restriction provided by the Authorization field of the spool request
attributes, see p. 3.d of “Scheduling background jobs” section).
Access to report’s output:
1.        A user that had proper access (see Configuring user access above) can
retrieve a job/report output through transaction SP01.
2.        The selection screen can be configured by clicking “Further selection
criteria…” button (e.g. to bring “Spool request name (suffix 2)” field or hide other
fields).
3.        The following fields can be used to search for a specific output (Note that
Created By must be blank when searching for scheduled job’s outputs)
a.        Spool request name (suffix 2) – corresponds to a spool name in p. 3.b in
“Scheduling background jobs” section above).
b.        Date created – to find an output of a job that ran within a certain date range.
c.        Title – corresponds to spool Title in p. 3.c in “Scheduling background jobs”
section above).
d.        Department - corresponds to spool Department in p. 3.e in “Scheduling
background jobs” section above).
4.        Upon entering selection criteria, the user clicks the Execute button   to
retrieve the list of matching spool requests.
5.        From the spool list the user can use several function such as view the
content of a spool request, print the spool request, view attributed of the spool
request, etc. (some functions may need special authorization, see p.3 in
Configuring user access)
a.        Click the Print button   to print the spool request with the default attributes
(usually defined with the job definition). It will print it on a printer that was
specified when a job was created.
b.        Click the “Print with changed attributed” button   to print the spool request
with the different attributes (e.g. changing the printer name).
c.        Click the “Display contents” button   to preview the spool request contents. A
Print    and Download   functions are available from the preview mode.
Pls. reward if useful

Similar Messages

  • CS4 programme error trying to save picture files!

    Hi,
    I have a frustrating error when trying to save some of my older picture files with CS4 Extended.  The ones that I am looking at are 5 years old and taken with my Canon 5D.  When I open a file and then try to save it the save option is grey and only save as is available.  When I try to save as I get the error Could not complete your request because of a programme error.
    I have been trouble shooting the problem images and see that I cannot get File Info on these images with the following error, Could not complete the File Info command because of a problem with the File Info module.  When I look at some earlier D10 pictures they operate perfectly as do my more recent 5DMkII images.  I have tried removing the Exif data from the problem files and all the problems go away so I must be something to do with this embedded data.  The problem images don't have corrupt data... it is all there and looks correct.
    I keep track of my photos with IDimager V4.
    Does anyone have a explaination or a cure for this problem as the last thing I want to do is loose my File Info for all those old picture that I still need to work on and use.
    Many thanks,
    Nick
    System info:
    Adobe Photoshop Version: 11.0.1 (11.0.1x20090218 [20090218.r.523 2009/02/18:02:00:00 cutoff; r branch])
    Operating System: Windows XP 32-bit
    Version: 5.1 Service Pack 3
    System architecture: Intel CPU Family:6, Model:15, Stepping:11 with MMX, SSE Integer, SSE FP, SSE2
    Physical processor count: 4
    Processor speed: 2405 MHz
    Video Card: NVIDIA GeForce 8800 GT
    Video Mode: 1280 x 1024 x 4294967296 colors
    Video Card Driver: nv4_disp.dll
    Driver Version: 6.14.11.8122
    Built-in memory: 3327 MB
    Free memory: 2267 MB
    Memory available to Photoshop: 1688 MB
    Memory used by Photoshop: 60 %
    Image cache levels: 4
    Serial number: ************
    Application folder: C:\Program Files\Adobe\Adobe Photoshop CS4\

    Open the photo in another software program such as GIMP or Paint Shop Pro X2 and save as in that software. After that open it in CS4.
    Cs4 sometimes is flaky with damaged files and won't open them. Others will and re-saving it in different software will fix the problem.

  • How can I download photos from Mac iPhoto? (Programme error)

    With five discs to choose from, and advice to use discs  3-5, I wonder whether I have made a mistake in installation - disc 4 didn't work so I installed 3 and 5, which seemed to be duplicated.  Has this caused the programme error?

    And what exactly has Adobe PS ELements to do with iPhoto? Or are you merely mixing up the names? You did install the correct discs as listed here. If you have specific questions regarding the usage of PSE, ask on the product forum.
    Mylenium

  • Programme error in PhotoShop7

    Over the last few days I've been trying to work on images I've scanned, the images belong to me, and I often get a 'programme error cannot save' then file name. All the files are below 50Mb, coming from an Epson V500 scanner.
    I'm trying to save as jpegs, same as from scanner, and saving at 12 on the sliding quality bar. I don't remember this happening before, and I've been using PS7 for several years now.
    My pc is a 64 bit Windows 7, 2.5GHz dual core intel machine with 8Gb ram. So it's more than powerful enough to handle such small files, I have a few hundred gigabytes of space on my hard drive for PS 7 files.
    Does anyone recognise this problem please? and how do I cure it?

    Please repost in the Photoshop forum if you are using Photoshop, please use the Photoshop Elements forum if you are using Photoshop Elements.

  • Have Elements 8. We now keep getting Programme error messages. Have tried to reinstall original disc but there's nothing on the disc?

    Have old version of Elements 8. Keep getting programme error messages and various functions no longer work. Have tried reloading the disc but for some reason there's no longer anything on the original disc? Really don't want to have to fork out and start again.

    I also have Jolly's problem. I found the iMovie 9.0.9 folder and tried to launch the older version of iMove. It would not launch. I removed all of the iMovie preferences from the Preferences folder, removed iMove 10 from the applications folder, and restarted my Mac. iMove 9.0.9 still won't launch and I can't access my videos created with the older version of iMovie. Is there a way to uninstall iMovie 10 and reinstall iMovie 9.0.9?
    I am running Yosemitie on a  iMac.
    Paul

  • PE 2.0 Programme Error

    I have just installed Photoshop Elements 2.0 which said it was successful, onto my mac.  But when opening it I get a programme error.

    Unless your mac is running 10.4 or lower, PSE 2 will not work. What version of OS X?

  • Fatal programme error?

    Hi,
    I've purchased subscription of 1-year Creative Cloud membership since last June. Last week I updated two applications (Photoshop & Illustrator) via Adobe Application Manager, and then I found that I can no longer use any of them. When I start Photoshop, for instance, Application Manager also launches and requires me to sign in to use "trial version"!
    In fact, I'm a Japanese resident in the UK and hence using Japanese operating system with my MacBook Pro. I purchased the Creative Cloud subscription in the UK, and downloaded as many applications as I want. Just before updating last week, those applications I frequently used in my Japanese operating system had any problems. Of course, I used them in Japanese. Well, I found some minor dysfunction actually, so I updated last week. Then, this happened.
    So, I enquired support agent in the UK by chat for solutions last night. He insisted that I need to change my operating system from Japanese to English otherwise I can't activate my subscription. However, I could have used them in Japanese with my Japanese operating system over half a year since last June. I think this is something wrong. It could be a fatal programme error, couldn't it?
    Does anyone can help to solve this problem?
    Thank you.
    Hideyuki

    We cannot know. You are not providing any system information nor telling us anything beyond that like the crash info from your Event Viewer. The whole point of Creative Cloud is to be language and platform agnostic, but of course theree are things even Adobe can't change - Asian languages use double-byte text encoding and folder names in the wrong language may have all sorts of odd effects. Well, whtever, provide more info and we may be able to advise.
    Mylenium

  • CS3 - programme error on trying to open a second photo

    I have CS3 (all available updates) + WinXP SP3 - I can open one photo & close it without problems. If I try to open a second photo via bridge or direct from "My Pictures" I get the error msg: could not complete your request because of a programme error. Any ideas why?  Previously had problem with CS3 crashing if trying to print but now have a "dummy printer" set to default as per Adobe advice. Thanks

    It somehow decided to fix itself? It just worked for some reason after I said something here (well, a few hours later).

  • PS comes up with "could not initialize PS because of a programm error".

    I already installed LR and PS via CC. LR works fine but when I start PS it comes up with "could not initialize PS because of a programm error". I'm running iMac with OS 10.10.2

    Hi Daniel Greco,
    Please refer to the thread below where this issue has been fixed:
    Could not initialize Photoshop because of a program error. Again
    Regards,
    Sheena

  • Wont open the programme ERROR:213:19

    I have just downloaded the Dreamweaver trial and I cannot open the programme, a message comes up saying that there is a problem with the licensing and to quote ERROR: 213: 19, I have tried restarting my laptop and then trying to reopen the programme but this did not work. Can anyone help?

    Hi Abbie1234,
    Can you try the solution in this doc? Error "Licensing has stopped working" | Mac OS
    Found another doc that should help. It is for Acrobat but should work for DW too Error 213:19 | Problem has occurred with the licensing of this product | Acrobat X and XI
    Thanks,
    Preran

  • ABAP Mapping Programm error  Urgent

    I am getting mapping error in ABAP Mapping programm. plz help me how to solve
    <?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
    - <!--
    Request Message Mapping
      -->
    - <SAP:Error xmlns:SAP="http://sap.com/xi/XI/Message/30" xmlns:SOAP="http://schemas.xmlsoap.org/soap/envelope/" SOAP:mustUnderstand="">
      <SAP:Category>Application</SAP:Category>
      <SAP:Code area="MAPPING">APPLICATION_PROGRAM_ERROR</SAP:Code>
      <SAP:P1>Z_HBS_PAYROLL_MAPPING</SAP:P1>
      <SAP:P2>SAP-ABAP</SAP:P2>
      <SAP:P3>UNCAUGHT_EXCEPTION</SAP:P3>
      <SAP:P4>Program Z_HBS_PAYROLL_MAPPING=========CP Include Z_HBS_PAYROLL_MAPPING=========CM001 Line 1</SAP:P4>
      <SAP:AdditionalText />
      <SAP:ApplicationFaultMessage namespace="" />
      <SAP:Stack>Error in mapping program Z_HBS_PAYROLL_MAPPING (type SAP-ABAP, kernel error ID UNCAUGHT_EXCEPTION) An exception with the type CX_SY_REF_IS_INITIAL occurred, but was neither handled locally, nor declared in a RAISING clause Dereferencing of the NULL reference</SAP:Stack>
      <SAP:Retry>M</SAP:Retry>
      </SAP:Error>

    Hi,
    I think this exception you need to catch it in the ABAP..
    This may help u- http://help.sap.com/saphelp_47x200/helpdata/en/55/bff20efe8c11d4b54a006094b9456f/content.htm
    just cross verify with this guide-
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/e3ead790-0201-0010-64bb-9e4d67a466b4
    Regards,
    moorthy

  • Automatic payment programme error

    Dear  All,
    my requirment is when raise vendor invoice amount of invoice 20000rs & post payment to vendor m10000& clearing of vendor  document but while i have use automatic payment programme to paid remaing amount of vendor system shoud not take remaing amount system has calculate all  invoice amoun t20000rs. if remaing amount create new invoice & automatic payment programme run in system has happened. i thought this is wrong way to going on .what i  want  for ex  in detail vendor raise invoice
    use t.code Fb60 then use t.code f-53 post vendor payment then i should be using t.code f110 for remaing amount of payment .in all thing happened one invoice if any configuration please right back to me.
    Thanks & Regards.
    Shailesh.
    9604645129

    I have done the same scenario. Its paying full amount. The APP will pay full amount. It doen not pay partial amount. It needs to be done manually

  • BSP programmer error

    Hi Guyz,
    I have developed one application for Leave on Portal.
    When I create Absence,It seems to be working but some cases it is not working .I will explain with details.
    <b>1</b>.
    To create absence,<b>BAPI_ABSENCE_CREATE</b> is being used .I locked the Employee as well as record.It is returning some messages like "Personal number could not be locked'.
    <b>2</b>.
    When I want to create Leave type called ADOPTION LEAVE from Portal .It is showing like.
    <b>"The page cannot be displayed
    There is a problem with the page you are trying to reach and it cannot be displayed."</b>
    <b>3</b>.
    When I create same from R/3 in 2001 infotype,Error message is shown like that .
    <b>"Not enough quota  for attendance/absence 0680 on 09.10.2006 for personnel no. 00002544"</b>
    <b>4</b>.
    What I want is Why that Function module is not returning error message <b>"Not enough quota  for attendance/absence 0680 on 09.10.2006 for personnel no. 00002544"</b>.
    guys if anybody got this type of problem or know the solution,Please help me in this regard.
    <b>Thanks,
    Venkat.O</b>

    Hi,
    You will get a better and quicker answer if you post this in th HCM/HR forum.
    Eddy
    PS.
    Put yourself on the SDN world map (http://sdn.idizaai.be/sdn_world/sdn_world.html) and earn 25 points.
    Spread the wor(l)d!

  • Programm error when installing Oracle 8i personnal edition

    So that we may better diagnose DOWNLOAD problems, please provide the following information.
    - Server name
    - Filename
    - Date/Time 02-10-2002
    - Browser + Version Netscape
    - O/S + Version Windows 98
    - Error Msg
    Operation non conforme. Pgm a rencontre une exception de page incorrecte. Emplacement erreur : 0028:0013. Interruption en service: aucune
    Everytime that I try to create a Database, I get the above message right at the beginning of the installation. I am using the Configuration Assistant.
    Am I missing some files? I don't know where to look at. Thank you.

    go to caldera.com and search for oracle installation. you'll have to download glibc, jdk, jre and upgrade them.
    Caldera have very good source for this problem. I encounter the same error and got it fixed.
    <BLOCKQUOTE><font size="1" face="Verdana, Arial">quote:</font><HR>Originally posted by Rich Vanderbilt ([email protected]):
    I'm using Caldera eServer 2.3 with a kernel version of 2.2. When I try to run the installer program I receive this error. I have read some of the postings regarding Red Hat installs, but has anyone experienced this problem with Caldera products? <HR></BLOCKQUOTE>
    null

  • Payment programme error

    Hi gurus
    I am not understanding the following problem in APP. Please help me.
    Scenario:-  for one vendor according to his master record payment terms the payment due date is  15 day after baseline date. for a particular invoice  the user changed the payment terms as payment immediate ( same day) and posted the invoice. same day they executed the payment program. but this particular invoice amount was not taking into consider for payment. The next payment run date was set after 10day for the present run date. In vendor agening report the invoice amount is showing as  payable on the same day. My client wants the reason for why APP was not consider the particular invoice.
    Please help me
    Thanks
    Venkat

    Hi Venkat,
    There could be several reasons for that vendor not being picked up in the payment program and it is hard to find the cause with the information you have provided. Anyway, you could check the following if you haven't done it so far
    1. Payment method assigned to the vendor master and PMethod on the invoice and make sure the payment run is for that payment method
    2. Is there any selection criteria that is used under free selection tab in F110 transaction that cannot pick the vendor/invoice. for eg: Currency USD and invoice was booked in EUR. restriction made on  invoice for a foreign vendor and does
    Pls assign points if useful
    Thanks,
    Kumar

  • On startup PS CC 2014 message: "Cannot initialise PS due to a programm error". Anybody solved this?

    hi,
    I had calls with Adobe all afternoon but the problem is passed to the senior team now. Maybe someone on this forum has had the same problem. I tried all suggested re-install, cleaner, check video card but no succes.
    Hope you can help!
    thanks,
    Rob

    Didn't anyone ask you for the specifics?
    What's in the crash report / event log?
    As far as I know, no one here is with the NSA.  We don't know what OS you have, or anything else about your system.
    Help - System Info inside Photoshop, copy, and paste into a post here would go a long way toward helping us help you.
    -Noel

Maybe you are looking for

  • How can I cancel iTunes 10 and open previous version of iTunes?

    Still trying to find an answer with no results at all so far.  SO, let's try again.  I upgraded to iTunes 10 from my older version of iTunes 9, which I found out was so much better for me than the 10 version.  I just want to cancel the 10 version and

  • Change password in Weblogic 10.3

    Hi, I follows change password of weblogic admin for change password, I have 2 problems: In step 8, please for me file name to edit WLS_PW (is startManagedWebLogic?) In step 9, I cannot find gateway.ini file If in step 8 and 9, I input password, for e

  • BLANK MAIL MESSAGES USING OUTLOOK

    Hi - I apologise for throwing this one in again - but I need to get an answer and haven't been able to find anything yet. I am using a MacBook Pro with OS x Ver 10.6.8.  For mail within our company we use MS Outlook.  verything was fine up until a fe

  • PXA Storage

    Hi, I am saving a PO, and I am getting a short dump with message "No PXA storage space available at the moment". Can somebody tell me how toset the PXA storage space? Thanks Kishor

  • Batch-input and screens

    Hi, I have one program, that calls VA03 and print Billing document immediately. Now they want stop batch-input at Issue output screen, and after they fill the options that want and continue the program. Can you tell me if it is possible?? And if yes,