How to rollback the DTP changes

Hi Team,
In system we have flat file data load, and we are using the DTP to load the file into DS0.
In DTP we are maintaining the file path.
Recently we upgraded the BW system to Support pack 27(SP27) and now when I am going to change mode in DTP not able to see the file path. In display mode I was able to change the file path but save and activate button is disable. I change the file path in display mode and went to change mode to save it but file path section was disappear and I save it now not able to see the file path section.
Now I don't see any file path in DTP and I tried to create new DTP that DTP is also not showing the file path.
Is it possible to rollback the changes in DTP, so that I can use the earlier DTP which has file path section.
How can we create the DTP which will be having the file path section it.?
Is it because of support pack?
Thanks
Chetan

Hi Chetan,
I take it you're now in version 7 flow.
Here's what I would do,
- Go to the relevant PC File datasource.
- Open the relevant infopackage.
- Go to the Extraction tab.
- Check out on "Filename" field. In there you can specify/change the filepath by clicking on the button behind the text box.
Hope this helps.
Darwin

Similar Messages

  • How to get the "last changed by" for a set of function modules?

    How to get the "last changed by" for a set of function modules?
    is there any table to get it??

    See [this|Re: Date of creation of function module] I posted earlier.
    >TFDIR will give you the name of the function group program and the include number.
    >E.g. SAPLZFUNCGROUP Include 01.
    >From this you can construct the include name: LZFUNCGROUPU01.
    >You can look this up in TRDIR to find the creation date (CDAT) of the function module.
    In your case, you need unam and udat.
    matt

  • How to stop the auto change of the desktop background picture ?

    How to stop the auto change of the desktop background picture ?

    Well . . thanks, but I already have done that and I still have the problem. The background changes to the standard picture galaxy not to one of the options. Sorry my question wasn't clear enough.
    Thanks. 

  • How to find the recent changes done in the workflow by user id ?

    Hello all,
    How to find the recent changes done in the workflow by user id ?
    I have made changed in Production system .
    Like changing the status ,
    changing the agent ,
    but for these it will , not ask for any request .
    So i want to know is there any method to find what are the changes done by me ?
    Thanks and regards
    Prem

    Hi,
    This is caused by mandant settings in scc4. It's better not to make changes in PRD, because then your DEV en QA systems differ.
    Kind regards, Rob Dielemans

  • How to check the DTP status (i.e in active mode or not) for the Prior days.

    Hi SAP gurus,
    How to check the DTP status whether it was in active mode or inactive mode for the prior days ?

    Hi Aditya,
    Kindly have a look into below links,
    http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/00dbbfa9-dba2-2d10-bc80-9d6489e4b1c7?QuickLink=index&overridelayout=true
    DTP request Overall status
    Hope this helps.
    Regards,
    Mani

  • How to transport the DTP

    Hi Guys,
    I have created one new info cube and transformations and DTP's on the info cube in development. Now i want to transport info cube and transformations and DTP 's to quality and production system.
    i am tryting to collect these objects into transport in the transport connection and i have selected my info cube and
    and i selected the option     "Data flow afterwards"  in the Grouping
    it dsipalyed    only info cube name and transformations and info object, it didn't display the DTPS , so how to collect the DTPs and transport DTP's to quality and prodcution system.  Please suggest me if i miss anything there.
    and also i have another question is
    do we need transport  DTP from Dev to quality and Production systems or do we create DTP in each system seaprately.
    Please suggest me how ti proceed. Please share your thoughts on this.
    Thanks
    SG
    Best regards
    SG

    Hi,
    If you want to transport the DTP just double click on your DTP -
    select GO TO menu--Object Directory Entrygive the package name and select the request in which you want to collect it.
    Regarding creation of DTP in QA and PRD itself that varies from client to client.Some client give authorization to create directly and QA and PRD whereas some want everything to be transported form one system to another.
    Also read about object chageability as well.
    http://help.sap.com/saphelp_nw70/helpdata/en/0e/a7343e8c7f6329e10000000a114084/frameset.htm
    Hope it helps.
    Regards,
    AL

  • How to rollback the Airport Extreme to previous release?

    Hello,
    I need to know how to rollback the Airport Extreme to previous release.
    I just updated my last generation Airport Extreme to the latest release because it was blinking orange the status light and it requested to be updated.  Howver, doing so, it no longer recognize my AirPort Express nor my second Airport Extreme (2nd generation) that is bridged.
    If anyone knows how to rollback the update I will appreciate it.
    Thanks,
    genbaez.

    I just updated my last generation Airport Extreme to the latest release
    We might be confused by last generation. does that mean Gen5??
    If it is Gen5 you roll back by holding down the options key while selecting version.
    All the previous versions applicable to your model should pop up.
    Just select the one you want.. and it will proceed. You get no warning or other chance to stop it.. so choose well. 7.6.1 is IMHO the best when you are going to mix with older products.
    I got about 10x link speed improvement doing extend wireless when I rolled back to 7.6.1 yesterday.
    Also you should stop the airport utility annoying you.. turn off the firmware update reminders so they only happen once a week. Uncheck all of these. Ignore the update warning when it will inevitably happen.

  • How to Rollback the number autogenerated of a material

    Hello,
    Please someone can help me, I need to Know how to rollback the autogenerated number of a material.
    I am using    CALL FUNCTION 'BAPI_MATERIAL_GETINTNUMBER', but when I create a material perhaps a validation error appears when creating the material using  CALL FUNCTION 'BAPI_MATERIAL_SAVEDATA'.
    So, if an error appears how can I go back to the previous number of the material. The counter shouldn' be incremented.
    Thank so much from Peru.

    Hello,
    Question from my side, Why do you want to use 'BAPI_MATERIAL_GETINTNUMBER' for creating a new number?
    The FMBAPI_MATERIAL_SAVEDATA, has a call to 'MATNR_NUMBER_CREATE' to create a new number.
    Regards,
    Sameer

  • How to identify the DDL changes ?

    Hi all,
    How to identify the DDL changes done to the database ?
    By triggers only Or we can use Logminer also OR
    SELECT * FROM USER_OBJECTS where object_type = 'TABLE' order by LAST_DDL_TIME desc;
    OR
    is there any other options are available ?
    Thanks in advance,
    Pal

    Something from asktom might help
    tkyte@TKYTE816> create or replace trigger ddl_trigger
    2 after create or alter or drop on SCHEMA
    3 declare
    4 l_sysevent varchar2(25);
    5 l_extra varchar2(4000);
    6 begin
    7 select ora_sysevent into l_sysevent from dual;
    8
    9 if ( l_sysevent in ('DROP','CREATE') )
    10 then
    11 if l_sysevent = 'CREATE'
    12 then
    13 begin
    14 select 'storage ( initial ' || initial_extent ||
    15 ' next ' || next_extent || ' .... )'
    into l_extra
    16 from all_tables
    where table_name = ora_dict_obj_name
    17 and owner = user;
    18 exception
    19 when no_data_found then null;
    20 end;
    21 end if;
    22
    23 insert into log
    24 select ora_sysevent, ora_dict_obj_owner,
    25 ora_dict_obj_name, l_extra
    26 from dual;
    27 elsif ( l_sysevent = 'ALTER' )
    28 then
    29 insert into log
    30 select ora_sysevent, ora_dict_obj_owner,
    31 ora_dict_obj_name, sql_text
    32 from v$open_cursor
    33 where upper(sql_text) like 'ALTER%' ||
    34 ora_dict_obj_name || '%'
    35 and sid = ( select sid
    36 from v$session
    37 where audsid=userenv('sessionid') );
    38 end if;
    39 end;
    40 /

  • How to read the status changed in crmd_order txn before saving it to DB.

    hello all,
    My requirement is to perform some checks after the user changes the status
    ( Before saving it to DB i need to do some checks )
    I could find the BADI and Fm's for checking conditions.
    My question is i need to check for a particular status change how do i trace that that particular status which i need to capture has been changed??
    i could see some FM's but it is only fetching the staus save in DB.
    how do i trace the status just after user changes before saving it to DB.
    it's an urgent requirement............pls help me on this..........
    pls get back to me if u want more  details.........
    Thanks,
    Shiva.

    Hello.
    Have you figured this out yet?  We are having the same problem.

  • How to fetch the latest change number from CDPOS Table..?

    Hi All,
    im trying to fetch teh change number from CDPOS with the below select, but my requirement is always i wants to fetch the latest change number.
              SELECT SINGLE objectid changenr FROM cdpos
                     INTO wa_cdpos
                     WHERE objectid = wa_e1kna1m-kunnr
                     AND ( tabname = 'KNA1' OR tabname = 'KNVV')
                     AND   fname = 'AUFSD'
                     AND ( value_new = '01' OR value_new = space ).
    Please let me know how to achive this..?
    Ashok

    try this way
    "           SELECT SINGLE objectid changenr FROM cdpos
    "                 INTO wa_cdpos
               SELECT objectid changenr FROM cdpos
                      INTO table t_cdpos
                      WHERE objectid = wa_e1kna1m-kunnr
                      AND ( tabname = 'KNA1' OR tabname = 'KNVV')
                      AND   fname = 'AUFSD'
                      AND ( value_new = '01' OR value_new = space ).
    SORT t_cdpos by  changenr Descending.
    read t_cdos index 1.    "this is the latest change
    Prabhudas

  • How to capture the product change on the item level in CRM GUI.

    Dear All:
    There is a line item in the sales order. Now I change the product of the line item. I want to capture the change in CRM GUI.
    PS:
    There is a reference thread, in which I know we can capture the change in WebUI with the component T115IT_SLSO.
    Can the old product be captured after I changed the product in order item?
    But I want to know how to capture the change in GUI. Anybody can help me? Thanks in advance.

    Hi,
    when you create an item in GUI tcode CRMD_ORDER, badi CRM_ORDERADM_I_BADI will be triggered.
    Method CRM_ORDERADM_I_PRODUCT_DETERM will have the Header and item guid and newly entered product in parameter IV_ORDERED_PRODUCT.
    Regards,
    Arun

  • How to use the database change notification event with an AppModule Child ?

    hi,
    I try to do the same stuff that this "How To" : [http://niallcblogs.blogspot.com/2009/06/auto-refreshing-adf-chart-objects-in.html].
    This example works fine, but I want an Application Module Root which contains the Application Module which contains the VO where there is the method processDatabaseChangeNotification.
    I have trying all the configuration possible of AppModuleRoot and AppModuleChild: Shared/Local, Local/Shared and even Local/Local ... but nothing works ...
    Can you tell me if possible, and if so ... how?
    thanks !
    (I use jdev11g)

    I don't find my reponse in the documentation....
    I have an AM Child in an AM Root like that :
    <AppModuleUsage
    Name="AppModuleChild"
    FullName="model.AppModuleChild"
    ConfigurationName="model.AppModuleChildShared"
    SharedScope="2" />
    My AM Root is Shared in the file "DataBinding.cpx" :
    <BC4JDataControl id="AppModuleRootDataControl" Package="model"
    FactoryClass="oracle.adf.model.bc4j.DataControlFactoryImpl"
    SupportsTransactions="true" SupportsFindMode="true"
    SupportsRangesize="true" SupportsResetState="true"
    SupportsSortCollection="true"
    Configuration="AppModuleRootShared" syncMode="Immediate"
    xmlns="http://xmlns.oracle.com/adfm/datacontrol"/>
    ... and the database change event notification don't work... I don't understand !

  • How to adopt the index changes during upgrade

    Hi All,
    Please let me know how to adopt the standard index changes during upgrade. We are not able to change using SPDD.
    Regards
    Anil Kumar K

    Hi Micheal,
           I have posted one query can you answer for that also.
    Actually we are facing a problem  in activating the table COEP. It is saying duplicate field name exist for GEBER. But we have checked all the tables and structures.But no duplicates.
    Please help us..
    Regards
    Anil Kumar K

  • How to identify the last changes made in the smartform ?

    Hi Form Experts,
    My smartform's General attribute shows that there is some change performed 2 months back, Which is not reflected in my production server.
    Could any one advice how to track the last performed changes in the system, I did not find version management for smartforms.
    Regards
    Prasath

    Hi,
    1.Go to smartforms->give formaneme>display>Utilities>Forminformation.
    2.Go to smartforms->give formaneme>display-->General attributes.
    Regards,
    If helpful reward with points(Don't forget).
    Edited by: shiva kumar on Apr 11, 2008 6:22 AM

Maybe you are looking for