Tcode for copying and pasting cofiles and data.

Hi,
     i doing transport manually means going in se09 in qa and released and copied  and pasted the cofiles and data request numbers from qa to prod then i imported the request number. but is it possible for doing copying and pasting  cofiles and data through tcode rather than doing maually.help me plz.

Hi Raj
If you want transport tp requests manually.
you just login your quality system
and go to command prompt
then use this commends
add to buffer all qid pf=your profile path of your qa system
if you want single import
tpimport requestnumber targetsid clientnumber pf=targetprofile path
if you want mass import
tpimport all targetsid clientnumber pf =target profile path
Regards
Bandla

Similar Messages

  • How do I change my mouse to right click for copy and paste

    How do I change my mouse to right click for copy and paste?

    OK, what mouse are you using?  Brand, model?  Your right click should register as a right click unless that has been overridden by a preference pane.  If your Mouse preference pane looks like this, your right click should be the equivalent of a control-left-click on a Mac.

  • Measure Formulae for Uploadable and Data collection report

    Hi,
    I have query related to application of measure Formula for Uploadable and Data collection report.
    Consider a scenario where i use a MDX query to create a data collection report and I map these columns from these reports to an rowsource using a loader file. Can I use measure formula feature like onchange to work with Uploadable and Data colection reports such that changes to any one column should take effect in another column.
    Regrads,
    Wesley

    Wesley,
    IOP uploadable reports are used for sending data to the server in batch. They are coupled to the IOP model via a rowsource. You have a lot of flexibility with the spreadsheet you build for staging the upload. It's really just a function of how crafty you are with vb. Cascading changes from one column to another can be easily accomplished this way.
    Onchange formulas are for something else. They are part of the model definition and are used for describing how to cascade changes between IOP data blocks.

  • TCODES FOR SENDINGIG AND RECEIVING DATA THROUGH ALE

    Hi,
    All,
    Message type I can find for the following :
    Equipment master: EQUIPMENT_CREATE
    Work centre: WORKC2, WORKC3 or WORKC4
    Functional location: FUNC_LOC_CREATE
    but i did'nt  find  a transaction code for sending and receiving data through ALE.
    For example:  Send material    T.code BD10,
                         Receive material T.code BD11.
    Please give the solution.
    Regards.

    can Tx BD21 is of any help

  • Command key not working for copy and paste

    Hi everyone!Copy and paste doesn't work when I use the command key on my new macbook pro.Any ideas how to fix this?If I use the toolbar it works fine

    Are you sure you are using Command+C and Command+V.
    Works fine on my MBP Lion 10.7.2 in all applications.
    You could also try using the Space bar and the Shift and Enter/Return keys when asking a question.
    makesiteasiertoread.

  • Creating a survey in acrobat, processing on hard copy, and data compiling via Acrobat scanning

    Hi there,
    I am new to creating PDF forms using Acrobat Pro 9. I have been asked by my manager to sort out a way we can create a survey (for staff)and have the data input to the survey, processed and compiled ready for an analyst to create a report of the data.
    Basically, this is a survey of staff by staff, anonymous and to be completed on hard copy (Printed PDF with survey template).
    So, I have started to think about the best way to go about this, can I create a survey in Acrobat, print it, fill out the multiple choice questions, scan it in Adobe, and allow acrobat to gather the data?
    Personally I would like to use Acrobat (as I am enjoying learning it), but is this the right tool for that job? Is there a feature that enables multiple choice surveys to be created, printed, filled out, scanned again (with answers filled in), and compiles the data?
    I hope I have explained that clear enough...;-)
    Kind regards
    Kevin

    By itself Acrobat does not "compile data".
    By the way nothing compiles data from a picture. All scanners output a picture of the scanned paper (that is, an image file such as TIFF).
    Acrobat can perform Optical Character Recognition (OCR) of the picture of text.
    The OCR output is the characters - no format, tables, rows, columns, no text styling, etc.
    So harvesting useful information can pose something of a challenge.
    You may want to consider manually compiling the results.
    Be well...

  • I want to take my apple tv from my home in Canada and us it at the Cabin in the States, but can't seem to get it to set up in the states?  It just keeps asking for time and date over and over.

    We just bought apple tv for our home in Canada, we also want to use it at our Cabin in Montana.  We have internet and can get netflix etc on the Macbook, but don't seem to be able to hook up the Apple TV, it just keeps asking for the Time and Date over and over.  Anyone know what we are doing wrong?

    Hi There,
    Find this here:
    https://discussions.apple.com/message/20125520#20125520
    Problem lies with IOS 6.0
    Restore back to IOS 5.1.1 and set the Location to US you will be ok.

  • Dbms_crypto package for number and date data type

    Hi,
    I am using Oracle 10g 10.2.0.3 on Linux 64 bit
    I am tryiing to use dbms_crypto package for the first time to encypt my tables column
    Following are my table columns
    NAME1 VARCHAR2(2000),
    ID1 NUMBER,
    SCORE number
    This table is already populated
    i want to encrypt Name1 and Score column. Following are the functions i have created for Encryption and decryption.
    --For Encryption
    create or replace function get_enc_val
    p_in in varchar2,
    p_key in raw
    return raw is
    l_enc_val raw (2000);
    l_mod number := dbms_crypto.ENCRYPT_AES128
    + dbms_crypto.CHAIN_CBC
    + dbms_crypto.PAD_PKCS5;
    begin
    l_enc_val := dbms_crypto.encrypt
    UTL_I18N.STRING_TO_RAW
    (p_in, 'AL32UTF8'),
    l_mod,
    p_key
    return l_enc_val;
    end;
    --For Decryption
    create or replace function get_dec_val
    p_in in raw,
    p_key in raw
    return varchar2
    is
    l_ret varchar2 (2000);
    l_dec_val raw (2000);
    l_mod number := dbms_crypto.ENCRYPT_AES128
    + dbms_crypto.CHAIN_CBC
    + dbms_crypto.PAD_PKCS5;
    begin
    l_dec_val := dbms_crypto.decrypt
    p_in,
    l_mod,
    p_key
    l_ret:= UTL_I18N.RAW_TO_CHAR
    (l_dec_val, 'AL32UTF8');
    return l_ret;
    end;
    Key: I have stored a key in other schema and calling it by using function get_key().
    Following is my insert
    INSERT INTO Score_table VALUES
    (get_enc_val('John',get_key()),25,get_enc_val(79,get_key()))
    it is giving me following error
    ORA-00932:Inconsistent Datatypes:Expected number got binary.
    I checked, it is an error due to Score field, which is of number type. So do i need to change type of Score field to varchar or is there any other way to encrypt number and date field.
    If i need to change the type then what will happen to the data already in Table and how do i encrypt data already in table.

    Hi,
    Is there any one who can tell me that, do i need to change my table column data type as the encrypted value will be character.

  • How to set a report culture for number and date

    Hi,
    Is there a way to change the report locale for the number and date?
    I've tried using both CrystalDecisions.Share.SharedUtils.RequestLCID and CrystalReportViewer.SetProductLocale and neither work
    The only one that work is to use the Thread.Culture. But that also change the application culture, not just the report.
    Anyone have a solution?
    Thank

    Hi Michel,
    I don't believe you can do this within just the report itself but I haven't played with this very much. Because the App hosts the Viewer it's based on it's culture.
    You should be able to mix if you create a separate thread for each report job that way they are in their own space.
    Search the Object browser on celocale and you'll find more info. Also the SDK help file should have examples.
    No API's to use the Engine, had to use RAS.
    Need to know what version you are using also and WEB or Windows app?
    Here are some samples using RAS:
    rpt1.ReportClientDocument.LocaleID = CrystalDecisions.ReportAppServer.DataDefModel.CeLocale.ceLocaleGerman;
    CrystalDecisions.ReportAppServer.DataDefModel.CrFieldDisplayNameTypeEnum.crFieldDisplayNameFormula, CrystalDecisions.ReportAppServer.DataDefModel.CeLocale.ceLocaleUserDefault);
    And using this way you may have to alter every object in the report.
    Thanks
    Don

  • Deployment question for EMS and Data Objects

    I have configured tens of EMS and data objects. It's deployment time to a new environment, say Dev to Test. Do i have to manually create all this data objects and EMS in each environment, or is it possible to write a script or deployment script to do it automatically for each environment. If not, it will be a headache configuring all these DO and EMS again for eah environment. Please suggest.
    Thanks

    See this guide: http://download.oracle.com/docs/cd/E15523_01/core.1111/e10105/testprod.htm#CHDDIEBI
    Specifically on the usage of icommand in section 20.4.2

  • Tcode for pa and om. In shdb for material we are giving mm01.

    Hi experts,
               I want to get the transaction codes for Personnel administration and Organizatiional management in SHDB. Like we are doing Materials MM01. It is better to give me in detailed manner.
               Help me out in steps of the recording which we have to follow.
    thanks & regards,
        Sekhar.

    Hi Sekhar,
    Please find the list of HR transaction codes for PA and OM
      PA Master Data 
    PA10 - Personnel file
    PA20 - Display HR Master Data
    PA30 - Maintain HR Master Data
    PA40 - Personnel Events
    PA41 - Change Hiring Data
    PA42 - Fast Data Entry for Events
    PRMD - Maintain HR Master Data
    PRMF - Travel Expenses : Feature TRVFD
    PRML - Set Country Grouping via Popup
    PRMM - Personnel Events
    PRMO - Travel Expenses : Feature TRVCO
    PRMP - Travel Expenses : Feature TRVPA
    PRMS - Display HR Master Data
    PRMT - Update Match code
    PS03 - Info type Overview
    PS04 - Individual Maintenance of Info types
    General Reporting
    PM00 - Menu for HR Reports
    PM01 - Dialogs in HR - Create Custom info types
    PRFO - Standard Form
    PSVT - Dynamic Tools Menu
    PAR1 - Flexible Employee Data
    PAR2 - Employee List
    Organizational Management
    PPOM - Change org Unit
    PO03 - Maintain Jobs
    P013 - Maintain Position
    PO10 - Maintain Organizational Unit
    PP01 - Maintain Plan Data (menu-guided)
    PP02 - Maintain Plan Data (Open)
    PP03 - Maintain Plan Data (Event-guided)
    PP05 - Number Ranges
    PP06 - Number Ranges Maintenance HR Data
    PP07 - Tasks/Descriptions
    PP69 - Choose Text for Organizational Unit
    PP90 - Setup Organization
    PP01 - Change Cost Center Assignment
    PP02 - Display Cost Center Assignment
    PP03 - Change Reporting Structure
    PP04 - Display Reporting Structure
    PP05 - Change Object indicators (O/S)
    PP06 - Change Object indicators OS
    PPOA - Display Menu Interface (with dyn.)
    PPOC - Create Organizational Unit
    PPOM - Maintain Organizational Plan
    PPOS - Display Organizational Plan
    PQ01 - Events for Work Center
    PQ02 - Events for Training Program
    PQ03 - Events for Job
    PQ04 - Events for Business Event Type
    PQ06 - Local Events
    PQ07 - Resource Events
    PQ08 - Events for External Person
    PQ09 - Events for Business Event Group
    PQ10 - Events for Organizational Unit
    PQ11 - Events for Qualification
    PQ12 - Resource Type Events
    PQ13 - Events for Position
    PQ14 - Events for Task
    PQ15 - Events for Company
    PSO5 - PD : Administration Tool
    PSOA - Work Center Reporting
    PSOC - Job Reporting
    PSOG - Org Mgmt General Reporting
    PSO1 - Tools Integration PA-PD
    PSOO - Organizational Unit Reporting
    PSOS - Position Reporting
    PSOT - Task Reporting
    Warm Regards,
    Kapil Kaushal

  • Picking space for music and data

    Just got the nano and love it. I am mainly going to use it to listen to podcasts at school and I also want to have a certain space 1-2 gigs to store my graphics files on it. My main question is can I make where if I want only half of the ipod to be used for music and half just for data so when I plug it in random music will fill the alloted space. I hope you guys know what I mean.
    ~PT

    You need to set up a smart playlist that select the music you want on the iPod.
    In the smart playlist you can also set the 'Limit to' option where you can specify the number of songs or hours or GB or MB, etc that are in the playlist.
    If you set up your playlist to select the music you want and then set the "Limit to" to say 2GB you will be all set.
    I have a playlist that selects all my favourite tracks (using the Rating tag, anything greater that 4 stars). that have not been played in the last 30 days.
    I then have a Limit to set at 1700MB so that I can manually fill the rest of the iPod with specific albums via another playlist.
    Ian

  • 8.1 icloud drive for Document and Data is not working well

    On my iPad Air 2 and iPhone 6 (both on ios 8.1), every other day my apps would stop syncing with icloud.  I noticed this with a few apps such as 1Password and Drafts 4.
    icloud for default calenders and reminders were still working during this down time, just the Document and Data not syncing with icloud.
    Remedy action:
    (1) I need to off icloud drive
    (2) press on home bottom and On/off bottom simultaneously to re-start the device
    (3) then switch on the icloud drive again to make the Document and Data sync with icloud again.
    This is really irritating and how can I think of a PC-less future when icloud is not reliable?
    I am supposed to gain synergy for using 2 ios devices but I am certainly not feeling it at the moment.
    Please can Apple fix this soon?

    Page and Numbers are having the same problem.  It gets so irritating that I have turned off the icloud drive for both apps.

  • Port with multi-vlan for voice and data??

    Hi guys,
    I've a situation where my VOIP and DATA on a different segments. Voice is 10.x.x.x riding on VLAN 701. And my data is 192.x.x.x riding on VLAN 100.
    The problem occur when our receptionist PC have a software installed for call forwarding for our general line. This software need to be on the same vlan with the IP Phone vlan which is 701. If I put her PC on those vlan, she can't access
    to our LAN which is vlan 100. So she can't check her email etc.
    Can I know what is the options I have? Can I configured multi-vlan for her PC on the switch? We are using Cisco PoE 3560 switch. Thanks.

    Hi,
    on the L3 switch, you should have an IP address for both VLAN 701 and 100. So, the L3 switch is doing inter-VLAN routing.
    This means, unless you have ACL blocking traffic, any device will be able to reach any other device, even on a different VLAN.
    And, no matter where you put voice and applications, everything will work anyway.

  • Does Adobe have a free download for pdf and data files

    I cannot open pdf files AND data files with this expensive pc & Windows 7 HELP

    Don't know what are "data files", but you can open PDF files using the free Adobe Reader: Adobe - Adobe Reader download - All versions

