Replace source code with destination code

Hi,
How to replace a program in source system with the program in production system technically?
Thanks in advance...

hi,
Using Version Management you can do that.
Use menupath...
Utilies->Vesion->Version Management.
Check the lastet request whcih exist in the Production sytem using Remote Comparsion Button
After know the Request number Select the request number in the source system and press retrive.

Similar Messages

  • Pagination of output  php code with sql code

    if one program of php including sql query
    it seems to output wrong .(means some data will be calculated sum)
    if php code output all data in one page.pagination
    it seems to output right(means some data will be calculated sum)
    if there has column of company including two companies of A and B.
    and if each page output 3 lines while A company has 4 lines in sql query,so
    the last line of A company will output in second page,
    i want to calculate A company including 4 lines sum
    how to calculate sum of company of A in second page.
    i think it will be a good interesting question of php code with sql code.
    who can solution thus question ?
    thanks !

    Hi,
    for Example:
    SELECT sum(quantity * price)
    FROM orders
    WHERE COMPANY = 'A';
    This will give you the total amount for company A.
    But remember that your example table will give no output, since you have no price column. So you must decide, what which sum to calculate.
    A sum only calculated over the quantity makes IMHO no sense, because there are apples and bananas ...
    Greetings from Hamburg
    Thorsten Körner

  • Compare owb 9i code with 11g code

    HI
    Recently we migrated the 9i OWB's to 11g pls files.I need to verify whether correct versions were migrated or not.
    is there any way to Compare the 9i OWB's with 11g pls files?
    Note:9i databases with all OWB Components and 11g databases with new code is available.

    Hi
    Since you are using LCT Oracle to Oracle dblink you might as well remove the source execution unit and put the operators in the Oracle default target execution unit.
    Cheers
    David

  • Mapping of tax code with juridiction code

    Hi MM Experts
    While releasing service entry i m geting error " Message FF718 (tax code does not exist fo jurisdiction code)"
    i have checked in FTXA tax code is mapped with juri code.
    pls tell me where is the problem.
    Thanks
    Anubhav

    Hope you have created Tax Code with Jurisdiction in FTXP Properly and Checked the Jurisdiction in Purchase ORder Item Detail Invoice Tab.
    Now Check in OBCL whether Jurisdiction is Assigned to Company code.
    Regards,
    Ashok

  • [Beta 6] Camera is crashing on simple code with exit code 101

    First time it was perfect
    Second time application failing with exit code 101
    If I don't use result image. For example remove line: imageView.image = image;
    then it works!
    Any ideas?
    [q]
    - (void)showCamera {
    // Set up the image picker controller and add it to the view
    UIImagePickerController *imagePickerController = [[[UIImagePickerController alloc] init] autorelease];
    imagePickerController.sourceType = UIImagePickerControllerSourceTypeCamera;
    imagePickerController.delegate = self;
    imagePickerController.allowsImageEditing = NO;
    [self presentModalViewController:imagePickerController animated:YES];
    - (void)imagePickerController:(UIImagePickerController *)picker
    didFinishPickingImage:(UIImage *)image
    editingInfo:(NSDictionary *)editingInfo
    [picker dismissModalViewControllerAnimated:YES];
    imageView.image = image;
    [/q]

    did you ever figure this out?
    i am having the same thing, but i assumed it was an out of memory problem...

  • Mapping of GL code with material code

    Hi MM experts
    is there any table where i can find GL code that is mapped with material code.
    Regards
    Anubhav

    i think there is no standard report existing for this GL material combination, also the same info is not also in same table. so i feel you can develop a report through SAP query or ask your abaper to develop it for you that material valuation class and GL account combination. you can use mm60 which have material and val. class combination
    regards,
    qsm sap

  • How to replace special characters with html code characters automatically?

    A colleague and I work on these html pages. They eventually end up as emails, but we have the cold fusion server to pre process them. One thing we are trying to do is eliminate problems caused by unencoded copyright, trademark and smart quote symbols.
    How could I create an array of find / replace commands in the header so it processes the HTML with correct character codes.
    I"m not cold fusion aware, so any kind of starter info would be great. Eventually I might add more replacements to the array.
    As an example TM (font character) would process to ™ and a smart quote or apostrophe would process to a straight one. an en dash character would become –
    Because we copy paste from places, this often happens and it seems like cold fusion could solve the problem quickly and repeatedly all at once.
    thanks for any help
    -smick

    CF has a built in HTMLEditFormat function for handling <  &  > characters.  For handling trademark and smart quote characters you might try searching for a user defined function at http://cflib.org or writing a user defined function yourself that will handle the specific characters needed in your application.

  • Does trim replace some characters with control code versions in xml?

    I am using trim to remove extra white space and linefeeds from xml files and it works fine except that occasionally it replaces xml close element symbols (>) with the control code > used to delineate a > symbol that is not to be interpreted as as the xml character. What gives here? I thought all trim did was eliminate leading and trailing characters whose code was greater than '\u0020'.
    I am using Java 1.5 but this happened with 1.4 as well.

    Yes,
                             <md.decideddate>20060612</md.decideddate>
    apparently has the final '>' replaced by &gt.
    This does not happen consistently and can only be seen when loaded to IE. The Framework that I am working with in Websphere sees the error but neither XMLSpy or Eclipse has a problem with the file.
    Here's what I get when I load the file to IE:\
    An invalid character was found in text content. Error processing resource 'file:///C:/Projects/Rex/testdata/input/content/R...
    <md.dates><md.filedate>May 26, 2006</md.filedate><md.decideddate>20060526</md.decideddate&g...
    I find this very strange.

  • Sql code with php code

    for example:
    create table testtable (
    sales_area varchar2(30),
    sales_comp varchar2(40),
    sales_market varchar2(30),
    order_number number(20),
    order_date varchar2(20),
    item_id number(15),
    quantity number(20),
    item_desc varchar2(50)
    insert into testtable values ('westarea','acompany','amarket','52001',1001,1,10,'apple');
    insert into testtable values ('westarea','acompany','amarket','52005',1002,2,20,'banana');
    insert into testtable values ('eastarea','bcompany','bmarket','52002',1003,2,50,'banana');
    insert into testtable values ('eastarea','bcompany','bmarket','52004',1006,1,30,'apple');
    insert into testtable values ('eastarea','bcompany','bmarket','52003',1007,1,30,'apple');
    insert into testtable values ('westarea','ccompany','cmarket','52006',1003,1,30,'orange');
    insert into testtable values ('westarea','ccompany','dmarket','52007',1004,3,60,'orange');
    commit;
    select *
    from testtable
    it outputs below:
    westarea     acompany     amarket     52001     1001     1     10 apple
    westarea     acompany     amarket     52005     1002     2     20 banana
    eastarea     bcompany     bmarket     52002     1003     2     50 banana
    eastarea     bcompany     bmarket     52004     1006     1     30 apple
    eastarea     bcompany     bmarket     52003     1007     1     30 apple
    westarea     ccompany     cmarket     52006     1003     1     30 orange
    westarea     ccompany     dmarket     52007     1004     3     60 orange
    use php code outputs like below php code :
    apple banana orange .......
    westarea     acompany     amarket     52001     1001     10
    westarea     acompany     amarket     52005     1002     20 ........
    acompany 10 20 .........
    westarea     ccompany     cmarket     52006     1003          30 .........
    westarea     ccompany     dmarket     52007     1004          60 .........
    ccompany 90 .........
    westarea 10 20 90 .........
    eastarea     bcompany     bmarket     52002     1003     50 .........
    eastarea     bcompany     bmarket     52004     1006     30 .........
    eastarea     bcompany     bmarket     52003     1007     30 .........
    bcompany 60 50 .........
    eastarea
    total 70 70 90 ......
    make below php code output a new table:
    <?php
    $v_item_count = count(array(item));
    echo"<table border = 1>";
    echo "<tr>";
    echo "<td rowspan="2">sales area</td>";
    echo "<td rowspan="2">sales comp</td>";
    echo "<td rowspan="2">sales market</td>";
    echo "<td rowspan="2">customer_number</td>";
    echo "<td rowspan="2">order_number</td>";
    echo "<td colspan="'||to_char($v_item_count)||'">categories and quantities</td>";
    while ($row = oci_fetch_array ($stmt, OCI_BOTH)) {
    echo "<tr>";
    echo "<td>".$row['ORDER_NUMBER']."</td>";
    ?>
    who can help me?

    for example:
    while ($row = oci_fetch_array ($stmt, OCI_BOTH)) {
    echo "<tr>";
    echo "<td>".$row['ORDER_NUMBER']."</td>";
    echo "<td>".$row['ORDERED_DATE']."</td>";
    for ($i=0; $i<sizeof($items); $i++) {
    echo "<td>".$row[$i]." </td>";
    echo "</tr>";
    echo "</table>";
    ?>
    above php code should output plentites of lines while it output few lines.
    i don't know there has many lines outputed?
    who can help me?

  • Tax code with Jurisdiction Code

    Dear Gurus,
    How to find the Tax code is assigned to how many Jurisdiction codes, is there any Table for checking the same.
    regards,
    Gopi.P

    Dear,
    Use table A053
    Regards,
    Chintan Joshi

  • I am looking to replace the hypertermi​nal with labview code

    I am trying to replace the hyperterminal with labview code. I am getting visa read error. Please provide me the sample code or let me know where I can find the sample code?
    Thanks
    Jey
    Attachments:
    SERIAL_READ.vi ‏50 KB

    Jey,
    here is my hyperterm replacement, I use it for first serial tests on new devices.
    It's maybe more than you need and not even documented.
    It's in LabVIEW 7.1 now (was 6.1), and this new serial assistant looks even more powerful than this, however I haven't used the assistant (started with LV3.1 ;-)
    Greetings from Germany
    Henrik
    LV since v3.1
    “ground” is a convenient fantasy
    '˙˙˙˙uıɐƃɐ lɐıp puɐ °06 ǝuoɥd ɹnoʎ uɹnʇ ǝsɐǝld 'ʎɹɐuıƃɐɯı sı pǝlɐıp ǝʌɐɥ noʎ ɹǝqɯnu ǝɥʇ'
    Attachments:
    Serial tester.llb ‏196 KB

  • Replacing the bapi with the new bapi for purchase order creation

    Hi,
       In the customised code call is there for the bapi function module  'BAPII_PO_CREATE'.
       Iam trying to replace the call with the code that calls function module 'BAPI_PO_CREATE1'.
       Please help me about what changes I needed to do in the code . As there is much mismatch in the import and export parameters
    and tables in both the function modules.
       Thanks in advance.
    Edited by: anwar.indya on Mar 25, 2011 2:18 PM
    Edited by: anwar.indya on Mar 25, 2011 2:19 PM

    Hi,
    As per  u r requirement
    you can use  : BAPI =>    BAPI_PO_CREATE  with suitable Document  Type ( Stock trasnfert : STO )
    IF  u want to auto po must be created after each delivry in this case you need to use BADI
    'MB_MIGO_BADI; In This BAPI  There is method : POST_DOCUMENT
    In this method u can write code for Auto PO Creation by using BAPI .
    Hope This will Resolve u r query.
    Thanks and Regads
    Santosh

  • Replacing Media Player with another player

    I've had a couple issues with my RoboHelp project's media
    files autostarting on some Macs. So, I tried replacing RoboHelps
    default Windows Media Player code with Quicktime code. But, in
    RoboHelp, when I leave the "HTML" disply and re-enter the "Design"
    display, RoboHelp deletes my Quicktime code and replaces it with
    its default Windows Media Code. Does anyone know how to over-ride
    this?
    -Greg

    Hello Greg -
    I don't use the RH find/replace function - I use stand-alone
    software and do the search/replace on the generated files (the
    files we publish). Look into your generated code for those
    references to Windows Media, copy the string as your "find" and
    write your desired string as the "replace" then do "replace all".
    There are a number of these programs available and have been
    mentioned many times in this forum. One popular tool is FAR from
    www.helpware.net but a search will bring up others.
    In our situation, I need to replace a couple generated files
    (files that are created by RH every time the project is generated).
    I took a gen'ed file then modified it and saved it to a separate
    project folder. After gen'ing a project we copy the saved/modified
    files into the generated project folder then publish.
    Regards,
    GEWB

  • One report, One Source System with multiple Company Codes -- Authorization

    Hello Guys
    We have 2 DEV source systems for our BI implementation right now. one for US (CCode - 406) an one UK(CCode - 301).
    We have already completed the implementation for UK with 38 reports.
    we are right now moving the US implementation.
    when we move to QAS we are going to have one Source system with both US and UK data.
    so when we move to QAS, the US clients wants to view the reports developed in UK implementation with their own data.
    How can we do that. since some reports doesn't have company code to restrict the data to respective users.
    Thanks and Kind regards,
    shekar.

    Hi
    First make the company code authorization relevant in infoobject BEx explore tab
    If your in BI7 , you have analysis authorization concept
    http://help.sap.com/saphelp_nw70/helpdata/en/66/019441b8972e7be10000000a1550b0/frameset.htm
    Regards
    N Ganesh

  • How to replace & with escape code?

    Hi,
    I want to replace all occurence of & in a string with escape code '%26' . Is the following lines of the code the right way to do this? Please help. Thanks.
    String test;
    test.replace('&', '%26');

    Have you tried it? What was the result?
    Anyway. Looking at the javadoc:
    http://java.sun.com/j2se/1.4/docs/api/java/lang/String.html#replace(char, char)
    I see that replace takes a character and replaces it with another character. So it seems that your fragment won't work. Perhaps you ought to look at:
    http://java.sun.com/j2se/1.4/docs/api/java/lang/String.html#split(java.lang.String)
    and try something like (untested code):
    String someString = "This & is & a Str&ing";
    String[] elements = someString.split("&");
    StringBuffer buffer = new StringBuffer( elements[0] );
    for ( int i = 1; i < elements.length; i++ ) {
        buffer.append( "%26" );
        buffer.append( elements[i] );
    someString = buffer.toString();Optimization is left as an excercise for the pedantic reader.

Maybe you are looking for

  • BI Publisher Report Issue in 11G(HTML format)/ OBIEE 11.1.1.7 version

    Hi All, I have migrated reports from 10g to 11g. Issue i am facing is that "reports open in HTML format by default & reports alignment has been distorted in 11g". Also if i change the format to PDF ,its working fine. I am not able to figure it out wh

  • Installation of OSB on top of SOA 11g

    Hi Gurus/Experts, I have installed Oracle SOA Suite 11g(11.1.1.5.0) in my system and working fine as of now.But now I want to install OSB on top of this, so can I install OSB or do I need to deinstall Oracle SOA Suite11g and then freshly install OSB

  • Win 7 and J6480 wireless

    I have the officejet J6480 set up wireless through a linksys router.  I got a new HP laptop yesterday and finally got  the printer installed on it by using windows update and in the printer folder, add printer, local port, standard TCP/IP port, selec

  • Cannot silence calendar alert with multiple appointments

    I've noticed that I cannot silence a calendar alert if I have more than one appointment at the alert time.  This is not a problem if I only have a single appointment.  Has anyone else noticed this?  It's not new to this version of iOS.

  • Why did the backup option disappear with the newest iOS update.... now I cannot update my phone?!

    with the new iOS update the settings > icloud > "back up now" option disappeared. I cannot find a way to back up my phone at all! someone help? its not automatically updating either.