End routine error upon trying to transport

Hello folks,
Getting a RC 8 upon trying to transport an end routine piece to our QA environment.
No syntax error upon trying to check the code in the end routine. The custom infoobject that i m trying to populate in this code is set to 'Initial' in the transformational rules. Plz can you share any clues there. This transformation is attached to an Infocube.
Here is the code:
data: v_fiscper(3) type n.
  loop at RESULT_PACKAGE assigning <result_fields>.
    clear v_fiscper.
    v_fiscper = <result_fields>-fiscper+4(3).
    case v_fiscper.
      when '001' or '002' or '003'.
       concatenate 'Q1,' <result_fields>-fiscyear
           into <result_fields>-/bic/zfiscqtr.
      when '004' or '005' or '006'.
       concatenate 'Q2,' <result_fields>-fiscyear
           into <result_fields>-/bic/zfiscqtr.
      when '007' or '008' or '009'.
       concatenate 'Q3,' <result_fields>-fiscyear
           into <result_fields>-/bic/zfiscqtr.
      when '010' or '011' or '012'.
       concatenate 'Q4,' <result_fields>-fiscyear
           into <result_fields>-/bic/zfiscqtr.
    endcase.
  endloop.
Appreciate help on this one.
Cheers !!

How is InofObject zfiscqtr implemented?
Additional:
Try to use RSA1 transport connection.
Select your transformation, cube and so on and collect all necessary objects.
Regards
Andreas
Edited by: Andreas Schindler on Nov 26, 2009 10:24 AM

