No session found with status "New" or "Error"

Hi,
I put the statement after the CLOSE GROUP to process the BDC automatically:
  SUBMIT RSBDCSUB AND RETURN
         EXPORTING LIST TO MEMORY
         WITH MAPPE = SESSION.
         WITH VON = SY-DATUM
         WITH BIS = L_NEXT_DAY
         WITH Z_VERARB = 'X'
         WITH FEHLER = ' '.
And when I ran it I got an error that says
<i>No session found with status "New" or "Error"</i>
When I go to SM35, I see the session in the 'New' tab.  How can I get this to process completely without manual intervention or first thing first no error from running the program?
Thanks,
Will

Hi Rob,
I will try the COMMIT. I think because I processing mutltiple GS01 transaction in one program.
Hi Sudheer,
I am actually usinng the INCLUDE that was given to me when I did the recording.  Here is the complete code from the include.
***INCLUDE BDCRECX1.
for programs doing a data transfer by creating a batch-input session
and
for programs doing a data transfer by CALL TRANSACTION USING
SELECTION-SCREEN BEGIN OF LINE.
  PARAMETERS SESSION RADIOBUTTON GROUP CTU.  "create session
  SELECTION-SCREEN COMMENT 3(20) TEXT-S07 FOR FIELD SESSION.
  selection-screen position 45.
  PARAMETERS CTU RADIOBUTTON GROUP  CTU.     "call transaction
  SELECTION-SCREEN COMMENT 48(20) TEXT-S08 FOR FIELD CTU.
SELECTION-SCREEN END OF LINE.
SELECTION-SCREEN BEGIN OF LINE.
  SELECTION-SCREEN COMMENT 3(20) TEXT-S01 FOR FIELD GROUP.
  selection-screen position 25.
  PARAMETERS GROUP(12).                      "group name of session
  SELECTION-SCREEN COMMENT 48(20) TEXT-S05 FOR FIELD CTUMODE.
  selection-screen position 70.
  PARAMETERS CTUMODE LIKE CTU_PARAMS-DISMODE DEFAULT 'N'.
                                      "A: show all dynpros
                                      "E: show dynpro on error only
                                      "N: do not display dynpro
SELECTION-SCREEN END OF LINE.
SELECTION-SCREEN BEGIN OF LINE.
  SELECTION-SCREEN COMMENT 3(20) TEXT-S02 FOR FIELD USER.
  selection-screen position 25.
  PARAMETERS: USER(12) DEFAULT SY-UNAME.     "user for session in batch
  SELECTION-SCREEN COMMENT 48(20) TEXT-S06 FOR FIELD CUPDATE.
  selection-screen position 70.
  PARAMETERS CUPDATE LIKE CTU_PARAMS-UPDMODE DEFAULT 'L'.
                                      "S: synchronously
                                      "A: asynchronously
                                      "L: local
SELECTION-SCREEN END OF LINE.
SELECTION-SCREEN BEGIN OF LINE.
  SELECTION-SCREEN COMMENT 3(20) TEXT-S03 FOR FIELD KEEP.
  selection-screen position 25.
  PARAMETERS: KEEP AS CHECKBOX.       "' ' = delete session if finished
                                      "'X' = keep   session if finished
  SELECTION-SCREEN COMMENT 48(20) TEXT-S09 FOR FIELD E_GROUP.
  selection-screen position 70.
  parameters E_GROUP(12).             "group name of error-session
SELECTION-SCREEN END OF LINE.
SELECTION-SCREEN BEGIN OF LINE.
  SELECTION-SCREEN COMMENT 3(20) TEXT-S04 FOR FIELD HOLDDATE.
  selection-screen position 25.
  PARAMETERS: HOLDDATE LIKE SY-DATUM.
  SELECTION-SCREEN COMMENT 51(17) TEXT-S02 FOR FIELD E_USER.
  selection-screen position 70.
  PARAMETERS: E_USER(12) DEFAULT SY-UNAME.    "user for error-session
SELECTION-SCREEN END OF LINE.
SELECTION-SCREEN BEGIN OF LINE.
  SELECTION-SCREEN COMMENT 51(17) TEXT-S03 FOR FIELD E_KEEP.
  selection-screen position 70.
  PARAMETERS: E_KEEP AS CHECKBOX.     "' ' = delete session if finished
                                      "'X' = keep   session if finished
