Why some screens are hiddens in BDC record mode?

I'm trying to create a BDC record in VA01 transaction but in this mode some screens are hidden  just like screen "Material substitution(selecting a material)" Dynpro 800 Program "SAPMV45A"
Is it possible to show this screen in BDC recorder? how can i do it?
Regards

Hi,
i´m no expert in this but for a recording of material substitution you could try with transactions VB12 or VB13
Best regards.

Similar Messages

  • In my iPad mini some apps are not seen (voice recorder, calculator, compass etc)

    in my iPad mini some apps are not seen (voice recorder, calculator, compass etc)er

    Those apps aren't included in iOS on iPads
    iPad Mini built-in apps : http://www.apple.com/ipad-mini/built-in-apps/
    iPad manual (which has a chapter on each of the built-in apps) : http://support.apple.com/manuals/ipad/

  • Why capital letters change in lower after copying them from a PDF document, or otherwise, why some uppercase are in fact lowercase when I look in the Text Property in any PDF Reader.

    Why capital letters change in lower after copying them from a PDF document (Made by InDesign), or otherwise, why some uppercase are in fact lowercase when I look in the Text Property in any PDF Reader.

    your home page to get into your Web site should be index.html (for Mac) or index.htm  (on PC)
    You can name it something other than index, but will be harder to find.  when you create the subjects and link to them, they can can be named anything with the html extension  Or if your using PHP end in .php. There is a Microsoft type asp or aspx but your hosting service has to set up using windows server system.
    My hosting service use a Linux server normally but can convert Windows for a Fee.  UNIX Linux has no concept of asp or aspx.
    See this : https://skitch.com/pjonescet/8mnnx/dreamweaver

  • Help! during my photo slide show/some screens are green and/colored-why

    This is my first photo slide show in IMOVIE 8, when I go to "play" my slide show, some photo are NOT showing up INSTEAD a "colored" screen comes up. WHY? Not sure what I did wrong.

    I to have the same problem. It is very annoying, I name my photos so that they would be in a specific order or grouping.
    It appears that a programmer slipped? When I write code to copy files I would sort the list by filename as done in OS versions prior to 4.0.
    The order of the photos is now in the order that they were added to the folder which is then sync'd to our pods.
    I for one am not willing to remove and rebuild my whole photo library re-adding the photos to the sync'd in the order I wish to see them every time I wish to add more photos.
    It is a disappointment, but I have not been online in a couple of weeks and maybe Apple has caught on and put filename sorting back into the code.

  • Could someone help me figure out why after saving a form some subforms are hidden again

    I am asking this on behalf of a coworker.  We have a form she is working on with a drop down (ddlDropDown) with 1, 2, and 3 listed (same values,,1,2,3)  That trigger hidden subforms to appear (Employee1, Employee2, Employee3).  Initially, Employee1 is visible.  If form user selects 2 or 3 in the dropdown then Employee2 and Employee3 become Visible.  Once the form is filled in, saved, closed and reopened Employee2 and Employee3 are hidden again even though the dropdown says 2 or 3.  The script behind the dropdown's change event is:
    subSELECT.Employee1.presence=this.rawValue==1?"visible":"hidden";
    subSELECT.Employee2.presence=this.rawValue==2?"visible":"hidden";
    subSELECT.Employee3.presence=this.rawValue==3?"visible":"hidden";
    I have tried adding this code to the form's initialize, docReady, preOpen, postOpen, layout:ready events but it still doesn't work.
    Any ideas?

    Here is a sample I created based on your comments and it works just fine for me after saving the form.
    Employee2 and Employee3 subforms have their presence property set to hidden.  I have the script in the exit event of the dropdownlist.
    Here is the sample:
    https://workspaces.acrobat.com/?d=YWMOMIyD2lLEqPSdO0vqYQ

  • Why some messages are not processing

    Hi All,
    I have scene in AQ table some of the messages are in PROCESSED status
    and some of the messages in UNDELIVERABLE status.
    This is the data in the AQ table for undelivarable messages.
    MSG_STATE          RETRY_COUNT    EXPIRATION_REASON
    UNDELIVERABLE         -1                   PROPAGATION_FAILURE
    UNDELIVERABLE         -1         Messages to be cleaned up later
    Why some of the messages were processed and some of the messages were undelivarable.
    What are the reasons and how to solve this issue.
    Please help me.
    Thanks.

    In some situations that indicate application errors in queue-to-dblink propagations, Oracle Streams AQ marks messages as UNDELIVERABLE and logs a message in alert.log.
    Examples of such errors are :
    * when the remote queue does not exist
    or
    *when there is a type mismatch between the source queue and the remote queue.
    The trace files in the background_dump_dest directory can provide additional information about the error.
    Refer:
    http://docs.oracle.com/cd/B19306_01/server.102/b14257/aq_intro.htm

  • HT4976 why some messages are received and others are read ?

    I have an iPhone and I've been sending imessage to other people with iPhone.  Some messages are delivered and some are read.  What is the difference and why is this happening ?

    Depends on the receiver. They can set their read receipt to on and you will get read on your end when they actually open up the message app to read it. If they have read receipts set to off then all you will get is a delivered even if they read it.

  • Why some columns are not read into Power Pivot when reading data from a SQL query

    I have this SQL query that I want to use to read data to PowerPivot from:
    SELECT Score.FieldCount as fieldcount, Score.Record.GetAt(0) as predicted_gender, Score.Record.GetAt(1) as probability_of_gender,  Score.Record.GetAt(2)
    as probability_of_m,  
    Score.Record.GetAt(3) as probability_of_f,  Score.Record.GetAt(4) as customerkey
    FROM 
    SELECT * FROM dbo.myCLR1(
    dbo.MyCLR2('c:\fILES\MLSM.xml'), 
    'SELECT * FROM [dbo].[Customer]') Input
    ) Score
    After I click 'Finish' in "Table Import Wizard", I can only get 1 column (FieldCount) in Power Pivot window. Why don't I get the other 4 columns? If I save the result to a table I do get all columns but my goal is to dynamically present the result
    so that's not an option. Can anyone shed some light?
    Thanks,
    Chu
    -- Predict everything. http://www.predixionsoftware.com

    If I only pass in query as 
    SELECT * FROM dbo.myCLR1(
    dbo.MyCLR2('c:\fILES\MLSM.xml'), 
    'SELECT * FROM [dbo].[Customer]') Input
    I do get 2 columns (FieldCount and Record as shown below)
    -- Predict everything. http://www.predixionsoftware.com

  • Why some classes are not Cloneable?

    I found the library designers designed some classes that are not Cloneable, such as String,StringBuffer, File, Thread, Socket...
    Since File,Thread and Scoket contain information of the context, they may not work as expected if I transfer them to other hosts~~
    But why StringBuffer isn't Cloneable?

    It is Serailizable objects which can be transferred to another system.
    StringBuilder and the older StrinBuffer are Serializable but not Cloneable.
    I don't know why StringBuffer is not Cloneable, but I would not recommend you use clone() for any object except primitive arrays and I cannot think of a good used for cloning it. ;)

  • Why some albums are not available in other stores than the U.S one?

    When i found a song on the web page i click on "view in Itunes" (...) but then appears a message saying "this song is not available to your coutry store".
    Why is that?

    Apple can only sell music (and any other content type, films, apps etc) where the rights-holders grant them licenses to sell it. You can try requesting that an album be added to your country's store, but unless the rights-holder agrees to it then Apple can't sell it there : http://www.apple.com/feedback/itunes.html
    Are the albums available on other music purchase download sites that you have access to ?

  • Why some pages are not available offline in Safari reading list?

    From time to time I experience surprises that some web pages are not available offline in reading list of Safari - link is stored, but content - no.
    I was thinking that I was closing Safari too fast before pages downloaded.
    But I rechecked - I gave safari enough time and it still not downloaded.
    When internet connection is available pages are readable, but not in offline.
    And related to issue:
    Should I open Safari to allow to download page, when I add page to reading list from other applications by selecting "Add to reading list"?

    YEs, it's totally frustrating... I'll never again just go along with an upgrade. After upgrading to IOS8 the reading list feature no longer works.
    I even tried the factory reset, clearing out everything and making my iPad 2 like it was originally. And I didn't restore from backup either, afraid whatever bug it is would come back. I even installed iCab Mobile, and Readability... nothing works!
    I Really, really, regret upgrading. I want my fully functioning IOS7 back!!
    IS there any way to get IOS7 back, 'coz this IOS8 is for the birds?!

  • Why some archivelogs are not being backedup

    Hi,
    Can you help me understand why archivelog sequence 3 to 112 are not being backed-up?
    Rman list backup
    BS Key  Type LV Size       Device Type Elapsed Time Completion Time
    13      Incr 0  1.49G      SBT_TAPE    00:03:43     09-MAY-10     
            BP Key: 13   Status: AVAILABLE  Compressed: NO  Tag: TAG20100509T081017
            Handle: tapefullarch<orcl_14:718531818:1>.dbf   Media: 8d080a0a:4bbe63e5:0f3c:0001[[AE3772] Default LTO-Ultrium_4]
      List of Datafiles in backup set 13
      File LV Type Ckp SCN    Ckp Time  Name
      1    0  Incr 71884411   09-MAY-10 +DATA/orcl/datafile/system.256.705520977
      2    0  Incr 71884411   09-MAY-10 +DATA/orcl/datafile/sysaux.257.705520977
      3    0  Incr 71884411   09-MAY-10 +DATA/orcl/datafile/undotbs1.258.705520977
      4    0  Incr 71884411   09-MAY-10 +DATA/orcl/datafile/users.259.705520977
      5    0  Incr 71884411   09-MAY-10 +DATA/orcl/datafile/example.269.705521085
    BS Key  Type LV Size       Device Type Elapsed Time Completion Time
    14      Incr 0  9.75M      SBT_TAPE    00:00:06     09-MAY-10     
            BP Key: 14   Status: AVAILABLE  Compressed: NO  Tag: TAG20100509T081017
            Handle: tapefullarch<orcl_15:718532043:1>.dbf   Media: 8d080a0a:4bbe63e5:0f3c:0001[[AE3772] Default LTO-Ultrium_4]
      SPFILE Included: Modification time: 09-MAY-10
      SPFILE db_unique_name: ORCL
      Control File Included: Ckp SCN: 71884491     Ckp time: 09-MAY-10
    BS Key  Size       Device Type Elapsed Time Completion Time
    15      548.75M    SBT_TAPE    00:00:56     09-MAY-10     
            BP Key: 15   Status: AVAILABLE  Compressed: NO  Tag: TAG20100509T081413
            Handle: tapefullarch<orcl_16:718532053:1>.dbf   Media: 8d080a0a:4bbe63e5:0f3c:0001[[AE3772] Default LTO-Ultrium_4]
      List of Archived Logs in backup set 15
      Thrd Seq     Low SCN    Low Time  Next SCN   Next Time
      1    112     71466716   04-JAN-10 71467421   04-JAN-10
      1    113     71467421   04-JAN-10 71467880   04-JAN-10
      1    114     71467880   04-JAN-10 71468651   04-JAN-10
      1    115     71468651   04-JAN-10 71484482   29-APR-10
      1    116     71484482   29-APR-10 71487769   29-APR-10
      1    117     71487769   29-APR-10 71491078   29-APR-10
      1    118     71491078   29-APR-10 71494090   29-APR-10
      1    119     71494090   29-APR-10 71497327   29-APR-10
      1    120     71497327   29-APR-10 71501375   29-APR-10
      1    121     71501375   29-APR-10 71504570   29-APR-10
      1    122     71504570   29-APR-10 71526345   29-APR-10
      1    123     71526345   29-APR-10 71573288   01-MAY-10
      1    124     71573288   01-MAY-10 71621137   02-MAY-10
      1    125     71621137   02-MAY-10 71642763   02-MAY-10
      1    126     71642763   02-MAY-10 71704967   03-MAY-10
      1    127     71704967   03-MAY-10 71758899   04-MAY-10
      1    128     71758899   04-MAY-10 71780946   04-MAY-10
      1    129     71780946   04-MAY-10 71818236   05-MAY-10
      1    130     71818236   05-MAY-10 71818244   05-MAY-10
      1    131     71818244   05-MAY-10 71818290   05-MAY-10
      1    132     71818290   05-MAY-10 71818293   05-MAY-10
      1    133     71818293   05-MAY-10 71818296   05-MAY-10
      1    134     71818296   05-MAY-10 71818317   05-MAY-10
      1    135     71818317   05-MAY-10 71818321   05-MAY-10
      1    136     71818321   05-MAY-10 71818325   05-MAY-10
      1    137     71818325   05-MAY-10 71818372   05-MAY-10
      1    138     71818372   05-MAY-10 71818560   05-MAY-10
      1    139     71818560   05-MAY-10 71818568   05-MAY-10
      1    140     71818568   05-MAY-10 71822429   05-MAY-10
      1    141     71822429   05-MAY-10 71822437   05-MAY-10
      1    142     71822437   05-MAY-10 71884015   09-MAY-10
      1    143     71884015   09-MAY-10 71884510   09-MAY-10
      1    144     71884510   09-MAY-10 71884518   09-MAY-10
    BS Key  Type LV Size       Device Type Elapsed Time Completion Time
    16      Full    9.75M      SBT_TAPE    00:00:04     09-MAY-10     
            BP Key: 16   Status: AVAILABLE  Compressed: NO  Tag: TAG20100509T081520
            Handle: tapefullarch<orcl_17:718532120:1>.dbf   Media: 8d080a0a:4bbe63e5:0f3c:0001[[AE3772] Default LTO-Ultrium_4]
      Control File Included: Ckp SCN: 71884559     Ckp time: 09-MAY-10
    RMAN> ArchiveLogs...
    SQL> select SEQUENCE#,DELETED from v$archived_log;
    SEQUENCE# DEL
          3 NO
          4 NO
          5 NO
          6 NO
          7 NO
          8 NO
          9 NO
         10 NO
         11 NO
         12 NO
         13 NO
    SEQUENCE# DEL
         14 NO
         15 NO
         16 NO
         17 NO
         18 NO
         19 NO
         20 NO
         21 NO
         22 NO
         23 NO
         24 NO
    SEQUENCE# DEL
         25 NO
         26 NO
         27 NO
         28 NO
         29 NO
         30 NO
         31 NO
         32 NO
         33 NO
         34 NO
         35 NO
    SEQUENCE# DEL
         36 NO
         37 NO
         38 NO
         39 NO
         40 NO
         41 NO
         42 NO
         43 NO
         44 NO
         45 NO
         46 NO
    SEQUENCE# DEL
         47 NO
         48 NO
         49 NO
         50 NO
         51 NO
         52 NO
         53 NO
         54 NO
         55 NO
         56 NO
         57 NO
    SEQUENCE# DEL
         58 NO
         59 NO
         60 NO
         61 NO
         62 NO
         63 NO
         64 NO
         65 NO
         66 NO
         67 NO
         68 NO
    SEQUENCE# DEL
         69 NO
         70 NO
         71 NO
         72 NO
         73 NO
         74 NO
         75 NO
         76 NO
         77 NO
         78 NO
         79 NO
    SEQUENCE# DEL
         80 NO
         81 NO
         82 NO
         83 NO
         84 NO
         85 NO
         86 NO
         87 NO
         88 NO
         89 NO
         90 NO
    SEQUENCE# DEL
         91 NO
         92 NO
         93 NO
         94 NO
         95 NO
         96 NO
         97 NO
         98 NO
         99 NO
           100 NO
           101 NO
    SEQUENCE# DEL
           102 NO
           103 NO
           104 NO
           105 NO
           106 NO
           107 NO
           108 NO
           109 NO
           110 NO
           111 NO
           112 NO
    SEQUENCE# DEL
           113 NO
           114 NO
           115 NO
           116 NO
           117 NO
           118 NO
           119 NO
           120 NO
           121 NO
           122 NO
           123 NO
    SEQUENCE# DEL
           124 NO
           125 NO
           126 NO
           127 NO
           128 NO
           129 NO
           130 NO
           131 NO
           132 NO
           133 NO
           134 NO
    SEQUENCE# DEL
           135 NO
           136 NO
           137 NO
           138 NO
           139 NO
           140 NO
           141 NO
           142 NO
           143 NO
           144 NO
           145 NO
    SEQUENCE# DEL
           146 NO
           147 NO
           148 NO
           149 NO
    147 rows selected.
    SQL>

    Here it is Pavan... What's the difference between status X or A?
    and when I crosscheck archivelog all, I see "validation failed for archived log" for archivelogs 3 to 111
    SQL> select name, sequence#, completion_time, deleted from v$archived_log where status = 'A';
    NAME
    SEQUENCE# COMPLETIO DEL
    +DATA/orcl/arch/orcl1_112_705521069.arch
           112 04-JAN-10 NO
    +DATA/orcl/arch/orcl1_113_705521069.arch
           113 04-JAN-10 NO
    +DATA/orcl/arch/orcl1_114_705521069.arch
           114 04-JAN-10 NO
    NAME
    SEQUENCE# COMPLETIO DEL
    +DATA/orcl/arch/orcl1_115_705521069.arch
           115 29-APR-10 NO
    +DATA/orcl/arch/orcl1_116_705521069.arch
           116 29-APR-10 NO
    +DATA/orcl/arch/orcl1_117_705521069.arch
           117 29-APR-10 NO
    NAME
    SEQUENCE# COMPLETIO DEL
    +DATA/orcl/arch/orcl1_118_705521069.arch
           118 29-APR-10 NO
    +DATA/orcl/arch/orcl1_119_705521069.arch
           119 29-APR-10 NO
    +DATA/orcl/arch/orcl1_120_705521069.arch
           120 29-APR-10 NO
    NAME
    SEQUENCE# COMPLETIO DEL
    +DATA/orcl/arch/orcl1_121_705521069.arch
           121 29-APR-10 NO
    +DATA/orcl/arch/orcl1_122_705521069.arch
           122 29-APR-10 NO
    +DATA/orcl/arch/orcl1_123_705521069.arch
           123 01-MAY-10 NO
    NAME
    SEQUENCE# COMPLETIO DEL
    +DATA/orcl/arch/orcl1_124_705521069.arch
           124 02-MAY-10 NO
    +DATA/orcl/arch/orcl1_125_705521069.arch
           125 02-MAY-10 NO
    +DATA/orcl/arch/orcl1_126_705521069.arch
           126 03-MAY-10 NO
    NAME
    SEQUENCE# COMPLETIO DEL
    +DATA/orcl/arch/orcl1_127_705521069.arch
           127 04-MAY-10 NO
    +DATA/orcl/arch/orcl1_128_705521069.arch
           128 04-MAY-10 NO
    +DATA/orcl/arch/orcl1_129_705521069.arch
           129 05-MAY-10 NO
    NAME
    SEQUENCE# COMPLETIO DEL
    +DATA/orcl/arch/orcl1_130_705521069.arch
           130 05-MAY-10 NO
    +DATA/orcl/arch/orcl1_131_705521069.arch
           131 05-MAY-10 NO
    +DATA/orcl/arch/orcl1_132_705521069.arch
           132 05-MAY-10 NO
    NAME
    SEQUENCE# COMPLETIO DEL
    +DATA/orcl/arch/orcl1_133_705521069.arch
           133 05-MAY-10 NO
    +DATA/orcl/arch/orcl1_134_705521069.arch
           134 05-MAY-10 NO
    +DATA/orcl/arch/orcl1_135_705521069.arch
           135 05-MAY-10 NO
    NAME
    SEQUENCE# COMPLETIO DEL
    +DATA/orcl/arch/orcl1_136_705521069.arch
           136 05-MAY-10 NO
    +DATA/orcl/arch/orcl1_137_705521069.arch
           137 05-MAY-10 NO
    +DATA/orcl/arch/orcl1_138_705521069.arch
           138 05-MAY-10 NO
    NAME
    SEQUENCE# COMPLETIO DEL
    +DATA/orcl/arch/orcl1_139_705521069.arch
           139 05-MAY-10 NO
    +DATA/orcl/arch/orcl1_140_705521069.arch
           140 05-MAY-10 NO
    +DATA/orcl/arch/orcl1_141_705521069.arch
           141 05-MAY-10 NO
    NAME
    SEQUENCE# COMPLETIO DEL
    +DATA/orcl/arch/orcl1_142_705521069.arch
           142 09-MAY-10 NO
    +DATA/orcl/arch/orcl1_143_705521069.arch
           143 09-MAY-10 NO
    +DATA/orcl/arch/orcl1_144_705521069.arch
           144 09-MAY-10 NO
    NAME
    SEQUENCE# COMPLETIO DEL
    +DATA/orcl/arch/orcl1_145_705521069.arch
           145 09-MAY-10 NO
    +DATA/orcl/arch/orcl1_146_705521069.arch
           146 10-MAY-10 NO
    +DATA/orcl/arch/orcl1_147_705521069.arch
           147 10-MAY-10 NO
    NAME
    SEQUENCE# COMPLETIO DEL
    +DATA/orcl/arch/orcl1_148_705521069.arch
           148 11-MAY-10 NO
    +DATA/orcl/arch/orcl1_149_705521069.arch
           149 12-MAY-10 NO
    +DATA/orcl/arch/orcl1_150_705521069.arch
           150 12-MAY-10 NO
    39 rows selected.
    SQL>

  • Why some playlists are not in iCloud and some are?

    Since updating to iPhone 5 and the latest OS on all my devices and the latest itunes. I see SOME playlists from my itunes are in the cloud for my phone, but only about a third? What gives :-).
    Thanks in advanced

    Welcome to the Apple Community.
    PDF's aren't iBooks, only iBooks are available across all devices, you need to put them on each device yourself.
    If you want a dedicated pdf reader that syncs your documents across devices, try adobe reader.

  • Why some photos are not clear on Facebook?

    I have posted some snap  clicked from my DSLR on, Facebook. But when I view there! they are not clear.

    I have the same problem: I just added an new project to Aperture, but it isn't shown in the list of projects on the AppleTV. Even not in the "Last Week" one ... All other (or even most of them - I cannot count them - it is to much of them ... nicer sorting would be useful) are properly shown in the list...
    So it is not a networking problem or so ... Any ideas ?

  • Why some settings are located in windows settings node while other are located in administrative template node?

    hi friends
    when we look at any GPO in Group policy management snap-in, each GPO has these four main sections
    1-software settings     2- windows settings       3- administrative templates         4- preferences
    my question is, what logic or criteria exist about dividing OS settings into these four parts?
    what shared characteristics exist in windows settings node & what shared characteristics exist in administrative templates node?
    its confusing. because some settings about windows exist in windows settings node but some other settings which are again related to windows, are located in administrative templates node.
    any help please.
    thanks in advanced

    > but i need some more info about that
    For which purpose? It is the way it is, that's it :)
    Martin
    Mal ein
    GUTES Buch über GPOs lesen?
    NO THEY ARE NOT EVIL, if you know what you are doing:
    Good or bad GPOs?
    And if IT bothers me - coke bottle design refreshment :))

Maybe you are looking for

  • Error: The e-mail server could not be reached when the system was trying to

    Dear All, I've configured the Mail Transport in Portal successfully with SMTP as MS Exchange Server and Third-party Mailing servers. But due to some licensing issues a new MS Exchange mail server have been setup replacing the existing ones. And when

  • Steps to upgrade Oracle 10.2.0.1 to Oracle 10.2.0.2

    Hi Gurus, I am confused and need help on the above. I am currently on ECC6 with Oracle 10.2.0.1 on Linux. I want to upgrade to Oracle 10.2.0.2. This is what I plan to do.Please let me know if the below steps are incorrect : 1) Download patch set Orac

  • Wont open up mp3 files

    Is any one else having problems opening up new mp3 files with itunes 11.0?

  • Down and menu button stopped workin !

    Hi i was using my phone the other day and all of a sudden the menu button and down button stopped working ! i dont have a clue whats going on ! i have a n80, ive tried reinstalled my firmware but there seems to be a problem with the nokia updater it

  • SharePoint Security Bulletin same downloads......

    This SharePoint Security Bulletin has 4 same download available on below site....which we should download? https://technet.microsoft.com/en-us/library/security/ms14-050.aspx