How to combine these two inserts into a single insert ststement.

INSERT ZFMKSTEL FROM FS_TEMP_ZFMKSTEL.
fs_temp_zfmkstel-nrart = 'H'.
fs_temp_zfmkstel-proz1 = '100'.
insert into zfmkstel values fs_temp_zfmkstel.

Hi,
U can use any one
First fill the values in wa
fs_temp_zfmkstel-telnum = fs_temp_zfm_handy-telnum.
fs_temp_zfmkstel-nrart = 'H'.
fs_temp_zfmkstel-proz1 = '100'.
insert into zfmkstel values fs_temp_zfmkstel.
Reward if this helps.

Similar Messages

  • How to combine 20 identical shots into a single composite image

    I want to shoot a moving water scene with a tripod mounted Canon DLSR and take +/- 20 images from the exact location and then combine them into a single composite shot in photoshop CS6.  How do I go about this?

    It sounds like you want to do image stacking. See Photoshop Help | Image Stacks (Photoshop Extended).

  • How to combine Submit and Commit into a single operation?

    JDev 11.1.1.6
    Is there a simple way to combine Submit and Commit or Create and Commit or Delete and Commit into a single operation without creating a custom Operation class?
    Thanks,
    PeeVee

    Have a button and in the action listener event..you should drag and drop both create & commit onto your page so that it will have the required bindings in the pagedef.
    OperationBinding createOperationBinding = ADFUtils.getOperationBindingForMethod("Create");
    createOperationBinding.execute();
    OperationBinding commitOperationBinding = ADFUtils.getOperationBindingForMethod("Commit");
    commitOperationBinding.execute();

  • How to combine 2 spool id into a single PDF file

    Hi,
    I need to combine 2 or more spool id into a single PDF file.
    i.e the downloaded PDF file should contain the data of all the specified spoll ids
    Thank U
    Narendra

    Hi,
    Use FM "RSPO_RETURN_ABAP_SPOOLJOB" to get the spool into internal table.
    Append the internal table with data of another spool & then pass the internal table to the FM mentioned in above reply.
    Best regards,
    Prashant

  • How to combine several .MOV's into a single .MOV video?

    Hi all,
    I want to make a video xmas card for one of my friends. I would like to film several little tid-bits of myself in different places saying random stupidities but would like her to receive it in only one video instead of several.
    I use a basic digital camera that has video. When I transfer the videos to my mac, they come out in .MOV format.
    HOw do I stitch all of these together?
    I hope I dont need to buy something!
    Thanks a million

    Have you tried using iMovie? It is part of the iLife suite which comes preinstalled on all Macs.

  • How to combine 4 angle shots into a single video clip

    First of all, I am very much a novice in video editing and have yet to try Adobe Premiere.
    I am working on a video project which will film a single subject from 4 different angles:  front, back, left and right.
    I would like to create a video clip which shows all 4 angle shots playing at the same time.  Basically the video has 4 quadrants with each quadrant playing one of the angles.
    Is this possible to do in Adobe Premiere?  Any references or instructions?
    Thanks.
    DP

    I think that this link will reveal all.
    http://tv.adobe.com/videos/multicam/

  • How to combine below 4 queries into a single query?

    SELECT COUNT(*) AS NORMAL_PASS
    FROM (
    SELECT MAINSERNO
    FROM SGSTUDENT.PPL_PRODUCT_TESTID2
    WHERE (MONO = '5954556' AND TESTMODE =1 AND TESTFLAG =1)
    SELECT COUNT(*) AS NORMAL_FAIL
    FROM (
    SELECT MAINSERNO
    FROM SGSTUDENT.PPL_PRODUCT_TESTID2
    WHERE (MONO = '5954556' AND TESTMODE =1 AND TESTFLAG =2)
    SELECT COUNT(*) AS REPEAT_PASS
    FROM (
    SELECT MAINSERNO
    FROM SGSTUDENT.PPL_PRODUCT_TESTID2
    WHERE (MONO = '5954556' AND TESTMODE =2 AND TESTFLAG =1)
    SELECT COUNT(*) AS REPEAT_FAIL
    FROM (
    SELECT MAINSERNO
    FROM SGSTUDENT.PPL_PRODUCT_TESTID2
    WHERE (MONO = '5954556' AND TESTMODE =2 AND TESTFLAG =2)

    Are you looking for the below:
    SELECT COUNT(*) as Cnt, 'NORMAL_PASS' as [Type]
    FROM (
    SELECT MAINSERNO
    FROM SGSTUDENT.PPL_PRODUCT_TESTID2
    WHERE (MONO = '5954556' AND TESTMODE =1 AND TESTFLAG =1)
    Union All
    SELECT COUNT(*) , 'NORMAL_FAIL'
    FROM (
    SELECT MAINSERNO
    FROM SGSTUDENT.PPL_PRODUCT_TESTID2
    WHERE (MONO = '5954556' AND TESTMODE =1 AND TESTFLAG =2)
    Union All
    SELECT COUNT(*) , 'REPEAT_PASS'
    FROM (
    SELECT MAINSERNO
    FROM SGSTUDENT.PPL_PRODUCT_TESTID2
    WHERE (MONO = '5954556' AND TESTMODE =2 AND TESTFLAG =1)
    Union All
    SELECT COUNT(*) , 'REPEAT_FAIL'
    FROM (
    SELECT MAINSERNO
    FROM SGSTUDENT.PPL_PRODUCT_TESTID2
    WHERE (MONO = '5954556' AND TESTMODE =2 AND TESTFLAG =2)
    Or
    SELECT MAINSERNO,Count(Case when TESTMODE =1 AND TESTFLAG =1 Then 1 Else NULL End) as 'Normal_Pass',
    Count(Case when TESTMODE =1 AND TESTFLAG =2 Then 1 Else NULL End) as 'Normal_Fail',
    Count(Case when TESTMODE =2 AND TESTFLAG =1 Then 1 Else NULL End) as 'Repeat_Pass',
    Count(Case when TESTMODE =2 AND TESTFLAG =2 Then 1 Else NULL End) as 'Repeat_Pass'
    FROM SGSTUDENT.PPL_PRODUCT_TESTID2
    WHERE (MONO = '5954556')

  • How to combine 2 table rows into 1

    Hi,
    I have an interesting situation where I have two table rows which represent the same row but with a different set of attributes, and I want to combine these two rows into one row for display with in my ADF table. Is there a way that I can manipulate my table data to do this before it is rendered within my table?
    As an example I have:
    Name | Type | Attribute
    T1      A        blue
    T1      A        red
    T2      B        green
    Instead of displaying the above I would like to display
    Name | Type | Attribute
    T1      A      blue, red
    T2      B      greenAny help is appreciated,
    -Wraith
    Edited by: wraith101 on Oct 8, 2012 2:42 PM

    Frank,
    create a database view that calls a stored function to parse the duplicate values into a comma separate string and then built the ADF BC entity and view on top of this. This issue is not really one that should be fixed on the >model or UI layer. Building entity view is not a good idea, as all views are not update able, and in this scenario it would'nt be.

  • HT1473 My girlfriend and I both have iTunes account with our own music libraries and we want to combine our two libraries into one icloude accounts so can both then access our one shared libary at anytime in the cloud.  How do we do this?

    My girlfriend and I both have iTunes account with our own music libraries and we want to combine our two libraries into one icloude accounts so can both then access our one shared libary at anytime in the cloud.  How do we do this?

    No it is not possible.  Content purchased from the iTunes Store is permanently tied to the account from which it was originally purchased, and Apple does not provide a way to change it.

  • How can I combine these two DAQ tasks???

    I am using LabVIEW 11, Windows XP, cDAQ-9174 chassis, two NI-9205 modules.
    Please see my code for reference. I am very new so i will accept all suggestions.
    I am acquiring 12 volatage signals in a producer/consumer structure giving me a queue of 1-d array of waveform(dbl). Then I am acquiring 12 voltage signals in another loop giving me 2-d array of waveform(dbl).
    There is an issue creating the channels. How can I combine these two tasks?
    Thanks,
    ~Chris
    Attachments:
    WaveTest_6.2.vi ‏558 KB

    Hello chrisbe723,
    When you say that there is an issue creating the channels, are you getting a specific error message when running your code? Also are you referencing the same set of channels for the two DAQ task you are configuring?
    Paul-B
    Applications Engineer
    National Instruments

  • Need help on combining these two program

    Hi all,
     I needed some help on combining these two program. But i not very sure how to do it.
    My program in working with TimeIn/TimeOut attendance taking. The snippet vi "insert data" is the where i start to TimeIn and insert into the microsoft access. And i wanted to insert it together with a camera catching the user's face. But i have no clues on how to combine them.
     Can u guys give me some ideas to help me ?
    Thanks in advance.
    Attachments:
    IMAQdx.png ‏55 KB
    insert data.png ‏68 KB

    Hi Himanshu,
    But if i put everything inside the IMAQdx loop ,it make my whole program more complicated. 
    This is how my program looks like below.
    I only want to display the image only when i "insert" all data into the database ( which i given at the perivous post).
    Is there other way?? And how do u make the IMAQdx loop stop without putting a stop button?? Because everytime i run the program,it will run continuously at the IMAQdx loop..
    Thank in Advance.
    Attachments:
    FYP.png ‏205 KB

  • How do you combine 2 mono tracks into a single stereo track?

    Question here:
    How do I combine 2 mono tracks into a single stereo track in Logic?
    I recorded using my left and right out of my keyboard to a hard-disk recorder (Korg d888). The files are made as two separate wav files. Is there way to combine these in Logic so I can treat it as one stereo track?
    I have several files to do and am hoping Logic has something like a "combine tracks to stereo track" tool or something.

    Solo both tracks and bounce them with no effects and faders at 0 dB.

  • How do i combine multiple pdf file into a single pdf file?

    how do i combine multiple pdf files into a single pdf file?

    The thread was started in early March and it's Mid-April, I know this very well. The OP of this thread posted a very common and simple question or maybe he/she would have resolved this. For an Adobe Acrobat user it's not at all difficult to combine multiple PDF files into one. But to combine PDF files full version of Adobe Acrobat is mainly required, otherwise PDF files can't be combined. For example, I'm using Adobe Acrobat 9 Pro. These simple steps are mainly required to combine PDF files:
    Open Adobe Acrobat.
    Click on Combine and click on Merge files into a single PDF.
    A window will be appearing, click on Add Files and select the PDF files you want to combine.
    Arrange the selected files in any order with the help of Move Up and Move Down button.
    Now click on Combine File and the selected PDF files will be combined within a few seconds.
    A new PDF file will be created. Click on Save As and name this new PDF file. Then, click on Save.
    A new PDF file will be created and all the selected PDF files are combined in it. The steps shown above might be different in other versions of Adobe Acrobat. Other than this, some third-party PDF merge software are also available. Most of them are available with a demo version for free evaluation. I've heard much about SysInfoTools PDF Merge software on other forums and directories and it's demo version is freely available. One may check its demo version if Adobe Acrobat (full version) is not available.
    Regards

  • How to combine 2 diff transactions into 1 transaction

    Hi All,
    I want to combine 2 diff transactions into single transaction so taht i can run these 2 at a time as a single transaction. Currently we have 2 diff transactions which we need to run one after anether. So we want to combine these 2 transactions as a single transaction. Is it possible, how we can do that. thanks in advance.
    Thanks,
    Vishal

    U can create a ABAP which calls the transaction one after another...and assign the new ABAP a transaction
    code using SE93.
    Basically the abap would like below.
    Report Ztrans.
    start-of-selection.
      call transaction ZT01.
      call transactin ZT02.
    Regards
    Anurag
    Message was edited by: Anurag Bankley

  • How do I combine several pdf files into a single file (MAC OS)?

    How do I combine several pdf files into a single file ?
    MAC OS 10.6.8
    Adobe Reader 11.0.10
    Signed: Ken, in Utah

    Not possible with Reader. You need Acrobat or a subscription to something like PDF Pack to do it.

Maybe you are looking for

  • Does File Move work in PSE 7.0?

    I have files scattered across two hard drives as a result of having two catalogs. For my primary catalog, I would like to consolidate all of the actual picture files onto a single location on one drive. I tried to use the File > Move command and opte

  • Any Way To Trade In iPod?

    I heard that Apple had some recycling program where they "safely recycle" your iPod and give you $30 off your next purchase. Are there any better deals than that? I paid $300 for my 4th gen iPod and only getting 1/10 of that doesn't really seem fair.

  • How do I turn the flash notificaiton off on my 4S when receiving texts

    How do I turn the flash notificaiton off on my 4S when receiving texts

  • To take only first 12 chars doing SELECT

    Dear ABAPers I am doing SELECT single * from TAB     where A = MYKEY. if SY-SUBRC=0.   MYKEY2 = TAB-A. endif. The question is u2013 I need to take(analyse) only first 12 chars of A . Say, A is 20 chars, MYKEY is 12 chars. Is that possible to catch on

  • NAC L2 OOB Auth and Access VLAN

    I'm new to Cisco NAC appliance. I wanted to deploy L2 OOB VGM for my wired userd. I wanted to check whether can I have multple Authentication to Access VLAN mapping. For example : Authentication VLAN - 111 Map to Trusted VLAN 311 and Authentication V