SELECTION-SCREEN END OF LINE.
SELECTION-SCREEN BEGIN OF LINE.
  SELECTION-SCREEN COMMENT 51(17) TEXT-S04 FOR FIELD E_HDATE.
  selection-screen position 70.
  PARAMETERS: E_HDATE LIKE SY-DATUM.
SELECTION-SCREEN END OF LINE.
SELECTION-SCREEN SKIP.
SELECTION-SCREEN BEGIN OF LINE.
  SELECTION-SCREEN COMMENT 1(33) TEXT-S10 FOR FIELD NODATA.
  PARAMETERS: NODATA DEFAULT '/' LOWER CASE.          "nodata
SELECTION-SCREEN END OF LINE.
SELECTION-SCREEN BEGIN OF LINE.
  SELECTION-SCREEN COMMENT 1(33) FOR FIELD SMALLLOG.
  PARAMETERS: SMALLLOG as checkbox.  "' ' = log all transactions
                                     "'X' = no transaction logging
SELECTION-SCREEN END OF LINE.
  data definition
      Batchinputdata of single transaction
DATA:   BDCDATA LIKE BDCDATA    OCCURS 0 WITH HEADER LINE.
      messages of call transaction
DATA:   MESSTAB LIKE BDCMSGCOLL OCCURS 0 WITH HEADER LINE.
      error session opened (' ' or 'X')
DATA:   E_GROUP_OPENED.
      message texts
TABLES: T100.
  at selection screen                                                *
AT SELECTION-SCREEN.
group and user must be filled for create session
  IF SESSION = 'X' AND
     GROUP = SPACE OR USER = SPACE.
    MESSAGE E613(MS).
  ENDIF.
  open dataset                                                       *
FORM OPEN_DATASET USING P_DATASET.
  OPEN DATASET P_DATASET
               FOR INPUT IN TEXT MODE
               ENCODING DEFAULT.
  IF SY-SUBRC <> 0.
    WRITE: / TEXT-E00, SY-SUBRC.
    STOP.
  ENDIF.
ENDFORM.
  close dataset                                                      *
FORM CLOSE_DATASET USING P_DATASET.
  CLOSE DATASET P_DATASET.
ENDFORM.
  create batchinput session                                          *
  (not for call transaction using...)                                *
FORM OPEN_GROUP.
  IF SESSION = 'X'.
    SKIP.
    WRITE: /(20) 'Create group'(I01), GROUP.
    SKIP.
  open batchinput group
    CALL FUNCTION 'BDC_OPEN_GROUP'
         EXPORTING  CLIENT   = SY-MANDT
                    GROUP    = GROUP
                    USER     = USER
                    KEEP     = KEEP
                    HOLDDATE = HOLDDATE.
    WRITE: /(30) 'BDC_OPEN_GROUP'(I02),
            (12) 'returncode:'(I05),
                 SY-SUBRC.
  ENDIF.
ENDFORM.
  end batchinput session                                             *
  (call transaction using...: error session)                         *
FORM CLOSE_GROUP.
  IF SESSION = 'X'.
  close batchinput group
    CALL FUNCTION 'BDC_CLOSE_GROUP'.
    WRITE: /(30) 'BDC_CLOSE_GROUP'(I04),
            (12) 'returncode:'(I05),
                 SY-SUBRC.
  ELSE.
    IF E_GROUP_OPENED = 'X'.
      CALL FUNCTION 'BDC_CLOSE_GROUP'.
      WRITE: /.
      WRITE: /(30) 'Fehlermappe wurde erzeugt'(I06).
      E_GROUP_OPENED = ' '.
    ENDIF.
  ENDIF.
ENDFORM.
       Start new transaction according to parameters                 *
FORM BDC_TRANSACTION USING TCODE.
  DATA: L_MSTRING(480).
  DATA: L_SUBRC LIKE SY-SUBRC.
batch input session
  IF SESSION = 'X'.
    CALL FUNCTION 'BDC_INSERT'
         EXPORTING TCODE     = TCODE
         TABLES    DYNPROTAB = BDCDATA.
    IF SMALLLOG <> 'X'.
      WRITE: / 'BDC_INSERT'(I03),
               TCODE,
               'returncode:'(I05),
               SY-SUBRC,
               'RECORD:',
               SY-INDEX.
    ENDIF.
