VA02 Dataloss flag is set, when new screen fields are not changed, why ?

Hi,
I have added some new fields to the sales order item Additional data B tab.
When I go into the sales order in change mode (VA02) and navigate to the Additional data B tab and don't change any of the new field values, the system think that I have made changes to the sales order when I press the yellow exit button, I have debugged the transaction and field (SAPMV45B)R185D-DATALOSS is being populated, how can I stop this.
Any help will be appreciated.
Thanks
J-J

Hi Pascal,
I guess that the marked fields are the ones you are missing in bi.
"P" means that the values are extracted but one cannot restrict the values by using the parameter of an info package. Did you try to test the extraction with the rsa3 to see if the extraction locally works no your r/3 system?
If it works, check if the fields of the data source are contained within your transfer structure. If niot, add them and add the mapping to your targets.
Regards,
Yann

Similar Messages

  • How to block the 'save' function when the required fields are not filled?

    Hello, Everyone
    I am new for this scripting. My question is:
    How to block the 'save' function when the required fields are not filled?
    I designed a PDF file with some required fields and I do not want the user to save the document until all required fields are filled. My idea is to write some scripts in Willsave method like:
    if (this.getField("Family Name").value == ""){
    app.alert('You should fill the Family Name field firstly!');
    But I do not think it works as finally the document is saved after all.
    Please help me on that!
    So much thanks.

    Dear Randybearwang,
    I am a Rocky myself and I know how though it is to establish some good codes. Since I created some forms with validation options myself I might have a code for you. The code also creates an alert box (Yes/no option) if the user chooses yes the form will be validatet, if he chooses "no" the alert window will be closed.If  everything is filled out correctly the form will be saved otherwise the textbox will be higlighted and gets focus.
    If you need further assistance , please let me know
    Have fun with the code.
    P.s I don´t know how to upload the "PDF" document. I wrote you an email, please get back to me if you still need the file.

  • Selection screen fields are not clearing..!

    Hi all,
    I have created one report which is having a selection screen with four select-options.
    Now after executing the report, when i click on "back" icon the selection screen entries are not clearing even i refresh the select-options also.
    Could any body please help me to resolve this issue??
    Regards,
    Joshu.

    Hi,
    Use FREE MEMORY after the report is printed..
    Check this example..
    PARAMETERS: P_MATNR LIKE MARA-MATNR OBLIGATORY.
    START-OF-SELECTION.
    WRITE: / P_MATNR.
    FREE MEMORY.
    Thanks,
    Naren

  • Selection screen fields are not getting detected in an infoset in code

    Hi All,
    I am developing an infoset query using logical database 'PNPCE'. I am facing problem while writing a validation on selection screen fields on an infoset query at infoset code level.
    The fields that are under program specific selection are determined at runtime with variables viz. SP$00001, SP$00002 etc. There are actually select options on selection screen of an infoset query.
    So I cannot write a direct  code on these fields as they do not exist at infoset level and hence cannot be detected.
    I want to put down a validation that if user does not select anything on selection-screen and executes the query, then he should get a pop-up message 'Narrow down your search...' and he should go back to selection screen again.
    Is there any alternative way to achieve this?

    hi,
    Your Screen resolution is more in the system that's why while creating it was fine and while executing it was gone after the next field.
    so you better create a frame and place that inside it or you can change cols size  in the properties about the columns you want

  • Input Screen fields are not showing the description

    Hi
    I have copied a program, generated using SQVI, to a Zprogram, say Ztest,  and when I execute this Ztest the description of the fields on selection screen are coming as SP$00001, SP$00002 and so on.
    however if I execute the query made using SQVI the field description are the field descriptions.
    Can anybody help me resolve this, to show the field description in ZTest also.
    Thanks in advance!
    -Rahul

    Hi khanna_rahul,
    since quite a long time (10+ years) I do not use SE38 any longer - partly to avoid such errors as you are confronting now. In SE80 object tree, right mouse click on report, copy, in the popup mark everything, give new name(s) and that was it.
    For you it will be easier to just copy and paste between two sessions of report texts. Don't worry, system will ask for transport.
    Regards,
    Clemens
    N.B.: who does have much time and is willing to use it for useless tasks, will stick to SE38 until SAP removes it.

  • Adding new screen field

    Hi! Gurus,
    We would like to add a new screen field to our shipment document.
    My ABAPper says there's no screen exit to do the same.
    He talks something about breaking the code and stuff like that which I dont understand much.
    Please let me know a way if you guys can think of something.
    I need to add a field in VT01N transaction.
    Thanks in advance.

    HI Runa
    check this example code.
    First of all after adding the fields, you need to display those new fields in the VA01 transaction while creating a new sale order. So for that you need to first use the exit MV45A0ZZ. In this exit under the PBO, declare any form like eg: module zz_blank_fields. The coding for the module must be like as follows:
    LOOP AT SCREEN.
    IF SCREEN-GROUP1 = '002'.
    SCREEN-INPUT = '0'.
    elseif screen-group1 = '123' or
    screen-group1 = 'QUO'.
    screen-active = '0'.
    ENDIF.
    MODIFY SCREEN.
    ENDLOOP.
    WHEN 'VA12'.
    LOOP AT SCREEN.
    IF SCREEN-GROUP1 = '123' OR
    SCREEN-GROUP1 = 'QUO' .
    screen-active = '0'.
    ENDIF.
    MODIFY SCREEN.
    ENDLOOP.
    WHEN 'VA13'.
    LOOP AT SCREEN.
    IF SCREEN-GROUP1 = '001' OR
    SCREEN-GROUP1 = '002'.
    SCREEN-INPUT = '0'.
    elseif screen-group1 = '123' OR
    SCREEN-GROUP1 = 'QUO' .
    screen-active = '0'.
    ENDIF.
    MODIFY SCREEN.
    ENDLOOP.
    ENDCASE.
    when 'B'."Quotation
    CASE SY-TCODE.
    WHEN 'VA21' OR 'VA22'.
    LOOP AT SCREEN.
    IF SCREEN-GROUP1 = '002'.
    SCREEN-INPUT = '0'.
    elseif screen-group1 = '123'.
    screen-active = '0'.
    ENDIF.
    MODIFY SCREEN.
    ENDLOOP.
    WHEN 'VA23'.
    LOOP AT SCREEN.
    IF SCREEN-GROUP1 = '001' OR
    SCREEN-GROUP1 = '002' OR
    SCREEN-GROUP1 = 'QUO' .
    SCREEN-INPUT = '0'.
    elseif screen-group1 = '123'.
    screen-active = '0'.
    ENDIF.
    MODIFY SCREEN.
    ENDLOOP.
    ENDCASE.
    when 'C'."Order
    **Additinal fields for capturing DI Details in Order
    case sy-tcode.
    when 'VA01' OR 'VA02'.
    LOOP AT SCREEN.
    IF SCREEN-GROUP1 <> '123' .
    SCREEN-ACTIVE = '0'.
    ENDIF.
    MODIFY SCREEN.
    ENDLOOP.
    when 'VA03'.
    LOOP AT SCREEN.
    IF SCREEN-GROUP1 <> '123' .
    SCREEN-ACTIVE = '0'.
    ELSE.
    SCREEN-INPUT = '0'.
    ENDIF.
    MODIFY SCREEN.
    ENDLOOP.
    ENDCASE.
    when others.
    loop at screen.
    screen-active = '0'.
    modify screen.
    endloop.
    endcase.
    Regards,
    Laxmi.

  • Adding New Screen Fields Through BDT

    Hi All,
          In BP transaction there is a concession tab. i want to add 2 new screen fields from z table.
          i have added from z table in that concession tab.
    But The problem is that screen fields are coming in the last line.but where as i need those all new fields in right corner of first and second lines of the existing fields .plz.. help me
    Thanks Inadvance ,
    Siva Kumar

    Hi Vishnu
    I suggest to use EEWB for adding the new field. Follow the following steps
    1. Run Transaction EEWB (Easy Enhancement Work Bench)
    2. Create new Project.
    3. Select the relevent Z package.
    4. Create Customizing and Workbench Requests.
    5. Select table BUPA
    6. Select the type of field you require (single or table) and follow the wizard.
    The new fields will appeare on a new tab "Customer Data" on BP Screen.
    The Screen Name and Sequence can then be changed with VCT.
    Precautions:
    1. Your user must have developer's key privilages.
    2. There should not be any users working on the system when you are doing this activity.
    3. The workbench request created is client independent. The customization request created is client specific.
    4. The process is reversable and does not get effected by patch upload.
    hope this may help.
    Cheers
    Avi

  • [svn:fx-trunk] 11541: Fix the textLayout build number that is set in the main build. xml to match what will be set when the build machine does NOT do the build

    Revision: 11541
    Author:   [email protected]
    Date:     2009-11-06 14:29:41 -0800 (Fri, 06 Nov 2009)
    Log Message:
    Fix the textLayout build number that is set in the main build.xml to match what will be set when the build machine does NOT do the build
    QE notes: no
    Doc notes: no
    Bugs: no
    Reviewer:
    Tests run: checkintests
    Is noteworthy for integration: no
    Modified Paths:
        flex/sdk/trunk/frameworks/air-config.xml
        flex/sdk/trunk/frameworks/flex-config.xml

    Thats good news.

  • I'm on a windows laptop using iTunes sharing through the family to connect with Apple TV. After choosing the folder of photos to be shared and displayed on the appletv and when I choose to show on screen, they are not shown in the order they are in the or

    I'm on a windows laptop using iTunes sharing through the family to connect with Apple TV.
    After choosing the folder of photos to be shared and displayed on the appletv and when I choose to show on screen, they are not shown in the order they are in the original folder.
    How to pair show in a certain order, for example, sorted by name.
    grateful
    Julio Cesar

    Not that I'm aware of. You just export JPEG copies to a folder that you can point iTunes to. For instance, I have created a folder in my Pictures folder called Apple TV. And within that folder I have other folders of pictures that I can choose from in iTunes to share with Apple TV. But there doesn't seem to be any way to share a Lightroom slideshow. If you have laid to create a video file that would probably work. Apple TV is a little clunky in my opinion. Some things are a little more difficult to do now than they were a while back. I probably haven't provided you with much help, but just keep experimenting and I think you will figure it out.

  • Add New Screen Fields in Delievery Line Item

    Hello All,
    We have a requiremnet where we should add 3 custom fields to delivery line item tabs,
    please let me know how I can add a new tab for delievry line item tabs and how to add new custom screen fields in that tab,.
    Thanks
    Add New Screen Fields in Delievery Line Item
    Edited by: kishore_99 on Dec 8, 2009 5:31 PM

    No, I won't explain it in detail - you need to read the documentation and at least make an attempt at the process on your own first.  The documentation is right there in the IMG where I said it was but here's the path since you can't find it:
    Logistics Execution -> Shipping -> System Modifications -> Business Add-Ins in Shipping -> BADI for Additional Item Detail Screen...

  • My CD reader says all my CDs are empty when I know they are not. Is my reader down or is there a setting that is off?

    My CD reader says all my CDs are empty when I know they are not. Is my reader down or is there a setting that is off?

    Yes. you should keep your media in iTunes, and indeed you should also keep a backup of your library as well. if you have the device set up for manual management then the content would remain on it when deleted from the library, but you would have no way to restore the device if there was a problem.
    See also: Getting iTunes & Windows Media Player to play nicely
    tt2

  • Activate change pointer for a new screen field in MM42/41

    Hi,
      I created a new screen field for Article master(MM41/42/43) under basic data. If there are changes made to this new field how will the system create a corresponding IDOC? does this have something to do with the change pointer thing?
    Thanks,
    Jeff

    Hi Jeffrey,
    first of all got transaction SALE :
    ALE
    -> Modeeling and Implementing
    -> Master Data Distribution
    -> Replication
    -> Activate Change Pointer generally
    Check if Changepointers are generally on.
    Then goto BD50 and activate change pointers fpr message type.
    Finally goto BD52 and check if your field is "watched".
    After that you can generate idocs from BD21.
    Hope it helps.

  • Need to enhace tcode FD32 to add new screen fields on the initial screen

    Hi All,
    I am supposed to add two new screen fields on the initial screen of TCODE FD32,
    I am unable to find any screen exit for that. Is there any screen exit present for that or is there any way to do this.
    Kindly help me, solutions will be greatly rewarded.
    Thanks in advance,
    Nagaraju.

    check below
    Transaction Code - FD32                     Change Customer Credit Management                                                                               
    Exit Name           Description                                                                               
    RFDRRANZ            User exits: Accounts Receivable Information System                                                                               
    No of Exits:          1                                                                               
    Rewards if useful...............
    Minal

  • Is it possible to add new screen fields to the transaction /dsd/sl_cockpit

    HI experts,
          Would like to know if it is possible to add new screen fields to the cloned version of /dsd/sl_cockpit.
          I cloned the original transaction /dsd/sl_cockpit into a diff. name, now I want to know how I can include/ add those new fields to this transaction.  It looks like the screen is dynamically built using Standard ABAP classes. Need help.
    Thanks in advance

    it is not possible to add new fields via badi on /dsd/sl_cockpit.

  • Macbook pro camera produces a lot of green particles on my screen which are not visible when i take a picture or on the screen of a skype partner

    macbook pro camera produces a lot of green particles on my screen which are not visible when i take a picture or on the screen of a skype partner. Does anyone have a solution for this problem

    macbook pro camera produces a lot of green particles on my screen which are not visible when i take a picture or on the screen of a skype partner. Does anyone have a solution for this problem

Maybe you are looking for