'Create' Push button is not working in BDC and LSMW while uploading G/L master data

Hello Experts:
I am facing the following problem:
While uploading G/L master data with the BDC program, 'create' push button is not working  even after executing following lines.
PERFORM BDC_DYNPRO      USING 'SAPLGL_ACCOUNT_MASTER_MAINTAIN' '2001'.
PERFORM BDC_FIELD       USING 'BDC_OKCODE'
                               '=ACC_CRE'.
Create G/L account  screen is not coming in BDC. Please suggest me what to do.
Thanks !!

Re: 'Create' Push button is not working in BDC and LSMW while uploading G/L master data
Re: 'Create' Push button is not working in BDC and LSMW while uploading G/L master data
Hi Glen Anthony
Thank you for the reply Glen Anthony please take a look at the following code.
REPORT  ZFI_BDC_FS00
        NO STANDARD PAGE HEADING LINE-SIZE 255.
*INCLUDE BDCRECX1.
TYPES : BEGIN OF STR,
   BUKRS TYPE GLACCOUNT_SCREEN_KEY-BUKRS,        "Company Code
   SAKNR TYPE GLACCOUNT_SCREEN_KEY-SAKNR,        "G/L Account Number
   KTOKS TYPE GLACCOUNT_SCREEN_COA-KTOKS,        "G/L Account Group
   XPLACCT TYPE GLACCOUNT_SCREEN_COA-XPLACCT,    "P&L statement account
   XBILK TYPE GLACCOUNT_SCREEN_COA-XBILK,        "Indicator: Account is a balance sheet account?
   TXT20_ML TYPE GLACCOUNT_SCREEN_COA-TXT20_ML,  "G/L account short text
   TXT50_ML TYPE GLACCOUNT_SCREEN_COA-TXT50_ML,  "G/L account short text
   WAERS TYPE GLACCOUNT_SCREEN_CCODE-WAERS,      "Account currency
   XSALH TYPE GLACCOUNT_SCREEN_CCODE-XSALH,      "Indicator: Only Manage Balances in Local Currency
   MWSKZ TYPE GLACCOUNT_SCREEN_CCODE-MWSKZ,      "Tax Category in Account Master Record
   XMWNO TYPE GLACCOUNT_SCREEN_CCODE-XMWNO,      "Indicator: Tax code is not a required field
   MITKZ TYPE GLACCOUNT_SCREEN_CCODE-MITKZ,      "Account is reconciliation account
   XOPVW TYPE GLACCOUNT_SCREEN_CCODE-XOPVW,      "Indicator: Open item management?
   XKRES TYPE GLACCOUNT_SCREEN_CCODE-XKRES,      "Indicator: Can Line Items Be Displayed by Account?
   ZUAWA TYPE GLACCOUNT_SCREEN_CCODE-ZUAWA,      "Key for sorting according to assignment numbers
   FSTAG TYPE GLACCOUNT_SCREEN_CCODE-FSTAG,      "Field status group
   XINTB TYPE GLACCOUNT_SCREEN_CCODE-XINTB,      "Indicator: Is account only posted to automatically?
   END OF STR.
DATA : ITAB TYPE TABLE OF STR WITH HEADER LINE,
        IT_BDCDATA TYPE TABLE OF BDCDATA WITH HEADER LINE,
        TXT(4096) TYPE C OCCURS 0,
        MSG TYPE STRING,
        COUNT(5) TYPE N.
SELECTION-SCREEN : BEGIN OF BLOCK B1 WITH FRAME TITLE TEXT-001.
   PARAMETERS : MY_FILE TYPE RLGRAP-FILENAME.
SELECTION-SCREEN : END OF BLOCK B1.
AT SELECTION-SCREEN ON VALUE-REQUEST FOR MY_FILE.
CALL FUNCTION 'F4_FILENAME'
  EXPORTING
    PROGRAM_NAME        = SYST-CPROG
    DYNPRO_NUMBER       = SYST-DYNNR
*   FIELD_NAME          = ' '
  IMPORTING
    FILE_NAME           = MY_FILE
CALL FUNCTION 'TEXT_CONVERT_XLS_TO_SAP'
   EXPORTING