call transaction using
  ELSE.
    REFRESH MESSTAB.
    CALL TRANSACTION TCODE USING BDCDATA
                     MODE   CTUMODE
                     UPDATE CUPDATE
                     MESSAGES INTO MESSTAB.
    L_SUBRC = SY-SUBRC.
    IF SMALLLOG <> 'X'.
      WRITE: / 'CALL_TRANSACTION',
               TCODE,
               'returncode:'(I05),
               L_SUBRC,
               'RECORD:',
               SY-INDEX.
      LOOP AT MESSTAB.
        SELECT SINGLE * FROM T100 WHERE SPRSL = MESSTAB-MSGSPRA
                                  AND   ARBGB = MESSTAB-MSGID
                                  AND   MSGNR = MESSTAB-MSGNR.
        IF SY-SUBRC = 0.
          L_MSTRING = T100-TEXT.
          IF L_MSTRING CS '&1'.
            REPLACE '&1' WITH MESSTAB-MSGV1 INTO L_MSTRING.
            REPLACE '&2' WITH MESSTAB-MSGV2 INTO L_MSTRING.
            REPLACE '&3' WITH MESSTAB-MSGV3 INTO L_MSTRING.
            REPLACE '&4' WITH MESSTAB-MSGV4 INTO L_MSTRING.
          ELSE.
            REPLACE '&' WITH MESSTAB-MSGV1 INTO L_MSTRING.
            REPLACE '&' WITH MESSTAB-MSGV2 INTO L_MSTRING.
            REPLACE '&' WITH MESSTAB-MSGV3 INTO L_MSTRING.
            REPLACE '&' WITH MESSTAB-MSGV4 INTO L_MSTRING.
          ENDIF.
          CONDENSE L_MSTRING.
          WRITE: / MESSTAB-MSGTYP, L_MSTRING(250).
        ELSE.
          WRITE: / MESSTAB.
        ENDIF.
      ENDLOOP.
      SKIP.
    ENDIF.
Erzeugen fehlermappe ************************************************
    IF L_SUBRC <> 0 AND E_GROUP <> SPACE.
      IF E_GROUP_OPENED = ' '.
        CALL FUNCTION 'BDC_OPEN_GROUP'
             EXPORTING  CLIENT   = SY-MANDT
                        GROUP    = E_GROUP
                        USER     = E_USER
                        KEEP     = E_KEEP
                        HOLDDATE = E_HDATE.
         E_GROUP_OPENED = 'X'.
      ENDIF.
      CALL FUNCTION 'BDC_INSERT'
           EXPORTING TCODE     = TCODE
           TABLES    DYNPROTAB = BDCDATA.
    ENDIF.
  ENDIF.
  REFRESH BDCDATA.
ENDFORM.
       Start new screen                                              *
FORM BDC_DYNPRO USING PROGRAM DYNPRO.
  CLEAR BDCDATA.
  BDCDATA-PROGRAM  = PROGRAM.
  BDCDATA-DYNPRO   = DYNPRO.
  BDCDATA-DYNBEGIN = 'X'.
  APPEND BDCDATA.
ENDFORM.
       Insert field                                                  *
FORM BDC_FIELD USING FNAM FVAL.
  IF FVAL <> NODATA.
    CLEAR BDCDATA.
    BDCDATA-FNAM = FNAM.
    BDCDATA-FVAL = FVAL.
    APPEND BDCDATA.
  ENDIF.
ENDFORM.
Thanks
Will
I awarded points to everyone. Thanks so much.
Message was edited by:
        Will Ferrell

