Check data changed in REUSE_ALV_GRID_DISPLAY

I want to enable the edit mode to a column in ALV GRID, there isn't the problem, but the user wants to check the modified data when he leave the celd and show a popup window if is necessary. In ALV OO isn't a problem but in this case I don't know how to do it.
Thanks in advance.
Regards.
Lisandro.

Hi,
You can try this..
In the USER_COMMAND subroutine..
data: REF_GRID TYPE REF TO CL_GUI_ALV_GRID.
IF REF_GRID IS INITIAL.
    CALL FUNCTION 'GET_GLOBALS_FROM_SLVC_FULLSCR'
      IMPORTING
        E_GRID = REF_GRID.
  ENDIF.
  IF NOT REF_GRID IS INITIAL.
    CALL METHOD REF_GRID->CHECK_CHANGED_DATA
  ENDIF.
Now your internal table will have the updated values.
Thanks
Naren

Similar Messages

  • Sales Order availability checks + date changes in POs v Proc Orders

    Am getting into a knot about availability checks.
    I have a MTO process. All my materials have the same planning strategy (MRP3) but are either inhouse manufactured/external (MRP2)
    1. I create a sales order for a subcontracted material so MRP creates a Purchase Requisition which I convert to a Purchase Order..
    OR
    2. I create a sales order for a manufactured material so MRP creates a planned order which I convert to a Process Order
    Let say I have a delivery date in the sales order of September 20th for both scenarios above.
    1. For the subcontract PO, my delivery date is confirmed by the vendor as October 10th so I change the delivery date in the PO. If I run the availabilty check in the sales order, the sales order delivery date changes from September 20th to October 10th.
    Perfect.
    BUT
    2. For the manufactured products, if I change the process order to have a Finish Date of October 10th due to a busy production line, when I go into my sales order and run the availability check, it still comes back with September 20th, i.e. ignores the date on the Process order. Why isn't it updating to October 10th?
    My ATP check is set up to include Production/Process Orders. any suggestions as to what I'm doing wrong?
    Many thanks.

    Hi Shiva
    Here are my availability check settings in OVZG
    All "Stocks" checkboxes are unticked except for "W/O Subcontracting".
    All "In/outward movements" checkboxes are ticked.
    X "check all planned orders"
    X "Take all production orders into account"
    X "Check releases for stock transport orders and requisitions".
    o.

  • Data changed and REUSE_ALV_GRID_DISPLAY

    Hi,
    I have a problem for get the data which changed on my internal table : wlt_final
    CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
        EXPORTING
          i_buffer_active         = space
          i_callback_program      = sy-repid
          I_CALLBACK_USER_COMMAND = c_user_command
          is_layout               = wa_alv_presentation
          i_structure_name        = 'ZTYPFAC'
          IT_FIELDCAT             = t_catalogue_pv[]
        TABLES
          T_OUTTAB                = wlt_final
        EXCEPTIONS
          PROGRAM_ERROR           = 1
          OTHERS                  = 2.
    My Usercommand :
    FORM USER_COMMAND USING F_UCOMM LIKE SY-UCOMM
                    I_SELFIELD TYPE SLIS_SELFIELD.
      DATA: F_SUBRC LIKE SY-SUBRC,
            s_final like wls_final.
      READ TABLE wlt_final INDEX i_selfield-tabindex INTO s_final.
      break epetrini.
      CASE F_UCOMM.
        WHEN '&IC1'.
          CASE i_SELFIELD-SEL_TAB_FIELD.
            WHEN 'wlt_final-BELNR'.
              "CHECK NOT wlt_final-BELNR IS INITIAL.
              SET PARAMETER ID 'BLN' FIELD s_final-BELNR.
              SET PARAMETER ID 'BUK' FIELD s_final-BUKRS.
              SET PARAMETER ID 'GJR' FIELD s_final-GJAHR.
              CALL TRANSACTION 'FB03' AND SKIP FIRST SCREEN.
            WHEN 'wlt_final-VBELN'.
              "CHECK NOT wlt_final-BELNR IS INITIAL.
              SET PARAMETER ID 'VF' FIELD s_final-VBELN.
              CALL TRANSACTION 'VF03' AND SKIP FIRST SCREEN.
          ENDCASE.
        when '&DATA_SAVE'.
             data : wls_ZTYPFAC2 type ZTYPFAC2.
             break epetrini.
             loop at wlt_final into s_final where flag <> '' or MAJ = 'X'.
                  clear wls_ZTYPFAC2.
                  select single * from ZTYPFAC2 into wls_ZTYPFAC2 where VBELN = s_final-VBELN and BELNR = s_final-BELNR and MAJ = 'X'.
                    if sy-subrc = 0.
                        update ZTYPFAC2
                        set FLAG  = s_final-FLAG
                            COMM  = s_final-COMM
                            uname = sy-uname
                            datem = sy-datum
                        where VBELN = s_final-VBELN and BELNR = s_final-BELNR.
                    else.
                        wls_ZTYPFAC2-flag  = s_final-flag.
                        wls_ZTYPFAC2-VBELN = s_final-VBELN.
                        wls_ZTYPFAC2-BELNR = s_final-BELNR.
                        wls_ZTYPFAC2-COMM  = s_final-COMM.
                        wls_ZTYPFAC2-uname = sy-uname.
                        wls_ZTYPFAC2-datem = sy-datum.
                        wls_ZTYPFAC2-MAJ   = 'X'.
                        insert into ZTYPFAC2 values wls_ZTYPFAC2.
                    endif.
             endloop.
      ENDCASE.
    ENDFORM.                    "USER_COMMAND
    i use the User command for modify the different line of my ALV but when i do my Update i can't get only the line of the ALV which have changed !
    Thank you very much for your answer
    Edited by: Emilien P. on Sep 14, 2010 9:33 AM

    Hi,
    In your user command write the following code :
    *&      Form  USER_COMMAND
    FORM USER_COMMAND USING R_UCOMM LIKE SY-UCOMM
            RS_SELFIELD TYPE SLIS_SELFIELD.
      DATA : REF_GRID TYPE REF TO CL_GUI_ALV_GRID.
      DATA: L_VALID TYPE C.
    *Code to reflect the changes done in the internal table
      IF REF_GRID IS INITIAL.
        CALL FUNCTION 'GET_GLOBALS_FROM_SLVC_FULLSCR'
          IMPORTING
            E_GRID = REF_GRID.
      ENDIF.
      IF NOT REF_GRID IS INITIAL.
        CALL METHOD REF_GRID->CHECK_CHANGED_DATA
          IMPORTING
            E_VALID = L_VALID.
      ENDIF.
    "After calling the above method and FM you will get the changed data from ALV
      CASE SY-UCOMM.
        WHEN 'FCODE'.
        "Write your code here
       ENDCASE.
    ENDFORM.
    Thanks & Regards,
    Rock.

  • Re: Check Schedule Line Date Change

    Hi,
    I need to prevent the user from manually changing the schedule line date, but still allow
    BAPI_SALESDOCUMENT_CHANGE to do the same when required.
    I have tried checking the SL date change in user-exits USEREXIT_MOVE_FIELD_TO_VBEP,
    USEREXIT_SAVE_DOCUMENT_PREPARE and USEREXIT_SAVE_DOCUMENT, but have been unsuccessful.
    Any pointers appreciated.
    Thanks,
    GShankar

    Hello Girija,
    I  have used similar concept for something else in Sales order and i know it will work for schedule line as well. I propose two solutions;
    1. While saving the sales order let the User-Exit grey out the 'schedule line' feild and create a table with key 'approver' and User ID feild and let User-Exit Validate this 'Approver's User ID which will be seperately fed into the system (these User Id can be of those who are allowed to change the Schedule line).
    2. Instead of Creating Table for 'Approver - User ID' you could Use Status Management. In this case you could allow system to grey the 'Schedule Line' Feild in some stauts and the user may be allowed to Change in some other User Status. Eg:Status-'Schedule line Change' May allow system to Change the Feild in this case you table will have to be maintained only once or can be hardcoded to check the status and behave accordingly.
    I hope I was Clear in explaining the logic. Good luck

  • Can not see the option Execution with Data Change in the infoprovider?

    Hi team,
    i am using query designer 3.x, when i go into my bex brodcaster settings and schedule my report
    i can not see the option "Execution with Data Change in the infoprovider",
    i can only see 2 options
    Direct scheduling in background process
    create new scheduling
    periodic,
    is there any setting which i would be able to see the option "Execution with Data Change in the infoprovider"?
    kindly assist

    Hi Blusky ,
    check the below given link.
    http://help.sap.com/saphelp_nw04/Helpdata/EN/ec/0d0e405c538f5ce10000000a155106/frameset.htm
    Regards,
    Rohit Garg

  • How can I recover from a Botched BATCH DATE CHANGE in iPhoto?

    Botched Batch Date Change iPhoto08
    Short Story: Intending to change the date for one photo I managed to change the dates for all 8,525 images in my iPhoto08 library to the SAME DATE!! I found that the original creation dates were saved in the in the Modified field that appears in the Photo Info Window / File metadata subsection. I would like some help figuring out how to set the Date Created to this File Modified Date that appears in the Photo Info Window.
    GORY DETAILS:
    I used iPhoto08/ Photos menu / BATCH CHANGE... /“Set DATE to 20100723 1:20:54 PM” with “Modify original files” checked. iPhoto changed all 8,525 images to the same date.
    I now realize I should have used Photos menu / Adjust Date and Time ... But the damage was already done. Unfortunately there was no Edit menu / Undo for this operation. ALL 8,525 images have the same date. I checked in the the iPhoto Information sidebar--same date all images.
    Next, as a test, I dragged an image to the desktop and opened it in Graphic Converter7.0.3. The same date “20100723 1:20:54 PM” appeared in the Image Browser List /”Date Created”, “Date Modified”, “Date Captured” metadata fields.
    The following appeared in the Graphic Converter
    Image Preview sidebar (subWindow) going left to right
    Image menu/button
    Date and Time: Friday, July 23, 2010 1:20:54 PM PT
    Exif menu/button
    File date and time: 2010:07:23 13:20:54
    Date and time of original data generation: 2010:07:23 13:20:54
    Unknown tag (36868): 2010:07:23 13:20:54 <- significant?
    ExifTool menu/button
    ExifTool Version Number:8.40
    Warning: [minor] Suspicious MakerNotes offset for tag 0x9001
    ----System----
    File Modification Date/Time: 2010:07:23 13:20:54-07:00
    ----IFDO----
    Modify Date: 2010:07:23 13:20:54
    ----ExifIFD----
    Date/Time Original: 2010:07:23 13:20:54
    Create Date: 2010:07:23 13:20:54
    <<<<<<OH MY GOD >>>>>> the BATCH CHANGE / SET DATE not only RESET the date for EVERY IMAGE in my library, it also changed the date metadata EVERYWHERE inside each individual image file.
    Actually it's my Mom and Dad's iPhoto library containing all the kids and grand kids pictures, family trips, important events, everything. There is no backup. I feel as if I have tipped over a file cabinet containing all our photos. Our “date and event” organized 8,525 image iPhoto library was now as useful as a giant shoebox. On second thought, a shoe box full of real photo prints would be more useful than my iPhoto library because the prints would have the print date stamped on them.
    At this point feeling desperate I closed my eyes and said a quick prayer to Saint Rita - Patron Saint of the Impossible.
    I returned to iPhoto .................and noticed the Show Photo Info MENU item in the Photo Menu.
    I selected it.
    And Low and behold,
    in the Photo Info WINDOW,
    under the Meta data File SUBSECTION, the correct photo creation date appeared -->" Modified: 20071002 05:46:07 PM" I checked different photos ... They all had different FILE MODIFIED dates. These dates were/are the old creation dates! My prayers were answered: THANK YOU SAINT RITA!
    But now I am really stumped! This File Modified Date seems to be some kind of external metadata that is indexed or keyed to each image. How is this metadata stored in the iPhoto library? How can I access this File Modified date? I now turn to you GREAT iPhoto WIZARDS. Pray tell, how can I set the “Creation Date to the file Modified Date” that appears in the Photo Info Window as a (scriptable?) batch process.
    I am on my knees for this one...please help. we have iphoto11 but afraid to upgrade to it. until i know more i don't want to loose this Modified Date metadata.

    thanks for the quick response...
    no simple solution because no backup to restore from
    iPhoto seems to be using file metadata as some sort of index key in the
    Photo Info Window. open up the iphoto library package and take a look at
    the .xml file -- ModDate is used everywhere. hoping to export this data and merge/join it to
    each image.
    still trying to figure it out.
    thanks,
    Tom

  • Delivery date changed 4 times-called to ask what is going on and then best buy cancelled order

    I ordered a 55 inch aquos  with free ROKU stick for $599.00 on Sept. 22   (removed per forum guidlelines) and got a confirmed delivery of Sept. 26.  Unfortunately, I received a call in the morning of the Sept. 26 and was told that delivery was pushed to Tues, Sept. 30.
    On Monday, Sept. 29, I received an automated call informing me that the Tv will be delivered on Sept. 30 between 3:30 and 5:30. and I also received an email with the same information. Thirty minutes later I received another email stating that the delivery is again being pushed to Oct. 13. so I called customer service. I was told he can change the delivery date to Oct. 3 but call in the morning to confirm availability with warehouse.I called customer service on Sept. 30 to confirm availability and was assured that the Tv will be delivered on Oct. 3.
    On Thursday Oct. 2nd, I received another email stating the order will not be delivered until Oct. 16. I remained calm and called customer service and after a very long hold time I was able to speak with a representative and again after a long hold to check what is going on, she informed me that the order is now cancelled since the item is  discontinued. I told the representative that I already lost 3 days of work due to the delivery dates changing and since the TV has to be accepted by somebody 18 years or older I needed to be home. I asked if it is unreasonable to ask for the same exact TV but 1 size bigger since the 60 inch is available and in stock (but without the ROKU stick) but unfortunately I was told it is not possible. I asked to speak with a supervisor but they are all busy but she asked for my phone number so they can call me back in 20 min.. I waited but did not get a back from the supervisor the same day.
    I called again today,  Friday, Oct. 3 and I was assisted by a nice lady who after explaining my situation was sincere with her apology. She told me that she will call me back so she can speak with a supervisor about my situation. I asked her too if it is unreasonable to ask for the same exact TV but next size bigger since the one I was sold is no longer available and I lost 3 days of work due to the 3 changes in delivery dates. She affirmed that it is fair but have no authority to make decissions but will relay the history of the order to her superior so they can make a proper resolution. 
    After about 15 minutes I got a call  back and was told that since the bigger TV is priced at 799.00 they will give me a 50.00 dsicount for the trouble. I declined the offer since I feel that  $50.00 dollars for getting the run around and missing 3 days of work is not proper compensation and is an insult to any customer. I thanked her for trying and informed her that I am aware that it is not her fault and it is management who made this decission. 
    I sincerely feel  that I should have been given the next size TV for the same price of my original purchase and I should have been given a ROKU stick (which I did not ask for) for my unpleasant experience.
    We are  $150.00 apart from getting a resolution but management feels like it is the right thing to do for cases like these. Being a best buy customer for many years, spending many thousand of dollars,  I am  puzzled why best buy would treat any customer the way they treated me. Please explain the policy so I can have a better understanding. The $150.00 difference can easily be recopued from my next purchase. In my opinion, it is not a very smart business practice to lose a customer this way. Again, please explain the policy to me so I can understand better.

    Hello romcarlos1,
    While unforeseen complications can cause unexpected delays, it seems something went wrong at every turn. Misinformation and multiple missed appointments would frustrate me too, and I can only imagine this frustration turned into aggravation with the poor service you describe. After pulling up your account, I noticed that has been two weeks since your TV purchase, and I’m sorry for any inconvenience this may have caused. I appreciate you allowing me the opportunity to explain what should have happened.
    When your delivery day arrives, you should receive a call from us to narrow down the time frame to a 4-hour window.  This is done because our delivery agent’s schedule isn’t fully determined until the day of service as our customer’s needs may change prior to the delivery date. These routes are then best optimized to fit the appointments scheduled for the day. The particular television you wished to purchase is quite popular, however, and due to high demand, it’s currently on backorder in some areas of the country.  This may explain why your delivery date was continuously pushed back unexpectedly, and why we needed to reschedule multiple times.
    While in backordered status, however, an online order may be cancelled if you don’t wish to wait any longer and a different model may be purchase. Upon review of your order, I noticed that it was canceled upon your request. If you have since changed your mind and wish to wait for one to arrive, you may place a new order here. 
    It sounds like you wish to purchase a new TV entirely though, so I understand if you don’t wish to attempt a new order. While I cannot guarantee you a different outcome than the resolution already offered, I’d be glad to look into your case to see what other options may be available. Please know I have sent you a private message to collect further information from you. You may view this by logging into the forum and clicking on the envelope in the upper right-hand corner of the page.
    Respectfully,
    Alex|Social Media Specialist | Best Buy® Corporate
     Private Message

  • Problem writing meta data changes in xmp in spite of enabled settings

    Dear Adobe Community
    After struggling with this for two full days and one night, you are my last hope before I give up and migrate to Aperture instead.
    I am having problems with Lightroom 5 writing meta data changes into xmp and including development settings in JPEG, inspite of having ticked all three boxed in catalog settings.
    In spite of having checked all boxes, Lightroom refused to actually perform the actions. I allowed the save action to take a lot longer than the saving indicator showed was needed, but regardless of this no edits made in the photo would be visible outside Lightroom. I also tried unticking and ticking and restarting my compute.
    Therefore, I uninstalled the program and the reinstalled it again (the trial version both times). I added about 5000 images to Lightroom (i.e. referenced). After having made a couple of changes for one photo in development settings, I tried closing the program. However, then this message was then displayed:
    I left the program open and running for about 5-5 hours, then tried closing the program, but the message still came up so I closed the program and restarted the computer. I tried making changes to another photo, saving and then closing and the same message comes up. The program also becomes unresponsive, and of course still no meta data has been saved to the photo, i.e. when opening it outside Lightroom, the edits of the photos is not shown.
    What do do? I would greatly appreciate any insights, since I have now completely hit the wall.
    Oh yes, that´s right:
    What version of Lightroom? Include the minor version number (e.g., Lighroom 4 with the 4.1 update).
    Lightroom 5.3
    Have you installed the recent updates? (If not, you should. They fix a lot of problems.)
    I installed the program two days ago and then for the second time today.
    What operating system? This should include specific minor version numbers, like "Mac OSX v10.6.8"---not just "Mac".
    Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/31.0.1650.63 Safari/537.36
    What kind(s) of image file(s)? When talking about camera raw files, include the model of camera.
    JPEG
    If you are getting error message(s), what is the full text of the error message(s)?
    Please see screen dumps above
    What were you doing when the problem occurred?
    Trying to save metadata + trying to open images that it seemed I had saved meta data to
    Has this ever worked before?
    No
    What other software are you running?
    For some time Chrome, Firefox, Itunes. Then I closed all other software.
    Tell us about your computer hardware. How much RAM is installed?  How much free space is on your system (C:) drive?
    4 GB 1333 MHz DDR3
    Has this ever worked before?  If so, do you recall any changes you made to Lightroom, such as adding Plug-ins, presets, etc.?  Did you make any changes to your system, such as updating hardware, printers or drivers, or installing/uninstalling any programs?
    No, the problems have been there all the time.

    AnnaK wrote:
    Hi Rob
    I think you succeeded in partly convincing me. : ) I think I will go for a non-destrucitve program like LR when I am back in Sweden, but will opt for a destructive one for now.  Unfortuntately, I have an Olypmus- so judging from your comment NX2 might not be for me.
    Hi AnnaK (see below).
    AnnaK wrote:
    My old snaps are JPEG, but I recently upgraded to an Olympus e-pl5 and will notw (edited by RC) start shooting RAW.
    Note: I edited your statement: I assume you meant now instead of not.
    If you start shooting raw, then you're gonna need a raw processor, regardless of what the next step in the process will be. And there are none better for this purpose than Lightroom, in my opinion. As has been said, you can export those back to Lightroom as jpeg then delete the raws, if storage is a major issue, or convert to Lossy DNG. Both of those options assume you're willing to adopt a non-destructive workflow, from there on out anyway (not an absolute requirement, but probably makes the most sense). It's generally a bad idea to edit a jpeg then resave it as a jpeg, because quality gets progressively worse every time you do that. Still, it's what I (and everybody else) did for years before Lightroom, and if you want to adopt such a workflow then yeah: you'll need a destructive editor that you like (or as I said, you can continue to use Lightroom in that fashion, by exporting new jpegs and deleting originals - really? that's how you want to go???). Reminder: NX2 works great on jpegs, and so is still very much a candidate in my mind - my biggest reservation in recommending it is uncertainty of it's future (it's kinda in limbo right now).
    AnnaK wrote:
    Rob Cole wrote:
    There is a plugin which will automatically delete originals upon export, but relying on plugins makes for additional complication too.
    Which plugin is this?
    Exportant (the option is invisible by default, but can be made visible by editing a text config file). To be clear: I do not recommend using Exportant for this purpose until after you've got everything else setup and functioning, and even then it would be worth reconsidering.
    AnnaK wrote:
    Rob Cole wrote:
    What I do is auto-publish to all consumption destinations after each round of edits, but that takes more space.
    How do you do this?
    Via Publish Services.
    PS - I also use features in 'Publish Service Assistant' and 'Change Manager' plugins (for complete automation), but most people just select publish collections and/or sets and click 'Publish' - if you only have a few collections/services it's convenient enough.
    AnnaK wrote:
    Would you happen to have any tips on which plugins I may want to use together with Photoshop Elements?
    No - sorry, maybe somebody else does.
    Did I get 'em all?
    Rob

  • Splitting events after batch date change causes event to disappear

    Hi all,
    The basic (repeatable) scenario is this:
    o I scan in a bunch of old pictures I want to keep in iPhoto (lets say 10)
    o I import them into iphoto (no problems with import) 1 event with 10 pictures is created.
    o I then take a specific set of 4 photos and split them out of the main event into a new event (everything still ok) - 2 events, 4 and 6 events respectively.
    o I open the new event and do a batch date change on the 4 pictures, changing the date to the correct date of the picture
    o I exit the event expecting it to move up in the list of events (I sort by date). It's gone! iPhoto lists the 1 new event and its 6 photos
    o I change my sort (by time, by name, etc) and still not there.
    o I find my library in finder, open the package, and the files are still there.
    o I go back to iPhoto and click on "Photos". Walla! 10 pictures!
    o I undo the data change and they show up again in events - 2 new events, 10 total pictures.
    I've already done all the obvious checks (are you sorting by date, look up by even name, search by file name through all events etc.) I've talked with a product specialist and they said the standard "rebuild the library" which did not resolve the issue.
    I can repeat this until the cows come home in the existing library. I've created a brand new library and it does not repeat, do there is something in my library not right. But I don't buy the standard "redo your library from scratch" (36K pictures, 50 faces and hundreds of places). Just like with faces, you can discard the db files, there must be something besides "rebuild automatically and if that doesn't work sorry start over". Was iPhoto coded in Redmond?
    Has anyone had anything similar to this? I looked through the forums and couldn't see anything. If I have to rebuild this, I am done with iPhoto after having to rebuild due to faces too many times, and my question changes to what are folks recommendations for a more stable photo management software suite?
    Thanks!
    HOTG

    If the problem doesn't repeat in another Library then obviously the issue is with that library.
    As you've tried the basic rebuild: Back Up and try rebuild the library: hold down the command and option (or alt) keys while launching iPhoto. Use the resulting dialogue to rebuild. Choose to Rebuild iPhoto Library Database from automatic backup.
    The obvious solution is to restore a good version from your back up and, er, Walla! as you say yourself.
    Next least destructive option: Download iPhoto Library Manager and use its rebuild function. This will create a new library based on data in the albumdata.xml file. Not everything will be brought over - no slideshows, books or calendars, for instance - but it should get all your albums and keywords back.
    Because this process creates an entirely new library and leaves your old one untouched, it is non-destructive, and if you're not happy with the results you can simply return to your old one.
    Regards
    TD

  • Customer master data change -XD02 Disable all filelds except text screen.

    Hi SAP Experts,
    Have  any idea please forward immediately.
    In cusomer master data change XD02 all filelds should not be changed by specified users and the user should be able to update the text screen where as am giving the path below
    XD02>company code data>Extras>Texts>Double click on  accounting text screen. then it directs to text screen.
    here user can update the information.
    Since the Master data fileds can be change by the diffrent team like the details of address.... and the other users team from same dept. should not able to change address...and all other fileds in XD02 except the text screen.
    Is it possible to develop in xd02 . if it is please explore what are the ways...
    Regards
    venkat

    Hi
    As said by GSL goto OB20 and select "change customer centrally" and in the
    general data
    company code data
    sales data
    select the required fields and check the radio button "display"
    if you suppress you cannot find the fields at all
    regards
    prashanth

  • Purchase Order Statistical Delivery Date changed automatically

    Hi,
    In the purchase order, when I go to change the delivery date, the statistical delivery date changed automatically.
    I do not want to change the statistical delivery date.
    Is there any User Exit or BADI to validate this?
    Please suggest the same.
    Regards
    Amol Khochare

    Hi
    Is the delivery date get copied to statistical delivery date ?
    For validation, please check BADI - ME_PROCESS_PO_CUST and Method - PROCESS_ITEM
    From the interface - IF_PURCHASE_ORDER_ITEM_MM use method GET_SCHEDULES and subsequently from the interface IF_PURCHASE_ORDER_SCHEDULE_MM use method - GET_DATA to get schedule line details.
    Let us know, if it helps.

  • Billing document - Baseline date change status

    Hi folks,
    I have the following issue with the baseline date for the billing documents.
    Billing date proposed by the systems based on the goods issue is 30.01.2010 while the date of creation of document is 31.01.2010. In FB03 transaction baseline date status is showing as changed from 30.01.2010 to 31.01.2010. Following is the setting done: In OBB8 for the said payment terms the baseline date shown is the "posting date' and in VTFL item level copy control
    it is defined as "Data VBRK/VBRP         007  Inv.Split (Rec/Div)".
    Why is the baseline date getting changed by the way  User is entering the bill of lading in the outbound delivery >Header>Shipment (on 31.01.2010)..not sure if this is in any way contributing to the baseline date change...Appreciate your reply.
    cheers
    Joseph

    Baseline date is generally governed by config in OBB8 but we can influence it by writing code in USEREXIT_FILL_VBRK_VBRP. This will obviously affect baseline date in billing docs. The same should get copied into the accounting document. Now the catch is if the accounting document is changed (e.g. Payment terms) then system will populate baseline date as per the config.
    So may be you should check if there is anything in the userexit and whether accounting document was changed.

  • Billing due date change

    I would like to know why my billing due date is being changed. I have been a long standing customer of AT&amp;T back even when it was Cingular. I do not want my billing date changed at all. I have electric and car payment due at the middle of the month. Also it would have been nice if someone would have at least called me and gave me the decency of asking. I'm still trying to figure out how last month I got charged almost $100 over my normal bill.
    Sincerely
    Rebecca [edited for privacy-please do not post personal or unique information such as but not limited to full names, employee ID numbers, email addresses, phone numbers, account numbers, etc.]

    You can logon to your account and check bill details to find out why you were charged more.
    ATT is standardizing the billing so that all customers have 3 weeks to pay their bill. It should have changed the dues date by only a few days.
    If that is no the case, call support and see if they can change the date.

  • Issue with Master data change workflow in GRC PC 10.1

    Hi,
    I have configured the work flow for master data changes in GRC PC 10.1, however approver is not able to view the request in inbox where are the organization owner is able to see the review for change request in inbox.
    Please let me know if there is any config where we need to set the approvers for workflow, so that the system creates a request for approver.
    Regards,
    Giridhar

    Dear Giridhar,
    Please, check the following configuration:
    1. Activate the workflow (Path: SPRO -> GRC -> Shared Master Data Settings -> Activate Master Data Changes)
    2. See whether Checkbox "Approval" is ticked for the selected entity
    3. If you activate master data changes, please check whether the correct roles are indicated in the Maintain Custom Agent Determination Rules in the Workflow settings.
    Business Event: 0FN_MDCHG_APPR
    Role: Select the role you gave to the approver
    After performing this configuration, a task must appear in the work inbox.
    Best Regards,
    Fernando

  • How to determine Default Table Logging (log data changes )

    Does anyone know how to view exactly what tables and related data fields have change logging enabled by default? I know that some of the standard reports will produce "edit reports" show who changed what field, when ,old and new values, etc, but I don't know how to determine where the data is retrieved from.
    For example: If I look in the ABAP Dictionary at table LFA1, technical settings, it shows that log data changes is not "checked" or enabled. But if I run the standard AR Master Data Change Report, I get output showing valid field changes.
    I have seen other threads that refer to SCU3 but I can't determine the above this from report.
    Any assistance would be greatly appreciated.

    Hi Arthur,
    As far as I am aware, these are 2 different things. 
    There is table logging which is at the table level & if activated (i.e. it's listed in table DD0LV, PROTOKOLL=X and the table logging parameter is set in the system profile/s).
    The second one is programatical logging for change documents when data is maintained though a program that has been written to include a log.  I'm not sure how to identify a complete lit of these though unfortunately.
    Hope that is of some assistance.

Maybe you are looking for

  • Cisco ASA 5505 IPSec tunnel won't establish until remote site attempts to connect

    I have a site to site IPSec tunnel setup and operational but periodically the remote site goes down, because of a somewhat reliable internet connection. The only way to get the tunnel to re-establish is to go to the remote site and simply issue a pin

  • How do I change a file from pdf to pages or word so I can edit it?

    How do I change a pdf file to word/pages so I can edit it?

  • New iPad crashes constantly, it *****

    Hey people, I just want to let you know my story: A few weeks ago I bought the new iPad. its screen, its sound, everything is incredible, but its stability... there havent been any day without a problem. I know what you would say: why dont you try to

  • If I buy LR4 do I need..

    or should I also buy ACR, Bridge, and/or Elements 11?  I'm not clear on the relationship among them and I can't tell from reading the descriptions of the products.  I'm coming from Aperture. thanks, Mike

  • Developer Server and Oracle 7.3

    Need to know if an Oracle 7.3, Developer 2.1 and Developer Server configuration is reasonable for putting forms/reports on the web, or if we should go to Oracle 8i. Are there any unusual problems that we should be watching out for? Thanks in advance