Transport of SQ query with T-code

I design one SQ01 query which uses infoset. how to assign T-code through SE93, which option to choose? can I choose program and screen (dialog), if it is working in dev, can it work well in production after transport, which should be paid attention

Hi,
You need to check the radio button
  Program and selection screen (report transaction)
and give the program name as Report name generated by the Query.
I think you need to check once in other as the generated program names will vary from system to system.
Regards,
Srinivas

Similar Messages

  • Global query block is causing a DNS server to fail a query with error code Name Error exists in the DNS database for WPAD

    Global query block is causing a DNS server to fail a query with error code Name Error exists in the DNS database for WPAD on a Windows 2008 server.

    The global query block list is a feature that prevents attacks on your network by blocking DNS queries for specific host names.  This feature has caused the DNS server to fail a query with error code NAME ERROR for wpad.contoso.com. even though data
    for this DNS name exisits in the DNS database.  Other queries in all locally authoritative zones for other names that begin with labels in the block list will also fail, but no event will be logged when further queries are blocked until the DNS server
    service on this computer is restarted.

  • Transport control program ended with return code 208

    hi all please give me the solution for the transport control program ended with return code 208
    after the request released

    Hi,
    Please check the transport log at OS level. below is the path
    /usr/sap/trans/log.
    You can also check from SAP level. After the transport is import go log button in the STMS_IMPORT tcode  >>> expand all the possible values... you can find the exact reason why the transport ended with error.
    And also plesae check if nay entry exits in TRBAT table .
    Thanks,
    Phani.

  • Transport request migration failed with return code 12

    Hi ,
    A transport request was created to capture deletion of bex query via Tcode RSZDELETE. The deletion TR was moved to Quality box successfully and query got deleted. But when same TR was moved to Production box, TR failed with return code 12. Program terminated (job:RDDEXECL). Upon checking the job log overview for this job, runtime error ITAB_DUPLICATE_KEY happend causing session to terminate. can anyone pls suggest me how to fix this issue and why this has caused. Need to fix this immediately as it is in production environment. Please help.
    In ST22 i could see the below error details:
    Thanks,
    Vishnu

    as per the dump, system is trying to insert a unique number which is already in the system. You sure the transport is only for deletion of the query? Can you please check the import logs in the test system and should tell you what action performed during import.

  • Transport Error - tp finished with return code: 152

    Howdy All,
    I put through some transports into Production on Thursday 22/06/2007 which worked succesfully.
    Nothing has changed in the instance profiles, TP Parameters or the TMS. Now when I try to transport a different request I get the following :
    26.06.2007                              TP                                     1
    Transport executed for:    E75K913986           with command string:
    This is E:\usr\sap\P75\SYS\exe\run\tp.EXE version 340.16.31 (release 640)
    Warning: Parameter DBHOST is no longer used.
    Warning: Parameter DBNAME is no longer used.
    The import of the transport request E75K913986 for system P75 was not performed.
    Please check the tp command. The buffer entry is printed out below.
    P75 buffer:
    TASK                .CLI|PROJECT             |P|CMD I |DD Im |Activ |MainI |MC A
    ---------------+--+--+--
    E75K913986          .300|                    | |0000 |      |      |0000 |
    tp returncode summary:
    TOOLS: Highest return code of single steps was: 0
    SWARNS: Highest tp internal severe warning was: 0152
    tp finished with return code: 152
    meaning:
      Nothing done.
    Transport function error:    Call failed
    E75K913986 has previously been imported. It needs to be re-imported because since it went in another transport (which was created before it) has gone and overwritten some of the objects.
    Your advice / guidence would be greatly appreciated, there doesn't seem to be too many articles about this error.
    Cheers

    I know it has passed 7 years since this problem was recorded, but since we ran into this issue and were looking for assistance, the provided answers above did not apply to our case.  Therefore, we add some tips for the readers:
    Check the TMS alert in the system where the transpor was created.  It can be done in many ways, but you ca do STMS >  Monitor > TMS Alert > TMS Alert Viewer
    Our issue was with retrofit, which did not exist in 2007.  Basically TMS is reporting that the transport of copies that is being expected does not exist, hence "Nothing done".
    Solution was to generate in SolMan via report RETRO_SERVICE_CREATE_RFIT_DATA the missing transport of copies.  Once that was done, we could perform the transport move.
    Regards,
    Juan Carlos

  • Query with progressive code

    Hi,
    I've this table:
    COD_ID.....................DESC_COD
    MT001......................PAL
    MT001......................PAL
    NS007......................PAL
    NS007......................TRA
    NM332......................RIP
    NM332......................RIP
    NM332......................RIP
    NM332......................RIP
    NB112......................RIP
    VT774......................PAL
    VT774......................RIP
    VT774......................PAL
    NT999......................PAL
    ............................. --other 1000 records
    I'd like to write one query with this condition:
    If DESC_COD = PAL I must add at the column COD_ID "-Pn" with n = 0 to 99
    If DESC_COD = TRA I must add at the column COD_ID "-Tn" with n = 0 to 99
    If DESC_COD = RIP I must add at the column COD_ID "-Rn" with n = 0 to 99
    If DESC_COD = PAL and COD_ID has 3 same values I'll get COD_ID-P01, COD_ID-P02, COD_ID-P03
    If DESC_COD = RIP and COD_ID has 5 same values I'll get COD_ID-R01, COD_ID-R02, COD_ID-R03, COD_ID-R04, COD_ID-R05
    In my case I'd like this output:
    COD_ID.....................DESC_COD
    MT001-P01..................PAL
    MT001-P02..................PAL
    NS007-P01..................PAL
    NS007-R01..................TRA
    NM332-R01..................RIP
    NM332-R02..................RIP
    NM332-R03..................RIP
    NM332-R04..................RIP
    NB112-R01..................RIP
    VT774-P01..................PAL
    VT774-R01..................RIP
    VT774-P02..................PAL
    NT999-P01..................PAL
    ............................. --other 1000 records
    Thank in advance!

    It's always good to test it ...
    SQL> create table mytable (cod_id,desc_cod)
      2  as
      3  select 'MT001', 'PAL' from dual union all
      4  select 'MT001', 'PAL' from dual union all
      5  select 'NS007', 'PAL' from dual union all
      6  select 'NS007', 'TRA' from dual union all
      7  select 'NM332', 'RIP' from dual union all
      8  select 'NM332', 'RIP' from dual union all
      9  select 'NM332', 'RIP' from dual union all
    10  select 'NM332', 'RIP' from dual union all
    11  select 'NB112', 'RIP' from dual union all
    12  select 'VT774', 'PAL' from dual union all
    13  select 'VT774', 'RIP' from dual union all
    14  select 'VT774', 'PAL' from dual union all
    15  select 'NT999', 'PAL' from dual
    16  /
    Tabel is aangemaakt.
    SQL> select /* Aalap Sharma */ cod_id||'-'||rn, desc_cod
      2  from
      3   (
      4     select
      5       cod_id, desc_cod,
      6       row_number() over(partition by cod_id order by cod_id) rn
      7     from mytable
      8  )
      9  /
    COD_ID||'-'||RN                                DES
    MT001-1                                        PAL
    MT001-2                                        PAL
    NB112-1                                        RIP
    NM332-1                                        RIP
    NM332-2                                        RIP
    NM332-3                                        RIP
    NM332-4                                        RIP
    NS007-1                                        PAL
    NS007-2                                        TRA
    NT999-1                                        PAL
    VT774-1                                        PAL
    VT774-2                                        RIP
    VT774-3                                        PAL
    13 rijen zijn geselecteerd.
    SQL> select cod_id || '-' || substr(desc_cod,1,1) ||
      2         to_char(row_number() over (partition by cod_id,desc_cod order by null),'fm00') cod_id
      3       , desc_cod
      4    from mytable
      5  /
    COD_ID     DES
    MT001-P01  PAL
    MT001-P02  PAL
    NB112-R01  RIP
    NM332-R01  RIP
    NM332-R02  RIP
    NM332-R03  RIP
    NM332-R04  RIP
    NS007-P01  PAL
    NS007-T01  TRA
    NT999-P01  PAL
    VT774-P01  PAL
    VT774-P02  PAL
    VT774-R01  RIP
    13 rijen zijn geselecteerd.Regards,
    Rob.

  • SAP Query with constante code mvt value

    hello,
    I wish to create several abap query since tables MKPF and MSEG for the inventory mouvements. each query for a type of inventory turnover (101, 501,…), but I should not put the code movement in criteria of selection. it is necessary that the code movement should be fixed in the query. should-I declare the MSEG-BWART as a constante? where I can do it?
    thank you for your assistance.
    cordialy Said

    Hello Esperado9 Said,
    You can think about MB51 / MB5B report where you can define the selection variant and make settings as per your requirement. These both reports will serve your requirement if you are looking for material mvt documents or stock.
    Hope this helps.
    Regards
    Arif Mansuri

  • Auth Error in BW while executing a query with Company hierarchy

    Hi All,
    I have an issue in BW Reporting auth objects.. Hope to get resolved here.
    We are using BI 7.0. However We  are still using the Reporting auth objects for fiield level security. We are having a problem while executing a query with company code hierarchy ,which is built on a multiprovider.
    The Background is as below
    Multiprovider: ZM_CD01 with 5 infocubes
    Query: Has 0COMP_CODE as free characteristics with display hierarchy for Japan (Node APSC_012 is fixed value)
    Node APSC_012 has 4070,4076,407A,408A,9830 company code values under it.
    Reporting Auth Objects:
    Z0COMPCODE: (for flat values)
    4070,4076,407A,408A,407M,407P,8236, :
    ZHCOMPCODE: (For tree structure)
    4070,4076,407A,408A,407M,407P,8080, :
    APSC_MGMT_HIER (Nodes: APSC_012,APSC019)
    Both the reporting authorization objects are checked for multi provider ZM_CD01 in RSSM
    While executing the query the following Auth error is received.
    You do not have authorization to read object  "Z0COMPCODE" authorization on '0COMP_CODE'
    When I change the values for Z0COMPCODE to * it works fine. No Auth error.
    Please help me resolve this issue. It is very critical now as the user needs to execute some important reports.
    Thanks in Advance.
    Ramkumar C

    Hi Chandra,
    Try the following:
    1. Go to tcode RSSM
    2. Enter the cube ZM_CD01 (all the other cubes) then click change.
    3. Afterwards, u201Cunchecku201D ALL Authorization Objects under this cube. (Repeate the same for all the cubes)
    4. Click Save.
    This will resolve the issue.
    Rgds,
    Raghu

  • Transport failed with Return code 12

    Hi all;
    We have some Objects which are transported from Dev to QA, during that time we got error return code 8, we debuged the errors and found that 2 query elements were missing..which we ignored and transported the request to another system which is a clone of our production system. It happened the same error during the transport. Now, we are transporting the request into Prod from and the transport got cancelled with error code '12', we are trying to find the error details it says
    ' serious error occurred which normally is not caused by the contents of the request.'
    Please let me know what would be the problem here and how can I resolve this issue.
    Thank you in advance..with full points.

    hi,
    1. error code 12 can be connection between systems problem so maybe just try to transport it again
    2. code 8 is not a warning it is error and means that transport was unsuccesful so try to perform this transport again (include missing objects, or create request with all necessary objects) and then try to transport on clone system
    Regards,
    Andrzej

  • Ended with return code 8 while transporting

    Hi Experts,
                     Ended with return code 8 while transporting Queries(6),views(33),Wad templates (20) in one request.
    Error message is :
    Error when activating element 4BUH4UXF41Y7H1OUJJFAQ4ZSY                                                                            
    Element 4BUH4V53N0JWZO8APDHN06YIQ is missing in version M                                                                           |
         / | Element 4BUH4VCS5Z5MIARQV7JZA8X8I is missing in version M                                                                           |
         / | Element 4BUH5146DXFRH7CV8RB6TPYKI is missing in version M                                                                           |
         / | Element 4BUH51BUWW1GZTWBELDJ3RXAA is missing in version M                       
    what could be he reason ? Please explain how to overcome this issue.
    Thanks & Regards
    Pcrao.

    Hi ,
    Thanks for the reply, One of my colligue is telling no need of transport elements under the query. why means we copied (dev) one of our query and just changed the Variable to curent fiscalyear/period. now we to transport this query. My colligue is telling any way thos elements are there in old query , and telling no need to transport those. Is it correct or again we need to collect all those using elements in that query while transporting ?
    we dont have access for SE03.
    Thanks & Regards
    Pcrao.

  • 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 transport, ended with return code:  12,  job RDDEXECL cancelled

    Hi Friends,
    When I am trying to import a request in a BW preproduction system, it is giving below error: However, the transport is imoprted successfully in Quality.
    ===================================
    Program terminated (job: RDDEXECL, no.: 09222300)
       See job log
    Execution of programs after import (XPRA)
    End date and time : 20080509092238
    Ended with return code:  ===> 12 <===
    Job log:
    Date        Time      Message
    09.05.2008  09:22:23  Job started
    09.05.2008  09:22:23  Step 001 started (program RDDEXECL, variant , user ID DDIC)
    09.05.2008  09:22:23  All DB buffers of application server unix0001 were synchronized
    09.05.2008  09:22:25  ABAP/4 processor: UNCAUGHT_EXCEPTION
    09.05.2008  09:22:25  Job cancelled
    =======================================
    Kindly advice.
    Thanks & regards,
    Kunal Patel.

    Hello,
    I ran a search for this error and found the following notes:
    SAP Note 966234 - 70SP10: DTP transport and content error
    SAP Note - 1074388 SAPBINews NetWeaver 7.0 BI Support Package 16
    Check if they are relevant for your system.
    Regards,
    Siddhesh

  • Test call of transport control program (tp) ended with return code 0200 Message no. TK094

    Hello Expert,
    My SAP System environment as follow
    SAP Product : SAP NetWeaver 04
    Operating System : Windows 2003 32 bit
    SAP Database : MS SQL 2005 32 bit
    I have installed SAP NetWeaver 04 system with system copy option. I have installed Application server & Database server on different physical server. App server : SSC2PAS3SFWBW and Database Server : SSC2PAS3SFSQW1.
    After SAP NetWeaver 04 installation with system copy I have done TMS configuration with virtual system for a test, It is working fine but while releasing request form SFD system (Development system) it get error  “Test call of transport control program (tp) ended with return code 0200. Message no. TK094”
    I have reconfigured the TMS and check but it can’t help. TR gets release and import with OS level but at SAP level it gets error.
    Trans --> Log
    1 ETP199 ######################################
    1 ETP199X######################################
    1 ETP182 CHECK WRITEABILITY OF BUFFERS
    1 ETP101 transport order     : "SFDK905838"
    1 ETP102 system              : "SFD"
    1 ETP108 tp path             : "tp"
    1 ETP109 version and release : "340.16.72" "640"
    1 ETP198
    2EETP128 No target system defined. "SFDK905838" is not a transport request.
    1 ETP182 CHECK WRITEABILITY OF BUFFERS
    1 ETP110 end date and time   : "20140602150208"
    1 ETP111 exit code           : "12"
    1 ETP199 ######################################
    Steps for Reconstruction                                            
    # Upgraded latest SAP Kernel Non-Unicode 640_Rel Patch level 404
    # Reconfigured the TMS
    # Full User Permission has been set to all SAP Directory.        
    Rgds,
    Ashok      

    Hi Ashish,
    I have removed virtual system form TMS and configured with Development & Production system, but the same error. Not able to release TR.
    SLOG as below.
    ERROR SFDK905832           SFD f 0012 20140602090930 default_user A559420      SSC2PAS3SFWBW                    
    ERROR SFDK905832           SFD f 0012 20140602093923 default_user A559420      SSC2PAS3SFWBW                    
    ERROR SFDK905832           SFD f 0012 20140602094059 default_user A559420      SSC2PAS3SFWBW                    
    ERROR SFDK905832           SFD f 0012 20140602102854 default_user A559420      SSC2PAS3SFWBW                    
    ERROR SFDK905832           SFD f 0012 20140602103633 default_user A559420      SSC2PAS3SFWBW                    
    ERROR SFDK905832           SFD f 0012 20140602104142 default_user A559420      SSC2PAS3SFWBW                    
    ERROR SFDK905832           SFD f 0012 20140602111140 default_user A559420      SSC2PAS3SFWBW                    
    ERROR SFDK905832           SFD f 0012 20140602112723 default_user A559420      SSC2PAS3SFWBW                    
    ERROR SFDK905832           SFD f 0012 20140602113109 default_user A559420      SSC2PAS3SFWBW                    
    ERROR SFDK905832           SFD f 0012 20140602113704 default_user A559420      SSC2PAS3SFWBW                    
    ERROR SFDK905832           SFD f 0012 20140602113722 default_user A559420      SSC2PAS3SFWBW                    
    ERROR SFDK905832           SFD f 0012 20140602113753 default_user A559420      SSC2PAS3SFWBW                    
    ERROR SFDK905832           SFD f 0012 20140602113809 default_user A559420      SSC2PAS3SFWBW                    
    ERROR SFDK905834           SFD f 0012 20140602125959 default_user BASIS@ORIGIN SSC2PAS3SFWBW                    
    ERROR SFDK905834           SFD f 0012 20140602130035 default_user BASIS@ORIGIN SSC2PAS3SFWBW                    
    START EXPORT PREPARATION   SFD e      20140602132917              sfdadm       SSC2PAS3SFWBW 20140602132916001358
    START tp_getprots          SFD E      20140602132917              sfdadm       SSC2PAS3SFWBW 20140602132916001358
    STOP  tp_getprots          SFD E      20140602132920              sfdadm       SSC2PAS3SFWBW 20140602132916001358
    STOP  EXPORT PREPARATION   SFD e      20140602132920              sfdadm       SSC2PAS3SFWBW 20140602132916001358
    ERROR SFDK905836           SFD f 0012 20140602133526 default_user BASIS@ORIGIN SSC2PAS3SFWBW                    
    ERROR SFDK905836           SFD f 0012 20140602133540 default_user BASIS@ORIGIN SSC2PAS3SFWBW                    
    ERROR SFDK905838           SFD f 0012 20140602144313 default_user BASIS@ORIGIN SSC2PAS3SFWBW                    
    ERROR SFDK905838           SFD f 0012 20140602144350 default_user BASIS@ORIGIN SSC2PAS3SFWBW                    
    ERROR SFDK905838           SFD f 0012 20140602144430 default_user BASIS@ORIGIN SSC2PAS3SFWBW                    
    ERROR SFDK905838           SFD f 0012 20140602150202 default_user BASIS@ORIGIN SSC2PAS3SFWBW                    
    ERROR SFDK905838           SFD f 0012 20140602150208 default_user BASIS@ORIGIN SSC2PAS3SFWBW                    
    ERROR SFDK905838           SFD f 0012 20140603080634 default_user BASIS@ORIGIN SSC2PAS3SFWBW                    
    ERROR SFDK905838           SFD f 0012 20140603081006 default_user BASIS@ORIGIN SSC2PAS3SFWBW                    
    ERROR SFDK905838           SFD f 0012 20140603083952 default_user BASIS@ORIGIN SSC2PAS3SFWBW                    
    ERROR SFDK905838           SFD f 0012 20140603084005 default_user BASIS@ORIGIN SSC2PAS3SFWBW                    
    ERROR SFDK905840           SFD f 0012 20140603091608 default_user BASIS@ORIGIN SSC2PAS3SFWBW                    
    ERROR SFDK905840           SFD f 0012 20140603091617 default_user BASIS@ORIGIN SSC2PAS3SFWBW                    
    ERROR SFDK905842           SFD f 0012 20140603091826 default_user A559420      SSC2PAS3SFWBW                    
    ERROR SFDK905840           SFD f 0012 20140603093805 default_user BASIS@ORIGIN SSC2PAS3SFWBW                    
    ERROR SFDK905840           SFD f 0012 20140603101944 default_user BASIS@ORIGIN SSC2PAS3SFWBW                    
    ERROR SFDK905840           SFD f 0012 20140603102709 default_user BASIS@ORIGIN SSC2PAS3SFWBW                    
    ERROR SFDK905840           SFD f 0012 20140603114753 default_user BASIS@ORIGIN SSC2PAS3SFWBW                    
    ERROR SFDK905840           SFD f 0012 20140603121948 default_user BASIS@ORIGIN SSC2PAS3SFWBW                    
    ERROR SFDK905840           SFD f 0012 20140603122039 default_user BASIS@ORIGIN SSC2PAS3SFWBW                    
    ERROR SFDK905840           SFD f 0012 20140603123438 default_user BASIS@ORIGIN SSC2PAS3SFWBW                    
    ERROR SFDK905840           SFD f 0012 20140603135937 default_user BASIS@ORIGIN SSC2PAS3SFWBW                    
    ERROR SFDK905840           SFD f 0012 20140603140114 default_user BASIS@ORIGIN SSC2PAS3SFWBW                    
    ERROR SFDK905840           SFD f 0012 20140603140233 default_user BASIS@ORIGIN SSC2PAS3SFWBW                    
    ERROR SFDK905840           SFD f 0012 20140603140339 default_user BASIS@ORIGIN SSC2PAS3SFWBW                    
    ERROR SFDK905840           SFD f 0012 20140603141743 default_user BASIS@ORIGIN SSC2PAS3SFWBW                    
    ERROR SFDK905840           SFD f 0012 20140603150924 default_user BASIS@ORIGIN SSC2PAS3SFWBW                    
    ERROR SFDK905844           SFD f 0012 20140603152403 default_user A559420      SSC2PAS3SFWBW                    
    ERROR SFDK905844           SFD f 0012 20140603152753 default_user A559420      SSC2PAS3SFWBW                    
    ERROR SFDK905844           SFD f 0012 20140603153518 default_user A559420      SSC2PAS3SFWBW                    
    ERROR SFDK905844           SFD f 0012 20140603162013 default_user A559420      SSC2PAS3SFWBW                    
    ERROR SFDK905844           SFD f 0012 20140603162544 default_user A559420      SSC2PAS3SFWBW                    
    ERROR SFDK905844           SFD f 0012 20140603162639 default_user A559420      SSC2PAS3SFWBW                    
    ERROR SFDK905844           SFD f 0012 20140603162755 default_user A559420      SSC2PAS3SFWBW                    
    ERROR SFDK905844           SFD f 0012 20140603163347 default_user A559420      SSC2PAS3SFWBW                    
    ERROR SFDK905844           SFD f 0012 20140603163740 default_user A559420      SSC2PAS3SFWBW                    
    Rgds,
    Ashok

  • Transport fails with return code 12 for 0CHANOTASSIGNED Characteristics

    Dear Experts,
    I am transporting the 0CHANOTASSIGNED characteristics from BI Dev to BI QA.
    In BI Dev, I use the option Necessary Object.
    While importing request into BI QA, it fails with a return code 12. Some of the errors are:
    Start of the after-import method RS_IOBJ_AFTER_IMPORT for object type(s) IOBJ (Activation Mode)
    System error in lock management
    Error AD 025 during after import handling of objects with type(s) IOBJ
    Start of the after-import method RS_IOBC_AFTER_IMPORT for object type(s) IOBC (Activation Mode)
    Error when checking the InfoObjectCatalog 0CHANOTASSIGNED
    InfoObject 0ABCINDIC is not available in active version
    InfoObject 0ABCPRC_TYP is not available in active version
    InfoObject 0ABCPROCESS is not available in active version
    InfoObject 0ACCT_TYPE is not available in active version
    InfoObject 0ACTIONREAS is not available in active version
    This goes on for lot of infoobjects. If I were to goto RSA1 of BI QA and check any of the above objects, they are 'INACTIVE'.
    But they are 'ACTIVE' in BI Dev.
    Please help me in resolving this issue.
    Thanks and BR,
    Raj Jain

    Hi I.R.K,
    I recreated a trasnport for just one Infoobject (0ABCINDIC) which was one of the objects not active as shown in the logs of BI QA while transport.
    I did not make any changes or delete any data etc. I then just transported these request from BI Dev to BI QA.
    The transport was successful with return code 0. I then checked this object in RSD1 of BI QA and it was activated.
    Any ideas what may be the cause???
    Thanks,
    Raj Jain

  • 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.

Maybe you are looking for

  • How to pass parameters in url templates

    hi all, i've created an iview which calls yahoomail url,i need to pass user-id and password through parameters, such that i can personalize my id and password using personalize option to see my yahoo mail box in the iview.so, plzz give me a solution

  • Time Machine no longer finds the backup disk

    Time Machine running smoothly for the past 6 months. Then had an error that the "......sparsebundle" was in use by another user. So, went into Time Machine preferences, removed the Backup Disk I had been using. Also renamed the hard drive on my lapto

  • I want to know what happend to my money that i added to my apple account ?

    i want to know why the money in my account is gone?

  • Java PDF

    I have a MS Word template that gets populated when a user fills out a form in Microsoft Access. There is a "Bookmark" feature in MS Word that allows for one or more exact locations on a document to be marked. Those Bookmarks can then be accessed thro

  • Specific question on seek

    Ok here is a specific question unlike my previous one. If i store records with a fixed record length something like : RandomAccessFile file = new RandomAccessFile("example.txt","rw");            long pos = inputLong("Type the record number for saving