BDC for J1IEX is not working in production

HI,
i  captured bdc for transaction J1IEX. its working in development client but not in production client.
it shows error message input fields not found. how could i resolve it.
<<text removed>>
Edited by: Matt on Jun 7, 2009 4:41 PM - "answer me quickly" text removed.

In future, please do not post the subject in all capitals
I've edited it for you this time.  Please take the time to read the Rules of Engagement.
matt

Similar Messages

  • BDC for KE51 is not working

    Hi all,
    BDC for KE51 is not working.I did recording with my Func Consultant and I created the program,all the data is coming correctly in th structure RECORD.But when Iam running the transaction,in foreground mode(Display all screens) the data is not getting entered into the fields of the screen,few got entred and few are blank.When I tried to reprocess the recording,then also data is not getting entered into the fields.Data is there in the recording.
    What might be the problem?

    Hello Techies,
    i m having the same problem but in my program i have to extract the data from SAP server and again have to upload in other table on SAP so please help me how would i extract the data and after that upload it using BDC.
    Thanks

  • BDC for CT04/BAPI_CHARACT_CREATE not working

    Hi Guys
    I need to create some characteristics in the ECC6 system. I have tried BDC but that does not go to second screen at all and I have also tried BAPI_CHARACT_CREATE BAPI but nothing is working here.
    Please please tell me how can I create them in the system Please help me immediately.. I need to finsih them by monday.
    Sincerely,
    Avinash

    Hi ,
    Here is sample code to execute the BAPI.
    REPORT ZCHAR_CREATE .
    DATA : CHARACTDETAIL LIKE BAPICHARACTDETAIL,
           CHANGENUMBER  LIKE BAPICHARACTKEY-CHANGENUM,
           CHARACTDESCR  TYPE TABLE OF BAPICHARACTDESCR WITH HEADER LINE,
           CHARACTVALUESCHAR TYPE TABLE OF BAPICHARACTVALUESCHAR WITH HEADER
    LINE,
           CHARACTVALUESDESCR TYPE TABLE OF BAPICHARACTVALUESDESCR WITH
    HEADER LINE,
           RETURN TYPE TABLE OF BAPIRET2.
    CHARACTDETAIL-CHARACT_NAME = 'TEST_CHAR'.
    CHARACTDETAIL-DATA_TYPE    = 'CHAR'.
    CHARACTDETAIL-LENGTH       = 10.
    CHARACTDETAIL-STATUS       = 1.
    CHARACTDETAIL-VALUE_ASSIGNMENT = 'R'.
    CHARACTDETAIL-ENTRY_REQUIRED = 'X'.
    CHANGENUMBER = '500000000000'.
    CHARACTDESCR-LANGUAGE_INT   = 'EN'.
    CHARACTDESCR-LANGUAGE_ISO   = 'EN'.
    CHARACTDESCR-DESCRIPTION    = 'DECRIPTION'.
    APPEND CHARACTDESCR.
    CHARACTVALUESCHAR-VALUE_CHAR = 'VAL1'.
    APPEND CHARACTDESCR.
    CHARACTVALUESCHAR-VALUE_CHAR = 'VAL2'.
    APPEND CHARACTVALUESCHAR.
    CHARACTVALUESDESCR-LANGUAGE_INT  = 'EN'.
    CHARACTVALUESDESCR-LANGUAGE_ISO  = 'EN'.
    CHARACTVALUESDESCR-VALUE_CHAR    = 'VAL1'.
    CHARACTVALUESDESCR-DESCRIPTION   = 'VAL1 DESC'.
    APPEND CHARACTVALUESDESCR.
    CHARACTVALUESDESCR-LANGUAGE_INT  = 'EN'.
    CHARACTVALUESDESCR-LANGUAGE_ISO  = 'EN'.
    CHARACTVALUESDESCR-VALUE_CHAR    = 'VAL2'.
    CHARACTVALUESDESCR-DESCRIPTION   = 'VAL2 DESC'.
    APPEND CHARACTVALUESDESCR.
    CALL FUNCTION 'BAPI_CHARACT_CREATE'
      EXPORTING
        CHARACTDETAIL             = CHARACTDETAIL
        CHANGENUMBER              = CHANGENUMBER
      KEYDATE                   = SY-DATUM
      TABLES
        CHARACTDESCR              = CHARACTDESCR
      CHARACTVALUESNUM          =
        CHARACTVALUESCHAR         = CHARACTVALUESCHAR
      CHARACTVALUESCURR         =
        CHARACTVALUESDESCR        = CHARACTVALUESDESCR
      CHARACTREFERENCES         =
      CHARACTRESTRICTIONS       =
        RETURN                    = RETURN          .
    CALL FUNCTION 'BAPI_TRANSACTION_COMMIT'
    EXPORTING
      WAIT          =
    IMPORTING
      RETURN        =
    Reward me if it is useful to you.
    All the Best.
    Uma.

  • I have an iMac with OS Lion. The Smartart feature for Office for Mac will not work when I am logged on to my personal user account. It works with other user accounts on the same computer, and it works after "safe start". How can I fix the problem?

    The Smartart feature of Office for Mac will not work in my user account. It works for all other user accounts on the same computer, and it works after a "safe start". How can I fix the problem?

    You may also want to search/ask in the forums run by the people who make the product which is causing you problems:
    http://answers.microsoft.com/en-us/mac/forum/macoffice2011

  • Early Adopter release : Extract DDL for tables does not work

    Hi,
    just had a look at Raptor - really nice tool - easy install - could be a replacement for SQLnavigator for us. One or two things I noticed though ...
    1)
    Export->DDL for tables does not work throws following error
    java.lang.ClassNotFoundException: oracle.dbtools.raptor.dialogs.actions.TableDMLExport
         at java.net.URLClassLoader$1.run(URLClassLoader.java:200)
         at java.security.AccessController.doPrivileged(Native Method)
         at java.net.URLClassLoader.findClass(URLClassLoader.java:188)
         at java.lang.ClassLoader.loadClass(ClassLoader.java:306)
         at oracle.ideimpl.IdeClassLoader.loadClass(IdeClassLoader.java:140)
         at java.lang.ClassLoader.loadClass(ClassLoader.java:251)
         at java.lang.ClassLoader.loadClassInternal(ClassLoader.java:319)
         at java.lang.Class.forName0(Native Method)
         at java.lang.Class.forName(Class.java:164)
         at oracle.dbtools.raptor.dialogs.BasicObjectModifier.launch(BasicObjectModifier.java:142)
         at oracle.dbtools.raptor.dialogs.BasicObjectModifier.handleEvent(BasicObjectModifier.java:210)
         at oracle.dbtools.raptor.dialogs.actions.XMLBasedObjectAction$DefaultController.handleEvent(XMLBasedObjectAction.java:265)
         at oracle.ide.controller.IdeAction.performAction(IdeAction.java:530)
         at oracle.ide.controller.IdeAction$1.run(IdeAction.java:785)
         at oracle.ide.controller.IdeAction.actionPerformedImpl(IdeAction.java:804)
         at oracle.ide.controller.IdeAction.actionPerformed(IdeAction.java:499)
         at javax.swing.AbstractButton.fireActionPerformed(AbstractButton.java:1849)
         at javax.swing.AbstractButton$Handler.actionPerformed(AbstractButton.java:2169)
         at javax.swing.DefaultButtonModel.fireActionPerformed(DefaultButtonModel.java:420)
         at javax.swing.DefaultButtonModel.setPressed(DefaultButtonModel.java:258)
         at javax.swing.AbstractButton.doClick(AbstractButton.java:302)
         at javax.swing.plaf.basic.BasicMenuItemUI.doClick(BasicMenuItemUI.java:1000)
         at javax.swing.plaf.basic.BasicMenuItemUI$Handler.mouseReleased(BasicMenuItemUI.java:1041)
         at java.awt.Component.processMouseEvent(Component.java:5488)
         at javax.swing.JComponent.processMouseEvent(JComponent.java:3126)
         at java.awt.Component.processEvent(Component.java:5253)
         at java.awt.Container.processEvent(Container.java:1966)
         at java.awt.Component.dispatchEventImpl(Component.java:3955)
         at java.awt.Container.dispatchEventImpl(Container.java:2024)
         at java.awt.Component.dispatchEvent(Component.java:3803)
         at java.awt.LightweightDispatcher.retargetMouseEvent(Container.java:4212)
         at java.awt.LightweightDispatcher.processMouseEvent(Container.java:3892)
         at java.awt.LightweightDispatcher.dispatchEvent(Container.java:3822)
         at java.awt.Container.dispatchEventImpl(Container.java:2010)
         at java.awt.Window.dispatchEventImpl(Window.java:1774)
         at java.awt.Component.dispatchEvent(Component.java:3803)
         at java.awt.EventQueue.dispatchEvent(EventQueue.java:463)
         at java.awt.EventDispatchThread.pumpOneEventForHierarchy(EventDispatchThread.java:242)
         at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:163)
         at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:157)
         at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:149)
         at java.awt.EventDispatchThread.run(EventDispatchThread.java:110)
    and 2)
    when I click on a package body - I get "loading ..." below it but it never puts the
    procedure names in and the "loading ..."message stays in the tree view - however you do get to see the packages in the source window.
    Realise this is very much a work in progress and am grateful to see an early release such as this. Looking forward to the production release.
    Best regards,
    David.

    OK thanks for looking ....you've obviously got the fixes on your to do lists
    Noticed that the SQL tab when you select an object works fine - displays the
    DDL for the object
    Do you think you'll have functionality so you can select many objects (shift left click) and
    then create a DDL script for them? It looks like you can do this for all objects in a schema but
    the ability to select a subset of objects in a schema would be very useful for our DBA's.
    Couldn't see any good reason for keeping using SQLNavigator
    Many congratulations on producing such a useful tool.
    Kind regards,
    David.

  • SWL_SUBSTITUTION_DEFINE does not work in production

    hi guys,
    we have tested to set substitution in qas using FM SWL_SUBSTITUTION_DEFINE and it work. Somehow it does not work in production ? we have checked and set the same setting as if in qas but still user is not able to see the PR in her inbox. pls help

    >The assigned agent is meant for classification of SOT
    I am not sure that you mean by this? Is there a classification called SOT defined in the system, and the task has been assigned to this classification? If yes, then you need to check the substitution that it is active for this type of tasks (or that it is active for "all" tasks). You should be able to see this also in the sbustitution table (I mean the type of substitution).
    Or do you mean that there is some authorisation role called "SOT" in the system, and the possible agents of this task are the users having this role? Then you should be able to see all the users in PFTC under the task.
    Regards,
    Karri
    PS. Remember also to execute transaction SWU_OBUF to refresh the buffers. Maybe it is some strange buffer problem...

  • (fn+F2 and fn+F3) for brightness are not working

    (fn+F2 and fn+F3) for brightness are not working, while the other function working properly... help me plz
    DJanoon

    What is the product number?
    Did anything change before this started happening?
    Power the system on and press F10 about once a second to get into BIOS.  Once you are in BIOS, go to the configuration tab (typically next to last tab) and set Action Keys to enabled.  Save the changes, exit, and the system should reboot automatically.  Test the brightness keys wihtout pressing the Fn key.  I suspect they will not work in this state, but I want to rule out the possibilities while awaiting the product number.
    ↙-----------How do I give Kudos?| How do I mark a post as Solved? ----------------↓

  • Functions (back & stop ) are not working in production environment

    Hi All ...
    Some functions (back and stop) are not working in production environment, where as those functions are working in QA testing environement..please answer.. what could be the reasons for not working some functions
    in production environement.
    Regards,,
    Krishna

    Hi,
    Based on the error message, it is related to the item in your production environment, then the workflow will occur exception.
    As your workflow worked perfectly in your other environments, I suggest you can check if some item has is valid in the document library.
    You can try to use Fiddler to track the web request and find in which item the workflow occurs exception.
    Here are some detailed articles for your reference:
    https://msdn.microsoft.com/en-us/library/vstudio/ee231573(v=vs.100).aspx
    http://www.andrewconnell.com/blog/SP2013-Workflow-Advanced-Workflow-Debugging-with-Fiddler
    Thanks
    Best Regards
    Jerry Guo
    TechNet Community Support

  • Lion - 2004 MS Office for Mac will not work

    My 2004 version of Microsoft Office for Mac will not work in Lion. I suspect because this is a PowerPC application. My question is this:
    Is there any program out there which will map the PowerPC to an Intel format? Other than trying to seel more products, I am surprised that Apple does not supply a mapping program for products made by Microsoft for the Apple devices.

    Eric, can you tell me where please? It's not mentioned on the Lion compatibility pages at all. (http://www.apple.com/uk/macosx/what-is/compatibility.html) nor on the 'how to upgrade' page (http://www.apple.com/uk/macosx/how-to-buy/)

  • Settings for Background workitems not working

    There is one Task in my workflow where Custom business object method is being called to trigger some background job when user approves a particular Expense. This step goes to error at times and there is a setting for Background workitem ( Under Miscellanous tab ) to restart after specific duration. But due to some unknown reason this setup is not working in Production last few weeks. Any idea where it goes wrong. I have attached the screenshot of Background workitem settings with this. Please check and let me know.

    Hi Anand
    As mentioned by Mike, check if Job SWWERRE is running in background or not. (report RSWWERRE)
    This job will pickup work items with "Temporary" Errors (Temporary Exception from the BO Method)  and will try to restart them for certain number of tries in specific time intervals. After those tries, it raises its hands and puts the work item in permanent error.
    But, if your method has thrown a "System" or "Application" exception, then the job will ignore such items. So ensure that the error is a "temporary" exception for your "Miscellaneous" settings to work.
    It is quite possible that your work item gave repeated error on each try of the job SWWERRE and finally it was put to state ERROR....check the step history in technical Workflow Log for details
    BTW - are you raising specific messages to know what the error is and maybe correct the root cause?
    Regards,
    Modak
    Just in case if you need to know more on BO Exceptions:
    Definition of Excepions:
    http://help.sap.com/saphelp_nw73EhP1/helpdata/en/4f/372e0cf5d95541e10000000a421937/content.htm?frameset=/en/4f/3ced28944e2b93e10000000a42189e/frameset.htm
    Programming Exceptions:
    http://help.sap.com/saphelp_erp2004/helpdata/en/c5/e4ad98453d11d189430000e829fbbd/content.htm
    Step By step Guide:
    http://www.****************/Tutorials/Workflow/Exceptions/Method.htm

  • F4 help for 0MAT_SALES is not working in BI 7

    Hi Gurus,
    The F4 help for 0MAT_SALES is not working when distibution channel is selected as (!=02) in Bex Analyzer. But for all other values for distibution channel  i am getting values in F4 help.
    Since 02 is excluded it is supposed to give values for all other combination. but it not so.
    Could anyone of you please help me on this?
    Thanks in advance.

    Closing Thread

  • Short key for copy does not work all the time now.

    After I have installed the latest OSX - Yosemite, my short key for copy does not work all the time.  It is infrequent how it works. I'm using the same keyboard that I have always used, my wireless logitech keyboard for mac.  Please help.

    I've plugged in my default mac keyboard and the short key copy still does not work.

  • OSS note is not working in production but works correctly in test system .

    hello friends ,
    weh have implemented one OSS notes , which is working corectly in Test system , but not working in production .
    Could you please let me know , what could be the reason ?
    OSS note no 1064273-
    Regards,
    Manoj

    Pls. check with Basis if the OSS note has been implemented properly and successfully.

  • The file to download the app for Android is not working from my phone--it says that the file isn't there. However it does see the one for the Iphone (even though it can't use it). I'm very computer literate and am pretty sure the problem is on your end.

    The file to download the app for Android is not working from my phone--it says that the file isn't there. However it does see the one for the Iphone (even though it can't use it). I've tried it multiple times and continue to get the same message: "NOT FOUND The requested item could not be found". I also tried through the Market application on the phone but ended-up with the same result.
    I'm very computer literate and am pretty sure the problem is on your end. If this is the case then no one can download the app. I considered that perhaps because it's still in Beta that it was removed due to some other type of software issue. I would really like to use Firefox on my new Droid (2.0); when with this be available?

    Firefox will not appear in the Market for most phones with incompatible hardware. You can check if your phone is supported here:
    https://wiki.mozilla.org/Mobile/Platforms/Android
    Even on some supported devices, a bug in the Market software prevents Firefox from showing up. This may be related to the fairly recent Android Market app update. If you go to Settings/Applications/Market and choose "Uninstall" you can uninstall the update, and then search for and install Firefox from the marketplace.
    Or, if you have a supported phone, you can download the app directly by typing this address into your phone's browser: http://bit.ly/fxbeta3
    (Note: To download the app directly for an AT&T phone, you will have to search for instructions on "sideloading" the APK file, since AT&T disables the option to install from non-Market sources.)

  • I purchased PSE 13 but have a Vista OS. It was suggested in this chat room that I download PSE 12. I did that & installed. The serial # for 13 does not work. Any thoughts on how I can get a number for PSE 12?

    I purchased PSE 13 but have a Vista OS. It was suggested in this chat room that I download PSE 12. I did that & installed 12.
    The serial # for 13 does not work. Any thoughts on how I can get a serial number for PSE 12?

    Hi
    There is a newer version of Resolution+ Plug-in released for an Qosmio X series
    [Resolution+ Plug-in v 1.1.2004|http://eu.computers.toshiba-europe.com/innovation/download_driver_details.jsp?service=EU&selCategory =2&selFamily=381&selSeries=231&selProduct=7506&sel ShortMod=null&language=13&selOS=all&selType=400&ye arupload=&monthupload=&dayupload=&useDate=null&mod e=allMachines&search=&action=search&macId=&country =all&selectedLanguage=13&type=400&page=1&ID=82406& OSID=30&driverLanguage=42]
    try it out...
    If it has not been installed properly, try rebooting your computer and reverify.

Maybe you are looking for

  • "Last Played" won't update on iTunes-purchased songs

    I've had great joy using the variable "Least Recently Played" to create Smart Playlists. But certain things are not updating properly now, with 10.5.3.3 Here's the table: Ripped Music, iPod Touch Gen 3:  UPDATES PROPERLY. Ripped Music, played in Win7

  • How to do "Path" in PSE 7

    Is it possible to simulate the CS command "Path" in PSE? Right now I use PSE7. Thanks for any tips/ideas/hunches! Alexander

  • TreeView Control not triggering event tvSkills_TreeNodePopulate and not expanding.

    Hello Guys, I am running my application on Azure. I have strange behavior on expanding TreeView throwing error at Application_Error of Global.Asax  "Value cannot be null.\r\nParameter name: parameter". But this behavior(TreeView) is working fine in n

  • Impersonation using javascript in MS CRM 2013

    Could it be possible to retrieve records on behalf of another user in MS CRM 2013/2015 using javascript. Is there any way to use ActOnBehalfOf privilege using javascript? 

  • ISE - User reauthentication

    Hi, I am in the process of testing ISE. I have run into an issue when a user needs to reauthenticate the below popup that request aditional information happens to fast that you sometimes do not even notice it or able to click it in time to retype you