*   I_FIELD_SEPERATOR          =
*   I_LINE_HEADER              =
     I_TAB_RAW_DATA             = TXT
     I_FILENAME                 = MY_FILE
   TABLES
     I_TAB_CONVERTED_DATA       = ITAB[]
  EXCEPTIONS
    CONVERSION_FAILED          = 1
    OTHERS                     = 2
IF SY-SUBRC <> 0.
* IMPLEMENT SUITABLE ERROR HANDLING HERE
ENDIF.
START-OF-SELECTION.
COUNT = 0.
LOOP AT ITAB.
*PERFORM OPEN_GROUP.
REFRESH  IT_BDCDATA.
PERFORM BDC_DYNPRO      USING 'SAPLGL_ACCOUNT_MASTER_MAINTAIN' '2001'.
PERFORM BDC_FIELD       USING 'BDC_CURSOR'
                               'GLACCOUNT_SCREEN_KEY-BUKRS'.
PERFORM BDC_FIELD       USING 'BDC_OKCODE'
                               '=ACC_CRE'.
*PERFORM BDC_FIELD       USING 'BDC_CURSOR'
*                              'GLACCOUNT_SCREEN_KEY-BUKRS'.
PERFORM BDC_FIELD       USING 'GLACCOUNT_SCREEN_KEY-SAKNR'
                               ITAB-SAKNR. "'5'.
PERFORM BDC_FIELD       USING 'GLACCOUNT_SCREEN_KEY-BUKRS'
                               ITAB-BUKRS. "'TATA'.
PERFORM BDC_DYNPRO      USING 'SAPLGL_ACCOUNT_MASTER_MAINTAIN' '2001'.
PERFORM BDC_FIELD       USING 'BDC_OKCODE'
                               '=2102_GROUP'.
PERFORM BDC_FIELD       USING 'BDC_CURSOR'
                               'GLACCOUNT_SCREEN_COA-KTOKS'.
PERFORM BDC_FIELD       USING 'GLACCOUNT_SCREEN_COA-KTOKS'
                               ITAB-KTOKS. "'GL'.
PERFORM BDC_FIELD       USING 'GLACCOUNT_SCREEN_COA-XPLACCT'
                               ITAB-XPLACCT. "'X'.
PERFORM BDC_DYNPRO      USING 'SAPLGL_ACCOUNT_MASTER_MAINTAIN' '2001'.
PERFORM BDC_FIELD       USING 'BDC_OKCODE'
                               '=2102_BS_PL'.
PERFORM BDC_FIELD       USING 'BDC_CURSOR'
                               'GLACCOUNT_SCREEN_COA-XBILK'.
PERFORM BDC_FIELD       USING 'GLACCOUNT_SCREEN_COA-KTOKS'
                               ITAB-KTOKS. "'GL'.
PERFORM BDC_FIELD       USING 'GLACCOUNT_SCREEN_COA-XPLACCT'
                               ITAB-XPLACCT. "''.
PERFORM BDC_FIELD       USING 'GLACCOUNT_SCREEN_COA-XBILK'
                               ITAB-XBILK. "'X'.
PERFORM BDC_DYNPRO      USING 'SAPLGL_ACCOUNT_MASTER_MAINTAIN' '2001'.
PERFORM BDC_FIELD       USING 'BDC_OKCODE'
                               '=TAB02'.
PERFORM BDC_FIELD       USING 'GLACCOUNT_SCREEN_COA-KTOKS'
                               ITAB-KTOKS. "'GL'.
PERFORM BDC_FIELD       USING 'GLACCOUNT_SCREEN_COA-XBILK'
                               ITAB-XBILK. "'X'.
PERFORM BDC_FIELD       USING 'BDC_CURSOR'
                               'GLACCOUNT_SCREEN_COA-TXT50_ML'.
PERFORM BDC_FIELD       USING 'GLACCOUNT_SCREEN_COA-TXT20_ML'
                               ITAB-TXT20_ML. "'G/L ACCOUNT'.
PERFORM BDC_FIELD       USING 'GLACCOUNT_SCREEN_COA-TXT50_ML'
                               ITAB-TXT50_ML. "'G/L ACCOUNT'.
