Form is inactive after transport

Hi,
  I have a smartfrom it is available in DEV and Quality.
I have made some changes to the form in DEV and transported the same to QA but I can see the form is inactive in QA. whereas active in DEV.
I tried by creating a new TR and transprted the Form but I can still the form in inactive in QA.
the transport log tells the transport is successful, can anyone please advise me what can be the problem ?
Thanks & Regards,
Kalyan

Hi All,
Thanks a lot for your input,
I have checked the form in  QA by uploading in DEV there are no errors in the Form.
I am not getting the reason why the Form is showing as inactive in QA even if all the other things are transpoerted.
The transport log also tells that import is successful.
Thanks & Regards,
Kalyan

Similar Messages

  • What are the objects that goes inactive after Transportation

    Hi,
    Usually,What are the objects that goes inactive after Transportation?
    If you have any  links for tranportation ,please send.?
    Regards.,
    Naresh.

    HI,
    the main reason for most of the transports to fail is:
    1)Transporting each and every object in the same transport request.
    Ideally,
    u2022The Infobjects should be transported first in a separate request.
    u2022Then the Data source and the Info providers (Cube, ODS, Data source and Multiproviders) together in a separate request.
    u2022At the end the transformations and the DTPu2019s in an another separate request.
    If the above mention sequence is followed while transporting the transport failures can be avoided.
    2)Also when a change is made to an ODS (I object added or deleted) it should again be transported along with the transformation but in separate request.
    I.e. the ODS 1st and the transformation.
    Hope this helps.
    regards,
    mahesh.

  • Infospoke inactive after transport

    Experts,
    In version 3.5, I have created an infospoke with transformation and unit tested in Dev box. After transport I have got an error 8 while importing in QA. I checked all objects if anything missing or inactive in dev box related with this transport. But could not find anything.
    Looking into QA, I noticed infospoke was in revised version. Do you have any suggestions about what could be missing in transport? Or what should be the next possible steps to resolve the issue, please. Thanks.
    Regards,
    Nimesh
    Message was edited by:
            Nimesh Patel

    Hi Anil, I am having the same problem. My ABAP routine puts the correct selection variables, but the infospoke is getting into 'Revised' version. Can you please let me know, if you have a fix for this?
    Thanks,
    Naveen

  • Objects does in QA/PRD remains inactive after transporting.

    Hi,
    I've been having an extrange problem.
    some objects remains inactive in QA/PRD after they are trasnported from DEV.
    when I see the transport log, everything is perfect, and the final code is 0.
    ¿does anyone knows why the objects does not activates in destitation system??
    thanks for the help.
    Mauricio

    hi,
    I check the job logs (User DDIC and job name RDDIMPDP), and there is no warning or error message.
    The object I was trying to transport is an Update Rule. This Rule connects an ODS with an Infocube, and they both are ACTIVE in the QA System, and in the DEV system too.
    Any suggestion??
    thanks
    Mauricio

  • CRM datasources inactive after transport

    Hello,
    I have few CRM data source which I have transported from Dev to QAS.
    The datasources in Dev are fine however the datasources which are transported to QAS are in inactive status when I look in BWA5 except for datasource 0CRM_SALES_ORDER_I. All the other datasource are inactive in BWA5
    When I check in RSA3 I get an error as Errors occurred during the extraction Message no. RJ012
    However the Datasources are transported and are available in RSA6.
    Is there a step I need to do to activate them. Could you please help me with this.
    Regards,
    KK

    Hi KK
    I debugged this and found that the missing component is an entry in table SMOXHEAD_S for your datasource which must match the entry in SMOXHEAD exactly.   Check in your dev box to be sure - the entry is there.
    So I wrote this program which copies the entry from SMOXHEAD to SMOXHEAD_S.
    Run the program at your own risk your CRM QA box.  If the entry is there already then it will do nothing.
    Please post to say if it works for you.
    Good luck,
    Guy
    report  zbi_fix_extractor.
    data: ld_datasource type smoxhead-datasource value '0CRM_SALES_ACT_1',
            ls_smoxhead   type smoxhead.
    *.check that the smoxhead_s table is empty
      select single * from smoxhead_s into ls_smoxhead
        where datasource = ld_datasource.
      if sy-subrc ne 0.
    *..only do if there was no entry in the shadow table
        select single * from smoxhead into ls_smoxhead
          where datasource = ld_datasource.
        if sy-subrc eq 0.
           insert into smoxhead_s values ls_smoxhead.
        else.
           write 'no data available in SMOXHEAD for datasource'.
        endif.
      else.
          write 'no change made: entry already in SMOXHEAD_S'.
      endif.

  • Info Objects Inactive after transport

    Hi,
    I have done a transport from PRD to DEV by collecting some info objects.
    While doing the transport 'Overwrite' option has been taken. Most of the objects in Transport are overwritten in traget System(DEV).
    But the info objects are inactive. Can anybody give reason why the info obejcts are inactive.
    Any ideas are helpful.
    Thank you,

    Hi ,
    I have checked the transport request and it is giving return code 4 at method execution.
    the log says that program 'RDDEXECL' is cancelled, because of an ABAP Dump
    'DBIF_RSQL_TABLE_UNKNOWN'.
    Any ideas..
    Thank you.

  • ODS and Transformations get inactive after i transport it in PD.

    i have transported my  ETL model in production , Now Everything what we have transported has come into production system but transformation and ODS in our ETL model get inactivated . Also while i want to display the transformation it give massege that " 'the infosource that we have created  before the transformation in not active and can not be used . ' 
    Our ETL model is like
    Cube(now Active)  --- tranformation(Now is in not active state) --  ODS(Now is in not active state) -- transformaion(Now is in not active state) -- infosource(Now in active state) -- transformation(Now in active state) -- PSA .
    the part    ": tranformation --  ODS -- transformaion " gets inactivated after transportation also DTP which pull data from ODS to cube also get inactive .
    Please suggest me to how i can activate these inactive object  or i have to transport these object again to PD
    Thanks .

    Hi Bryan ,
            Yes data was their inside the ODS  while transporting , Now i have successfully transported the request , nd now activating ODS transformation nd DTP . Actually i got a prog to activate transformation and DTP and want to share with all ...  . i juz activate mt DTP and transformation though these prog .
    Program for DTP ACTIVATION
    *& Report  ZDTP_ACTIVATE
    *Coded by NBS BI team
    *Date: 15-JAN-2010
    *Function: For DTPs activation
    REPORT  ZDTP_ACTIVATE.
    TYPES: BEGIN OF t_dtp,
    dtp LIKE rsbkdtpstat-dtp,
    objstat LIKE rsbkdtpstat-objstat,
    src LIKE rsbkdtp-src,
    tgt LIKE rsbkdtp-tgt,
    END OF t_dtp.
    TYPES: i_dtp TYPE STANDARD TABLE OF t_dtp.
    DATA: lv_output(255) TYPE c,
    lv_subrc TYPE sysubrc,
      tab_dtp TYPE i_dtp,
      r_dtp TYPE REF TO cl_rsbk_dtp.
    SELECTION-SCREEN BEGIN OF BLOCK b1.
    SELECTION-SCREEN SKIP 1.
    PARAMETERS: p_id TYPE char35.
    SELECTION-SCREEN END OF BLOCK b1.
    START-OF-SELECTION.
      FIELD-SYMBOLS: <fs_dtp> TYPE t_dtp.
      REFRESH tab_dtp.
      SELECT * FROM rsbkdtp AS a JOIN rsbkdtpstat
             AS b ON adtp = bdtp INTO
            CORRESPONDING FIELDS OF TABLE tab_dtp
             WHERE a~dtp = p_id AND
                a~objvers = 'A' AND
                  b~objstat = 'INA'.
      IF tab_dtp IS NOT INITIAL.
        LOOP AT tab_dtp ASSIGNING <fs_dtp>.
          CALL METHOD cl_rsbk_dtp=>factory
            EXPORTING
              i_dtp   = <fs_dtp>-dtp
            RECEIVING
              r_r_dtp = r_dtp.
          IF sy-subrc = 0.
            CALL METHOD r_dtp->activate
              EXPORTING
                i_objvers             = rs_c_objvers-modified
                i_force_activation    = rs_c_true
                i_show_check_protocol = rs_c_false
                i_with_cto            = rs_c_true
              IMPORTING
                e_subrc               = lv_subrc.
            IF lv_subrc = 0.
              CONCATENATE 'Activated DTP : ' <fs_dtp>-dtp ' : ' <fs_dtp>-src '->' <fs_dtp>-tgt INTO lv_output.
            ELSE.
              CONCATENATE 'DTP : ' <fs_dtp>-dtp ' : ' <fs_dtp>-src '->' <fs_dtp>-tgt ' Could Not be Activated' INTO lv_output.
            ENDIF.
          ENDIF.
          WRITE:/ lv_output.
        ENDLOOP.
      ELSE.
        WRITE:/ 'DTP is not Inactive'.
      ENDIF.
    Program for TRANSFORMATION ACTIVATION
    **& Report  ZTRFN_ACTIVATE
    *Coded by NBS BI team.
    *Date: 15-Jan-2010
    *Function: Activates in-active transformation only.
    REPORT  ZTRFN_ACTIVATE.
    TYPES: t_tran TYPE rstran,
    i_tran TYPE STANDARD TABLE OF t_tran.
    DATA: r_tran_maintain TYPE REF TO cl_rstran_maintain,
    lv_subrc TYPE sy-subrc,
    lv_output(255) TYPE c,
    tab_tran TYPE i_tran,
    i_s_source TYPE rstran_s_tlogo,
    i_s_target TYPE rstran_s_tlogo.
    SELECTION-SCREEN BEGIN OF BLOCK b1.
    SELECTION-SCREEN SKIP 1.
    PARAMETERS: p_id TYPE char35.
    SELECTION-SCREEN END OF BLOCK b1.
    START-OF-SELECTION.
      FIELD-SYMBOLS: <fs_trans> TYPE t_tran.
      REFRESH tab_tran.
      SELECT * FROM rstran
      INTO TABLE tab_tran
      WHERE tranid = p_id AND objvers = 'A' AND objstat = 'INA'.
      SORT tab_tran.
      IF tab_tran IS NOT INITIAL.
        LOOP AT tab_tran ASSIGNING <fs_trans>.
          TRY.
              CREATE OBJECT r_tran_maintain
                EXPORTING
                  i_tranid       = <fs_trans>-tranid
                  i_s_source     = i_s_source
                  i_s_target     = i_s_target
                  i_expert       = rs_c_false
                  i_mode         = rsawc_c_tfc-display
                  i_with_message = rs_c_true.
            CATCH cx_rstran_not_found .
            CATCH cx_rstran_input_invalid .
            CATCH cx_rstran_cancelled .
            CATCH cx_rstran_not_authorized .
            CATCH cx_rstran_display_only .
            CATCH cx_rstran_already_exist .
            CATCH cx_rstran_error_with_message .
          ENDTRY.
          CALL METHOD r_tran_maintain->check
            EXPORTING
              i_with_display = rs_c_true
            IMPORTING
              e_subrc        = lv_subrc.
          IF lv_subrc = 0.
            CONCATENATE 'Activated Transformation : ' <fs_trans>-tranid ' : ' <fs_trans>-sourcename '->' <fs_trans>-targetname INTO lv_output.
          ELSE.
            CONCATENATE 'Transformation : ' <fs_trans>-tranid ' : ' <fs_trans>-sourcename '->' <fs_trans>-targetname 'Could Not be Activated' INTO lv_output.
          ENDIF.
          IF lv_subrc = 0.
            TRY.
                CALL METHOD r_tran_maintain->execute
                  EXPORTING
                    i_wrkmode = cl_rstran_stat=>wrkmode_activate
                  IMPORTING
                    e_subrc   = lv_subrc.
              CATCH cx_rstran_cancelled .
              CATCH cx_rstran_error_with_message .
              CATCH cx_rstran_display_only .
            ENDTRY.
          ENDIF.
          WRITE:/ lv_output.
        ENDLOOP.
      ELSE.
        WRITE:/ 'Transformation is not Inactive'.
      ENDIF.

  • XML Forms show raw xml after transport

    Hallo experts,
    at the moment I am working to set up a SAP Enterprise Portal 7.4. I was able to export KM content from our old 7.0 portal.
    The only problem i am experiencing is that xml forms, that I exported and imported through standard KM export / import, are showing as raw xml.
    The forms are available in forms builder and I also generated a preview (compiled the form) for each form and saved after that.
    There are no errors in the log that point me in a direction, so please help.
    Do you have any ideas what I am missing?
    Best regards,
    André

    Hi Zlatin,
    -> 1
    By Default identic properties queries are connected by an 'OR'.
    Please have a look into the documentation for further info.
    http://help.sap.com/saphelp_nw04/helpdata/en/85/80b3d4c9ef11d5993e00508b6b8b11/frameset.htm
    -> Search Options
    So far it's not possible to connect two identic proerties by an 'AND' within the standard.
    You can preset a search filter via the relevant Search Option Set.
    http://help.sap.com/saphelp_nw04/helpdata/en/c8/765140c770cd01e10000000a155106/frameset.htm
    Regards Matthias Röbig-Landau

  • In which situation I need to active objects after transport

    Hi Experts,
        I'm wondering in which situation I need to active object after transport?  In some cases, I have to active transformation, DTP, infoobject, multiprovider....  Does any one make a conclusion of that?
        thanks in advance.
    Eric

    Sometimes, because of impact of a transport some other objects will be deactivated, then we need to manuaaly activate the objects after transport.
    Also, sometimes transport after import process could not be able to activate the objects, then also we have to activate them manually.
    Or suppose, you have moved and infoobject, due to which some other objects become inactive (where ever infoobjects is being used), then we have to activate them manually, if you dont want to transport them.

  • After transporting the TTF is not been used

    Hi all,
    I have installed a true type font (se73). After the installation I use it on a smart form style and it is shown ok.
    The problem is that after transporting it to integration, the forms are not using the one I installed but a standard instead.
    Hints:  - all was on the same transport order and it has been transported ok.
               - everything is active
               - I have allready read the note 421518 and i have executed the report RSTXDELL

    Are you checking by print preview only, or by printing?
    Which device type is defined for your printer? (SPAD transaction, display the output device)
    If the device type is a custom one (Y* or Z*), could you tell us what sapscript (OTF) driver it uses? (SPAD, double-click the device type).
    The font conversion algorithm is based on the fonts allowed for each device type (they are called "printer fonts", and are maintained via SE73 transaction). You may verify which font conversion is done via SE73 transaction, choose "printer fonts", double-click the device type, and click the "font conversion" button.
    To make sure, you may also see the converted font after the spool has been generated (the font conversion is applied before the spool is generated): display the spool in raw or hexadecimal view in SP01 transaction, the font lines are starting with FT characters followed by the converted printer font name.
    Could you tell us what are the results of the font conversion in SE73 for your device type?

  • Tab un alighned after transporting sapsript.

    Tabs are un aligned after transporting sap script in to qality.
    it displaying properly in dev but the header data is not aligned in qa.
    Is there some thing which I need to take care.
    Please let me know if any suggestions.
    Thanks,

    got to se71 open ur form--> (both in dev and Qty)
    in that click paragraph formate-->(both in dev and Qty)
    check ur each  paragraph by clicking on it
    down u will find the option as font-->
    there u check ur font family and there font size....weather both r same r not......
    if both r same......retransport the same request
    this will help u.
    Regards
    Anbu

  • ADOBE FM not exist after transport

    Hi dears,
    I'm facing to a problem with an adobe form transport.
    In dev, adobe works fine. I've transported the adobe in acceptance, after the transport, I test the adobe.
    Transaction sfp, test button.
    So I reach the initial screen of FM module. The FM is called /1BCDWB/SM00000007 and when I execute it, I've a dump. It's say:
    Short text
        The function module is not active or contains no code.
    What happened?
        The function module "/1BCDWB/SM00000007" is called, but
        cannot be found in its function group.
        Error in the ABAP Application Program
        The current ABAP program "/1BCDWB/SM00000007============FT" had to be
         terminated because it has
        come across a statement that unfortunately cannot be executed.
    I know that with smartforms sometimes we need to regenerate the SF after transport with the option in the menu generate.
    I go in form object menu Form Object (first one) and choose generate.
    I've the information message (in green):
    Unable to find include '/1BCDWB/LSM00000007U01
    and the FM is not yet avaible
    In dev this manipulation generate works fine but not needed.
    Su53 in acceptance is ok last authorization wheck was successful and adobe in acceptance (the form and interface with sfp) are ok.
    Any help is welcome
    Thx in advance
    Vincent

    Hi Vincent,
    Similar to SMARTFORMS in adobe forms also the FM have a different name in different systems.
    So wherever you are writing the code to call your adobe form call FM: FP_FUNCTION_MODULE_NAME and get the fm name from there, replace your FM /1BCDWB/SM00000007 with the variable in which you are getting your Forms FM name.
    For example:
      CALL FUNCTION 'FP_FUNCTION_MODULE_NAME'
        EXPORTING
          i_name     = <Your form name>
        IMPORTING
          e_funcname = lv_funcname.
      CALL FUNCTION lv_funcname
        EXPORTING
          git_item       = git_item
          gs_header      = gs_header
        EXCEPTIONS
          usage_error    = 1
          system_error   = 2
          internal_error = 3
          OTHERS         = 4.
      IF sy-subrc <> 0.
        MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
                WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
      ENDIF.
    Regards,
    Vaibhav

  • Web Dynpro automatically activate service after transport

    Hi all!
    Well - I've searched SDN.  I've read notes.   I googled.  I can't seem to find exactly what I want.    When a web dynpro component transports it automatically activates in the new system.  However, the application creates an ICF entry.   That "service" does not automatically activate.  I can go to SICF and activate, but I don't want to do that in all the systems.  Nor do I have the authority in all systems.
    Everything I've read on SDN seems to point to the fact that it can't be automatically activated.  The notes that I've read seem to piont to the fact that it can be activated automatically with the correct Basis settings.
    When the application is created it automatically creates a "service" in http:server//sap/bc/webdynpro/sap/application.   Maybe it should be in a custom namespace?
    Anyway I'm stuck - any help you could provide would be great.  I'm on ECC 6.0.
    I've already read these notes that seem like they would help:
    1088717
    1124553
    1043195
    I've tried running RSICF_SERVICE_ACTIVATION. 
    I can activate the service manually.   It just isn't something that I'd like to do. 
    This may not be the correct forum, but as it relates directly to WDA, I thought I'd give it a try here.
    Thank you!
    Michelle
    I've looked at these threads:
    web dynpro service inactive after migration
    Why Web Dynpro Application can not work in UAT ?

    Hi Thomas,
    I just want to add that a user who creates this variant, still needs authorization for Tcode SICF. But you're right, this could be done ones for a range of services.
    Steffen

  • Doubled entries after transport

    Hi,
    We decided to make some modification in DEV (delete and recreate new KPIs, delete and recreate new metrics sets).
    After Transport to QUAL, Some entries are doubled (twice the same KPIs linked to a objective, metric sets doubled...). We checked in DEV and everything is OK. We did again a transport deleting QUAL database before but same results.
    Is there any cache or something to delete before transporting ?
    The former transport finished correctly. The only difference is that we noticed that users in QUAL are all doubled (2 same entries for each users !!!).
    Thanks
    Matt

    Hello,
    I saw in the support case text that you had imported data previously and did not get duplicate metric sets until this last recent import.
    After the successful import had any thing changed with user assignments or group changes at all?
    One thing to test is to send your Zip file to Support and ask them to import it into a clean test system and see if they see duplicate metric set entries.  That would tell us if the 'duplicate' entries are in the export file or not.
    That's probably easier then worrying about deleting and backing up data. 
    Are all metrics sets duplicated or only new ones that were loaded from the other system?
    It's always a good idea to open a new browser session and clear the IE cache, then login to SSM just to be sure the duplicates are not some cached entries.
    If you have 'preserve favorites website  data' selected and you have SSM urls saved as favorites, please turn this off.
    Thanks,
    Bill

  • Issues in Process chain after Transporting to Q

    Hi All
    I have couple of issues with my process chain (in Q). We have recently upgraded from BW3.5 to BI7.0. After upgrade i have a change made to one of my Process chain. i have transported it successfully to Q system. I have collected all the related objects associated with the change in the transport. But when try to see the changes changes in the process chain in Q system i have the following issues.
    1. i do not see my changes in display mode. But i am able to see all the changes if i go to change mode (this looks weird and i dont know why)
    2. i am unable to schdule the process chain in Q system as i was able to do earlier. Now it is asking for Transport when i try to schedule the process chain. this was not the case earlier.
    3. In the transport i also collected a newly created infopackage and added it to the Process chain. But i do not see any link between the infopackage and the process chain (it was supposed to have a link as it had in DEV), i mean when i go to  infopackage it used to give me a mesage saying the infopackage is already available in Process chain which i got in DEV.
    All the above cases were working per normal in DEV systems tested and were collected as required in the transports and moved to Q
    Please let me know ASAP if any of you have encountered similar problems before and have solutions. i saw couple of related threads (some suggested to directly activate the process chain in Q system by opening the Q systems as an alternate) but could not find a solution
    Any sort of help will be really appreciated
    Thanks
    HK

    1. Display mode shows only the active version of Process chain. When you go into change mode, it displays the inactive version (if any available). Make sure you activate the process chain in the change mode. Then the chain you see in display and change mode will be in sync.
    2. When you try to schedule, the Process chain will be activated as well. If your Q system is prompting for transport then probably the system is open for changes. If you want to modify process chains in Q and P systems, make appropriate Object Changeability settings in Transport connection in Q and P systems and make sure the system is closed for changes (SCC4).
    3. Use Transport connection to collect the objects required for Process chain. After transport, check the transport log and make sure all the objects are imported successfully.
    Regards,
    Sree

Maybe you are looking for

  • Assignment of different Dicument Type in Automatic Payment Program

    Hi SAP Gurus, Presently the payments are being handled centrally at Corp Office in a State. The payment method is C and the clearing doc type is KZ. Now the Company is also starting to use APP at another office in another state. The payment method is

  • How to find a line number when using cfinclue

    Hi, I have a cfset causing an error on line 143 the problem is that the index.com is made of includes, how do I find which include CFSET is causing the error (the error code doesn't include the text that is making up the error.... only says coldfusio

  • Prompted to Open or Save a pdf File. Very Annoying!!

    I have Windows 7, IE9, and Adobe Reader X. My question is this. When I click on a pdf file to open it, I receive a bar across the bottom of my window asking me if I want to open or save the pdf file. How can I just get the pdf to open and stop the pr

  • Color correction shuts me down

    Everytime I try to use any color correction my system shuts down. What should I do to fix this problem?

  • Bachelor thesis in Rich Internet Applications

    Hi, First of all, sorry for my engIish. I don't know if this is the right section of the forum, anyway I'm going to explain my problem: I'm writing down a thesis about RIAs: in my intentions i want to "speak" in particoular about Java tecnologies in