Hi i need help from u ........people.........

hi,
i  need some answers.......
Q1. how to open a session from the report without going into the SM35?
Q2.how to modify the script without modifying the predefined print program using form routines?procedure please?
Q3.if we want to copy the fields into the target table which has not suffiecient memory space,then  how can we copy those fields?
Q4. see the fields given below
              f1      f2        f3      f4
1            a       b         a       d
2            c       b         c       a
3            b        b         a       d
4            c        b         a        d
if we say AT NEW  F2  and ON CHANGE OF F2  what happens ? and wt is the no of triggering?
regards
vishnu vardhan k.v.

Q1) Use the function module BDC_OPEN_GROUP
                                          BDC_INSERT
                                          BDC_CLOSE_GROUP
Q2)........................
You can use the PERFORM command to call an ABAP subroutine (form) from any program, subject to the normal ABAP runtime authorization checking. You can use such calls to subroutines for carrying out calculations, for obtaining data from the database that is needed at display or print time, for formatting data, and so on.
PERFORM commands, like all control commands, are executed when a document is formatted for display or printing. Communication between a subroutine that you call and the document is by way of symbols whose values are set in the subroutine.
Syntax in a form window:
/: PERFORM <form> IN PROGRAM <prog>
/: USING &INVAR1&
/: USING &INVAR2&
/: CHANGING &OUTVAR1&
/: CHANGING &OUTVAR2&
/: ENDPERFORM
INVAR1 and INVAR2 are variable symbols and may be of any of the four SAPscript symbol types.
OUTVAR1 and OUTVAR2 are local text symbols and must therefore be character strings.
The ABAP subroutine called via the command line stated above must be defined in the ABAP report prog as follows:
FORM <form> TABLES IN_TAB STRUCTURE ITCSY
OUT_TAB STRUCTURE ITCSY.
ENDFORM.
The values of the SAPscript symbols passed with /: USING... are now stored in the internal table IN_TAB . Note that the system passes the values as character string to the subroutine, since the field Feld VALUE in structure ITCSY has the domain TDSYMVALUE (CHAR 80). See the example below on how to access the variables.
The internal table OUT_TAB contains names and values of the CHANGING parameters in the PERFORM statement. These parameters are local text symbols, that is, character fields. See the example below on how to return the variables within the subroutine.
Q4)
  Those will not be triggered in the case of Onchage of F2.
  But it will get triggered in the case of AT NEW F2.
b'coz at new is  a group based operation...
  till f2 if any change occurs in the left handside fields then this will be triggered for that record...
  and all the right hand side fields contains ***** as their values....
reward if it helps u.....
sai ramesh