PERFORM BDC_DYNPRO      USING 'SAPLGL_ACCOUNT_MASTER_MAINTAIN' '2001'.
PERFORM BDC_FIELD       USING 'BDC_OKCODE'
                               '=TAB03'.
PERFORM BDC_FIELD       USING 'GLACCOUNT_SCREEN_CCODE-WAERS'
                               ITAB-WAERS. "'INR'.
PERFORM BDC_FIELD       USING 'GLACCOUNT_SCREEN_CCODE-XSALH'
                               ITAB-XSALH. "'X'.
PERFORM BDC_FIELD       USING 'GLACCOUNT_SCREEN_CCODE-MWSKZ'
                               ITAB-MWSKZ. "'*'.
PERFORM BDC_FIELD       USING 'GLACCOUNT_SCREEN_CCODE-XMWNO'
                               ITAB-XMWNO. "'X'.
PERFORM BDC_FIELD       USING 'GLACCOUNT_SCREEN_CCODE-MITKZ'
                               ITAB-MITKZ. "''.
PERFORM BDC_FIELD       USING 'BDC_CURSOR'
                               'GLACCOUNT_SCREEN_CCODE-ZUAWA'.
PERFORM BDC_FIELD       USING 'GLACCOUNT_SCREEN_CCODE-XOPVW'
                               ITAB-XOPVW. "'X'.
PERFORM BDC_FIELD       USING 'GLACCOUNT_SCREEN_CCODE-XKRES'
                               ITAB-XKRES. "'X'.
PERFORM BDC_FIELD       USING 'GLACCOUNT_SCREEN_CCODE-ZUAWA'
                               ITAB-ZUAWA. "'1'.
PERFORM BDC_DYNPRO      USING 'SAPLGL_ACCOUNT_MASTER_MAINTAIN' '2001'.
PERFORM BDC_FIELD       USING 'BDC_OKCODE'
                               '=SAVE'.
PERFORM BDC_FIELD       USING 'BDC_CURSOR'
                               'GLACCOUNT_SCREEN_CCODE-XINTB'.
PERFORM BDC_FIELD       USING 'GLACCOUNT_SCREEN_CCODE-FSTAG'
                               ITAB-FSTAG. "'G019'.
PERFORM BDC_FIELD       USING 'GLACCOUNT_SCREEN_CCODE-XINTB'
                               ITAB-XINTB. "'X'.
*PERFORM BDC_TRANSACTION USING 'FS00'.
CALL TRANSACTION 'FS00' USING IT_BDCDATA MODE 'E' UPDATE 'S'.
COUNT = COUNT + 1.
*PERFORM CLOSE_GROUP.
ENDLOOP.
CONCATENATE COUNT ' RECORDS UPDATED SUCCESSFULLY' INTO MSG.
MESSAGE MSG TYPE 'I'.
FORM BDC_DYNPRO USING PROGRAM DYNPRO.
   CLEAR IT_BDCDATA.
   IT_BDCDATA-PROGRAM  = PROGRAM.
   IT_BDCDATA-DYNPRO   = DYNPRO.
   IT_BDCDATA-DYNBEGIN = 'X'.
   APPEND IT_BDCDATA.
ENDFORM.
*        INSERT FIELD                                                  *
FORM BDC_FIELD USING FNAM FVAL.
*  IF FVAL <> NODATA.
     CLEAR IT_BDCDATA.
     IT_BDCDATA-FNAM = FNAM.
     IT_BDCDATA-FVAL = FVAL.
     APPEND IT_BDCDATA.
*  ENDIF.
ENDFORM.

