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

Similar Messages

  • 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

  • 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/

  • SRM RFx Response Undo Accept/Reject Action

    Kindly we use SRM 7 EHP1 , when I try to find out undo accept or undo
    reject button on Screen but there is no button for undo action
    Is that available in SRM 7 EHP1 ? and if it is available why is not
    shown ? or need any configuration ?
    Please advise ASAP

    Hi
    1687814  - Rfx response is not editable after Undo Accept for purchaser
    is not correct note , my question is
    when I try to find out undo accept or undo
    reject button on Screen but there is no button for undo action

  • 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 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 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 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 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

  • 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.

  • How to check whether internet connection is avaliable or not from Swing

    Hii Javaties
    I am developing a application in Swing .
    I need to call a servlet from Swing.
    So how can i check tht internet connection is avaliable or not. ?

    i am also fatching this type of problem. my applet is playing a audio file from server. during the playing time if network connection failed then NoRouteToHostException occurs from some PCs. but there are some PCs it doesn't occur though the playing is stoped.
    all PCs OS windows XP and jre jdk1.5.0_06
    i can't find out the problem. can any one help me for this?
    code:
    URL testURL = null;
                                try {
                                    testURL = new URL(sourcePath);
                                    //inputStream = testURL.openStream();
                                    URLConnection connection = testURL.openConnection();
                                    connection.connect();
                                } catch(NoRouteToHostException e) {                
                                    System.out.println("NoRouteToHostException block: " + e.getMessage());
                                }thanks
    bashar

  • 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 == "" )

Maybe you are looking for

  • My pc cannot install drivers for my iphone 5c

    okay, so my first iphone was an iphone 4, and when i connected it to the computer, it could sync to itunes and also start autoplay to transfer photos and videos to pc. i gave that phone to my mother and got an iphone 5c, remembering to back it up usi

  • My adventures with BT- time to change company

    I've seen a few horror stories in the forums and felt like sharing mine. It is a long read, but the plot twists towards the end make it worth the time. It all started when I decided to go with BT in my new flat because the previous tenants had BT so

  • About invoice verification without GR-based indicator set in PO

    Dears, As I know, when carry out invoice verification for a PO without GR-based IV set in PO/Vendor/PIR, there will be no reference invoice quantity and value in item lines of the invoice. User must input them manually according to real values in the

  • About Amortization

    Dear All, I have some questions related to amotization, for which I am unable to get much information from threads. Please give suggestion on the same. 1. In my company we are adding the "Amortization" value with the basic price. But the client used

  • Text to PNG fails in iWeb!!!!!!

    iWeb 1.1.1 has a serious problem dealing with some text. See an examle here: http://web.mac.com/kilso4343/iWeb/iCmc/welcome.html Text sections are cut in half. Does anyone have any idea what might be the problem? These texts are converted to PNG file