Similar Messages

  • You cannot cancel a change request with status New.

    We're just starting to dive into SCSM. We created a test Change Request and now want to delete / cancel it. When we try, we get a message
    "You cannot cancel a change request with status New."
    Is there an easy way to remove this?
    Orange County District Attorney

    Hi, a Little late but..
    This is a problema from your 3 scsm services, maybe in your principal or secundary server.  You must to restart services in an special order and delete application cache.
    Please review
    http://www.systemcentercentral.com/scsm-2012-tip-all-workflows-stuck-in-new-status-and-never-completing-issue-and-workaround/
    it Works!
    If you have principal and secondary do it in both servers.
    I think this problem is for bad performance in databases and application, so review your hardware design, and logical, so review workflow performance too.
    For items when state new, you must change it to inprogress with smlets

  • Sharepoint 2013 webDAV PROPPATCH fails with status code 409 error every time when trying to set custom property.

    Sharepoint 2013 webDAV PROPPATCH fails with status code 409 error every time, when trying to set custom property.
    anyone have any idea

    Hi
    Stumbled upon the resolution myself. The Bean Area item needs to be set to Visible=Yes in the property palette for the bean within Forms Builder, and also the implementation class also in the bean's properties must match exactly the package & class name specified in the PJC (my full implementation class string had to be set to oracle.forms.demos.runApplication).
    As this bean has no user interface component, and since the Visible property has to be set to Yes, to avoid having a random square shape for the bean sitting on the form's canvas, I also set the Width and Height properties for the bean to 0.001. This does show a very small dot on the form, but that will be acceptable.
    So in summary there has been a change for PJC / Bean Areas between 6i and 10g Forms, in 6i you could have the Bean Item to be set Visible=No, and the SET_CUSTOM_ PROPERTY built-in would work, however in 10g Forms the Bean Item must be set to Visible=Yes for the SET_CUSTOM_PROPERTY built-in to work.
    Daryl

  • IDOCs in trfc with status text as error

    Hi,
    I have IDOCs in trfc queue with status text as 'The ABAP/4 Open SQL array insert results in duplicate database records'.
    How to reach this error point and rectify the same.
    Regards,
    Sheetal

    Hi Sheetal,
    Please refer the link,
    Successfully posted IDOC from XI but not reflected in Receiver R/3 system
    Best Regards.
    Reward points if it is useful.

  • When I try to enter Edit in Photoshop, it comes up with a new screen, Error 150:30.

    When I try to enter Edit in Photoshop, it comes back with Error 150:30, "Licensing for this product has stopped working."  How do I correct this issue?

    I'm guessing you use a Mac.It's a common problem
    Run the python script in the License Recovery tool. Follow the instructions for your version of OSX. You will be using Terminal to run this script.
    http://helpx.adobe.com/x-productkb/global/error-licensing-stopped-mac-os.html#main_Solutio n_2__Run_the_License_Repair_Tool

  • PO is getting created but showing error is address with status of IDoc - 51

    Hi Experts,
    I am using IDoc type  - PORDCR103
    Process code - copy of  IDOC_INPUT_PORDCR1 (Function Module)
    After processing through WE19 it is generating an IDoc number with status - 51 showing error in Address , But it is creating a PO.
    My requirement is In status -51 It should not create PO.
    Inside IDOC_INPUT_PORDCR1 a Bapi  'BAPI_PO_CREATE1' is used for creating PO. Here In RETURN parameter of BAPI a Row is comming with Message type - E.  Some other messages are also there of type 'S' and 'W'.
    After processing ,  PO is getting created with staus - 51.
    Please help me .
    Thanks
    Susanta
    Edited by: Susanta22 on Oct 11, 2011 12:29 PM

    Hi,
    in ur code ur filling the idoc data rcord, control record ryt ..before u append data to idoc data , u r also validating and u might be doing in loop for appening the idoc data.
    if there is any error in idoc then it won't distribute the data, it will be in error status only..u can only see the data in WE02. Then u can also change the data in WE02 and redistirbute it via BD87.
    if u have any conerns let me know
    Regards,
    Nagaraj

  • Adalnctl failed to start with status 127

    OS:red hat as4
    ebs: 11.5.9
    now my system can be started,but the adalnctl failed to start with status 127.
    the error message is about lsnrctl which saied that lsnrctl: command not found.
    but when i start the lsnrctl with oracle owner,the lsnrctl was started immediately.
    however,i found that,the lsnrctl was conected to the port 1521,the adalnctl to the port 1626.
    please help me to see it!
    the cdalnctl log was this:
    LSNRCTL for Linux: Version 9.2.0.3.0 - Production on 20-MAY-2009 17:03:27
    Copyright (c) 1991, 2002, Oracle Corporation. All rights reserved.
    Connecting to (ADDRESS=(PROTOCOL=TCP)(Host=ebstest)(Port=1626))
    TNS-12541: TNS:no listener
    TNS-12560: TNS:protocol adapter error
    TNS-00511: No listener
    Linux Error: 111: Connection refused
    Starting listener process APPS_PROD.
    LSNRCTL for Linux: Version 9.2.0.3.0 - Production on 20-MAY-2009 17:03:27
    Copyright (c) 1991, 2002, Oracle Corporation. All rights reserved.
    Starting /u01/oradata/prodora/8.0.6/bin/tnslsnr: please wait...
    TNS-12545: Connect failed because target host or object does not exist
    TNS-12560: TNS:protocol adapter error
    TNS-00515: Connect failed because target host or object does not exist
    Linux Error: 2: No such file or directory
    adalnctl.sh: exiting with status 1
    Checking status for listener process APPS_PROD.
    adalnctl.sh: exiting with status 1
    ./adalnctl.sh: line 126: lsnrctl: command not found
    Starting listener process APPS_PROD.
    ./adalnctl.sh: line 137: lsnrctl: command not found
    adalnctl.sh: exiting with status 127
    Checking status for listener process APPS_PROD.
    adalnctl.sh: exiting with status 1

    oh maybe i found it
    i have more than one listener.ora
    [root@ebstest /]# find -name listener.ora
    ./u01/oradata/prodora/iAS/hs/admin/listener.ora
    ./u01/oradata/prodora/iAS/network/admin/samples/listener.ora
    ./u01/oradata/prodora/8.0.6/network/admin/samples/listener.ora
    ./u01/oradata/prodora/8.0.6/network/admin/PROD_ebstest/listener.ora
    ./u01/oradata/proddb/9.2.0/network/admin/samples/listener.ora
    ./u01/oradata/proddb/9.2.0/network/admin/PROD_ebstest/listener.ora
    ./u01/oradata/proddb/9.2.0/appsutil/out/PROD_ebstest/01010106/listener.ora
    ./u01/oradata/proddb/9.2.0/appsutil/out/PROD_ebstest/01010108/listener.ora
    ./u01/oradata/proddb/9.2.0/appsutil/out/PROD_ebstest/01010121/listener.ora
    and the other listener.ora was about port 1626
    [root@ebstest /]# cat ./u01/oradata/prodora/8.0.6/network/admin/PROD_ebstest/listener.ora
    # $Header: admk80ln_ux.sql 115.13 2003/04/03 08:05:06 skghosh noship $
    # LISTENER.ORA For Oracle Applications
    # This file is automatically generated
    APPS_PROD =
    (ADDRESS_LIST =
    (ADDRESS= (PROTOCOL= TCP)(Host= ebstest)(Port= 1626))
    SID_LIST_APPS_PROD =
    (SID_LIST =
    ( SID_DESC = ( SID_NAME = FNDSM_PROD )
    ( ORACLE_HOME = /u01/oradata/prodora/8.0.6 )
    ( PROGRAM = /u01/oradata/prodappl/fnd/11.5.0/bin/FNDSM )
    ( envs='MYAPPSORA=/u01/oradata/prodappl/APPSPROD_ebstest.env,PATH=/usr/bin:/usr/ccs/bin:/bin,FNDSM_SCRIPT=/u01/oradata/prodcomn/admin/scripts/PROD_ebstest/gsmstart.sh' )
    ( SID_DESC = ( SID_NAME = FNDFS )
    ( ORACLE_HOME = /u01/oradata/prodora/8.0.6 )
    ( PROGRAM = /u01/oradata/prodappl/fnd/11.5.0/bin/FNDFS )
    ( envs='EPC_DISABLED=TRUE,NLS_LANG=AMERICAN_AMERICA.WE8ISO8859P1,LD_LIBRARY_PATH=/usr/dt/lib:/usr/openwin/lib:/u01/oradata/prodora/8.0.6/lib,SHLIB_PATH=/usr/lib:/usr/dt/lib:/usr/openwin/lib:/u01/oradata/prodora/8.0.6/lib,LIBPATH=/usr/dt/lib:/usr/openwin/lib:/u01/oradata/prodora/8.0.6/lib,APPLFSTT=PROD,APPLFSWD=/u01/oradata/prodappl/admin' )
    STARTUP_WAIT_TIME_APPS_PROD = 0
    CONNECT_TIMEOUT_APPS_PROD = 10
    TRACE_LEVEL_APPS_PROD = OFF
    LOG_DIRECTORY_APPS_PROD = /u01/oradata/prodora/8.0.6/network/admin
    LOG_FILE_APPS_PROD = APPS_PROD
    TRACE_DIRECTORY_APPS_PROD = /u01/oradata/prodora/8.0.6/network/admin
    TRACE_FILE_APPS_PROD = APPS_PROD

  • Event when logistic invoice gets in the sys. through EDI with status cod 03

    Hello Gurus,
    I am trying to find the event that gets triggered when an incoming EDI logistics invoice gets posted/created in system with status code 3 (error status). I know that I can go to transaction SWELS to find the event using event trace.
    The problem is I cannot create such a test scenario manually i.e logistic invoice in the system with status code 03. So I was woneding if someone cal tell me if it would be event
    incominginvoice.created or incominginvoice.posted in business object BUS2081 when the logixtics invoice gets crated/posted with status code 03.
    Thanks.
    Regards,
    Rajesh.

    Hi Rajesh,
    The events triggered when an IDOC goes into error are associated with the inbound process code.
    Have a look in transaction BD67 for your process code, e.g. INVM under the IDOC section you will see the object and events that are invoked when any error occurs.
    Is that what you are after?
    Darren

  • I am trying to back up my new iPhone after downloading/updating iTunes with iCloud. I get this message: The required file was not found or has a permissions error. Correct this permissions problem and try again, or deauthorize this computer if the permiss

    I am trying to back up my new iPhone after downloading/updating iTunes with iCloud. I get this message: The required file was not found or has a permissions error. Correct this permissions problem and try again, or deauthorize this computer if the permiss
    how do I find the file and replace it or install it?

    I'll reload it tonight when I get home...basically, I bought a new iPhone and downloaded some new medical apps. also had to download an update for iTunes into my mac laptop so I could access iCloud (which was NOT on my prior iTunes software)
    When I synched my new iPhone with the newly downloaded iTunes, I registered my iphone and tried to "back it up" to iCloud and the message indicating that "the required file was not found or has a permissions error...." popped up.
    How do I correct the permissions error, or...am I able to do this somewhere? Or...how do I find the file that is missing?
    Dr. Bob001

  • After installing latest iTunes I began having R6034 error messages, found and tried fox of removing 5 Apple programs and reinstalling iTunes.  Now iTunes says my library cannot be accessed because it was created with a newer version of iTunes.  HELP!

    After installing latest iTunes, I began getting R6034 Runtime Error messages, found fix of removing 5 Apple programs, reboot and reinstall iTunes.  Seemed to work but now getting error message that my iTunes Library (iTunes Library.itl) cannot be read because it was created with a newer version of iTunes.  Need Help!!!

    Try the following user tip:
    Empty/corrupt iTunes library after upgrade/crash

  • I have an alert message in disc utility. Error: storage system verify or repair failed. Problems were found with the partitian map which might prevent booting.

    While running verify disc in disc utility on 251 GB SSD SM256c Media I came up with this message: Alert system verify or repair failed. In the descriptions box of history it said, problems were found with the partitions map which might prevent booting. This is followed by a message in red reading, Error: Storage system verify or repair failed. At the time I was down loading raw pictures off my camera through a card reader across my computer to a relatively new 2TB Western Digital portable hard drive. after about 13 to 15 pictures downloaded that drive faileded. My Mac Book Air works fine, but i get this message now everytime I run disc verify on this disc. The Macintosh HD checks out fine.

    While running verify disc in disc utility on 251 GB SSD SM256c Media I came up with this message: Alert system verify or repair failed. In the descriptions box of history it said, problems were found with the partitions map which might prevent booting. This is followed by a message in red reading, Error: Storage system verify or repair failed. At the time I was down loading raw pictures off my camera through a card reader across my computer to a relatively new 2TB Western Digital portable hard drive. after about 13 to 15 pictures downloaded that drive faileded. My Mac Book Air works fine, but i get this message now everytime I run disc verify on this disc. The Macintosh HD checks out fine.

  • Report ending in warning with status 127 error

    Hi,
    We ran a concurrent report with Print options set for a custom report.
    The report is ending in warning with the below error:
    ------------- 1) PRINT   -------------
    Printing output file.
    Request ID : 356879180      
    Number of copies : 1      
    Printer : ABSC_5WCC_HP9
    /bin/sh: jforasnd: not found.
    APP-FND-00500: AFPPRN received a return code of failure from routine FDUPRN. Program exited with status 127
    Cause: AFPPRN received a return code of failure from the OSD routine FDUPRN. Program exited with status 127.
    Action: Review your concurrent request log file for more detailed information.
    Please suggest how to overcome this error.
    Regards
    Siva G

    Please see your other thread -- Re: Concurrent report ending in warning with status 127 (post upgrade to R12.1.

  • Contacts won't sync with my new MacBook (The operation couldn't be completed. (CoreDAVErrorDomain error 1.))

    Hello everyone.
    I recently bought a used MacBook Pro (Mid 2012, running OS X Mavericks) as my first Mac, so maybe it is really easy but I cannot figure it out myself.
    I am really satisfied with the product, the only thing that is bugging me is that the built-in Contacts App won't sync my existing iCloud contacts.
    It's working fine on my iPhone and iPad but it does not seem to be working with the MacBook. At first I thought maybe it could use a reboot. That didn't work. Next I deleted the iCloud account from the Mac, rebooted again, entered my account data and opened contacts again. Still nothing even after waiting 10 minutes.
    Then I found this nice option "Show Last Import". And behind the "iCloud" group I noticed a little exclamation mark. After I clicked on it I was presented the following error: "The operation couldn’t be completed. (CoreDAVErrorDomain error 1.)"
    I don't really know what to do with this error since google and other search engines did not deliver a resolution to this problem which worked...
    Is my iCloud broken or something? Everything is working fine so far with my other devices (iPad, iphone, icloud-website, even my Windows PC at work can sync the contacts  :-/)
    I hope you can provide me a solution because I am out of ideas myself

    So for me I found a solution after hours of searching. Surprisingly it is in another thread here:
    https://discussions.apple.com/message/19223886#19223886
    Problem solved with a lot of help from Apple Support. After upgrading to ML, I still had all my contacts in iCloud and on the iPhone, but not on the iMac and the MacBook.
    1) We have set up a temporary second iCloud account for me.
    2) On my iPhone, I signed out of iCloud and did NOT delete the contacts.
    3) On the two Macs I signed out of iCloud and had everything deleted.
    4) I signed the iPhone up with the new iCloud account and synced all contacts into that one.
    5) With Safari I opened the online interface of my original iCloud  account and manually deleted all contacts.
    6) On my iPhone, I signed out of the temporary iCloud and did NOT delete the contacts.
    7) On my iPhone, I signed into my original iCloud account and waited for the contacts to sync.
    8) On the two Macs I signed into my original iCloud account and everything was okay again.
    So have my contacts back, but we do not really know what was wrong.
    As the original author said, I had no idea what exaclty was wrong but somehow it's working.
    I'm not using any Google contacts so unfortunately I can't help you with that.

  • I have a L7680 All in with two new print heads but the new cyan/magenta shows yellow monitor status.

    I have a L7680 All in with two new print heads but the new cyan/magenta shows yellow monitor status. Ink status, cyan more than 50% and magenta is a 25% w/no low ink warnings... Just ran a clean print head again, print out looks good now but the status of the new cyan/magenta shows yellow monitor status. Is it time to buy another..When I purchased this printer it had to be replaced 3 times because of problems... Just a lemon?
    thx for your help in advance...
    Jim

    Could you share a link to the page?
    Seeing it in context and in our browsers is much easier to debug.
    If not, make sure to run the validator here The W3C Markup Validation Service and clear out any problems. HTML errors, especially structural ones, will cause all kinds of display problems in various browsers/versions/platforms.

  • IDOC Error with STATUS 51

    HI,
    I has a JMS-XI-IDOC Scenario where i has used BPM to get the response from RFC wehre the RFC input is the message from JMS.
    The Response Message from RFC is mapped to IDOC .The Scenario is working and the IDOC is getting created in SAP System Iam getting the Error with Status = 51 and the required field LIFNR not found.
    Request you to please provide the suggestion whether i need to make any settings to resolve this.
    Thanks & Regards,
    Y.Raj.

    Hi !
    Status 51 in most cases is because of lock occured in R3, you can check the kind of error in BD87. If it is a lock error then you can directly say process all
    also check in the last page of this URL
    http://help.sap.com/saphelp_nw04/helpdata/en/d4/0d67e4d85511d2a6080060087832f8/frameset.htm
    Thanks
    Edited by: Abhishek Agrahari on Sep 22, 2008 9:54 AM

Maybe you are looking for