Posting date as selection criterion in COOIS

HI
Is there any way to bring posting date (afru-budat) on the standard selection screen of COOIS?
cheers
matej

hi
go to COOIS
in that selection list SELECT documented with goodmovement
after that select std profile
then give production order
u will get posting date
come back if u get any problems

Similar Messages

  • Posting date as selection parameter in COPA report painter report

    hi,
    we want to include the posting date and document date in selection criterion of COPA report generated through report painter.
    we do not want to use period and fiscal yr as selection criterion.
    pls suggest.
    regards
    FLD

    Hi Sashidhar,
      First go to the program RHU_HELP and you need to enhance the code using the enhancement technique using implicit enhancement.  You can add your new selection criteria at line no 257( need to create an new implicit enhancement).
    Hope this is helpful for you.
    Regards,
    Ramesh.

  • Adding posting date in report mb52 in selection screen

    Hi all,
    We have a requirement of adding the posting date in the selection screen and based on which the report has to be displayed.
    We have copied the standard program and added the posting date in the selection screen but could not find where to include the search based on posting date.
    Could anyone guide to resolve this issue.
    Thanks in advance,
    Neela

    Hi,
    I have added the posting date in selection screen and in the form data_selection i have also joined table bsim to extract values to the internal table t_mat.
    But the results are not perfect. Should i do any changes elsewhere in d program.
    Can anyone help me in resolving d issue.
    Thanks in advance,
    Neela.

  • Posting date option in ME2M Std report

    Hi friends,
    The standard Report ME2M is for displaying PO's based on the Document date .... but my requirement is to get the same output with the Posting date as the criterion ...
    (i.e) even if the document date is given in the selection parameters ... the PO's based on the posting date status (open/pending/closed) should appear in the report.
    Expecting your replies
    thanks in advance .............
    Cheers,
    R.Kripa.

    try this code to display the purchase order history based on date  of change
    *& Report  to find purchase order history based on
    * date of change
    REPORT ZPOCHANGE LINE-SIZE 132 NO STANDARD PAGE HEADING
                     LINE-COUNT 065(001)
                     MESSAGE-ID VR.
    TABLES: DD04T,
            CDHDR,
            CDPOS,
            DD03L,
            DD41V,
            T685T,
            VBPA,
            TPART,
            KONVC,
            EKKO.
    SELECT-OPTIONS: XUDATE FOR CDHDR-UDATE,
                    XNAME  FOR CDHDR-USERNAME,
                    XEBELN FOR EKKO-EBELN,
                    XLIFNR FOR EKKO-LIFNR.
    SELECTION-SCREEN SKIP.
    * TEXT-001 - Sorting Sequence
    SELECTION-SCREEN BEGIN OF BLOCK BLK1 WITH FRAME TITLE TEXT-001.
    PARAMETERS: SUDATE RADIOBUTTON GROUP R1,
                SNAME  RADIOBUTTON GROUP R1,
                SOBID  RADIOBUTTON GROUP R1.
    SELECTION-SCREEN END OF BLOCK BLK1.
    DATA: WFLAG,
          WCHANGENR LIKE CDHDR-CHANGENR.
    DATA: INDTEXT(60) TYPE C.
    DATA: BEGIN OF ICDHDR OCCURS 50.
            INCLUDE STRUCTURE CDHDR.
    DATA: END OF ICDHDR.
    DATA: BEGIN OF ICDSHW OCCURS 50.
            INCLUDE STRUCTURE CDSHW.
    DATA: END OF ICDSHW.
    DATA: BEGIN OF EKKEY,
            EBELN LIKE EKET-EBELN,
            EBELP LIKE EKET-EBELP,
            ETENR LIKE EKET-ETENR,
          END OF EKKEY.
    DATA: BEGIN OF ITAB OCCURS 50,
            BEGIN OF EKKEY,
              EBELN LIKE EKET-EBELN,
              EBELP LIKE EKET-EBELP,
              ETENR LIKE EKET-ETENR,
            END OF EKKEY,
            CHANGENR LIKE CDHDR-CHANGENR,
            UDATE    LIKE CDHDR-UDATE,
            UTIME    LIKE CDHDR-UTIME,
            USERNAME LIKE CDHDR-USERNAME,
            CHNGIND  LIKE CDSHW-CHNGIND,
            FTEXT    LIKE CDSHW-FTEXT,
            OUTLEN   LIKE CDSHW-OUTLEN,
            F_OLD    LIKE CDSHW-F_OLD,
            F_NEW    LIKE CDSHW-F_NEW,
          END OF ITAB.
    DATA: OLD_OBJECTID LIKE CDHDR-OBJECTID.
    FIELD-SYMBOLS: <F_OLD>, <F_NEW>.
    SELECT * FROM EKKO WHERE EBELN IN XEBELN AND
                             LIFNR IN XLIFNR.
      CLEAR CDHDR.
      CLEAR CDPOS.
      CDHDR-OBJECTCLAS = 'EINKBELEG'.
      CDHDR-OBJECTID   = EKKO-EBELN.
      PERFORM GETCHGDOCS.
    ENDSELECT.
    IF SUDATE = 'X'.
      SORT ITAB BY UDATE EKKEY-EBELN CHANGENR EKKEY-EBELP
                   EKKEY-ETENR.
    ELSEIF SNAME = 'X'.
      SORT ITAB BY USERNAME EKKEY-EBELN CHANGENR EKKEY-EBELP
                   EKKEY-ETENR.
    ELSE.
      SORT ITAB BY EKKEY-EBELN CHANGENR EKKEY-EBELP EKKEY-ETENR.
    ENDIF.
    LOOP AT ITAB.
      CLEAR: INDTEXT, EKKEY.
      CASE ITAB-CHNGIND.
        WHEN 'U'.
            INDTEXT(50) = ITAB-FTEXT.
            INDTEXT+51  = TEXT-020.
            CONDENSE INDTEXT.
        WHEN 'D'.
            INDTEXT = TEXT-021.
        WHEN 'E'.
            INDTEXT(5) = ITAB-FTEXT.
            INDTEXT+51 = TEXT-021.
            CONDENSE INDTEXT.
          WHEN 'I'.
            INDTEXT = TEXT-022.
        ENDCASE.
        RESERVE 4 LINES.
        IF WCHANGENR NE ITAB-CHANGENR.
          WCHANGENR = ITAB-CHANGENR.
          EKKEY = ITAB-EKKEY.
          WRITE:/ ITAB-UDATE UNDER 'Change Date',
                  ITAB-UTIME UNDER 'Time',
                  ITAB-USERNAME UNDER 'User Name',
                  ITAB-EKKEY-EBELN UNDER 'PO No',
                  ITAB-EKKEY-EBELP UNDER 'Item',
                  ITAB-EKKEY-ETENR UNDER 'Sch No',
                  INDTEXT     UNDER 'Changes'.
        ELSEIF ITAB-EKKEY NE EKKEY.
          WRITE:/ ITAB-EKKEY-EBELP UNDER 'Item',
                  ITAB-EKKEY-ETENR UNDER 'Sch No',
                  INDTEXT     UNDER 'Changes'.
        ENDIF.
        CASE ITAB-CHNGIND.
          WHEN 'U'.
            ASSIGN ITAB-F_OLD(ITAB-OUTLEN) TO <F_OLD>.
            ASSIGN ITAB-F_NEW(ITAB-OUTLEN) TO <F_NEW>.
            WRITE: / TEXT-023  UNDER 'Changes',
                     <F_OLD>.
            WRITE: / TEXT-024 UNDER 'Changes',
                     <F_NEW>.
          WHEN 'E'.
            ASSIGN ITAB-F_OLD(ITAB-OUTLEN) TO <F_OLD>.
            WRITE: TEXT-023 UNDER 'Changes',
                   <F_OLD>.
        ENDCASE.
        SKIP.
    ENDLOOP.
    TOP-OF-PAGE.
    WRITE:/ SY-DATUM,SY-UZEIT,
           50 'P U R C H A S E  O R D E R   H I S T O R Y',
          120 'Page', SY-PAGNO.
    WRITE: / SY-REPID,
             60 'Purchase Orders Changes'.
    SKIP.
    ULINE.
    IF SUDATE = 'X'.
      WRITE:/001 'Change Date',
             014 'Time',
             024 'User Name',
             038 'PO No',
             050 'Item',
             057 'Sch No',
             065 'Changes'.
    ELSEIF SOBID = 'X'.
      WRITE:/001 'PO No',
             013 'Item',
             020 'Sch No',
             028 'Change Date',
             041 'Time',
             051 'User Name',
             065 'Changes'.
    ELSE.
      WRITE:/001 'User Name',
             015 'Change Date',
             028 'Time',
             038 'PO No',
             050 'Item',
             057 'Sch No',
             065 'Changes'.
    ENDIF.
    ULINE.
    FORM GETCHGDOCS.
      CALL FUNCTION 'CHANGEDOCUMENT_READ_HEADERS'
           EXPORTING
                DATE_OF_CHANGE    = CDHDR-UDATE
                OBJECTCLASS       = CDHDR-OBJECTCLAS
                OBJECTID          = CDHDR-OBJECTID
                TIME_OF_CHANGE    = CDHDR-UTIME
                USERNAME          = CDHDR-USERNAME
           TABLES
                I_CDHDR           = ICDHDR
           EXCEPTIONS
                NO_POSITION_FOUND = 1
                OTHERS            = 2.
      CHECK SY-SUBRC EQ 0.
      DELETE ICDHDR WHERE CHANGE_IND EQ 'I'.
      CHECK NOT ICDHDR[] IS INITIAL.
      LOOP AT ICDHDR.
        CHECK ICDHDR-UDATE IN XUDATE.
        CHECK ICDHDR-USERNAME IN XNAME.
        CALL FUNCTION 'CHANGEDOCUMENT_READ_POSITIONS'
                     EXPORTING  CHANGENUMBER       = ICDHDR-CHANGENR
                     IMPORTING  HEADER             = CDHDR
                     TABLES     EDITPOS            = ICDSHW
                     EXCEPTIONS NO_POSITION_FOUND  = 1
                                OTHERS             = 2.
        CHECK SY-SUBRC EQ 0.
        LOOP AT ICDSHW.
          CHECK ICDSHW-TEXT_CASE EQ SPACE.
          MOVE-CORRESPONDING ICDSHW TO ITAB.
          MOVE-CORRESPONDING ICDHDR TO ITAB.
          MOVE ICDSHW-TABKEY+3 TO ITAB-EKKEY.
          APPEND ITAB.
        ENDLOOP.
      ENDLOOP.
    ENDFORM.
    * END OF PROGRAM
    regards
    satesh

  • POSTING DATE RANGE INCLUDED IN CUSTOMER RECEIVABLE AGEING REPORT PLD

    Dear All,
    Please can you tell me how to print the posting date range selected in the parameter selection for Customer Receivable Ageing Report PLD.
    Thanks
    Gary

    Dear Rahul,
    I know that but it is really painful to develop the whole report in crystal where it is available in SAP itself. Imagine just for one requirement i will have to build the whole report in crystal. I think SAP should give flexibility to change the hard coded reports.
    Regards,
    Gary

  • Material Posting Date & Usage

    Hi Gurus,
    My requirement is to desing a new sales and usage of Materials for a Paticular plant.
    In this report i need to show Posting Date in selection screen,
    And please let me know how we will find out the usage of the Materials.
    Thankyou in advance.

    You can get the Posting date from table MKPF for material documents.
    That is for a material in sales order whenever u do a Post Goods Issue then the Tables MKPF and MSEG are updated.
    U can find the material number in table MSEG( Line item table for material document)
    and the Posting date corresponding to that mat. doc no. in MKPF ( Header table)
    Similarly usage of material u can get by the stock available in MSEG table for that material. U can see these tables u will get a fair idea.

  • IN doing MIGO Exchange Rate is taking posting date but now we need to select with document date

    Dear Experts,
    After posting in MIGO exchange rate need to select document date.present it is taking posting date.how we will make pls suggest me
    Regards,
    Rajam

    Hi Rajam
    Fx translation is actually dependant neither on doc date nor on posting date.. It is dependant on the "Translation date". If the Trans date is not entered, then Posting date is taken as the basis
    If you want to change this behaviour, refer the following notes
    574583 - For MM LIV and 42615 for FI Posting (FI Posting uses substitution)
    Br. Ajay M

  • From which table Posting date is shown in Coois Confirmation list.

    Dear gurus
    Can you tell me that in t-code coois in confirmation list there is a posting date. can you tell me from which table that posting date is coming
    regards
    Saad

    I think its from table AFRU fieldname BUDAT.

  • Any selection input for posting date in Confirmation Report CN48n

    Hi All,
    Is there any way to select some date based on posting date in CN48n report, because if i have run by Plant / co.code it takes so long.
    Plz advice.
    Cheers,
    Nies

    Hi,
    The only option I found out is "Data on Dates Definition -- Finish Date" in dynamic selections.
    This including the Plant & Company Code selection will not exactly meet your requirement but of course can definitely reduce the search load on the system.
    regards

  • Add the baseline date , posting date and the item text in the Standard Prog

    Have to add some parameters in MRRL transaction Program is RMMR1MRS and apply some calculation part in it.
         The additional fields External PO (EKKO-ZZEXT_PO_NO) and Interface ID (ZZINTERFACE_ID) are added in the ZMRRL and  will be used as the extra selection criterion along with the standard available in the MRRL.
         In the processing option, baseline date (ZFBDT) and posting date (BUDAT) will be added, the default selection for the same is blank.
    Moderator message: "spec dumping", please work yourself first on your requirement.
    Edited by: Thomas Zloch on Oct 3, 2011 11:00 AM

    Hi,
    You need to use substitution with exit (GGB1/ OBBH) to populate the GR date in the baseline date field.
    Also go through the below thread:-
    [Re: Substitution - Baseline Date to be replaced by the Goods Receipt date;
    Regards,
    SDNer

  • Very Urgent!...regarding selection criterion in Info Packages

    Hi all,
         This is very urgent requirement for the project now. Is there any way to indicate a field in selection criterion of a IP as blank.
    Like if I want to select all the records which have a field 0WBS_element as blank from one ODS into another ODS. How do I indicate it in the IP( any solution apart from writing a routine!)
    cheers
    Sudhir

    Hi Sudhir,
      Pls. refer to the earlier posted forums :
    Rotuine in Infopackage for Data Selection---- Urgent
    Thanks,
    Raj

  • How to add a selection criterion to a SQ01 query based on logical database SDF?

    Hi,
    How should I add a selection criterion to a SQ01 query based on the logical database SDF? Is it possible through additional code? How to make use of the custom selection fields? I need a selection criterion based on BKPF-CPUDT (creation date).
    Thanks.

    Hi John,
    Please check the given below link in addtion to Atul post.
    http://scn.sap.com/community/erp/sd/blog/2012/04/16/query-report-tips-part-2--mandatory-selection-field
    Thanks,
    Senthil Maruthappan.

  • Stock on posting date GL wise

    dear sir,
    can i have the transaction code for stock on posting date GL wise.
    IN MB5B THERE IN NO FIELD WITH GL AND IN MB5B THERE IS NO POSTING DATE

    Hi,
    There is a posting date in MB5B  !!!!!!!!!!!!!!!!!
    The whole point of MB5B is to give you the stock on a posting date.
    The field is called "Selection date".
    Steve B

  • Currency translation - based on posting date

    Hi everyone..
    im again posting this topic bcos im in need of a solution for my problem as early as possible.please excuse me.
    Problem related to currency conversion:
    Im taking a report from sales order and billing cube,and the report is coming fine,but when i apply the currency conversion type,it is not giving the correct conversion.
    In report,im using exchange rate on document posting date.
    So if i compare the value in R/3 with the reporting value,the difference comes.
    For the currency conversion type i used, i checked in rrc2,it is like this.
    Exch rate type:M-standard translation at avg rate
    Source curr:from data record
    Tgr curr:selection with translation
    Time ref:Varoiable time reference:A-To the exact day
    Special Infoobj:Posting date object
    So what could be the problem for the wrong translation.the difference is about 1.2 rs per dollar.
    i will be verymuch thankful to u,if u could give some solution for this problem...
    thansk & regards
    sudha

    Hi
    Please check if you are transferring exchange rates maintained in R/3 to BW on daily basis or as & when change happens on R/3 side.
    If not then you can do that in RSA1->source systems-> here select your R/3 system ->right mouse click-> Transfer global settings-> in next screen put check box ON for currencies and then using update tables option button. For daily scheduling, go to top menu ->Program-> Excute in background-> here you can schedule this as daily job.
    Hope this helps
    Regards
    Pradip

  • EBS currency translation not "posting date"

    Hello,
    We implemented EBS ealier this year.  The currency translation date on the FF_5 postings is taking the "document date" and not the "posting date" when determining which currency exchange rate to use.  This is only an issue for a couple days at month end when the document date is in the current month, but the posting date is in the prior month.
    What do we need to do to change the currency selection back to "posting date".  I have never seen SAP use anything but posting date.  I have tried reviewing all the configuration of doc type and other set up during EBS implementation and cannot see how we have triggered this date.
    Any help appreciated.
    Regards,
    Morgan

    I neglected to mention that we are calling this currency translation through a WAD button using the SET_CURRENCY_TRANSLATION command.  I did do a test by applying the currency conversion within query key figure.  This seems to work.  So it appears the issue is with how the WAD is processing the variable, not the query.  When I display the variable in a drop down item within the WAD it does have the default value that I have assigned in user exit.

Maybe you are looking for

  • Ld searches LD_LIBRARY_PATH before -L paths?

    Trying to debug a link error. Debug trace seems to me to clearly say that paths in LD_LIBRARY_PATH are searched for libraries before paths specified with -L command line options. To my reading, this contradicts the documentation. Where am I going wro

  • Windows 8 op system. Cannot open premier pro cs6, at all.

    It says its fully downloaded, and up to date, but it does not work at all. When I hover the cursor over the name, or icon, it does not even register that its there. Right click does nothing. I cannot figure out how to open it up. Tried uninstalling,

  • How to reduce oracle system datafile

    hi i m working on data base whose system datafile file is around 5GB in size n around 200 user in it. i have aleady tarnsfer all user and its segment to another table space. but when i pass this command: 'alter database datafile 'c:\oracle\oradata\sy

  • Whats the easiest/simplest way to draw a board with images on it?

    Im doing a project for school and im familiar with gui�s but I never done any work on drawing a board (10 x 10) and being able to place a jpg in each box. I have an overall idea of what im thinking about doing. Which is of course using a multidimensi

  • Customizing the Error Message

              hi ,           i want to customize the "ERROR 404 File found". how to do it ??           Thanks& Regards           Anand.R