How to check if a button is clicked or not

Hi All,
This is rani.  Im very new to SAP.
Im into my first project, in which im having an immediate enhancement.
In SRM Portal, I need to logged in as bidder to create a bid response.
Participate button is there, i need to clicked that button, this is mandatory.
So how and where to check whether the button is clicked or not.
else i need to raise the error message in BBP_DOC_CHECK_BADI and some fileds needs to be grayed out.
The webdynpro component is FPM_OIF_COMPONENT.
Can u please help me out in this regard.
Thanks in Advance,
Rani.

HI,rani;
   you can use the FM  :BBP_PD_BID_GETDETAIL ,you will get the detail of the Rfx ,and check the status of the Rfx !
   Alex

Similar Messages

  • SRM RFx Response - How to check if a button is clicked or not

    Hi All,
    This is rani.  Im very new to SAP.
    Im into my first project, in which im having an Immediate enhacement.
    In SRM Portal, I need to logged in as bidder to create a bid response.
    "Participate" button is there, i need to clicked that button, this is mandatory.
    So how and where to check whether the button is clicked or not.
    else i need to raise the error message in BBP_DOC_CHECK_BADI and some fileds needs to be grayed out.
    The webdynpro component is FPM_OIF_COMPONENT.
    Can u please help me out in this regard.
    Thanks in Advance,
    Rani.

    Hi  Rani ,
    In SRM 7.0 the system variables ( sy-ucomm & sy-Tcode ) will not work .
    if you want the action code  triggered in the  Webdynpro screen inside the BADI: BBP_DOC_CHECK_BADI
    kindly study the SAP Note 1334202 - How to get current action ID and transaction group
    Below piece of code will give you the action Id in side the badi
    DATA: lo_trans_context TYPE REF TO /sapsrm/if_transaction_context,
            lv_action        TYPE /sapsrm/pdo_action_type,
            lv_tcode         TYPE /sapsrm/transaction_group.
      lo_trans_context = /sapsrm/cl_transaction_context=>/sapsrm/if_transaction_context~get_instance( ) .
      lv_action = lo_trans_context->get_current_action( ). "  replacement for sy-ucomm
      lv_tcode  = lo_trans_context->get_transaction_group( )." replace ment for sy-tcode
    kindly go through the SAP note provided .
    Regards
    Chinnaiya P
    Edited by: chinnaiya pandiyan on Jun 27, 2011 7:34 PM

  • How to check whether a link is clicked or not in jsp????

    hi
    please help me in checking out whether a link in a html page is clicked or not....
    actually iam having a jsp page which has 3 links
    link1
    link2
    link3
    if i click the link1...the sublinks(for example link 1.1 link 1,2) of link1 should appear...can anyone of u please tell me how to do this in jsp........

    try to use java script

  • How to check SQL Mamagement studio is installed or not (any version) programatically

    How to check SQL Mamagement studio is installed or not (any version) programatically?
    Secondly how to check if it is installed in other driver of a system(other than C drive) programatically.

    Thanks visakh16,
    Actually i do not want to read/write registry from SQL Server like  you replied 'Accessing The Registry From SQL Server' link
    and i dont want to check manually in registry.even i am aware of all registry path.. programmatically (by C# or VB.NET) i want to get that yes SSMS is installed of not even if it is installed in other drive(other than C Drive).. Beacause if it is installed
    on the system , i want to launch that. i can launch, login for specific user/database, but i want to know, is it installed or not any version of SSMS befoe launch.This is my question... please review it..Thanks in advance..
    Actually I tried this way..
     Dim registryView As RegistryView = If(Environment.Is64BitOperatingSystem, registryView.Registry64, registryView.Registry32)
            Using hklm As RegistryKey = RegistryKey.OpenBaseKey(RegistryHive.LocalMachine, registryView)
                'Dim instanceKey As RegistryKey = hklm.OpenSubKey("SOFTWARE\Microsoft\Microsoft SQL Server\Instance Names\SQL", False)
                If instanceKey IsNot Nothing Then Return True
                Return False
                      '    For Each instanceName In instanceKey .GetValueNames()
                '    Next
                'End If
            End Using
    Here i am checking for instances but i want to check only SQL Management Studio is installed or not..Thanks again

  • HOw to check weather flash player is installed or not in Nokia ?

    How to check weather flash player is installed or not in
    Nokia ? I had created some flash file , i need to install in Nokia
    mobile .If there is no flash player how it will detect? if it is
    installed then how it will detect.
    Chirag

    Did you see the list of supported devices?
    http://www.adobe.com/devnet/devices/nokia.html
    http://www.adobe.com/devnet/devices/nokia_s60.html
    http://www.adobe.com/devnet/devices/nokia_s40.html
    http://www.adobe.com/mobile/supported_devices/

  • How to check for a  button

    I have a form that submits to itself. My submit is the
    standard :
    <input type="submit" name="btnsubmit" value="Submit Your
    Order">
    When the form is submitted, I check for the existence of
    btnsubmit using paramerexists or isDefined :
    <cfif parameterexsits(btnsubmit)>
    perform inserts, etc.
    </cfif>
    This works fine. But my question is what do I do if the
    type=button instead of submit ? For example
    <input type="button" name="btnSubmit" value="Submit Your
    Order">
    I have some javascrpt validation that will submit the form
    when the button is clicked. Howver, how do I determine whether the
    button was seleceted or not, so that I can do my processing
    (insert, etc. ) ? I tried to use the isDefined or parameterexists
    like before but that does not work ?
    What is the command to check that a button was selected
    ?

    Assuming your <input> button is inside of the form you
    are submitting,
    simply use
    <cfif isDefined('form.btnSubmit')>
    However - some browsers only pass the button value if that
    particular
    button is clicked.
    In other words, hitting 'enter' in another field of the form
    may not
    pass in the submit button value as part of the form scope. In
    this case
    you'd want to check for another one of the form variables,
    ideally a
    required field.
    trojnfn wrote:
    > I have a form that submits to itself. My submit is the
    standard :
    > <input type="submit" name="btnsubmit" value="Submit
    Your Order">
    >
    > When the form is submitted, I check for the existence of
    btnsubmit using
    > paramerexists or isDefined :
    > <cfif parameterexsits(btnsubmit)>
    > perform inserts, etc.
    > </cfif>
    >
    > This works fine. But my question is what do I do if the
    type=button instead of
    > submit ? For example
    > <input type="button" name="btnSubmit" value="Submit
    Your Order">
    >
    > I have some javascrpt validation that will submit the
    form when the button is
    > clicked. Howver, how do I determine whether the button
    was seleceted or not, so
    > that I can do my processing (insert, etc. ) ? I tried to
    use the isDefined or
    > parameterexists like before but that does not work ?
    >
    > What is the command to check that a button was selected
    >
    Michael Evangelista, Evangelista Design
    Web : www.mredesign.com
    Forums: news://forums.mredesign.com
    Blog : www.miuaiga.com

  • How can I find which button is clicked?

    I have two buttons on my page.Is there any way so that I can find which button is clicked in my JSP page?I do not know javascript I tried to pass a parameter by url rewriting through a Javascript function to another page.
    But it did not work? how can I do this?
    Can I return a parameter from javascript to a JSP page?
    Plz help me
    Thanks in advance
    Amit Varshney

    If you give the submit button a "name" attribute, the name of the button you pushed will come through as a parameter, along with its "value" (the text on the button)
    ie
    // in your jsp page
    <input type='submit' name='button1' value='FromB1'>
    <input type='submit' name='button2' value='FromB2'>
    // in your servlet code...
    boolean b1Pressed = request.getParameter("button1") != null;
    boolean b2Pressed = request.getParameter("button2") != null;

  • How to check credit card number when clicking Update order

    Hi Experts,
    I need to check credit card number when clicking Update order.
    I put  if(document.forms['order_positions'].elements['nolog_cardno'].value == "") in submit_refresh function,  but get "document.forms.order_positions.elements.nolog_cardno.value is null or not an object" error.  Any advises?
    Thanks, Jin

    Try like this
          if ( document.forms['order_positions'].elements['nolog_cardno[0]'].value == "" )

  • How to check whether Output ES is working or not.

    I am able to see Output ES in the services list of the admin console of my server. Please let me know how to check whether this is working or not.
    Regards,
    Shabeer

    LiveCycle ES2 (and LiveCycle ES) ship with three undersold and unadvertised web applications that are VERY useful. Each is referred to as an Installation Verification Sample (or IVS) but they are great testing tools you can use during development and QA. There is
    1) Assembler IVS,
    2) Forms IVS, and
    3) Output IVS
    Output IVS looks like this...
    The pattern for deploying and using all three IVSs is very similar as what I am about to describe for Output IVS. The following directions apply to the JBoss turnkey on Windows.
    1) go to C:\Adobe\Adobe LiveCycle ES2\deploy and locate adobe-output-ivs-jboss.ear
    2) copy adobe-output-ivs-jboss.ear to C:\Adobe\Adobe LiveCycle ES2\jboss\server\lc_turnkey\deploy
    3) if necessary, start LiveCycle
    4) open a browser and go to http://localhost:8080/OutputIVS/
    5) click Check/Change your preferences
    6) add Admin Credentials
    7) click Save
    8) click Test your form designs
    9) Select an .xdp from Form designs
    10) Click Use EJB (or Use Web Service if you feel so inclined) to invoke LiveCycle Output ES2
    Steve

  • How to check whether 620 routine is configured or not?

    Hi,
    I hv VOFM>Formulas>Conditional value--> 620 routine, its used to determine the SHIPMENT COST DOCUMENT creation and its talks about consolidating all the shipemts together belongs to same customer and there by creating only one shipment (cartons/volume/weight) cost document. (Its developed and done activated)
    So, pls let me know that, How to check that whether this VOFM routine 620 is in place (configured) or not in the system?
    I tried from SPRO/IMG, but, no use!!
    Thank you

    This should be in SPRO. See the link at the bottom of this [sap library topic|http://help.sap.com/saphelp_erp60/helpdata/en/93/7440d3546011d1a7020000e829fd11/frameset.htm]

  • How to check weather oracle db is started or not and how to start at oracle

    Hi
    could u please tell me how to check weather database is started or not
    and also how to start . (on unix and windows)
    waiting for ur reply.
    rajendra

    Hi rajendra,
    You can use the following command at Unix/Aix operating system.
    login into unix/aix operating system
    & run the following command.
    sqlplus "connect /as sysdba"
    you come in sql prompt
    & than run the following query
    sql>select status from v$instance;
    In windos you can check DB status using MMC.
    if you have any query than message me freely.
    Karan
    Edited by: karan Singh on Jun 24, 2008 5:10 PM
    Edited by: karan Singh on Jun 24, 2008 5:12 PM

  • How to check IN paramers are oracle keywords or not

    Hello
    i am new in oracle word and i want to know, how i will check IN parameters are oracle keywords or not. if client using orale key wors as parameters then i will geneate error and exit from procedure..............
    Regards.
    Edited by: user13478428 on Dec 14, 2010 10:07 AM

    dear sir
    i am new already told. and i had write this dynamic procedure for a very good application.
    i am using on front end dotnet and backend oracle 10g. so i write a dynamic procedure which is using to delete record. but now i want check from frontend, user sen me exact parameters or used oracle keyword like /*, */, //, drop and many more. if user send me such (oracle reserved word) parameters then it will destory my datbase and slowdown my application working.
    so to stop such (oracle reserved word) as parameters , i check these parameters and stop my procedure execution.
    please any help,
    thanks,
    Edited by: user13478428 on Dec 14, 2010 10:07 AM

  • How to check whether ESBAgentListener listener is started or not for ESBSys

    Hi,
    I am working on Oracle ESB 10g, I want to know how to check whether the ESBAgentListener listener is started or not for particular ESB system. I know we can verify the logs but I want to know is it possible from database or any other sources.
    Thanks in advance.
    Ramesh

    Hi Jogdand ,
    You can get the PO total value change form the PO business Object BUS2201 attribute  POTotalValueIncreased .
    Below code sample decribes how to get the BO attribute values
    1. INCLUDE <swfcntn01>.
    2. Create an instance of the BO by calling the macro and passing the three parameter.
        swf_create_object     <po bor object>     <BUS2201>     <po_guid>
    3. Get the PO attribute by calling macro
      swf_get_property   <po BOR object>   < 'POTotalValueIncreased' >    < lv_pototalvalueincreased>
    OR
    You can query the table BBP_PDHGP and get the original Value of the PO and call the FM BBP_PD_PO_GETDETAIL to get the new Value of the PO. Check the difference and if there is any difference then the PO value is changed.
    I hope this will be very useful.
    Regards,
    Surender

  • FF will load but website only appears when scrolling over icon. How do I bring to full screen, clicking will not work and max will not work

    FF shows that it is loaded but the website will not come onto the screen. When I put the mouse on the icon, the website is there, apparently to be opened. I click on it, screen flickers and nothing but still showing on icon. I right click, select maximum, and nothing. I was on 3.6.15, upgraded to 3.6.16 and not to 3.4. They are all doing the same thing. I uninstalled FF and reinstalled. Still nothing.

    OK, I found a way to do this.  Might not be the best way, but it turns out that I can put a addEventListener(MouseEvent.MOUSE_UP, gottaMouseUp) in the calling class, add a public variable in the button class that lets me know if the correct button has been clicked, and use that in the calling class to decide which button was clicked.  I knew it was something simple like that....

  • How to check the jms Queue is persistance or not in jboss application serve

    hi,
    i am using jboss as application server for jms and database is postgres.For an message store i am using the "*database store*".while starting the jms adding queue it is adding the messages to the jms queue after starting the jms receiver the datas are received sucessfully....afte some 10 to 13 hours i am getting java.lang.OutOfMemoryError in jms..so i checked the postgres table space.Table space is increased gradually...I think that the after receiver received that message the messages are not deleted in the database.how to debugg the the secnario in jboss as wel as in database.....how to chaeck the queue is in persistance or not persistance...
    regards.
    naresh govindaswamy.

    Send a request to the server somehow, so that the server is aware of this. AJAX may be very useful in this if you want to do this asynchronously.
    its very urgently This is irrelevant information. That's your problem. We don't care less or more. Some users here will even refuse to help you if you're putting pressure.

Maybe you are looking for

  • Can I share music library's with different apple ID accounts

    I would like to share music library's with my daughter. However, she has a differet User ID then myself. Is this still possible? So far I have set up home sharing and auhorized her computer. I can see and play the music in her library. However, I am

  • Multiple websites on one server

    I've been trying to create multiple (two) websites on one server, with little luck. One sight works fine. I've tried creating a DNS entry for the new one, but I'm not sure what to set the IP to. I've tried many configurations of IP/hostname but nothi

  • Error handling function: ORA-20001: get_dbms_sql_cursor error:ORA-00942: table or view does not exist  is not trapped. Why?

    Why APEX 4.1 Error handling function does not trap  the error of missing table? Say, I create simple application with single IR report page and I also assign standard simple error handling function. Function works perfectly, except but this case: If

  • How to cancel messages in "Transfer to process engine" status

    Hi All, In our production env, few of the messages in SXMB_MONI are stuck with the flag "Transfer to Process Engine". I would like to know where I can find these message or how canI cancel these messages. I checked all the options in "SMB_MONI_BPE",

  • J2EE Engine is not starting

    Hi Experts, our J2EE Engine is not starting. After application restart in SAP MMC's process list for disp+work.exe the status is yellow (Running, Message Server connectionok, ...., J2EE: Some processes running). In the J2EE Process table the server0