Similar Messages

  • Creating Save Button Does Not Work - HELP!

    I am trying to create a button that will execute "Save As." I have added a regular button, and at the "click" option I enter: app.executeMenuItem("SaveAs").
    The error message I get is "Script failed (language is formcalc; context is xfa[a].form[0].form1[0].#subform[0].Button2[0]) script=app.executeMenuItem("SaveAs")
    Error:accessor 'app.executeMenuItem("SaveAs")' is unknown.
    What does this mean?? Can anyone please help, I need to get this working asap.
    Thanks in advance for help!!

    You need to change the language of the script from FormCalc to JavaScript in the drop down.
    Chris
    Adobe Enterprise Developer Support

  • Push mail is not working for gmail and hotmail on ...

    i have been using my nokia e72 since february 2011. i had two mailbox configured, gmail and hotmail. Until last week, everything was fine. but suddenly my push mail stopped working for both gmail and hotmail.
    when i noticed this, i removed both of my mailboxes and tried to create a new one. when trying to create a Gmail mailbox, it goes fine upto "downloading terms". after that, when i choose to connect to "nokia messaging service", it creates a mailbox named "HOTMAIL" instead of "GMAIL". it takes only my user name for Gmail and rest of the settings are for HOTMAIL.
    if i choose not to connect to "nokia messaging service" then it works quite well. but thats not real push mail. it will check my email every 5 mins. but when tried to create a "HOTMAIL" mailbox, i had no luck. no matter how i try, hotmail mailbox can't download my mail. and as hotmail don't support IMAP, its very disgusting to use "POP3" if i choose not to connect to nokia messaging.
    i have tried to reset the phone using *#7370# and *#7730#, but no luck. i also tried reinstalling the firmware using ovi suite, but i didn't had any luck either.
    please help me, i am very disappointed with this kind of problem specially from nokia.
    someone please do help. i m in a huge mess.

    delete the account and re-add it.

  • Volume and mute buttons do not work. no ringtone

    Volume and Mute buttons do not work. Ringtones and alerts all silent. Sound working for music etc...

    Sounds like you have a speaker fault and the phone would normally require servicing. But seeing as you have had the screen replaced, you will not be able to do this via the Genius Bar.
    You will probably need to go back to the place where you got the screen replaced and ask them to look at the speaker for you.

  • Weblogic Admin Console Issue (Move and Copy buttons do not work)

    Hi everyone!
    We are using Weblogic portal 10.2. While using the administration console, some buttons are not working (exmple: copy and move buttons). When clicked, it gives the following errors:
    weblogic.utils.NestedRuntimeException: Cannot parse POST parameters of request: '/PortalEARAdmin/xHttpReq'
    at weblogic.servlet.internal.ServletRequestImpl$RequestParameters.mergePostParams(ServletRequestImpl.java:1816)
    at weblogic.servlet.internal.ServletRequestImpl$RequestParameters.parseQueryParams(ServletRequestImpl.java:1703)
    at weblogic.servlet.internal.ServletRequestImpl$RequestParameters.getQueryParams(ServletRequestImpl.java:1656)
    at weblogic.servlet.internal.ServletRequestImpl.getParameter(ServletRequestImpl.java:756)
    at com.bea.jsptools.util.Utilities.isNewTreeMode(Utilities.java:1490)
    Truncated. see log file for complete stacktrace
    java.io.UnsupportedEncodingException: Unsupported Encoding UTF-8;charset:UTF-8
    at weblogic.servlet.internal.ServletRequestImpl.setCharacterEncoding(ServletRequestImpl.java:384)
    at weblogic.servlet.internal.ServletRequestImpl.initReader(ServletRequestImpl.java:1071)
    at weblogic.servlet.internal.ServletRequestImpl.access$1100(ServletRequestImpl.java:68)
    at weblogic.servlet.internal.ServletRequestImpl$RequestParameters.mergePostParams(ServletRequestImpl.java:1778)
    at weblogic.servlet.internal.ServletRequestImpl$RequestParameters.parseQueryParams(ServletRequestImpl.java:1703)
    Truncated. see log file for complete stacktrace
    I hope you could share your thoughts on this.
    Thanks and have a nice day! :-)
    Warm regards,
    Rakie

    Are you using FireFox 3 to access the WLP Admin Console? If so, unfortunately, this is sounds like a known issue with FireFox 3. See http://download.oracle.com/docs/cd/E13155_01/wlp/docs103/relnotes/relnotes.html#wp1210315 is the note for the portal admin console. Also, the release note is for WLP 10.3, but it will actually affect other releases as well.
    Try another browser, such as FireFox2 or IE6 or 7. If you want, you could initiate a support case, and ask to get a patch for bug 8159454.
    Greg

  • Hi - I created a form in Adobe Livecycle and have a button on it to send the form via email.  the button did not work and i looked online and saw where you could change it to a regular button and enter the email for it to go.  it worked, but only for thos

    Hi - I created a form in Adobe Livecycle and have a button on it to send the form via email.  the button did not work and i looked online and saw where you could change it to a regular button and enter the email for it to go.  it worked, but only for those with adobe pro.  i could not get it to work with reader.  is there a way i can make it work for reader?

    Noted.
    The LiveCycle user to user forum is across town at:
    Adobe LiveCycle 
    Be well...

  • Facebook like button is not working, I have used the muse widget and created code from facebook. Does anyone know how to get this to work?

    Facebook like button is not working, I have used the muse widget and created code from facebook. Does anyone know how to get this to work?

    Hi connally25,
    Below is a link to a video tutorial on how to add a Facebook Log button, please check if you have followed the same steps to add the video.
    http://tv.adobe.com/watch/learn-adobe-muse-cc/adding-a-facebook-like-button/
    If you have followed the steps correctly and the button still does not work; here is a link to a forum thread which might help solving the issue:
    Facebook Follow Widget not working
    Regards
    Sonam

  • Windows 8.1 - Upgrade from 8, Start Button Does Not Work

    I cannot find a fix for my 8.1 start button.
    It works when I move the task bar to the top, right or left but not at the bottom. I ran all windows updates and there are no missing/unknown drivers in device manager. No errors in the event log. I've restarted multiple times and created a new local profile.
    I've also tried: 
    Copy WinX folder under C:\Users\Default\AppData\Local\Microsoft\Windows into C:\Users\[your user name]\AppData\Local\Microsoft\Windows.
    dism /online /cleanup-image /restorehealth
    Any ideas? I would prefer not to do a clean install. Thanks in advance. 
    HP Touchsmart 23 series
    i5-3475S 2.90GHz
    16GB RAM
    1TB HDD

    Could you please describe a little more detailed about “Start Button does not work”? What is the symptom?
    Yes, when the taskbar is at the bottom of the screen, I cannot left click on the start button. The machine is also a touch-screen, which does work when I touch the start button. If I move the task bar to the left, right or top; the start button does work.
    And what is the kind of the account, Domain? Local? Or both?
    This is local machine.
    It still doesn’t work in a new account?
    Same issue happens with a new account.
    What happens if you use win + "X"?
    Win + "X" works fine; displays options.
    Regarding to the “doesn’t work, both for screen touch and mouse?
    Left-click via the mouse does not work. Touch works fine.
    Can you try to copy the WinX folder from a working PC to your PC for a test?
    I do not have another Windows 8.1 machine available to me.

  • Hello, i bought a unlock iPhone 5 in 2012 december and i come back to my country and i pay money to use my phone in Turkey and few months later push button didn't work so i take my phone to apple and they give me the new one but they didn't give the box.

    hello, i bought a unlock iPhone 5 in 2012 december and i come back to my country and i pay money to use my phone in Turkey and few months later my push button didn't work so i take my phone to apple in los angeles and they give me the new one but they didn't give the box. and 1 week ago i come back to my country again and i take a message from my line comany and they told that i must give money again to use my phone in Turkey until 30rt of january if i didnt pay i cannot use it anymore. but this is so stupid cause apple change my phone in guaranty covorage. what sould i do now

    You need to pay your mobile network provider for the calls, SMS and data you need to use your phone. This is an ongoing charge, usually paid monthly.
    This is nothing to do with Apple. Apple only provided the handset - not the mobile network you use it on.

  • IPhone top sleep/wake button is not working & Apple Logo screen at startup

    I have the original iphone. I have two problems, both just happened tonight at the same time. For seemingly no reason just my iphone external top sleep/wake button is not working. I tried powering the phone off and back on. I tried resetting my iphone, and restoring it. I made sure my Iphone software is up to date. None of these remedies have fixed the button. The button doesn't look broken, it pushes in and out, it just doesn't work anymore.
    Second problem is, after I power my iphone off and then back on, the Apple logo screen will continue to flash on and off indefinitely. The only way to get my home screen to appear is to connect my iphone to my computer. Then it wants to sync. After syncing it then asks if I want to "power off" or "cancel". Huh, why does is it doing that? To turn my iphone off I am pressing my Home button down until it shuts off, since I can't power off with the top black button. Is that the reason my phone is having the second problem, because I am powering off with the Home button? Could it be my second problem is not a problem?
    My iphone 1 year warranty is over. I can't call Apple Care, there is no apple store near me. I need a solution I can do at home myself. Please help. Even if you think the answer is obvious please suggest it to me. Before tonight nothing was wrong with my iPhone. It all started after I let my 6 and 7 year old nephews play with Google Maps on my phone for like 10 minutes - supervised. I consider myself to be a pretty Apple tech savvy guy, yet I can't figure out if they broke my iphone somehow, nor can I fix these two problems. Please help!

    Jason,
    I'm afraid I have good and bad news. Apple sent me a new original iphone. So that takes care of me but does not take care of the issue for so many people like you. I do not know if you can purchase the Apple Care plan at this time. Look into that. It really is worth it. Apple products require Apple technicians in the rare case the breakdown. Apple did not offer me an explanation of how they'll fix my phone or even saying why they sent me a new one. I synced it with Itunes and all my personalizations and apps are loaded back on it. It's like my old phone only shinyer and probably going to last me longer than the old one.
    I found out Apple Care covers the Iphone for 2 years past it's purchase date. So I would think that you could buy Apple Care even if you had it for like a year. Then it would at least cover you until the 2 year mark, which after that we're on our own(?). Please let me/us know if you were able to buy Apple Care protection and if they fixed your problem. I am impressed they got me a new phone so fast. I still love Apple.

  • Buttons/Links not working in ESS standard application

    Hi Experts,
    We have implemented ESS module in the portal. Here we have created a view via delta link tracer that contains less number of overview content. In this new view we just have links for "leave", Payment and Personal information links only. This was the requirment of the client. Now a few links inside the above mentioned links are not working. For example if i click on "Leave" and then "Quota overview" there comes  a screen where an Exit button is there. This exit button is not working at all. The screen remains the same on pressing the button. Similarly inside "paymen", the link payment summary is not responding. The screen remains the same when we click on payment summary. Is it related to configuration of these buttons. We are using the standard ESS application and have not at all modified the same.
    Best Regards,
    KM

    Note that
    While creating an iView instance there are two option
    -paste
    -paste as delta link
    You should choose paste as delta link option.
    Please check the link for more information-
    http://help.sap.com/saphelp_NW04s/helpdata/en/f5/eb515d0e6a11d7b84900047
    582c9f7/frameset.htm
    'Exit' button feature comes into picture when you consider that
    application should use home page customizing feature.

  • Button is not working properly- why not?

    Hello Everyone!
    I have searched the forums for the answer for my question, and I have read the "read this before you post" information, and I can't find the answer to my issue/question.
    I have a Captivate 4 project I have started, and I have inserted buttons on the slides (pretty basic task!). My issue is that the buttons I put on slides don't work 25% of the time. For example, I have a slide with a "next" button. I made sure to set the button up to "continue to next slide" when clicked. I go to view the project, and click "next" and nothing. *Sigh*
    Then on another slide, I have put a transparent button over an image. I click on the transparent button over the image and nothing. It does nothing. I have saved the project, closed it, reopened it, and the buttons still don't work.
    I recheck the properties of the buttons, and everything seems to be configured properly, but yet they do not work. Very frustrating. I can get most of my buttons to work properly, but randomly buttons are not working. What am I missing here?
    Otherwise, I have Captivate 4, and my company probably won't be upgrading to Captivate 5.5. After reading how Captivate 4 projects won't open in Captivate 5.5, I'm fine with that decision. We have too many projects created in Captivate 4, to not be able to open them with 5.
    Thanks for the help anyone can provide me!
    Karen

    Hello again
    Okay, here is a trip up spot. When you configured your button or click box, did you also maybe clear the "Visible" check box? Many users misunderstand that beastie and clear it thinking "well, I don't want the user to see the button or click box".
    Clearing it is a misguided attempt. The option is used when you wish to control things using Advanced Actions.
    Also, is there a question slide between where you are and where you want to be? If so, sometimes your Quiz settings will prohibit jumping to a slide beyond the unanswered question.
    Cheers... Rick
    Helpful and Handy Links
    Captivate Wish Form/Bug Reporting Form
    Adobe Certified Captivate Training
    SorcerStone Blog
    Captivate eBooks

  • The power button does not work

    i recently noticed that my original iphone power button does not work i push but nothing happens. I know that i have to fix but the problems is that the warranty is been over for long i need to know a good place to repair because the apple people said they could not fix it. I live in Texas so somewhere close would be nice.

    This link is for one 3rd party repair service you can contact for the first generation iPhone and for the iPhone 3G, which is located in Dallas.
    http://www.drcellphone.com/iphone-repair-service.php
    http://www.drcellphone.com/iphone2g.php

  • Select all button is not working in vl01n

    Dear All,
    We are facing a problem at the time of creating delivery through vl01n. At the time of selecting all line items of delivery on item overview screen, we are unable to select all line items. Due to this we have to delete each line item batches separately & to redetermine the batches or we can say select button is not working on item overview screen of vl01n. Also when we redetermine the batch split & return back to item overview screen, select all button works for line items perfectly.
    thanks & regards
    Deven Sharma

    Hi,
    In the user command write the code as per the sample given below:
    FORM select_all .
      CLEAR v_lisel.
      DO.
        READ LINE sy-index FIELD VALUE v_chk.
        IF sy-subrc NE 0.
          EXIT.
        ENDIF.
        READ LINE sy-index FIELD VALUE sy-lisel INTO v_lisel.
        IF v_lisel+2(1) = ' ' AND sy-index GT 5.
          v_lisel+2(1) = 'X'.
          MODIFY LINE sy-index FIELD VALUE sy-lisel FROM v_lisel.
        ENDIF.
      ENDDO.
    ENDFORM.                    " select_all
    reward if useful
    regards,
    ANJI

  • Find Next button is not working in member selection for Smartview V11.1.2.1

    Hello,
    Quite urgent.
    When group of users select Smartview --> Member Selection --> "FindNext" or "Find" button is not working.
    The same option is working fine with my credentials. But problem exists for set of 3 users.
    Please suggest asap.
    Thanks in Advance,
    Tej

    Hi Iain,
    Thanks for your reply.
    * All 3 users are part of same group.
    * Created user with similar group and checked for member selection option to verify "Find Next" button functionality. It worked fine.
    * Verified filters assigned to this group. No filters are assigned.
    * Checked for version again - Version is V11.1.2.1.00 (Build 271). It is exactly same as other systems where the functionality is working fine.
    * Installation is carried out by company IT team as administrator, so that can not be an issue.
    kindly suggest if you have any other inputs to be verified.
    Best Regards,
    Tej

