Regd : output in program

*& Report  ZEXP6
hi,
in this below code if i give range of values in profit center it is taking only single value..please help me out in this.
REPORT  ZEXP6.
tables : coep,
         cepc,
         csks,
         aufk,
         cobk.
DATA : BEGIN OF itab_coep OCCURS 0,
       kokrs LIKE coep-kokrs,           " Controlling Area
       gjahr LIKE coep-gjahr,           " FiscalYear
       perio LIKE coep-perio,           " Period
       kstar LIKE coep-kstar,           " CostElement
       bukrs LIKE coep-bukrs,           " CompanyCode
       wogbtr LIKE coep-wogbtr,         " Amount in Object Currency
       mbgbtr LIKE coep-mbgbtr,         " Total quantity entered
       meinh LIKE coep-meinh,           " unit
       line_color(4) TYPE c,
       END OF itab_coep.
DATA : BEGIN OF itab_cepc OCCURS 0,
       kokrs LIKE cepc-kokrs,
       prctr LIKE cepc-prctr,
       khinr LIKE cepc-khinr,           " Profit Center Group
       END OF itab_cepc.
*DATA : BEGIN OF itab_ce OCCURS 0,
      kokrs LIKE csks-kokrs,
      prctr LIKE csks-prctr,
      khinr LIKE csks-khinr,           " Profit Center Group
      kostl like csks-kostl,
      END OF itab_csks.
data : begin of itab_final occurs 0,
       kokrs LIKE coep-kokrs,           " Controlling Area
       gjahr LIKE coep-gjahr,           " FiscalYear
       perio LIKE coep-perio,           " Period
       kstar LIKE coep-kstar,           " CostElement
       bukrs LIKE coep-bukrs,           " CompanyCode
       wogbtr LIKE coep-wogbtr,         " Amount in Object Currency
       mbgbtr LIKE coep-mbgbtr,         " Total quantity entered
       meinh LIKE coep-meinh,           " unit
       prctr LIKE cepc-prctr,
       khinr LIKE cepc-khinr,
     end of itab_final.
*DATA : BEGIN OF itab_aufk OCCURS 0,
      kokrs LIKE aufk-kokrs,
      aufnr LIKE aufk-aufnr,           " Order Number
      bukrs LIKE aufk-bukrs,
      prctr LIKE aufk-prctr,           " ProfitCenter
      auart LIKE aufk-auart,           " OrderType
      autyp LIKE aufk-autyp,           " Order Category
      END OF itab_aufk.
selection-screen : begin of block blk1 with frame title text-001.
PARAMETERS     : p_ca LIKE coep-kokrs obligatory .
SELECT-OPTIONS : s_year FOR coep-gjahr obligatory matchcode object zyear."default 2007 to 9999.
SELECT-OPTIONS : s_pd FOR coep-perio  obligatory .
SELECT-OPTIONS : s_code FOR coep-bukrs.
SELECT-OPTIONS : s_pg FOR cepc-khinr MATCHCODE OBJECT zprofitcentergroup.
SELECT-OPTIONS : s_pc FOR cepc-prctr.
  selection-screen : end of block blk1.
  SELECT kokrs gjahr perio kstar bukrs wogbtr
                      FROM coep INTO CORRESPONDING FIELDS OF TABLE itab_coep
                                                           WHERE kokrs = p_ca
                                                            AND perio IN s_pd
                                                            AND bukrs IN s_code
                                                            AND gjahr IN s_year.
  IF NOT itab_coep[] IS INITIAL.
  SELECT kokrs prctr khinr
                      FROM cepc INTO CORRESPONDING FIELDS OF TABLE itab_cepc
                                              for all entries in itab_coep
                                              where kokrs = itab_coep-kokrs.
  endif.
  loop at itab_coep.
    itab_final-kokrs = itab_coep-kokrs.
    itab_final-gjahr = itab_coep-gjahr.
    itab_final-perio = itab_coep-perio.
    itab_final-kstar = itab_coep-kstar.
    itab_final-bukrs = itab_coep-bukrs.
    itab_final-wogbtr = itab_coep-wogbtr.
    append itab_final.
    clear itab_final.
   endloop.
  loop at itab_final.
   READ TABLE itab_cepc WITH KEY kokrs = itab_final-kokrs.
    IF sy-subrc = 0.
      itab_final-prctr = itab_cepc-prctr.
      itab_final-khinr = itab_cepc-khinr.
      MODIFY itab_final TRANSPORTING prctr khinr.
    ENDIF.
