Hi all, i didn't get my output using smartform?

Hi,
Can i copy standard program sapfm06p to zprogram.where can i write my code for smartform(my zprogram).in that program.plz help me urgent.

Hi,
1.For PO ,the smartform driver program is not sapmf06p.The form name is /smb40/mmpo_A or _l.
2.Copy this form and write code in program lines of smart layout.
3.For help :
http://www.****************/Tutorials/Smartforms/SFMain.htm
4.Driver program is :
PUCHASE ORDER
Output type : NEU
ScriptForm Name : MEDRUCK
Driver Program Name : SAPMF06P
smartform name : /SMB40/MMPO_L
smartform driver program : /SMB40/FM06P
Regards,
Shiva Kumar

Similar Messages

  • How to get this output using sql query?

    Hi,
      How to get this output using sql query?
    Sno Name Age ADD Result
    1 Anil 23 delhi Pass
    2 Shruti 25 bangalor Pass
    3 Arun 21 delhi fail
    4 Sonu 23 pune Pass
    5 Roji 26 hydrabad fail
    6 Anil 28 delhi pass
    Output
    Sno Name Age ADD Result
    1 Anil 23 delhi pass
    28 delhi pass

    Hi Vamshi,
    Your query is not pretty clear.
    write the select query using Name = 'ANIL' in where condition and display the ouput using Control-break statements.
    Regards,
    Kannan

  • Reg: Error in Getting Wrong output using concurrent request

    Hi all,
    I created a rdf using oracle 10g report for below query
    SELECT EMPNO,ENAME,DEPTNO,SAL,MGR FROM EMP
    I Registered above created rdf in oracle apps with output format as xml
    when i ran the report using concurrent request, i am getting below output.     
         *<G_EMP>*
    *     <EMPLOYEE>*
    *          <EMPNO>1</EMPNO>*
    *          <ENAME>ALEX</ENAME>*
    *     </EMPLOYEE>*
    *     <EMPLOYEE>*
    *          <EMPNO>2</EMPNO>*
    *          <ENAME>RAGHU</ENAME>*
    *     </EMPLOYEE>*
    *<EMPLOYEE>*
    *          <EMPNO>3</EMPNO>*
    *          <ENAME>GURU</ENAME>*
    *     </EMPLOYEE>*
    *     </G_EMP>*
    NOTE:_
    I am not getting for rest of column in above query (ie. DEPTNO,SAL,MGR)_
    How to resolve this. Its urgent .. Plz

    Duplicate thread (please post only once).
    Reg: Plz Help me.. Not Getting output
    Reg: Plz Help me.. Not Getting output

  • One for the Tekkies: How to get this output using REGULAR EXPRESSIONS?

    How to get the below output using REGULAR EXPRESSIONS??
    SQL> ed
    Wrote file afiedt.buf
      1* CREATE TABLE cus___addresses    (full_address                   VARCHAR2(200 BYTE))
    SQL> /
    Table created.
    SQL> PROMPT Address Format is: House #/Housename,  street,  City, Zip Code, COUNTRY
    House #/Housename,  street,  City, Zip Code, COUNTRY
    SQL> INSERT INTO cus___addresses VALUES('1, 3rd street, Lansing, MI 49001, USA');
    1 row created.
    SQL> INSERT INTO cus___addresses VALUES('3B, fifth street, Clinton, OK 74103, USA');
    1 row created.
    SQL> INSERT INTO cus___addresses VALUES('Rose Villa, Stanton Grove, Murray, TN 37183, USA');
    1 row created.
    SQL> SELECT * FROM cus___addresses;
    FULL_ADDRESS
    1, 3rd street, Lansing, MI 49001, USA
    3B, fifth street, Clinton, OK 74103, USA
    Rose Villa, Stanton Grove, Murray, TN 37183, USA
    SQL> The REG EXP query shouLd output the ZIP codes: i.e. 49001, 74103, 37183 in 3 rows.Edited by: user12240205 on Jun 18, 2012 3:19 AM

    Hi,
    user12240205 wrote:
    ... Frank, ʃʃp's method, I understand. But your method, although correct, I find it difficult to understand.
    Could you explain how you did this?? What does '.*(\d{5})\D*' and '\1' mean???
    Your method is better because it uses only ONE reg expression function. ʃʃp's uses 2.In Oracle 10.2 (I believe) and higher, '\d' is equivalent to '[[:digit:]]', and '\D' is equivalent to '[^[:digit:]]'. I find '\d' and '\D' easier to type, but there's nothing wrong with using '[[:digit:]]' and '[^[:digit:]]'.
    '.*' means "0 or more of any character".
    '\D*' means "0 or more non-digits".
    The whole expression, '.*(\d{5})\D*' means:
    a. 0 or more characters (any characters)
    b. 5 digits
    c. 0 or more non-digits.
    '\1' is a Backreference . It means the sub-string that matched the pattern after the 1st '(', up to (but not including) its matching ')'. In this case, that means the sub-string that matched '\d{5}', or b. using the explanation immediately above.
    So the entire REGEXP_REPLACE call means "When you see a sub-string consisting of a., follwed immediately by b., followed immedately by c., replace that sub-string with b. alone."

  • How can i get belo output for smartform

    i want output like this for servise tax
    item at 50 servise tax 10.20%
    but i m getting output like this
    item at 50 servise tax 10.00%
    if ( t_komv-kschl = 'JSRE' OR t_komv-kschl = 'JSRF' OR
    t_komv-kschl = 'JSER' OR t_komv-kschl = 'JSVD' OR
    t_komv-kschl = 'JSRC' OR t_komv-kschl = 'JSRD') .
    IF t_komv-kschl = 'JSRE'.
        g_percentage = t_komv-kbetr / 10.
      ELSE.
        g_percentage1 = t_komv-kbetr / 10.
    ENDIF.
    add t_komv-kwert to l_stax-amt.
        l_stax-item_no = t_komv-kposn.
        l_stax-amt = t_komv-kwert.
        l_stax-per = t_komv-kbetr / 10.
        append l_stax to it_stax.
    ENDIF.
    IF ( ( g_percentage IS NOT INITIAL AND
    g_percentage1 IS NOT INITIAL ) AND
    ( t_komv-kschl = 'JSRE' OR t_komv-kschl = 'JSRF' OR
    t_komv-kschl = 'JSER' OR t_komv-kschl = 'JSVD' OR
    t_komv-kschl = 'JSRC' OR t_komv-kschl = 'JSRD') ).
    g_mul = g_percentage * g_percentage1.
    g_percentage3 = g_percentage + ( g_mul / 100 ).
    l_stax-per = g_percentage3.
    append l_stax to it_stax.
    clear : g_percentage, g_percentage1.
    ENDIF.
    thanks in advanced.

    Hi,
    You take Tax as
    Data: Tax type P(c.2).
    Then you will get as per your requirement.
    Thannks,
    Rani.

  • Quotation/Sales order output using SMARTFORMs ?

    Hi,
    Whether standard SMARTFORMs are available for printong Quotation/Sales order output?
    Please provide me details if available.
    Thanks & Regards
    Seshagiri.

    Hi Seshagiri,
    Take a look in table TNAPR for application V1 if you can find any entries in SFORM.
    Regards,
    John.

  • How to get the Output File Name as One of the Field Value From Payload

    Hi All,
    I want to get the Output file name as one of the Field value from payload.
    Example:
    Source XML
    <?xml version="1.0" encoding="UTF-8" ?>
    - <ns0:MT_TEST xmlns:ns0="http://sample.com">
    - <Header>
      <NAME>Bopanna</NAME>
      </Header>
      </ns0:MT_TEST>
    I want to get the Output file name as " Bopanna.xml"
    Please suggest me on this.
    Regards
    Bopanna

    Hi,
    There are couple of links already available for this. Just for info see the below details,
    The Output file name could be used from the field value of payload. For this you need to use the UDF DynamicFile name with below code,
    //       Description: Function to create dynamic Filename
    DynamicConfiguration conf = (DynamicConfiguration) container.getTransformationParameters().get(StreamTransformationConstants.DYNAMIC_CONFIGURATION);
    DynamicConfigurationKey key = DynamicConfigurationKey.create("http://sap.com/xi/XI/System/File" , "FileName");
    conf.put(key,a);
    return "";
    DynamicConfiguration conf = (DynamicConfiguration) container.getTransformationParameters().get(StreamTransformationConstants.DYNAMIC_CONFIGURATION);
    DynamicConfigurationKey key = DynamicConfigurationKey.create("http://sap.com/xi/XI/System/File" , "FileName");
    conf.put(key,a);
    return "";
    With this udf map it with the MessageType as
    (File Name field from Payload) > DynamicFileConfiguration>MTReceiver
    Thanks
    Swarup

  • Are You All Able to get the Output In EXCEL Format

    Hi All,
    I have one question. Are You All Able to get the Output In EXCEL Format?? I am working on Oracle Apllication 11.5.10.2 and my XML builder is 5.0.1. Problem which i m facing is this...... Whenever i am submitting a concurrent program with format type different from PDF i could not able to view the ouput in desired format. When i am pressing view output it gives me a file in XML and when i save that file with extention 'xls' or 'rtf' then i could able to see the saved file in desired format.
    Can anyone tell me where is the problem??? Is it a bug?
    I am using microsoft world 2000 sp-3.
    Please give your valuable comments. May be your comments can solve my problem..
    Thanks
    Ravi

    Hi I got Same issue
    When I change Format to EXCEL from
    Submit request>> Option>> Format = EXCEL
    In window I am getting something HTML code and
    when I try to copy it to Browser from Tools>> Copy File in to Browser I am getting following message
    The XML page cannot be displayed
    Cannot view XML input using XSL style sheet. Please correct the error and then click the Refresh button, or try again later.
    End tag 'p' does not match the start tag 'a'. Error processing resource 'http://our url.com:8000/OA_CGI...
    <p class="c0"><a name="Text4" id="Text4"><a name="Text1_1" id="Text1_1"><span class="c1">Dept No <...
    But I can see the output when Format is PDF
    Pls suggest solution ,I am using EBS 11.5.10.2.
    Thanks
    Rahul
    Message was edited by: Rahul
    user576181

  • All of the music on my Ipod Touch is blown out after I synched it with my new MacBook. I didn't get the 'synch' warning-- but now can't find my library of songs. I'm about to panic!

    All of the music on my Ipod Touch is blown out after I synched it with my new MacBook. I didn't get the 'synch' warning-- but now can't find my library of songs. I'm about to panic!

    The iPod backup that iTunes makes does not inlcuded synced media like apps and music. Thes those iTunes are not restored to the iPod unless they are in the iTunes library.
    Try:
    - Reset the iOS device. Nothing will be lost
    Reset iOS device: Hold down the On/Off button and the Home button at the same time for at
    least ten seconds, until the Apple logo appears.
    - Unsync all music and resync
    - Reset all settings
    Go to Settings > General > Reset and tap Reset All Settings.
    All your preferences and settings are reset. Information (such as contacts and calendars) and media (such as songs and videos) aren’t affected.
    - Restore from backup. See:       
    iOS: How to back up
    - Restore to factory settings/new iOS device.

  • I can get video on airplay anytime but i cannot get audio all the time.  in sound output i select airplay but it only reverts back to internal speakers.  same if i try earbuds.  the only way to fix it is to restart computer.  what do i do to fix it,

    I can get video on airplay anytime but i cannot get audio all the time.  in sound output i select airplay but it only reverts back to internal speakers.  same if i try earbuds.  the only way to fix it is to restart computer.  what do i do to fix it,

    In case anyone has had the same problem as me, I have just managed to fix this by doing the following:
    Switch off Mac
    Switch back on in Safe Mode (Hit power button, then hold Shift key until a loading bar appears at the bottom of the screen).
    Switch off Mac again
    Remove power cord and wait 15 seconds
    Plug power cord back in and hold down the keys alt, cmd, p, r all at the same time until you hear Starting chime for a second time and hopefully your audio will back.

  • 2006 iMac running 10.4 OS. I copied files to ext. drive. Put in 10.6 disc and did a clean install (format) of 10.6. Copied data from ext. drive back to Mac. I didn't get all the files. CAN I REVERT BACK TO THE 10.4 OS SO I CAN COPY MY DATA PROPERLY?

    2006 iMac running 10.4 OS. I copied files to ext. drive. Put in 10.6 disc and did a clean install (format) of 10.6. Copied data from ext. drive back to Mac. I didn't get all the files. CAN I REVERT BACK TO THE 10.4 OS SO I CAN COPY MY DATA PROPERLY?

    How did you copy files to the external drive, and what files did you copy? Did you drag and drop in the Finder? Use a clone utility? What files did not successfully copy?
    If you reformatted the drive as part of your install, then you won't be able to recover any files from the drive. Reverting back to (reinstalling) 10.4 will not help you.
    Do you have a complete-drive backup of your old system?
    Matt

  • I write the code like this ...i didn't get output properly

    Hi Experts,
    I write the code like this ...i didn't get output properly......the selected file name is not copied to v_fname........
    Points will be rewared...
    tables : kna1.
    parameters : P_FNAME  type rlgrap-filename.
    data : v_fname(200) type c . "lower case.
    data : begin of itab occurs 0,
           kunnr type kna1-kunnr ,
           end of itab .
    select kunnr from kna1 into table itab up to 50 rows .
    at selection-screen on value-request for P_FNAME  .
    CALL FUNCTION 'KD_GET_FILENAME_ON_F4'
      EXPORTING
         PROGRAM_NAME        = SYST-REPID
         DYNPRO_NUMBER       = SYST-DYNNR
         FIELD_NAME          = v_fname
      STATIC              = ' '
      MASK                = '   '
        CHANGING
          FILE_NAME           = P_FNAME 
    EXCEPTIONS
      MASK_TOO_LONG       = 1
      OTHERS              = 2
      IF SY-SUBRC <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
    start-of-selection.
      CALL FUNCTION 'GUI_DOWNLOAD'
        EXPORTING
      BIN_FILESIZE                    = 'v_fname'
          FILENAME                        =
         FILETYPE                        = 'ASC'
        TABLES
          DATA_TAB                        = ITAB
      IF SY-SUBRC <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.

    You are exporting field v_fname, not importing it.  The field v_fname isn't for the file name anyway; field p_fname is for the file name. You also need to pass your file name to the function module GUI_DOWNLOAD for it to work.
    - April King

  • I just upgraded from an iphone 4 to an iphone 5 and didn't get all of the apps

    I just got a new iPhone 5 and I upgraded from the iPhone 4.  I did sync my old phone before switching to the new phone.  When I set it up, I didn't get all of the pictures or apps I had on the old phone.  How can I fix that?  Thanks for any insight!

    Sign out, and then sign back into the app store. Make certain you are using the correct AppleID.

  • IPhoto says themes are missing and it won't print. All the support says to reload the application but I didn't get disks with the iMac. What do I do now.

    iPhoto says themes are missing and it won't print. All the support says to reload the application but I didn't get disks with the iMac. What do I do now.

    This is the ipod touch forum.
    Try posting in the ipod nano forum.

  • HT1933 Hello all! I bought an app on the apple store and eventhough it was charged on my credit card bill it still opens like if I had not purchased it. So I was charged but didn't get the app. I'm trying to report it but doesn't go through. What can I do

    Hello all! I bought an app on the apple store and eventhough it was charged on my credit card bill it still opens like if I had not purchased it. So I was charged but didn't get the app. I'm trying to report it but doesn't go through. What can I do? Thx

    you may delete this discussion. I fixed the issue

Maybe you are looking for

  • My exported mpeg2-dvd m2v file won't playback an image in Encore CS6 or QT?

    I've also posted in Encore, but this group sees a lot more traffic and supposed to deliver tomorrow. Exported media as mpg2-dvd from PP CC 2014, imported as timeline with the .wav into Encore as suggested here: Adobe TV I don't know if this is an exp

  • 8600 plus with mac osX, need to delete email addresses from scanner

    Have Mac osX snow leopard, need to remove/delete email addresses from my scanner list. Have tried to follow other posts to solve but they don't seem to help as I can't find the specific network folder. Thanks, Chuck

  • Problem downloading new Classic software.

    I plugged my iPod in a few minutes ago to discover that a new software download was available for my iPod Classic. When I click 'download and install', a pop-up window appears, telling me what's contained in the new software. From here, I click 'Next

  • My windows 7

    i have spoken with support twice i think, i am having to reinstall windows 7 and have no idea how it got than way. When i go to install the windows everything is fine until i get to where it is installing files and there is 4 different sections and t

  • Java file template and javadoc template

    Hello, Is there any way to define template file for java classes, and also template(s) for generated javadoc when you type "/**" above a class or method. regards, Rudi