Similar Messages

  • New demo account, installed Illustrator well, Acrobat ends in error 7 (tried several times)

    Hi there!
    For testing on my machine I get a new Acrobat Demo account, got the CC installer, and installed Illustrator. Well done. After that I wanted to laod Acrobat, and it ends in an error 7.
    Details:
    <PRE>Exit Code: 7
    Please see specific errors below for troubleshooting. For example,  ERROR:
    -------------------------------------- Summary --------------------------------------
    - 0 fatal error(s), 3 error(s)
    ----------- Payload: Acrobat Professional 11.0.0.0 {23D3F585-AE29-4670-8E3E-64A0EFB29240} -----------
    ERROR: An error occurred during the installation of assembly component {9BAE13A2-E7AF-D6C3-A01F-C8B3B9A1E18E}. HRESULT: 0x8007054F.
    ERROR: Install MSI payload failed with error: 1603 - Schwerwiegender Fehler bei der Installation.
    MSI Error message: An error occurred during the installation of assembly component {9BAE13A2-E7AF-D6C3-A01F-C8B3B9A1E18E}. HRESULT: 0x8007054F.
    ERROR: Third party payload installer AcroPro.msi failed with exit code: 1603
    </PRE>
    Empty lines deleted. What to do?

    Exit Code: 6, Exit Code: 7 Installation Errors -
    http://helpx.adobe.com/creative-suite/kb/errors-exit-code-6-exit.html

  • Selecting, reading and sum of billing quantity for last 12 months in transformation end routine

    Hi experts,
    i have requirement to write end routine to read a DSO for last 12 months sales quantity for each month and sum value pass to keyfigure
    not interested using bex variable, while data loading from source to target dso in end routine i am trying to read another DSO which is same as my
    target dso where information is stored by fiscal period, year material etc. finally there is  a keyfigure in target whih needs to be filled with sum of 12
    months sales quantity, for each record form sourc to target maximum of 12 records will be in read dso (for 12 months) my routine is like below.
    i am not expert in abap please kindly gothrough and guide me in this
    TYPES: BEGIN OF s_/BIC/AZOSLS00,
    FISCPER  type /BI0/OIFISCPER,
    FISCVARNT  type /BI0/OIFISCVARNT,
    PLANT  type /BI0/OIPLANT,
    STOR_LOC  type /BI0/OISTOR_LOC,
    /BIC/MATERIAL  type /BIC/OIMATERIAL,
    VTYPE  type /BI0/OIVTYPE,
    BILL_QTY  type /BI0/OIBILL_QTY,
    END OF s_/BIC/AZOSLS00.
    DATA: it_/BIC/AZOSLS00 TYPE TABLE OF s_/BIC/AZOSLS00,
    wa_/BIC/AZOSLS00  TYPE s_/BIC/AZOSLS00.
    SELECT
    FISCPER
    FISCVARNT
    PLANT
    STOR_LOC
    /BIC/MATERIAL
    VTYPE
    BILL_QTY
         FROM /BIC/AZOSLS00 INTO TABLE it_/BIC/AZOSLS00
           FOR ALL
          ENTRIES IN RESULT_PACKAGE
           WHERE
    below field is from value of fiscal period (which is fiscal period -999 ex:  for 001.2014 this
    value will be 002.2013 so 12 months including current period)
    FISCPER >=  RESULT_PACKAGE-/BIC/ZFISCPERF
    below is result filed fiscal period (here i dont know which keyword or statement to be used to select
    interval values this between statement giving syntax error that can not be used in where for for all entries
    between RESULT_PACKAGE-FISCPER
            AND
             FISCVARNT = RESULT_PACKAGE-FISCVARNT AND
             PLANT = RESULT_PACKAGE-PLANT AND
             STOR_LOC = RESULT_PACKAGE-STOR_LOC and
          /BIC/MATERIAL = RESULT_PACKAGE-/BIC/MATERIAL .
        SORT it_/BIC/AZOSLS00 BY FISCPER FISCVARNT PLANT STOR_LOC
        /BIC/MATERIAL .
        LOOP AT RESULT_PACKAGE ASSIGNING <result_fields>.
          READ TABLE it_/BIC/AZOSLS00 INTO wa_/BIC/AZOSLS00 WITH KEY
    below dont know what statement i need to use in read statement for interval of fiscal periods
    giving error that >= can not be used
         FISCPER >=  <result_fields>-/BIC/ZFISCPERF
    FISCPER = <result_fields>-FISCPER
             FISCVARNT = <result_fields>-FISCVARNT
             PLANT = <result_fields>-PLANT
             STOR_LOC = <result_fields>-STOR_LOC
          /BIC/MATERIAL = <result_fields>-/BIC/MATERIAL
           BINARY SEARCH.
          BREAK-POINT.
          IF sy-subrc = 0.
    below for each record there will be 12 records in read so sume of 12 records quantity i need to pass to result again dont know what to say here
    sum statement giving error
                <result_fields>-/BIC/ZLSTSLS12 =
                 sum(wa_/BIC/AZOSLS00-BILL_QTY).
              ENDIF.
        ENDLOOP.
    friends please help me in this.
    Thanks
    Chandra.

    Hiii,
    If you only want to store last  12 months data in Target ODS .
    Then Create filter in DTP and write routine in filter for calmonth or fiscal period.
    Refer the below link to create filter routine :
    http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/80b2db87-639b-2e10-a8b9-c1ac0a44a7a6?QuickLink=index&…
    Regards,
    Akshay

  • Transport control program tp ended with error code 0211

    Dear Experts,
    I have a problem in doing the import after the client export was successfully done.
    I am actaully tring to do a client import/export from the PRD server to DEV server.
    On PRD the client is 900 and on the DEV the client is 240.
    I have manually copied the transport requests created into the
    /usr/sap/trans/cofiles and /usr/sap/trans/data folders to the same on the DEV server.
    After coping them,
    I have tried to add these transport requests to the DEV server queue, i get the following error message
    Transport control program tp ended with error code 0211
    Message no. XT200
    Diagnosis
    An error occurred when executing a tp command.
      Command: ADDTOBUFFER RT2KT00014 RT1 pf=/usr/sap/trans/bin/T
      Return code: 0211
      Error text: no info about transport request found
      Request: RT2KT00014
    System Response
    The function terminates.
    Procedure
    Correct the error and execute the command again if necessary.
    After this I have tried to add the transports to the buffer at the OS level using the command
    ./tp pf=TPPARAM addtobuffer "RT2KT00014" RT1 U18 by going to the folder
    /usr/sap/trans/bin
    But it says that the tp is not found.
    I have also checked the permissions for the TRANS folder, it has full access i.e 777
    This is where i am struck, and the client has to be imported asap as the requirement for the SUPPORT TEAM is very urgent.
    We are on AIX, Oracle 10G and ECC6
    Thanks and regards
    Harry

    Dear Imtiaz,
    Thanks for your quick fire reply...
    The link helped me but it could not resolve my issue..
    Infact i found it my self that the transport requests had to be given full FILE PERMISSIONS at the OS level
    I logged in as ROOT
    and changed directory to /usr/sap/trans/cofile and gave the command
    chmod 777 RT00014.RT2 and
    chmod 777 RX00014.RT2
    and then went to STMS>SYSTEMS>Import View>Extras>Other requests--> Add ..
    Here i added the request nos and then it added up in the queue and then i started the import.
    Anyway thank you very for your reply..
    Awareded points to you.
    Thanks and regards
    Harry...

  • Transport control program tp ended with error code 0247

    Hi,
    Our landscape is such that any transport request once released, gets imported to Q system immediately. However there is another system (another box REG - regression testing) to which I would like to import a request but the transport queue of REG system does not show the request. So I tried to explicitly add it to the queue but I get the following error message, 'Transport control program tp ended with error code 0247.
    There doesn't seem to be a problem with data & CO files as the same request is in Q system and the changes are all transported successfully.
    This request is a transport of copy that contains some ABAP code. (changes to the relevant package can be saved only in local requests therefore transport of copy is recommended to transport the changes).
    The changes appear correctly in Q system but for REG system the request neither appears in the queue nor be added to it.
    Can someone advise where the problem is.
    Cheers,
    KC

    Hi
    When the REG system is not in the system landscape, probably you may not have Data & Co files in that system & you need to have those files separately in the REG system path & then import it.
    Do consult Basis team on this issue.
    Thanks,
    Murali.

  • Transport control program tp ended with error code 0008

    Hi !
    I trying to realize an export of client like that :
    Source Client                     400
    Target System:                    ASI
    Copy Type                         Client Export
    Profile                           SAP_RECO
    Status                            Ended with Errors
    User                              ST01051
    Start on                          17.06.2009 / 17:41:00
    Last Entry on                     18.06.2009 / 00:20:40
    Transport Requests
    - Client-Specific                 ASIKT00028
    - Texts                           ASIKX00028
    The export ended with this error :
    Transport control program tp ended with error code 0008
    Error when exporting request ASIKT00028 00:20:39
    Program ended with error or warning, return code: F
    What happen ?
    If somebody can help me to solve this problem ?
    Regards,
    Johan

    hai johan ,
    of the return code is 008 then it is error,
    what have u transported  to target just chekc the log an du might find the error ,
    just click the expand button of the error and u will get the detials what errror occured
    may be some objects might be inactive just chekc once
    m.a

  • Transport control program tp ended with error code 0249

    Hello guys,
          I am facing an when importing transport.  After I click import to the transport in STMS, before it runs, a message window is displayed immediately. This was working find until last week, any kind of transport is followed by the same error.
    Transport control program tp ended with error code 0249
    Message no. XT200
    Diagnosis
    An error occurred when executing a tp command.
      Command: IMPORT BWDK903312 BIW client200 U0 pf=
    sapbiw1a\s
      Return code: 0249
      Error text: connect failed due to DbSL load lib failure
    Has anyone faced this error while trying to import a transport? I have not found the same error in sdn (0249)
    help will be appreciated.
    thanks
    DGF

    Your are right, but which is the Basis forum?
    Business Process Expert 
    Database & OS Platforms  ABAP Development 
    Enterprise SOA  Portal 
    Emerging Technologies 
    SAP Solutions 
    Business Intelligence 
    Scripting Languages 
    SAP Business One  Industries 
    Community Discussions 
    SAP NetWeaver  Application Server  Integration and Certification Center (ICC) 

  • Transport control program tp ended with error code 0212 | URGENT

    Hi All,
             We are trying to import requests in our PRD system. As soon as we select the request and try to import it , we get the error "Transport control program tp ended with error code 0212".
    This is tp version 305.12.42 (release 46D) for ANY database            
    /usr/sap/trans/cofiles/K915883.<SID> for transport: <SID>K915883: Permissio
    HALT 20070222114323                                                    
    ERROR: /usr/sap/trans/cofiles/K915883.<SID> : cant open                  
    : Permission denied                                                    
    ERROR: EXIT(16) -> process ID is: 6878                                 
    tp returncode summary:                                                 
    TOOLS: Highest return code of single steps was: 16                     
    ERRORS: Highest tp internal error was: 0212                            
    Output from tools called by tp:                                        
    This is R3trans version 6.05 (release 46D - 18.10.01 - 11:30:00).      
    R3trans finished (0000).                                                                               
    When i checked the transport tool and rfc destinations, everything was successful.
    When i tried to do tp connect -
    23> tp connect <SID> pf=/usr/sap/tran/bin/TP_DOMAIN_<SID>.PFL
    This is tp version 305.12.42 (release 46D) for ANY database
    E-/usr/sap/tran/bin/TP_DOMAIN_<SID>.PFL could not be opened.
    EXIT
    tp returncode summary:
    TOOLS: Highest return code of single steps was: 0
    ERRORS: Highest tp internal error was: 0212
    tp finished with return code: 212
    meaning:
      could not access file as supposed (see SLOG for more details)
    We are having SAP 4.6C with DB -Oracle and OS HP-UX.
    Please let me know whow to rectifiy the issue. The situation here is getting worse.
    Regards,
    NK

    Hi Ruchit, Sorry for the delay. Here is the file you wanted -
    steic25q:root>ls
    DOMAIN.CFG          TPPARAM.bak         TP_DOMAIN_ID1.PFL   TP_DOMAIN_IQ1.PFL
    TMS_TEST.IS1        TPPRAMA0918         TP_DOMAIN_ID1.orig  nik.dev_evt
    TPPARAM             TP_DOMAIN_ID1.BAK   TP_DOMAIN_IP1.BAK
    steic25q:root>more TP_DOMAIN_ID1.PFL
    #TMS:0078:DOMAIN_ID1
    Caution !
    This file was generated by the Transport Management System.
    Do not change this file using a text editor.
    For more information, refer to the online documentation of the
    Transaction STMS.
    If this file was destroyed, it can be regenerated in the TMS.
    To do this, log on to the domain controller (system ID1) and call
    transaction STMS. In the System Overview, you can distribute the TMS
    configuration. This regenerates the file.
    STMS -> Overview -> Systems -> Extras -> Distribute TMS configugration
    TRANSDIR            = /usr/sap/trans
    DU1/CTC             = 1
    DU1/DUMMY           = 1
    DU1/NBUFFORM        = 1
    DU1/TP_VERSION      = 266
    DU2/CTC             = 1
    DU2/DUMMY           = 1
    DU2/NBUFFORM        = 1
    DU2/TP_VERSION      = 266
    ID1/CTC             = 0
    ID1/DBHOST          = steic24q
    ID1/DBLIBPATH       = /usr/sap/ID1/SYS/exe/run
    ID1/DBNAME          = ID1
    ID1/DBSWPATH        = /oracle/ID1/817_64
    ID1/DBTYPE          = ora
    ID1/NBUFFORM        = 1
    ID1/TP_VERSION      = 266
    IP1/CTC             = 0
    IP1/DBHOST          = steic25q
    IP1/DBLIBPATH       = /usr/sap/IP1/SYS/exe/run
    IP1/DBNAME          = IP1
    IP1/DBSWPATH        = /oracle/IP1/817_64
    IP1/DBTYPE          = ora
    IP1/NBUFFORM        = 1
    IP1/TP_VERSION      = 266
    IQ1/CTC             = 1
    IQ1/DBHOST          = cbnysap2
    IQ1/DBLIBPATH       = /usr/sap/IQ1/SYS/exe/run
    IQ1/DBNAME          = IQ1
    IQ1/DBSWPATH        = /oracle/IP1/817_64
    IQ1/DBTYPE          = ora
    IQ1/NBUFFORM        = 1
    IQ1/TP_VERSION      = 266
    TRN/CTC             = 1
    TRN/DUMMY           = 1
    TRN/NBUFFORM        = 1
    TRN/TP_VERSION      = 266
    steic25q:root>

  • Error:        Test call of transport control program (tp) ended with return

    Hi Experts,
    When we are trying to transport Request.
    Error:        Test call of transport control program (tp) ended with return code 0208
    in STMS what are the steps to fallow to just back up the code.
    Any Solutions is Greatly Appreciable...
    Thanks in Advance,
    Ram,

    RAM,
    check these links
    http://www.sapfans.com/forums/viewtopic.php?f=12&t=326264
    Re: tp ended with error code 0208
    Please post the question in relevant forums
    Thanks
    Bala Duvvuri

  • Error: Test call of transport control program (tp) ended with return code 0

    Hi Experts,
    When we are trying to transport Request.
    Error: Test call of transport control program (tp) ended with return code 0208
    in STMS what are the steps to fallow to just back up the code.
    Any Solutions is Greatly Appreciable...
    Thanks in Advance,
    Ram,

    Hi,
    a)If your system is UNIX check /usr/sap/trans is mounted or not?
    b)After configuring TMS did you save and activate?that can be one reason.
    c)tp might be corrupted.u need to upgrade your tp. (or you can upgrade to the latest kernel)
    Please check the below link
    could not start transport control program tp
    However as suggested by NIbu, you should restart the server once before doing any other checks
    Thanks
    Debdeep
    Edited by: Debdeep  Ray on Jul 13, 2009 4:28 PM

  • Releasing a Transport Request ends with error code 0012.

    Hi,
    We have a Development system and a Production System (both running on separate windows machine) but they are not connected in STMS. We perform transporting of Requests at o.s level and NOT through STMS.
    We are facing this new problem - We are trying to release a Transport Request in SE01 and it ends with error code 0012. The task inside the Request is released without any error. There is no Notes in SAP Marketplace for this.
    Test call of transport control program (tp) ended with return code 0012
    Message no. TK094
    Diagnosis
    Your transport request could not be exported, since all requirements were not fulfilled.
    Calling the transport control program tp
       "tp EXPCHK EFIK900025 pf=E:\usr\sap\trans\bin\TP_DOMAIN_EFI.PFL -Dtransdir=E:\usr\sa"
    which checks the export requirements, returned the following information:
    Return code from tp: 0012
    Error text from tp: ERROR: Buffer check failed.
    System Response
    Further processing is terminated.
    Procedure
    Check the following points:
    Feasibility of the transport control program tp
    Parameter settings in the transport profile
    Availability of the transport directory and the subdirectories (cofiles, data, log, sapnames, bin)
    Write authorization for the subdirectories
    Write authorization for the files of the subdirectories cofiles, data, log, sapnames
    Release the request again when the error has been removed
    Please help.
    Regards,
    Mohan.

    Hi Mohan,
    Nice to hear that that your problem is resolved.
    For Pamater CTC, please check the below links:
    Automatic transport between DEV clients ?
    http://sapsolutions.searchsap.com/kw;ExtendedTransportControl/content-sap.htm
    Regards,
    Hari Kishan

  • Transport control program tp ended with error code 0212

    Hi all,
    I have created a two system landscape of development & production server. But while I am releasing any request from develpoment server a error is showing: " Transport control program tp ended with error code 0212 Errors: could not access file as supposed (see dev_tp or S".I have chosen development server as domain controller. TMS alert viewer error message also contains the following information------>command: TMS_MGR_READ_TRANSPORT_QUEUE
                                                                           service: transport service
                                                                           start : online
                                                                           Function: TMS_TP_SHOW_BUFFER
                                                                           message: TP_REPORTED_ERROR
    In import monitor it's showing : "tp finished: could not access file as supposed (see dev_tp or SLOG1113.K"
    Can you tell me how to resolve this issue?

    dev_tp contains:    
    This is R3trans.exe version 6.14 (release 700 - 09.04.10 - 11:26:00).
    unicode enabled version
    usage: R3trans.exe [<options>] <control_file>
    The control_file describes what R3trans has to do.
    The following options are possible:
    -c f1 f2 : Copy file f1 to f2 with character set conversion.
    -d       : DB connect. Test if SAP database is available.
    -i file  : Import from file without using a control file.
    -l file  : List the contents of file to the log file.
    -m file  : List the contents of file to allow tp to create a cofile.
    -t       : Test. All database changes are rolled back.
    -t4      : Trace level 4. Switch on developer trace.
    -u <int> : Unconditional modes. See below.
    -v       : Verbose. Write more details to the log file.
    -w file  : Log file. The default log file is 'trans.log'.
    -x       : DB connect without access on any SAP table.
    R3trans.exe finished (0012).
    & the slog file is not there in the trans/log directory

  • Error in  END ROUTINE while activating the transformation.

    Hi ALL,
    While writing an END ROUTINE IN BI, I got no error while saving the code.
    But when Activate the Transformation I got the following Error.
    " Syntax Error in GP_ERR_RSTRAN_MASTER_TMPL,row 54(->long text)
    Diagnosis:Component called CRM_OBJ_ID already exits  "
    I have used the above object in the transformation.
    Please help me debug the error or highlight on it.

    Hi,
    i guess u have create two object with  same variable name.check.
    regards,
    rakesh

  • Transport control program tp ended with error code 0208

    Hello
    I installed minisap NW2004s on XP/SP2 VMWARE 4.5. The installation it self's works fine, but have some problems in the stms. when i call the transport queue there appears an error as follow:
    System   NSP              Command  TMS_MGR_READ_TRANSPORT_QUEUE 
    Client   000              Service  Transport Service            
    User     TMSADM           Start    Online                       
    Date     12.10.2006       Function TMS_TP_SHOW_BUFFER           
    Time     07:13:13         Message  TP_REPORTED_ERROR            
    Transport control program tp ended with error code 0208
    Errors: error in transportprofil (param missing
    unknown,.
    Any Idea? Thanks for your help.
    Regards, George

    Hi
    You can edit the parameter profile using RZ10 and RZ11. You should not copy but manually edit the parameters. Also you need to make a consistency check so that the parameters will be copied to the database from the OS level. You will find an option to perform consistency check in RZ11.
    Hope that helps.

  • STMS: Transport control program tp ended with error code 0232

    Dear ERP Gurus,
    I just encountered problem with STMS in my PRD system. The import is just stuck up on "tp connecting to database". It won't continue unitl the system gives me this error message:
    Transport control program tp ended with error code 0232
    Errors: connect failed
    The tp System log says:
    ERROR: Connect to PRD failed (20090227135454, probably wrong environment)
    I have verified that the suggestion in SAP Note 165708 has already been implemented in our DEV, QAS, and PRD instances.
    Any idea why I am having this problem? Imports were running fine yesterday. Please help.
    Your prompt response is highly appreciated.
    Thanks a lot.
    Best Regards,
    Albert

    Hi Albert,
    First check import monitor and delete all requests from queue, which are still getting imported.
    And go to /usr/sap/trans/tmp and mv all those tmp files to other location.
    Then kill all OS jobs which are getting execute with tp.
    Check all jobs are runnig fine, related to transportation. If not reschedule the same.
    Then start importing.
    Before doing this just check whether your stms related RFCs are working fine.
    I think One of your RFC is getting struck. just try to change ip or hostname accordingly and try.
    Regards
    Nick Loy

Maybe you are looking for

  • Reports - in PS

    Hello All, 1. S_ALR_87013531 - Costs/Revenues/Expenditures/Receipts In this report what is the difference between Cost and Expenditure, what is the difference between Revenues and Receipts 2.S_ALR_87013533 - Plan/Actual/Commitment/Rem.Plan/Assigned W

  • How to get rid of character (A, B or C) in a field after space.

    HI All I have a field of length 18 i.e char 18 (MATNR) It can have values as below      u2018AE10036   Bu2019                                                      u2018AE10091  A u2019                                                      u2018AE10116

  • Freezing and Slow

    Finally got MacBook Pro for work (bye bye dell) and I am having both Freezing and Slowness problems. Machine info: MacBook Pro 15", 2.4Ghz core 2 duo, 2GB Ram, 200GB HD (108GB used), FileVault, OS X 10.4.11, Parallels (typically not running any longe

  • A wierd error of JDBC Receiver adapter

    Dear Expert, I got stuck by the JDBC receiver adapter with PI 7.11, the log is 'JDBC Message processing failed, due to Error processing request in sax parser: Error when executing statement for table/stored proc. 'null' (structure 'SYSTEM'): java.lan

  • Changes to business rules in EAS not reflecting in planning

    Hi Friends, One of my client is facing the issue issue.Could anyone help on the issue. When a new business rule is created or changed in EAS, the changes are not reflected in Planning. A stop and restart of the service is required to see the new busi