endloop.
loop at itab_final.
write :/ itab_final-prctr,
          itab_final-wogbtr.
endloop.

Hi Vinutha,
I don't see any use of "SELECT-OPTIONS : s_pc FOR cepc-prctr" in your program?
Regards,
John.

Similar Messages

  • How do I output the program monitor from Premiere Elements 13 to an external TV monitor?

    I can find information about dual monitor set ups, but is it possible to output the program monitor only to an external monitor?
    If so, what is needed?
    I'm using PE`3 on a PC with Windows 7  64 bit  with an NVIDIA Quadro NVS 290.
    Thanks

    bobj
    Have not found a way, but....
    Do you have a HDMI cable and does your computer and TV each have a HDMI port.
    The TImeline panel appears to be the only undockable panel in the Premiere Elements 13/13.1 Expert workspace area (Window Menu/Dual Monitor)
    The best I can do is to make a HDMI connection between the HDMI ports of my computer and TV, with display at Duplicate or Extend. That does not appear to be what you seek.
    The other part of all this is that Premiere Elements used to have a "Playback Settings" in Project Settings and accessed from
    right clicking the Edit area monitor. That is no longer to be found in 13.1, even in a grayed out state. And, for me, the Playback Settings could not be made visible
    when attaching a 3rd party device.
    In the days of Premiere Elements 11, the answer to your question might have been as described in the following
    Adobe Premiere Elements 11 * Previewing movies
    Until proven otherwise, I am thinking that it cannot be done in Premiere Elements 13/13.1. But, I am not at a stage where I would put a never and always stamp on this.
    ATR

  • PO email output type program  causes unable to  print preview

    Hi Guys,
    i am customising a program for print preview email for PO output type, but the preview does not come out , here is the code:
    form entry_neu using ent_retco ent_screen.
      data: dtext like tline.
      data: l_druvo like t166k-druvo,
            l_nast  like nast,
            l_from_memory,
            l_doc   type meein_purchase_doc_print.
      clear ent_retco.
      if nast-aende eq space.
        l_druvo = '1'.
      else.
        l_druvo = '2'.
      endif.
      call function 'ME_READ_PO_FOR_PRINTING'
           exporting
                ix_nast        = nast
                ix_screen      = ent_screen
           importing
                ex_retco       = ent_retco
                ex_nast        = l_nast
                doc            = l_doc
           changing
                cx_druvo       = l_druvo
                cx_from_memory = l_from_memory.
      check ent_retco eq 0.
    concatenate l_nast-kschl 'for ' l_doc-xekko-ebeln  into
    l_nast-TDCOVTITLE separated by space.
      ekko = l_doc-xekko.
      perform set_textsymbol using '&EKKO-WAERS&' EKKO-WAERS.
      select adrc~name1 into rm06b-ltex1
        from t001
        join adrc
        on   adrcaddrnumber eq t001adrnr and
             adrc~date_from  le sy-datum   and
             adrc~nation     eq space
       where t001~bukrs = ekko-bukrs.
      endselect.
      select single regno into t9s01-regno
        from t9s01
        where bukrs = ekko-bukrs.
      if sy-subrc eq 0.
         T9S01-BUKRS = EKKO-BUKRS.
      endif.
      perform set_textsymbol using '&RM06B-LTEX1&' RM06B-LTEX1.
      perform set_textsymbol using '&T9S01-REGNO&' t9s01-regno.
      perform set_textsymbol using '&T9S01-BUKRS&' T9S01-BUKRS.
      lfa1-lifnr = ekko-lifnr.
      select single adrc~str_suppl3 into lfa1-name4
        from lfa1
        join adrc
        on   adrcaddrnumber = lfa1adrnr
        where lfa1~lifnr = ekko-lifnr.
      perform set_textsymbol using '&LFA1-LIFNR&' LFA1-LIFNR.
      perform set_textsymbol using '&LFA1-NAME4&' LFA1-NAME4.
      perform set_textsymbol using '&EKKO-WAERS&' EKKO-WAERS.
      perform read_text using 'F15' DTEXT-TDLINE.
      if dtext-tdline is initial.
            if ekko-ekgrp eq 'CP1' or ekko-ekgrp eq 'C03' or
               ekko-ekgrp eq 'P01' or ekko-ekgrp eq 'P02' or
               ekko-ekgrp eq 'P03' or ekko-ekgrp eq 'P04' or
               ekko-ekgrp eq 'P08'.
              move 'Requisitioner.' to DTEXT-TDLINE.
            elseif ekko-ekgrp eq 'CP2' or ekko-ekgrp eq 'C01' or"B0691
               ekko-ekgrp eq 'C04' or ekko-ekgrp eq 'P05' or
               ekko-ekgrp eq 'P06' or ekko-ekgrp eq 'P07' or
               ekko-ekgrp eq 'P09' or
               ekko-ekgrp eq 'C05'.                             "B0691
              move 'Accounts Payable.' to DTEXT-TDLINE.
            else.                                               "B0691
              move 'Accounts Payable.' to DTEXT-TDLINE.             "B0691
            endif.
       endif.
       t9s02-text4 =  DTEXT-TDLINE(17).
       perform set_textsymbol using '&T9S02-TEXT4&' T9S02-TEXT4.
        CLEAR GV_NO_CONTRACT.
       perform read_text using 'F13' T9S02-TEXT7.
       IF T9S02-TEXT7 IS INITIAL. "Buyer did not type anything
           MOVE 'stipulated at the end of this PO.' TO T9S02-TEXT7.
           MOVE 'X' TO GV_NO_CONTRACT.
        ENDIF.
       perform set_textsymbol using '&T9S02-TEXT7&' T9S02-TEXT7 .
       SELECT SINGLE VERKF into LFM1-VERKF
           FROM LFM1
           WHERE LIFNR = EKKO-LIFNR
             AND EKORG = EKKO-EKORG.
       perform set_textsymbol using '&LFM1-VERKF&' LFM1-VERKF .
         loop at l_doc-XEKPO into ekpo where zwert = 0.
           if ekpo-peinh ne 0.
             ekpo-zwert =  ( EKPO-MENGE * EKPO-NETPR ) /
                           ( EKPO-PEINH * 1000 ).
           else.
             ekpo-zwert =  ( EKPO-MENGE * EKPO-NETPR ) / 1000 .
           endif.
           modify l_doc-XEKPO from ekpo.
         endloop.
    clear: gv_print, gv_terms, gv_tcode.
          gv_print = tnapr-FUNCNAME.
          gv_terms = tnapr-sform.
          gv_tcode = tnapr-FONAM5.
          call function 'Z_ME_PRINT_PO'
               exporting
                    ix_nast        = l_nast
                    ix_druvo       = l_druvo
                    doc            = l_doc
                    ix_screen      = ent_screen
                    ix_from_memory = l_from_memory
                    ix_toa_dara    = toa_dara
                    ix_arc_params  = arc_params
                    ix_fonam       = tnapr-fonam                "HW 214570
                    gv_no_contract = gv_no_contract
                    gv_print       = gv_print
                    gv_terms       = gv_terms
                    gv_tcode       = gv_tcode
    end of additions
               importing
                    ex_retco       = ent_retco.
        endform.
    did i miss anything in the coding? pls advice

    hi,
    There are two options.
    1. Change the output medium of the output type to Print putput 1(No 1).
    2. For the sender customer go to transaction XD02 and give your mail ID instead of the customers and check. You will get the output in PDF format.
    Thanks,
    Kasiraman R

  • URGENT: No chart in EBS output concurrent program

    I create a template with chart, when i previous it with the template builder it works.
    But if i use EBS concurrent program no chart is display in the output.
    If someone has ideas to this, please help me
    Thanks

    Hi Thiamass
    I think that he chart rendering libraries are not present in your appltop. We use an Oracle component called bibeans and their libraries are probably not present.
    I have ploughed through metalink but can not find the patch. Pls log a TAR and support can help you out, pls log it against 'BI Publisher (formerly XML Publisher)'
    Regards
    Tim

  • Query output through program

    Hi gurus,
    i am using a RSCRM_BAPI_REMOTE program to get the output of my query...
    will this program has the limitation of 65000 records output only like we have in our bex explorer..(MS EXCEL)
    if yes how to handle this situation.
    thanks n regards
    neel

    hi Neel,
    i think no, for rscrm limitation try check oss note 841635- RSCRM - overcome the 1'000'000 cell limit
    .. ODBO has the limit that it can only return 1'000'000 key figure values ...
    hope this helps.
    Symptom
    RSCRM makes use of BWs ODBO interface. ODBO has the limit that it can only return 1'000'000 key figure values even it supports more internally. For instance with one structure which is on the columns this number is the number of active key figures times the number of return rows.
    The error might occur in all application which uses the RSCRM interface to execute queries like TA RSCRM_BAPI, CRM Segment Builder, TA KELR or the Analyseprozess Designer.
    In general ODBO was not made for mass data. If a query execution dumps because of memory exhaust this note won't help! In this case the query needs to get split up into smaller queries or the packaging functionality should be used which does this automatically. But packaging is not always available.
    Other terms
    RSCRM; RSCRM_BAPI; APD; RSANWB; Analyseprozess Designer; Analysis Process Designer
    Reason and Prerequisites
    Restrictions of ODBO
    Solution
    This solution requires manual steps. As it is a little bit complex you should better import the according support package.
    The correction does three things. Mainly a new function RSCRMBW_GET_CELL_DATA_BAPI is introduced. As this function uses a parameter with a new type this type RSCRM_BAPI6111CD_LARGE_T is also introduced in type pool RSCRM. At last this functions needs to get called that's why method CL_RSCRMBW_BAPI->GET_CELL_DATA_V2 is modified.
    Unfortunately this correction cannot be automatically implemented. The functions must be created manually. Therefore you need to implement the new type first.
    1st) Download this note and try to apply it to your system. Only the type pool RSCRM and the method GET_CELL_DATA_V2 will work. Activate only the type pool in transaction SE80.
    2nd) Create the function RSCRMBW_GET_CELL_DATA_BAPI in function group RSCRMBW_TOOLS. (You could also create a function module in a customer function group. It does not depend on anything. But then you will need to modify its call within method GET_CELL_DATA_V2.)
    The interface should look as follows:
    IMPORT:
    I_DATASETID  LIKE BAPI6111GEN-OBJ_HANDLE
    I_START_CELL TYPE INT4
    I_END_CELL   TYPE INT4
    I_NO_TEXTS   TYPE C 'X'                 (pass value, optional)
    TABLES:
    E_T_CELL_BAPI TYPE RSCRM_BAPI6111CD_LARGE_T
    E_T_RETURN    LIKE BAPIRET2                     (optional)
    Afterwards fill the function module with the coding of the correction instruction or from the attached file via copy n paste. Applying the instruction within SCWB won't work unfortunately.
    Now you should be able to activate the function module and the method.

  • Final value of outputs after program stop

    Hi,
    I want to have a output on my AO of 0 to get the controlled machine stopped when the labview program stops.
    Can I set a final value of outputs after the program stop.
    I use Labview 2014 myRIO Student edition with the hardware myRIO.
    Many thanks in advance!
    Andi

    You just need to set the output to 0V after your loop.
    There are only two ways to tell somebody thanks: Kudos and Marked Solutions
    Unofficial Forum Rules and Guidelines

  • [b]what is output of program & why it is so?[/b]

    the program as below
    public class CDemo extends BDemo
         public void getObject(CDemo a ) {
                   System.out.println("Hi this is from c 5 ");
         public static void main(String[] args)
              System.out.println("Hello World!");
    /*          ADemo a=new ADemo() ;
              BDemo b=new BDemo();
              CDemo d=new CDemo();
              ADemo c=new CDemo();
              c.getObject(a);
              c.getObject(b);
              c.getObject(d); */
              ADemo c=new CDemo();
              System.out.println("=========================================");
              System.out.println("=========================================");
              System.out.println("=================****************=============");
              System.out.println("=================****************=============");
              System.out.println("=========================================");
              System.out.println("=========================================");
              c.getObject(new ADemo());
              c.getObject(new BDemo());
              c.getObject(new CDemo());
    class BDemo extends ADemo
         public void getObject(BDemo b ) {
                   System.out.println("Hi this is from B 18 ");
    class ADemo
         public void getObject(ADemo a ) {
                   System.out.println("Hi this is from A 29 ");
    }

    You could figure out the output yourself if you ran it yourself. If you don't know why it is so, take a guess at an explanation, and post the output and your guess here. Someone should then be able to explain whether you are right or wrong (and, if wrong, can explain why it is wrong).

  • Get output of Program RBDAPP01

    Hi All,
    I will be calling Program RBDAPP01 within my custom program to process all the IDocs with status 64 of basic type ISU_MR_UPLOAD.
    I have few questions regarding it:
    1. Do i need to Submit program for each Idoc as below
    SUBMIT rbdapp01   VIA JOB g_jobname
                            NUMBER  g_jobcount
                            WITH docnum = t_edidc-docnum
                            AND RETURN.
    or i can Submit the program for all the Idoc at once. But i thnk there is some check that if the number of Idocs is more than 100.
    Can any please help me with this?
    2. As i am calling this program within my custom program, is there any way i can get the Status of the Idoc that have been processed afer submitting the program. Like an output list of the program RBDAPP01. (The other way i know is to get the status of all the IDocs from EDIDC table)
    Thanks

    Hi,
    No worries. To answer your latest questions: it really depends on the volume of IDocs you are working with.
    If you're talking about hundreds then you should be fine with exporting the list to memory and then retrieve the list from there.
    If you're talking about a bigger number, I'd consider querying table EDIDC using a database cursor:
    OPEN CURSOR zcursornmae FOR DB QUERY
    and then fech the entries using the cursor and defining a PACKAGE SIZE of around 500 (this is just a suggested number).
    By doing this, you'll avoid retrieving say 1 million entries at once.
    Cheers.

  • HELP IN KEITHLEY output source PROGRAM!(how to change GPIB to serial port)

    As the topic suggest,can anyone help me in changing from GBIP to serial port?The file is found inside the .lib that i attached.
    filename:2400 swI Linear Stair MeasV - LED.vi
    thanks!
    Attachments:
    KEITHLEY PROGRAM.zip ‏434 KB

    zzz(yawn)!!!!!!  I did not expect people to help me COMPLETE my work;i was just seeking advice on small portion of that program.Isn't what forum is used for?For posting questions and seeking advice from professonals and those willing to help?If you're just idling around here and doing stupid things just to show that you're an active forum user,i would think that you're a pathetic fool that have no life.Please seriously re-consider your words CAREFULLY next time before you post stupid things.Thanks=D
    PS:btw i did try out the program;if not how can i ask a question?You expect the question to just pop out of my brain without thinking?and thanks the person for giving me INVALUABLE advice(the person before that lame "nyc aka joker") as it did worked,and i'm still trying out the test.Thanks for it again=D

  • Outputing Pre-programmed Serial Commands

    Good Afternoon,
    I'm connecting a stepper motor to LabVIEW and was able to make it work with the basic serial write and read example vi very nicely.  I was just curious if there was a way to store  a couple separate sets of code (essentially programs) that could be fed to the serial port on command with LabVIEW depending on the users need.
    If I was too vague, let me know.

    In short yes.
    You can store text in strings and arrays just like other software languages and also pull data from text files or other file formats. These could concievably be stored command sequences for your stepper motor which could then be sent down the serial port under software control.
    Check out the help files on strings and then follow it up with arrays, after that look at reading in files. The help files are really excellent, one of the softwares strong points.
    Looks like your project is growing all the time, hope all the stuff in the previous question hit the mark.
    Message Edité par Conseils le 01-06-2006 11:16 PM

  • Audigy 2 zs output mixing program needed to reduce overpowered rear speakers

    To neutralize the strong rear sounds on my usb card i simply reduced the rear output in my output mixer. for some reason my audigy 2 zs doesnt have output mixer software, at least the downloads section of the creative?site doesnt supply it with the rest of the software. if the audigy 2 has mixer software that allows me to set the output of each channel, can some one tell me how to get it's i dont have access to my original cd.

    skyd7 wrote:
    To neutralize the strong rear sounds on my usb card i simply reduced the rear output in my output mixer. for some reason my audigy 2 zs doesnt have output mixer software, at least the downloads section of the creative site doesnt supply it with the rest of the software. if the audigy 2 has mixer software that allows me to set the output of each channel, can some one tell me how to get it's i dont have access to my original cd.
    You mean THX console? It's the only software bundled with A2Zs that lets you control output level (and spkr position) for every channel separately. No other software for this job available by the creative. THX console must be installed from original installation CD. You can find a download link for an ISO CD (original) by searching this forum after BadBoy posts.
    jutapa

  • Output type and program for ARE1 & ARE3

    Dear Friends,
    Kindly explain somebody what are the standard output types & Program for printing   ARE1 & ARE3?
    What is the process for getting print of these document?
    Thanks in advance

    Dear Friend,
    Thanks for your useful inputs, however I am sorry that even after changing processing routine we are getting same error and system is showing dump message.
    Runtime Errors         LOAD_PROGRAM_NOT_FOUND
    Except.                CX_SY_PROGRAM_NOT_FOUND
    IF i_trntyp = 'ARE1' OR i_trntyp = 'ARE3'.
      SELECT SINGLE *
          INTO ls_areattrb
          FROM j_1iare_attrb
          WHERE sergrp = ls_exchdr-srgrp
            AND trntyp = i_trntyp.
      IF sy-subrc = 0.
        l_output_typ = ls_areattrb-outtyp.
      ELSE.
        MESSAGE s000(8i) WITH 'Output Determination not possible'.
                                                               "#EC NOTEXT
      ENDIF.
    ENDIF.
    SELECT SINGLE * FROM tnapr INTO wa_tnapr
          WHERE kschl = l_output_typ.
    IF sy-subrc NE 0.
      MESSAGE i621(8i) WITH l_output_typ.
    ENDIF.
    IF i_trntyp = 'ARE1'.
      l_form  = wa_tnapr-fonam.
    ELSEIF i_trntyp = 'ARE3'.
      l_form  = wa_tnapr-fonam2.
    ENDIF.
    PERFORM (wa_tnapr-ronam) IN PROGRAM (wa_tnapr-pgnam)
              TABLES it_excdtl
              USING i_trntyp l_form i_copies ls_exchdr.

  • NEED HELP:reading output from ms-dos program (with exec)

    I'm trying to execute an ms-dos program using exec,
    and reading it's output.
    the program is running ,but, I can't see it's output.
    I've tried many variations of this code:
    Process p = Runtime.getRuntime().exec("file_name");
    try { p.waitFor();}
    catch(Exception e) {}
    BufferedReader input = new BufferedReader(new InputStreamReader(p.getInputStream()));
    String line;
    while((line = input.readLine()) != null )
    please help mewith this - thanks, froy
    System.out.println(line);
    System.out.println(p.exitValue());

    try { p.waitFor();}This doesn't return until the exec process has finished running. So there is no stream for it to get anything from.

  • Default Output Type for Sales Order Header

    Hi Guru
    I created 2 output types for hardcopy printout and for mail.
    I want both should be selected as default when a sales order is created. (using NACE)
    Output will be manually from VA02 -> issue output to. Here I must get 2 output types.
    As of now, this is manual process. 
    Please help.
    sunil Kolambkar.

    Hi Sunil,
    For this you need to maintain condition record for output type. for the sales order type, [V V11].
    Do the output determination in the same way as Pricing procedure determination.
    OUTPUT DETERMINATION:
    SPRO- IMG- Basic Functions- Output Control- Output Determination- Output Det using Cond Tech- Output Det for Sales Documents & output det for billing documents.
    Create Condition Table: select the field Sales Doc Type from field catalog & Save
    Maintain Access Sequence: 4-digits code & description.
    Assign condition table to access sequence. Select Accesses line item and Go To Fields. Fields will display the fields we have selected in the condition table i.e. sales doc type.
    Maintain Output Types:
    AF00: Inquiry
    AN00: Quotation
    BA00: Order Confirmation
    LD00: Delivery
    Select BA00 & Copy & Rename. Give the same 4-digit code as given to acc seq.
    You Can Maintain:
    Languages of Output
    Partners (to whom we want to send output)
    Print Program- print specification
    Sap Script- layout
    Assign Output Types to Partner Functions: go to new entries & assign your output type to partner functions.
    Maintain Output Determination Procedure: V10000 (Standard Procedure). Go to new entries & create your own 6-digit code with descp. Select the procedure & go to Control Data. Here mention the output type i.e. cond type & leave requirement and manual only columns as blank.
    Determination Rule: link the 6-digit procedure code to doc types.
    Create Condition Records: VV11. Select document type and click on Communication. Mention partner function, medium, time. Output device: LP01, Spool request Name: SD_003, Suffix 2: order_confir & flag on print immediately.
    Once you press enter you will come across 2 key combinations:
    Sales organisation/ Customer Number: fill SO, Customer No, Partner Function Abbreviation, Partner to whom the output should be sent, time, medium, language. {It contains: Sales Orgn, Customer, Partner Function (The abbreviated form of the name that identifies the Partner) (During output determination, the system determines the recipient of the output from the master record for the specified partner function. In this field, you can explicitly specify a recipient that will override the standard partner. There must also be a master record for the partner that is specified explicitly.), Medium, Time & Language.}
    Order Type: Document Type, Partner Function (abbreviation), Partner, Medium, Time & Language.
    Hope this would be helpful.
    Regds,
    Rupali

  • Fields missing in ALV grid display output

    Hello  Friends,
    I have done customer enhancement to VF04 tcode and i have added 2 new additional fields to the existing output.The program is working fine and its displaying the 2 new additional fields in the output display in development server.
    But when i transported the program to Q server and i have observed that the 2 new additonal fields are not displayed in the output display but when I  am selecting  'choose detail' push button on application tool bar it's showing the 2 new additional fields.In development server in the output 40 fields are displayed but in Q server only 9 fields are displayed.
    Could you please help me regarding this.
    Thanks in advance,
    Arvind.

    register the enhancementy to the project in Q server .. might be it is not transferred

Maybe you are looking for

  • How to set background color in JTF GRID

    Is it possible to set background color in JTF GRID ?

  • Optical out to Onkyo A/V Recei

    I would like to output audio from my pc to my A/V home theater system. My card is Audigy 2 ZS Platinum. Recei'ver Onkyo NR80. The Toslink cable is from the Audigy front panel optical out to the Onkyo Optical in. The cable is acti've as I see the glow

  • Thumbnail view of RAW files in Finder w/o iphoto or aperture?

    I would like to see photos shot with Canon 6D in finder or preview without using iphoto or aperture.  I tried to install RAWcameraup4.04 but was told iphoto or aperture is required.  Is there any plug-in or a way to work with these RAW files without

  • How to intersect with any sprite of a certain cast member?

    Hi. I am trying to script a simple 2d platformer engine for a larger University project. I have movement sorted with W and A and gravity. I can get collision detection with the floor by doing if sprite 1 intersects sprite 2 then      gvGrav = 0 end i

  • Openoffice stopped working after pacman -Syu

    I ran an update this morning, and now my Openoffice won't run. The update included: [12/07/04 10:08] upgraded glibc (2.3.3-2 -> 2.3.4-1) [12/07/04 10:08] upgraded wput (0.4-1 -> 0.5-1) So I am guessing that the new glibc is the cause. Trying to run O