Similar Messages

  • Need help from expert people in how to integrate map to OBIE

    Hello Guys, i'm realy apreciate who help me in give some hints about this code that i comment it in line (42) from the code.
    where i dont know where to get states_sample.xml file from this line :
    //where the dynamically generated BI data can be found
    ps["xml_url"] = "http://localhost:9704/mapviewer/epa/nsdp/states_sample.xml";
    can any of you please give me hint in how to fix this problem or tell me where to get file or source code for that file :) ....
    and who want to know full document regarding to my question about code he can check it here on this link on PAGE 14 :
    http://www.oracle.com/technology/products/mapviewer/pdf/mapviewer_obiee.pdf
    or Atlease some of you give me link of full LABs (workshop) regarding to this Document mapviewer_obiee.pdf .
    best regard
    Yusuf Felemban
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
    <html>
    <head>
    <title>StatesDemo2</title>
    <META http-equiv="Content-Type" content="text/html; charset=UTF-8">
    <script language="Javascript" src="oraclemaps.js"></script>
    <script language=javascript>
    var mapview;
    var dynStatesFOI;
    function showMap()
    var baseURL = "http://localhost:9704/mapviewer";
    var mapCenterLon = -96;
    var mapCenterLat = 37;
    var mapZoom = 0;
    var mpoint = MVSdoGeometry.createPoint(mapCenterLon,mapCenterLat,8265);
    mapview = new MVMapView(document.getElementById("map"), baseURL);
    mapview.addBaseMapLayer(new MVBaseMap("mvdemo_plg.us_map_yus"));
    mapview.addNavigationPanel("WEST",null,false,null);
    mapview.setCenter(mpoint);
    mapview.setZoomLevel(mapZoom);
    mapview.addScaleBar();
    dynStatesFOI = new MVThemeBasedFOI('dynStatesFOI', 'mvdemo_plg.stat_test');
    dynStatesFOI.setRenderingStyle("C.COUNTIES");
    setupNsdp(dynStatesFOI);
    setupDynamicStyles(dynStatesFOI, -50, -10, 0);
    mapview.addThemeBasedFOI(dynStatesFOI);
    mapview.display();
    function setupNsdp(dynStatesFOI)
    //default NSDP is always available with MapViewer 10.1.3.1 production
    var nsdpInfo = new MVNSDP("defaultNSDP");
    nsdpInfo.setTheme("STATE_TEST"); //the base theme
    nsdpInfo.setKeyColumn("STATE"); //'match' column in the base table of the theme
    nsdpInfo.setRenderStyle("C.COUNTIES"); //default style;
    var ps = new Object();
    //where the dynamically generated BI data can be found
    ps["xml_url"] = "http://localhost:9704/mapviewer/epa/nsdp/states_sample.xml"; // <== Don’t know where to get states_sample.xml file
    nsdpInfo.setParameters(ps);
    //this tells mapviewer to join the BI data with the theme
    dynStatesFOI.setNSDP(nsdpInfo);
    //setups the dynamically created advanced style to
    //be used by the theme-based FOI.
    function setupDynamicStyles(dynStatesFOI,val1, val2, val3)
    //create basic colors to be used
    var sc1 = new MVStyleColor("color1", "00FF00", "666666");
    var sc2 = new MVStyleColor("color2", "00FF00", "666666");
    var sc3 = new MVStyleColor("color3", "FFFF00", "666666");
    var sc4 = new MVStyleColor("color4", "FF0000", "666666");
    sc1.setFillOpacity(60);
    sc2.setFillOpacity(60);
    sc3.setFillOpacity(60);
    sc4.setFillOpacity(60);
    //create individual ranged buckets
    var buckets = new Array(4);
    buckets[0] = new MVNumericRangedBucket(-500, val1, "color1", "range1");
    buckets[1] = new MVNumericRangedBucket(val1, val2, "color2", "range2");
    buckets[2] = new MVNumericRangedBucket(val2, val3, "color3", "range3");
    buckets[3] = new MVNumericRangedBucket(val3, null, "color4", "range4");
    var bseries = new MVBucketSeries("SCHEME_CUSTOM");
    bseries.setBuckets(buckets);
    var bucketSty = new MVBucketStyle("region_colors", bseries);
    //add all the primitive color styles we just created
    dynStatesFOI.addStyle(sc1);
    dynStatesFOI.addStyle(sc2);
    dynStatesFOI.addStyle(sc3);
    dynStatesFOI.addStyle(sc4);
    //now add the bucket style
    dynStatesFOI.addStyle(bucketSty);
    dynStatesFOI.setRenderingStyle("region_colors");
    </script>
    </head>
    <body onload=javascript:showMap();>
    <div id="map" style="height:500.0pt;"/>
    </body>
    </html>
    Edited by: user547202 on 11/11/2008 10:26 م

    thanks for passing this link Stijin,
    http://oraclebizint.wordpress.com/2007/09/25/oracle-bi-ee-10133-and-mapviewer-step-by-step-integration-phase1/
    http://oraclebizint.wordpress.com/2007/09/26/oracle-bi-ee-10133-and-mapviewer-step-by-step-integration-phase2-phase3/
    i already used this, but we need at least full explanation in how to build OBIE presentations layers and its physical and logical datas , and how to write codes using Java scrips and html codes using OBIE presentation on statistics text.
    if any of you just can link me link regarding to workshop lab's documentations and files regarding to OBIEE integrated to Mapviewer.
    with fully respect and love to you all,
    Yusuf Felemban

  • Would like to trace my ipod touch because I was robbed. I would find it please. need help from you guys. Not because I am able to get another. Thank you.

    would like to trace my ipod touch because I was robbed. I would find it please. need help from you guys. Not because I am able to get another. Thank you.

    - If you previously turned on FIndMyiPod on the iPod in Settings>iCloud and wifi is on and connected go to iCloud: Find My iPhone, sign in and go to FIndMyiPhone. If the iPod has been restored it will never show up.
    iCloud: Find My iPhone
    - You can also wipe/erase the iPod and have the iPod play a sound via iCloud.
    - If not shown, then you will have to use the old fashioned way, like if you lost a wallet or purse.
    - Change the passwords for all accounts used on the iPod and report to police
    - There is no way to prevent someone from restoring the iPod (it erases it) using it unless you had iOS 7 on the device. With iOS 7, one has to enter the Apple ID and password to restore the device.
    - Apple will do nothing without a court order                                                        
    Reporting a lost or stolen Apple product                                               
    - iOS: How to find the serial number, IMEI, MEID, CDN, and ICCID number

  • Why can't I get help from you people? Thunderbird is installed, but not working.

    I carefully followed the directions for installing Thunderbird. I am running WinXP pro. Thunderbird is there but not functioning. I am 78 years old and I need help from you re: install. I am not going to pay $$$$$to get a computer tech to come to my home and install Thunderbird. I had no trouble installing Firefox, but Thunderbird is an absolute drongo. Please call me at xxx-xxx-xxxx or email me a number to call. I need human help. PLEASE! Thunderbird just sits there but gets no mail.
    Regards, Sara

    This appears to be your first post here and you have not provided much detail to work with. This is the Thunderbird support forum. No one is going to call or email you other than the spammers that get your info that you posted in a public forum.

  • I need help from Customer Support. Whatever this charge is on my credit card,

     He recibido un cargo de su tienda, que curiosamente he visto que se han hecho muchos cargos a diferentes personas bajo el mismo copncepto y tienda.Favor acreditarme dicho monto porque no he comprado nada con ustedes y ni tengo idea donde está Minesota.Este es mi cargo. 23/07/15323343GEEKSQUAD RENE00015826 RICHFIELD UUSRD$1,428.010.00 Y veo en Internet que otros clientes han hecho reclamos del mismo concepto.   Subject Author PostedGEEKSQUAD RENE00015826Care‎03-09-2015 06:30 PMGEEKSQUAD RENE00015826 Unknown ChargePriscillaQ‎12-29-2014 10:08 PMrandom 10 dollar charge from richfield MN to my ac...ChrisBurns‎07-01-2015 12:50 PMUnknown Geeksquad charge on my Credit CardHardingR‎12-01-2014 05:57 PMGeekSquad protection terms changed without being i... Lo que me hace pensar que algo anda muy mal en ese Best Buy.  Como es posible que no hayan corregido e identificado quienes están detrás de este fraude que lleva años. I need help from Customer Support.  Whatever this charge is on my credit card,jesmann‎10-05-2014 04:52 PM  

    Hola scj2000-
    Muchas gracias por visitar nuestro foro en búsqueda de una explicación al cargo que recién apareció en tu tarjeta de crédito.
    Entiendo su preocupación, ya que cualquier cargo extraño que aparece en un estado de cuenta puede ser alarmante. En este caso, el último cargo que puede recuperar usando el correo electrónico que usaste para registrarte al foro, refleja que se renovó un antivirus Kaspersky. Esta autorización nos diste cuando realizaste la compra de tu Lenovo, desde entonces se renueva automáticamente la licencia de antivirus.
    Las otras publicaciones que has leído, indican lo mismo. Un cargo que se ha hecho a la tarjeta de crédito que se presentó durante la compra con la autorización del cliente.
    Lamento mucho la confusión y espero esto aclare tu duda.
    Atentamente,

  • I need help from chile and use a language translator to write and not turn my iphone4

    I need help from chile and use a language translator to write and not turn my iphone4

    http://support.apple.com/kb/TS3281       
    Not turn on

  • TS1717 This article is vague and unhelpful. My iTunes needs help from a pro. I have over 120,000 songs -- NO movies, TV, radio, or books... I have other programs which efficiently run things which are not audio-based. So why can I not get iTunes working w

    This article is vague and unhelpful. My iTunes needs help from a pro.
    I have over 120,000 songs -- NO movies, TV, radio, or books...
    I have other programs which efficiently run things which are not audio-based.
    So why can I not get iTunes working well?? It now takes at least 10 secs for any operation to be completed!
    That is just plain evil. But I am sure I could do something to help.
    All the music is on an 2T external drive.

    TS1717 as noted in the thread title...
    Brigancook, is the library database on the external or just the media? iTunes reevaluates smart playlists and rewrites its database after every action on the library. I've found this can make a library half that size, with a lot of smart playlists, quite sluggish. That said I'm aware part of my problem is aging hardware. Having the database on the internal drive may improve performance if it is currently on the external.
    I'd expect to see an exponential relationship between size and response time which may explain what you see. Cutting down on the number of smart playlists might help. If we're really lucky the long awaited iTunes 11 might have streamlined some of the background processes as well as cleaning up the front end.
    tt2

  • Need help from somebody with the "MSI KT6 Delta-FIS2R" motherboard

    Hi everybody!
    I really need some help from somebody with the MSI KT6 Delta-FIS2R motherboard (the one with onboard LAN, Audio, RAID, S-ATA and IEEE1394 firewire). You see. I've got this board myself but it's been destroyd. Some values for the onboard devices in my board has been overwritten so that windows no longer recognizes the onboard LAN and Audio controller anymore. I really need some help from somebody with this board.
    I need to see what the values for the onboard devices should be. I hope someone can help me by sending me a repport from the Everest home edition: http://www.lavalys.com/products/overview.php?pid=1&lang=en
    If anyone could do me this favour, I would be VERRY thankfull

    Quote from: HYSTERIAH on 12-November-05, 06:24:20
    I really need some help from somebody with the MSI KT6 Delta-FIS2R motherboard
    HYSTERIAH,
    With 76 Replies and 277 Views on your original thread, it looks to me like people have been trying to help you.
    So there is no confusion, I am locking this thread so all your help and advice you receive will be in the same place, so people do not need to jump between threads to keep track of what has already been suggested for this mobo of yours.
    Richard

  • Hi I am receiving thousands, yes thousands of eMails from APPLE Support Communities, In My inBox there is more than 26.000 eMails from these communities, and i Need Help from you, i will appreciate.I am not panicking but i've ever seen this !

    Apple Support Communities
    HI
    I am receiving THOUSANDS, YES THOUSANDS of eMails from ALL Apple Support Communities.I deleted some one thousand but still more than Normal.
    Please i need your Help.This is Enormous!!! I've never seen this happening! It should be a huge mistake that everybody from All Apple Support Communities
    sending me their complains? I think it is a big Mistake, or Something bigger, i don't Know! I just need Help in this moment. it's been more than three or four days
    i saw a number of eMails from Apple Support communities landing in my eMail address, should this be normal? I don't think so.
    I appreciate any Help
    Kind Regards
    & a Happy New Year

    Click Your Stuff in the upper right and select Profile. In your profile there is a link to the right to manage email notifications.

  • How to (make best) use external js library from html object (need help from dev)

    Ok, on another discussion about rotating full screen backgrounds slideshows, i was orientated to try a small lib named "backstrech"
    I throw myself in, and i really like what we can do with it.
    To use it simply, just make an html object and paste this in :
    <script src="http://musecdn2.businesscatalyst.com/scripts/4.0/jquery-1.8.3.min.js" type="text/javascript"></script>
    <script src="assets/jquery.backstretch.min.js" type="text/javascript"></script>
    <script>
      $.backstretch([
          "http://dl.dropbox.com/u/515046/www/outside.jpg"
        , "http://dl.dropbox.com/u/515046/www/garfield-interior.jpg"
        , "http://dl.dropbox.com/u/515046/www/cheers.jpg"
      ], {duration: 3000, fade: 750});
    </script>
    then add the jquery.backstretch.min.js to your "downloaded files" (file menu > files to download)
    And you’re done.
    Now, i need some help from better developers.
    As you can see, my first line is a call to jquery, the same that we find later in Muse exported code.
    Reason 1 : without this line, jquery is not defined and the plugin won’t work.
    This raises 2 issues :
    - We load twice the same ressource which is useless (100k)
    - loading js is all about having the page hangs while it loads, hence, they are put at the end of the body.
    Does anybody know a way to load this particular html script AFTER we are sure the muse scripts (esp. jquery) have been loaded ?
    (in the Edge Animate world, i’d go for the yepnope, and put it at the right place in the code, though, here i have no access to page load structure except head)
    PS : in addition to that, i made an exported page/excluded from navigation where i put all the images i wanted for the background, i could then simply change the images lines :
    , "http://dl.dropbox.com/u/515046/www/garfield-interior.jpg"
    to
    , "images/my_image_name_as_in_ressources.jpg"

    Got it, there was a bug in my code. Here is what you do:
    1. Download the js file https://raw.github.com/srobbin/jquery-backstretch/master/jquery.backstretch.min.js
    2. In Muse: Go to File -> Add Files for Upload and add the script file
    3. Open Page Properties -> Metadata -> HTML for <Head>
    Paste this code in:
    <script>
    window.onload = function() {
    var loaded = function() {
      $.backstretch([
          "http://dl.dropbox.com/u/515046/www/outside.jpg"
        , "http://dl.dropbox.com/u/515046/www/garfield-interior.jpg"
        , "http://dl.dropbox.com/u/515046/www/cheers.jpg"
      ], {duration: 3000, fade: 750});
    //Load the plugin:
    var head= document.getElementsByTagName('head')[0];
    var script= document.createElement('script');
    script.type= 'text/javascript';
    script.onreadystatechange = loaded;
    script.onload = loaded;
    script.src= 'assets/jquery.backstretch.min.js';
    head.appendChild(script);
    }; //Window OnLoad
    </script>
    4. Preview or Publish = Done!
    Example: http://musebackstretch.businesscatalyst.com/index.html

  • Need help from Jeff in getting CC desktop application

    Jeff, I was unable to find my previous question to you from the other day. To start over, my CC desktop application is gone missing after 10 months of CC usage.  I need to  download a LR update so I can use my camera with raw files. How can I get this back? Apparently Adobe doesn't allow reinstalling of individual programs even though I actually own LR. Please redirect me accordingly. I need help. I have win 7 64.
    GeneC

    Genec2 locking this discussion and will respond in CC desktop app icon missing.

  • Need help from Blackberry - Can't register 9860 in BB network.

    Yesterday I have bought a 9860 torch from an online auction site in Romania. The phone is looking great, working great, except I cannot register it on the blackberry network, in order to use an internet data plan. As soon as I turned the phone on, the yesOPTUS carrier logo appeared on the screen, indicating that this device once belonged to someone in Australia. My carrier is Orange Romania and I am using it on a pre-paid SIM card with the "blackberry unlimited 4" internet option that Orange offers in Romania. When I try to go to Host Routing Table in the phone's menu, there is nothing displayed there. I tried to send the registration message and remove the battery (while the decice is ON) and put it back in, with no result. I have spent a day on the phone with the data plans support team at Orange Romania, virtually troubleshooting every possibility to connect the device to the bb network - they even created a bb access point specifically for my phone number - everything without result. When I tried to create a blackberry account on blackberry.orange.ro with my PIN and IMEI, the page replied that my account is disabled and that I should contact my carrier. Which I did. And they said that I should either talk to Blackberry or yesOPTUS, as there is a possibility that my device is already registered with the BB network on the yesOPTUS, from it's first owner back in Australia, and that my PIN may need to be erased from a database in order to be re-synced with my carrier. The way I see it, it's either that, or Orange does not carry the 9860 in their network (yet?). The certain fact is that I ended up with a beautiful device that I can't use to it's fully potential. Any help from Blackberry is fully appreciated. Thanks.

    irelative wrote:
    When I tried to create a blackberry account on blackberry.orange.ro with my PIN and IMEI, the page replied that my account is disabled and that I should contact my carrier. 
    Optus is in the only one that can remove the PIN/IMEI from their system. You need to contact them.
    If the device has been reported lost or stolen, they won't remove it.
    1. If any post helps you please click the below the post(s) that helped you.
    2. Please resolve your thread by marking the post "Solution?" which solved it for you!
    3. Install free BlackBerry Protect today for backups of contacts and data.
    4. Guide to Unlocking your BlackBerry & Unlock Codes
    Join our BBM Channels (Beta)
    BlackBerry Support Forums Channel
    PIN: C0001B7B4   Display/Scan Bar Code
    Knowledge Base Updates
    PIN: C0005A9AA   Display/Scan Bar Code

  • I Need Help From Anyone!!!ASAP!!!

    my ipod is showing an unhappy face it wont let me restore it and it isnt recognised on my pc and makes a high pitched dropping sound im going away on saterday so need help fast!!!thanks
    Dell latitiude D610   Windows XP Pro  

    See these troubleshooting articles.
    My iPod is sad.
    What does this picture on my iPod mean?
    PC doesn't recognize the iPod is connected.
    Folder and ! error.
    When restoring the iPod, it's useful to put into disk mode first.
    Putting iPod into disk mode.
    This icon is usually indicative of a hard drive problem, and if none of the above help, it will need service.
    You can arrange online service here.
    Service request.

  • I need help from muse pro's

    I have a client wanting a site similar to this link.
    http://www.charliegerken.com/
    I can do most everything layout and content wise but where I need help is with the complex searches and the integrated maps. Any input would be very much appreciated. Thank you.

    Hi JtB!
    Here are some example websites which have been produced with Business Catalyst.
    - http://www.rentersguide.com/ (made by SimpleFlame - http://simpleflame.com/)
    - http://uguru-realestate-us.businesscatalyst.com/ (ready template - BCgurus - http://www.bcgurus.com/templates)
    Ask consulting offers these two companies. I know for sure that they are reliable and they can help you.
    Best Regards
    TaikaJim

  • I need help from square one

    Alright, i admit it. I need help and more than the normal person. Heres the deal. I have a PC and my Mac. My PC isnt wireless and I just got the AirPort Extreme and am trying to set my MacBook on wireless and my PC thru ethernet thru the AirPort Extreme. I tried reading the books but im not that good at understanding that mumbo jumbo. So I need help with setting up networks, connecting, the whole thing. If anyone could tell me how step-by-step or refer me to a site that will show me how thatd be awesome.

    maclover14, Welcome to the discussion area!
    How do you connect to the Internet? If it is via broadband (cable modem or DSL) it is very easy.
    The steps can be found in the "Designing AirPort Networks" (direct PDF link) document. Look through that document and try to get it setup. Then return here if you have more questions. Don't forget to post what you tried and the issues you encountered.

  • Need help from someone who is good in php

    I really need some help with a php project i am doing and i am wondering if anyone is good in php that could help me.
    This is for a php admin panel which i have done most of but i am having trouble with 1 part of it
    If anyone could help please email me at [personal information removed by moderator] and i will tell you what i need help with to save writing it all in here

    Hello ian,
    we need some more info. See Ben's answer in a similar case here: http://forums.adobe.com/thread/1300650?tstart=0.
    Good luck!
    Hans-Günter

Maybe you are looking for

  • My iTunes won't open, getting error message.

    "The iTunes application could not be opened. An unknown error occured (13010)." Help?

  • Iplanet LDAP Configuration in Portal

    Hi All, I was trying to configure my UME with LDAP - iplanet. (Sun one Directory Server) in SAP Netweaver CE. I downloaded the xml file using config tool. 1. dataSourceConfiguration_iplanet_readonly_db 2. dataSourceConfiguration_iplanet_not_readonly_

  • 2.2 update & G.P.S. power saver

    The new 2.2 update said there is a GPS Save power update. GPS on iPhone is active only when you need it. iPhone powers the GPS unit on and off quickly and automatically, so it won't adversely affect battery life. It's not happening on my phone. Any i

  • Where do I put passcode in 3g to activate bluetooh in car

    where do I put passcode in iphone to activate handsfree

  • Query possible?

    Hi Experts, Please help me in designing a query for the below given requirement. The Flow: I have three DSO's X, Y, Z and a multiprovider over them. The three DSO's have a key figure each to be displayed in the report. Report requirment: The report n