Documentation request for 11g

hi
where to get
Advance Security for Oracle 11g with media and documentation
Oracle Database Vault for Oracle 11g with media and documentation
Oracle Label Security with media and documentation
Oracle RAC with media and documentation
Oracle Tuning Pack with media and documentationkind regards

SQLPL/SQLSYSAPPSDBATE0-121(EBZ11,R12)HPEVA4400XP124000152046c wrote:
hi
where to get
Advance Security for Oracle 11g with media and documentation
Oracle Database Vault for Oracle 11g with media and documentation
Oracle Label Security with media and documentation
Oracle RAC with media and documentation
Oracle Tuning Pack with media and documentationkind regardsoracle maintains the entire doc set for all products at tahiti.oracle.com. You should bookmark that site.

Similar Messages

  • Documentation requested for Program Enrollment

    Hi, i enrolled for the iPhone Developer Program, but im stuck in the phase where i have to fax ( +1 (408) 974-1053 ) the enrollmentID and documtations about company.. unfortunately the fax is always busy!
    It's whole day im trying to send it, but nothing.
    Does exist another fax number?
    ps: im from italy.

    Hi everyone,
    I started following the enrollment registration process as an agency developer. Then I received this mail from Apple which says to send them the documentation needed for my program enrollment, adding this last point in the end of the mail:
    "If we do not receive your information within the next seven (7) days, we will assume you are no longer interested in continuing your enrollment and will withdraw your request."
    Unfortunately more then 7 days passed by. In fact I see right now in my Program Summary section that my Developer Program Status shows a yellow triangle icon with a red written line:
    "Enrollment Pending"
    I don't know the exact meaning of that.
    Does it mean my registion has been quitted? So do I have to enroll with a new Apple Developer profile, with new e-mail and new password?
    One more thing.
    I didn't send yet documents requested, so should i send them holding this first account or should I enroll with a new one then send all documents needed?
    Thanks a lot!
    MF

  • The danger of memory target in Oracle 11g - request for discussion.

    Hello, everyone.
    This is not a question, but kind of request for discussion.
    I believe that many of you heard something about automatic memory management in Oracle 11g.
    The concept is that Oracle manages the target size of SGA and PGA. Yes, believe it or not, all we have to do is just to tell Oracle how much memory it can use.
    But I have a big concern on this. The optimizer takes the PGA size into consideration when calculating the cost of sort-related operations.
    So what would happen when Oracle dynamically changes the target size of PGA? Following is a simple demonstration of my concern.
    UKJA@ukja116> select * from v$version;
    BANNER
    Oracle Database 11g Enterprise Edition Release 11.1.0.6.0 - Production
    PL/SQL Release 11.1.0.6.0 - Production
    CORE    11.1.0.6.0      Production
    TNS for 32-bit Windows: Version 11.1.0.6.0 - Production
    NLSRTL Version 11.1.0.6.0 - Production
    -- Configuration
    *.memory_target=350m
    *.memory_max_target=350m
    create table t1(c1 int, c2 char(100));
    create table t2(c1 int, c2 char(100));
    insert into t1 select level, level from dual connect by level <= 10000;
    insert into t2 select level, level from dual connect by level <= 10000;
    -- First 10053 trace
    alter session set events '10053 trace name context forever, level 1';
    select /*+ use_hash(t1 t2) */ count(*)
    from t1, t2
    where t1.c1 = t2.c1 and t1.c2 = t2.c2
    alter session set events '10053 trace name context off';
    -- Do aggressive hard parse to make Oracle dynamically change the size of memory segments.
    declare
      pat1     varchar2(1000);
      pat2     varchar2(1000);
      va       number;
      vc       sys_refcursor;
      vs        varchar2(1000);
    begin
      select ksppstvl into pat1
        from sys.xm$ksppi i, sys.xm$ksppcv v   -- views for x$ table
        where i.indx = v.indx
        and i.ksppinm = '__pga_aggregate_target';
      for idx in 1 .. 10000000 loop
        execute immediate 'select count(*) from t1 where rownum = ' || (idx+1)
              into va;
        if mod(idx, 1000) = 0 then
          sys.dbms_system.ksdwrt(2, idx || 'th execution');
          select ksppstvl into pat2
          from sys.xm$ksppi i, sys.xm$ksppcv v   -- views for x$ table
          where i.indx = v.indx
          and i.ksppinm = '__pga_aggregate_target';
          if pat1 <> pat2 then
            sys.dbms_system.ksdwrt(2, 'yep, I got it!');
            exit;
          end if;
        end if;
      end loop;
    end;
    -- As to alert log file,
    25000th execution
    26000th execution
    27000th execution
    28000th execution
    29000th execution
    30000th execution
    yep, I got it! <-- the pga target changed with 30000th hard parse
    -- Second 10053 trace for same query
    alter session set events '10053 trace name context forever, level 1';
    select /*+ use_hash(t1 t2) */ count(*)
    from t1, t2
    where t1.c1 = t2.c1 and t1.c2 = t2.c2
    alter session set events '10053 trace name context off';With above test case, I found that
    1. Oracle invalidates the query when internal pga aggregate size changes, which is quite natural.
    2. With changed pga aggregate size, Oracle recalculates the cost. These are excerpts from the both of the 10053 trace files.
    -- First 10053 trace file
    PARAMETERS USED BY THE OPTIMIZER
      PARAMETERS WITH ALTERED VALUES
    Compilation Environment Dump
    _smm_max_size                       = 11468 KB
    _smm_px_max_size                    = 28672 KB
    optimizer_use_sql_plan_baselines    = false
    optimizer_use_invisible_indexes     = true
    -- Second 10053 trace file
    PARAMETERS USED BY THE OPTIMIZER
      PARAMETERS WITH ALTERED VALUES
    Compilation Environment Dump
    _smm_max_size                       = 13107 KB
    _smm_px_max_size                    = 32768 KB
    optimizer_use_sql_plan_baselines    = false
    optimizer_use_invisible_indexes     = true
    Bug Fix Control Environment10053 trace file clearly says that Oracle recalculates the cost of the query with the change of internal pga aggregate target size. So, there is a great danger of unexpected plan change while Oracle dynamically controls the memory segments.
    I believe that this is a desinged behavior, but the negative side effect is not negligible.
    I just like to hear your opinions on this behavior.
    Do you think that this is acceptable? Or is this another great feature that nobody wants to use like automatic tuning advisor?
    ================================
    Dion Cho - Oracle Performance Storyteller
    http://dioncho.wordpress.com (english)
    http://ukja.tistory.com (korean)
    ================================

    I made a slight modification with my test case to have mixed workloads of hard parse and logical reads.
    *.memory_target=200m
    *.memory_max_target=200m
    create table t3(c1 int, c2 char(1000));
    insert into t3 select level, level from dual connect by level <= 50000;
    declare
      pat1     varchar2(1000);
      pat2     varchar2(1000);
      va       number;
    begin
      select ksppstvl into pat1
        from sys.xm$ksppi i, sys.xm$ksppcv v
        where i.indx = v.indx
        and i.ksppinm = '__pga_aggregate_target';
      for idx in 1 .. 1000000 loop
        -- try many patterns here!
        execute immediate 'select count(*) from t3 where 10 = mod('||idx||',10)+1' into va;
        if mod(idx, 100) = 0 then
          sys.dbms_system.ksdwrt(2, idx || 'th execution');
          for p in (select ksppinm, ksppstvl
              from sys.xm$ksppi i, sys.xm$ksppcv v
              where i.indx = v.indx
              and i.ksppinm in ('__shared_pool_size', '__db_cache_size', '__pga_aggregate_target')) loop
              sys.dbms_system.ksdwrt(2, p.ksppinm || ' = ' || p.ksppstvl);
          end loop;
          select ksppstvl into pat2
          from sys.xm$ksppi i, sys.xm$ksppcv v
          where i.indx = v.indx
          and i.ksppinm = '__pga_aggregate_target';
          if pat1 <> pat2 then
            sys.dbms_system.ksdwrt(2, 'yep, I got it! pat1=' || pat1 ||', pat2='||pat2);
            exit;
          end if;
        end if;
      end loop;
    end;
    /This test case showed expected and reasonable result, like following:
    100th execution
    __shared_pool_size = 92274688
    __db_cache_size = 16777216
    __pga_aggregate_target = 83886080
    200th execution
    __shared_pool_size = 92274688
    __db_cache_size = 16777216
    __pga_aggregate_target = 83886080
    300th execution
    __shared_pool_size = 88080384
    __db_cache_size = 20971520
    __pga_aggregate_target = 83886080
    400th execution
    __shared_pool_size = 92274688
    __db_cache_size = 16777216
    __pga_aggregate_target = 83886080
    500th execution
    __shared_pool_size = 88080384
    __db_cache_size = 20971520
    __pga_aggregate_target = 83886080
    1100th execution
    __shared_pool_size = 92274688
    __db_cache_size = 20971520
    __pga_aggregate_target = 83886080
    1200th execution
    __shared_pool_size = 92274688
    __db_cache_size = 37748736
    __pga_aggregate_target = 58720256
    yep, I got it! pat1=83886080, pat2=58720256Oracle continued being bounced between shared pool and buffer cache size, and about 1200th execution Oracle suddenly stole some memory from PGA target area to increase db cache size.
    (I'm still in dark age on this automatic memory target management of 11g. More research in need!)
    I think that this is very clear and natural behavior. I just want to point out that this would result in unwanted catastrophe under special cases, especially with some logic holes and bugs.
    ================================
    Dion Cho - Oracle Performance Storyteller
    http://dioncho.wordpress.com (english)
    http://ukja.tistory.com (korean)
    ================================

  • Online documentation home page for 11g is not available

    Hi,
    For a 3 days an online documentation home page for 11g is not available.
    There is a message "Service Temporarily Unavailable" instead of it.
    It's sad :(

    What is the link you are referring to?
    I can access the following links with no issues.
    Oracle Database 11g Release 2 (11.2) Documentation
    http://www.oracle.com/pls/db112/homepage
    Oracle Database 11g Release 1 (11.1) Documentation
    http://www.oracle.com/pls/db111/homepage
    Oracle Database documentation, 11g Release 2 (11.2).
    http://www.oracle.com/pls/db112/homepage?remark=tahiti
    Oracle Database documentation, 11g Release 1 (11.1).
    http://www.oracle.com/pls/db111/homepage?remark=tahiti
    Thanks,
    Hussein

  • Create approval request  for Delete User operati with oim api -11g Release2

    Hi,
    How I can create an approval request for a User Delete operation usin API? Can anyone quide me? Any help is strongly appreciated..
    BR,
    Aliye

    You can use the exact same technique for any of the other requests submissions through APIs that have been posted on this message forum. Just supply the template name for your request template you plan to use.
    Here is a page of sample code for requests. http://java.net/projects/openptk/sources/svn/show/branches/Oracle/OIM11g/examples/java/OIMClient/src/oim/client/request?rev=1402
    -Kevin

  • Documentation for 11g?

    Hi,
    is there any documentation out for jdeveloper with SOA/SCA/BPEL?
    On http://www.oracle.com/technology/products/jdev/11/index.html i found nothing...

    Check this URL:
    http://www.oracle.com/technology/products/ias/bpel/techpreview/index.html
    And this:
    The Developer’s Guide for Oracle SOA Suite
    http://download.oracle.com/otndocs/products/soa/e10224.pdf

  • How can an approver modify the requested items in a request - OIM 11g R2

    Hi,
    I want the approver to add/modify/delete the requested items in a request, when the request is pending for approval.
    For eg. If a user has requested for 2 entitlements, when the request reaches the approver's queue, approver can add/delete the entitlements in the same request.
    Please let me know how to achieve the same in OIM 11g R2.
    Thanks
    Edited by: user9212679 on Mar 15, 2013 9:23 AM

    Check this API documentation
    http://docs.oracle.com/cd/E27559_01/apirefs.1112/e28159/oracle/iam/platformservice/api/AdminRoleService.html

  • Top 10 feature requests for reliability

    As per the Terms of Use:
    Post constructive comments and questions. Unless otherwise noted, your Submission should either be a technical support question or a technical support answer. Feedback about new feature requests or product enhancements are welcome too.
    My top 10 list:
    1) Require enough extra safe guards that users can't accidentally rename their Home folder.
    2) Don't let the Finder become unresponsive and beach-balled when dot-mac mounting is occurring.
    3) Faster Finder list view updating when sorted by last modified.
    4) OS update scripts should perform a hard disk verify before installation. If hard disk does not verify, the user should be told of the risk of proceeding and given directions on how to fix before proceeding.
    5) The filesystem should should be able to fix itself with fsck (ala AppleJack) without being booted from install CD/DVD.
    6) iPhoto Library folder should have an extra layer of protection to keep users from messing with it via the Finder.
    7) Forced shutdown via power key should give OS and filesystem more of a chance for recovery. (Not sure how this would work, but if users are doing this, it should not be so often fatal.)
    8) System maintenance scripts should have a method for running (other than cron) for those who don't leave their computer on 24/7.
    9) & 10) coming soon ...
    What are your feature requests for improved reliability?

    5) The filesystem should should be able to fix itself with fsck (ala AppleJack) without being booted from install CD/DVD.
    David Pogue explains why this can't be done in his Mac OS X: The Missing Manual He basically says that running fsck without an operating system disc is much akin to "a doctor performing an appendectomy on himself." While a method of doing this is provided, naturally fsck itself is not analyzed because it can't do that. To run fsck without an operating system disc, boot into single user mode, holding command-S at startup. Type /sbin/fsck -fy
    followed by return key,
    when done type:
    /sbin/mount -uw /
    followed by return key and when done with that type
    exit. This is documented here:
    http://docs.info.apple.com/article.html?artnum=106214
    Thankfully single user mode provides more safeguards. But they aren't perfect. Fixing the directory is something that should only be done if your data is backed up, and it is obvious you may have a damaged directory. A damaged directory may have the symptoms of a dying hard drive, and it is impossible to tell the difference.
    Apple is readying a really good backup system in Time Machine in Leopard. You can read more about it here:
    http://www.apple.com/macosx/leopard/timemachine.html
    Your best protection for what you are looking for is to learn how to backup your data, as my FAQ* explains:
    http://www.macmaps.com/backup.html
    * Links to my pages may give me compensation.

  • Error in raising ESS requests for an Approver

    Hello Experts,
    We have implemented standard claims workflow WS18900023 and have implemented BADI to get next approver.
    Everything is working fine except one case when an Approver of certain claim type is raising request for himself. Then we are getting error while saving the claim: Approver can not raise claim.
    I checked the documentation of BADI and found that we should return Person No and Group or Group in case we have multiple approvers but if we return null Group or null person no and group badi will go into error.
    Can you please help me with a possible solution to this issue? How can I enable the approver to raise claim for himself??
    Best Regards,
    Deepak

    in that BADI method GET_NEXT_APPROVER.
    Make sure your passing the values for export parameters EFD_APGRP and EFD_APERN based on no.of approval levels.
    For EFD_APGRP, you can pass value 'ADMIN' as default.
    When it's final level don't pass any values to these parameters.

  • Enterprise manager for 11g

    I have installed Oracle Enterprise Database 11g on a Windows 2003 Server. I have been going through some documentation and it sometimes refers to tabs and features that I cannot find in EM. I have since found out that the default install does not come with the 'Full' EM. The only one i seem to be able to find, download and install is for 10g.
    Also, I want to install this on a Client Machine, not the DB Server.
    Is there a full EM for 11g somewhere that I am not finding? All my searches point me back to the 10g EM download Page
    Thanks

    Oracle used to have a client-server Java Enterprise Manager console. Ths was popular and extremely functional in Oracle9i.
    With Oracle 10g, Oracle replaced the client-server console with a 3-tier 'browser based' console. That client-server tool was deprecated but still available on the Client CD. As of 11g that OEM Application was totally removed.
    However, looking at the statement you quote (from page 91):
    "The Oracle Enterprise Manager Central Console is a Web-based interface for managing the entire enterprise from the console. It offers a lot more functionality than the standard Oracle Enterprise Manager that comes with a typical database install."There are a few keywords here: "Central Console" and "managing the entire enterprise" lead me to believe the author is talking about the Grid Control. Similar to the DB Console that comes with the default install of the database, the Grid Control console has the following characteristics:
    - it is centralized (uses a separate computer to host the enterprise-wide OEM repository)
    - it allows monitoring and administration* of all Oracle products and many non-Oracle products
    - it it web-based and indeed, when looking at a database admin page, itr looks a lot like the DB console
    - it can consolidate the monitoring summary info about several products into a single page
    - it has reports and schedule capability not found in the native DB console
    - it places much less load on the db machine than the DB Console
    * in some cases Grid Control simply invokes the admin tool from the product rather than duplicating the product admin capability.

  • IBase When Creating a Request for Change in Solution Manager 7.1

    Hello all,
    We recenlty upgraded our sandbox system to Solution Manager 7.1 SP3 and are currently investigating the new ChaRM functionality with the new CRM UI. Our company had configured ChaRM back in 2007 and has been working very well since the initial delivery.
    While I was following the Request for [Change process simulation from RKT|https://websmp208.sap-ag.de/~sapidb/011000358700000478022011E/index.htm] on our sandbox system, I had noticed that the iBase and Component that we have  created in transaction IB52 prior to the upgrade were not showing in our search when we were defining the Change Request Scope section. In the documentation that I have read leading up to the upgrade, there have been no mention of the iBase/Component data becoming invalid post-upgrade nor have I found a conversion process.  I have done a search here on SDN and on SAP Notes to see why the iBase and Components were not showing up.
    Has anybody encountered this issue since the upgrade to 7.1 or is there something I need to do in IB52 in order for the iBase/Component in the new CRM GUI?
    Your assistance in this matter would be greatly appreciated.

    Hi,
    yes in 7.0 it worked for me too, that is because in 7.0 ChaRM searched for projects based on the IBase you selected.
    If there were more than one project where this system is involved you got a pop up where to chose your project.
    In 7.1 you chose the project directly, instead of let the system search for you.
    And depending on what productive-systems are in this project you get your Ibase list.
    If you don't select a project at all you will still get a list of all Ibases in your system.
    Iif you ask the SAP, they will allways tell you that you have to have a productive system in your project, at least as you pointed out with a virtual system.
    I did not read i t though and therfore ca nnot provide any sources.
    This is all based on my experiences.
    Best Regards
    Daniel
    Edited by: Daniel Titze on Nov 23, 2011 6:16 PM

  • Request for code !!

    request for code
    needs a code (which ,copies  the file on your computer (it copies the file to which it will path  in TextBox1)
    and is pasted file in the folder: C: \ Program Files \ RunerBat \ Backup
    and needs code ,which when clicked, "button2" opens "savefiledialog" and writes text with richtextbox1 as .bat ,,,
    but stores only when you click button1, it comes to me more about the button "select path the record"

    This forum is not for ordering code.
    Try it yourself. Read the documentation. It is grouped by topic.
    .NET Framework Development Guide
    To your question related these sub topics:
    File and Stream I/O
    SaveFileDialog Component (Windows Forms)
    Button Control (Windows Forms)
    Creating Event Handlers in Windows Forms
    If you have a specific problem, post the code you wrote and which question you have.
    Armin

  • Repository Creation Utility Portal schema for 11g creation fails

    I run RCU for database 11g 11.1.0.7 64bit created portal schema show error:
    in portal.log file:*
    PL/SQL procedure successfully completed.
    No errors.
    Create navigation page for shared page group.
    ERROR: Creating the Navigation Objects
    Internal error
    Unexpected error - User-Defined Exception (WWC-35000)
    wwpob_api_nav.add_banner_items (4)
    Unable to update the Portlet Repository Site. (WWS-30726)
    wwsbr_sitebuilder_provider.add_portlet
    The Page Group ID does not exist. (WWS-30641)
    wwsbr_site_db.get_default_language
    PL/SQL procedure successfully completed.
    in rcu.log file:*
    2010-04-12 17:53:24.752 NOTIFICATION rcu: oracle.sysman.assistants.rcu.backend.action.JavaAction::perform: JavaAction method=main
    2010-04-12 18:02:07.477 INCIDENT_ERROR rcu: oracle.sysman.assistants.rcu.backend.action.JavaAction::perform: Failed to execute method: Excepton:
    java.lang.reflect.InvocationTargetException
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:597)
         at oracle.sysman.assistants.rcu.backend.action.JavaAction.perform(JavaAction.java:325)
         at oracle.sysman.assistants.rcu.backend.task.AbstractCompTask.execute(AbstractCompTask.java:243)
         at oracle.sysman.assistants.rcu.backend.task.ActualTask.run(TaskRunner.java:303)
         at java.lang.Thread.run(Thread.java:619)
    Caused by: java.lang.RuntimeException: ERROR: Portal Configuration Assistant aborted
         at oracle.webdb.config.PortalConfigAssistant.<init>(Unknown Source)
         at oracle.webdb.config.PortalConfigAssistant.main(Unknown Source)
         ... 8 more
    2010-04-12 18:02:07.478 ERROR rcu: oracle.sysman.assistants.rcu.backend.action.AbstractAction::handleNonIgnorableError: Received Non-Ignorable Error: ERROR: Portal Configuration Assistant aborted
    2010-04-12 18:03:12.929 ERROR rcu: oracle.sysman.assistants.rcu.backend.task.ActualTask::run: RCU Operation Failed
    oracle.sysman.assistants.common.task.TaskExecutionException: RCU-6135:Error while trying to execute Java action.
         at oracle.sysman.assistants.rcu.backend.task.AbstractCompTask.execute(AbstractCompTask.java:300)
         at oracle.sysman.assistants.rcu.backend.task.ActualTask.run(TaskRunner.java:303)
         at java.lang.Thread.run(Thread.java:619)
    Caused by: oracle.sysman.assistants.common.task.ActionFailedException: RCU-6135:Error while trying to execute Java action.
         at oracle.sysman.assistants.rcu.backend.action.JavaAction.perform(JavaAction.java:347)
         at oracle.sysman.assistants.rcu.backend.task.AbstractCompTask.execute(AbstractCompTask.java:243)
         ... 2 more
    Caused by: java.lang.reflect.InvocationTargetException
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:597)
         at oracle.sysman.assistants.rcu.backend.action.JavaAction.perform(JavaAction.java:325)
         ... 3 more
    Caused by: java.lang.RuntimeException: ERROR: Portal Configuration Assistant aborted
         at oracle.webdb.config.PortalConfigAssistant.<init>(Unknown Source)
         at oracle.webdb.config.PortalConfigAssistant.main(Unknown Source)
         ... 8 more
    Thanks!
    Edited by: user8983928 on Apr 12, 2010 8:25 PM

    this error is actually described in the 10g documentation:
    http://download.oracle.com/docs/cd/B10468_13/relnotes.904/relnotes/portal.htm
    see bug 3263977 in Oracle support
    The page group in which the default basic search results page and / or the default advanced search results page resided has been deleted.
    The fix given in the bug sets the default basic and advanced search pages to be the same, seeded portal page.
    The bug is for 9.0.4 but is referred to from the 10g documentation, check the 11g documentation and see if the same bug is referred to.
    regards,
    Bernhard Jongejan
    http://bernhardjongejan.spaces.live.com

  • Documentation required for NEW OBIEE implemenation

    hi,
    which documentation are required for NEW OBIEE implementation? what r their standard formats/template (ie. AIM )
    Any one have sample doc for it? What is presales demo?

    Hello,
    Greetings! I downloaded the documentation library for OBIEE 11g as zip file on my win 7 (64 bit) machine. I did the extraction. It took more than 1 hour to extract. It was accessing the oracle site during extraction.
    Is it normal? Why does it go to oracle site for ZIP file extraction?
    It created multiple folders. I find some HTML file on the root folder of documentation on my desktop. If I open it, it shows all the documentation of Oracle products. If I click the links, it will not open the respective documentation.
    I did not find any getting started guide for OBIEE there.
    Any thoughts?
    Could you let me know the relevant OBIEE documentations for learning OBIEE 11g?
    What is the recommended sequence of going through OBIEE documentations?
    Thanks in helping me out.

  • Problem using At Selection Screen on value request for *"Select Fieldname"*

    Hi All,
    I Have a requirement of passing mutiple paraters value or selection option values in selection screen.
    For Eg :I Have -
    *--- Selection Screen
        Select-options :  s1  for vbak-vbeln ,
                                              s2  for vbap-posnr.
    *--- At Selection Screen     
        At Selection Screen on value request for s1-low.
         i need to pass S1-low as well as S2-low ...
         i.e first item of the Sales Document.
        Value is getting passed in S1-low but not in S2-low
        Can anybody help me on this ...
       Thanks in Advance ..

    Hi,
    Make use of the FM "F4IF_INT_TABLE_VALUE_REQUEST" for the value request for the first field.
    Use the "FIELD_MAPPING" in the tables parameter of the above FM.
    Please go through the FM documentation.
    Hope this will help you.
    Regards,
    Smart Varghese