Maybe you are looking for

  • Simple Mail Merge from Apex

    Hi All, I have a simple Report in Apex 3.0 that displays 10 people in the format Firstname Surname. I have linked this Report to BI Publisher and my RTF Template is setup as: - Dear Firstname Surname The Report opens OK in either PDF or Word format,

  • Org Unit that controls shipping activities

    Question- Which is the org unit that controls the shipping activities of goods? Ans-1. Plant and storage location Ans-2. Shipping point Ans-3. Distribution channel Which one is the correct?

  • System.UnauthorizedAccessException: Retrieving the COM class factory

    System.UnauthorizedAccessException: Retrieving the COM class factory for component with CLSID {5EFA39FA-B2C4-4A6E-84D6-C3333D1A3D07} failed due to the following error: 80070005. I'm trying to deploy asp.net 2005 app with Crystal Reports XI Release 2.

  • Blackberry Desktop Software and Palm Desktop v6.2

    I am a happy new Blackberry so far, but have come across something that is very annoying.  I am attempting to move the data off my Palm TX, but the Blackberry Desktop does not recognize the version of the Palm Desktop software that I am using. What i

  • Can Spotlight be removed?

    I have tried to remove any Spotlight file I can find in Sys/Library and Library. I no longer see Spotlight in the top row of System Preferences. But it still is in the menu bar constantly indexing my drives and slowing everything down. I previously h