Maybe you are looking for

  • HP LaserJet 4700dn - Does Not Init.

    I have an HP LaserJet 4700dn that has suddenly decided that it doesn't want to start up. Printer powers on, 3 lights on the front (Ready, Data, Attention) are all solid lit and do not turn off. Screen backlight comes on, but the screen never displays

  • I lose my Wi-Fi network settings every time I turn off

    Hello, and thank you for your time. Just bought my iPod Touch yesterday, and am loving it. One problem I'm having, though. I can't keep the settings for the network I want to use. I configured my router's network on it. Put in WEP and the security ke

  • Create a view based on a public synonym

    Hi I'm trying to create a view based on a public synonym, but getting "ORA-01031: insufficient privileges" error. When i retrieve records from the same public synonym, i could able to do so. But when i try to create a view based on that synonym, it i

  • Query on Database Size

    Hi all, I have a question regarding database size of my SAP Instance. My database by the way is Oracle 10g. I used the db02old transaction code. I got the ff: data in the space statistics: Scale: Month                                            Datab

  • File not found if No Hit along time to Serevr

    Hi guys ,, Am using Shaepoint2013 with Serevr2012. I have an Issue with SharePoint Site If there is no Hit on the server after some times it show me error with "File Not Found"  and after a while everything is going OK . Is there any setting in IIS i