Maybe you are looking for

  • Delivery Completed Indicator for Services

    Hi Guys In PO's, in the delivery tab, the Delivery Completed Indicator appears only for Stock PO's. Is it possible to make the Delivery Completed Indicator appear for non stock PO's as well, I mean for services? Thanks

  • Desktop software 6 will not install on Windows 7 - prior posts did not help

    I have a new computer with Windows 7. I downloaded and tried to install Desktop softwarew version 6 and it continually hangs at the screen at which Install Shield would normally show the progress bar showing the progress of the install. It is the scr

  • I phone 6 screen shows bright colored line at right long edge

    My iphone 6 (space gray, 64 GB) shows some distorted colors (they vary) along the right long edge of the screen (facing it in normal orientation). Just want to know if this is an unusual problem; it's become more noticeable in the past 3 weeks, espec

  • What exactly is X-Fi XtremeAud

    Hi, for months I want to buy a X-Fi Xtreme Music for the freat 3D headphones sound, but that card used to be far too expensi've for my budget. In german onlinestores, I found an offer for a so-called "X-Fi XtremeAudio"for only about 40 Euro. My quest

  • IDoc Outbound to File

    Hi experts,    I have tried to output invoice IDoc to file (Obj. Name: INVOIC02). When I view INVOIC02 in WE30, I got the follow segments: E1EDK01 - IDoc: Document header general data   However, I check with the IDoc file, I have E2EDK01005 instead o