Related to BSP

Hi friends,
I would like to know oe to use the select-options in BSP
programing.
Thanks in advance.
   regards,
  kishore

Hi,
please note that there's a BSP forum (id=49) for BSP questions. There you can find more information, see How to create select-option like element in BSP? Please help!
Have a look at the chapter of Brian McKellar's and Thomas Jung's book on advanced BSP programming which is mentioned in the thread above.
Regards, Heidi

Similar Messages

  • Query relating to BSP

    Hi Group,
    my question is:
    I have seen in some example BSP in IDES that, some times the following is
    being used for form begining(example):
    <%= cl_htmlb=>form_begin( )  %>
    and
    I think <htmlb:form> also can be used for the same purpose.
    Then, what is the difference b/w these 2 things and which is beneficial and which will be most often used?
    Please kindly put your valuable suggestions/views.
    Thanks in advance.
    Regards,
    Vishnu.

    Hi,
    The class contains the code
    concatenate '<form method="'
                  method
                  '" action="'
                  action
                  '" ID="'
                  form_id
        into output.
      if enc_type is supplied and enc_type is not initial.
        concatenate output ' enctype="' enc_type '"' into output.
      endif.
      if target is supplied and target is not initial.
        concatenate output ' target="' target '"' into output.
      endif.
      concatenate output '>' into output.
      concatenate output '<input type="submit"'
                  ' name="onInputProcessing"'
                  ' style="display:none" value="">'
                  into output.
    the htmlb variant contains the attributes
    id  
    method 
    autoComplete 
    action 
    encodingType  
    target 
    language 
    doValidate
    Autocomplete, language and doValidate aren't covered in cl_htmlb=>form_begin
    Eddy
    Pimp up the S(D)N site and earn points. Check this <a href="/people/eddy.declercq/blog/2007/02/01/pimp-up-the-jam log</a> for details

  • Bsp notes

    hi gurus,
    i'm new in bsp so pls provide me some valueble notes related to bsp.
    thanx,
    Anuj jain

    Hi,
    Pleaase refer to the following thread.
    Re: Study Material for BSP's
    Hope this helps.
    <b><i>Do reward each useful answer..!</i></b>
    Thanks,
    Tatvagna.

  • Flex encounters "Security error accessing url.Unable to load WSDL"

    i have created a flex application which connects to SAP via web service.
    when i try to run my flex application i encounter the following error.
    "Security error accessing url.Unable to load WSDL"
    i went through various posts relating a BSP application and crossdomain.xml
    i have created the crossdomain.xml file in the application and
    i tried those options and still not able to figure out the problem.
    the security error is because of the absence of the crossdomain.xml file, and in which path should i be saving the file?
    Kindly help me solve the problem.
    Thanks in advance.

    Have you seen this blog
    "Crossdomain.xml" in ABAP Web AS Server cache

  • How to get the whole list of Iview Templates

    Hi,
    when I navigate:
    Portal Content -> Content Provided by SAP -> Templates -> Iview Templates
    I get a long list of templates including Url Iviews etc
    But, when I try to create my own Iview, the list of potential templates is much smaller, mainly including only the SAP related templates, BSP, Query, ITS etc.
    Does anyone know how to make the full list of Iview Templates available for the Iview creation wizard ?
    Thanks,
    Tomas.

    Hi Tomas,
    which iView templates are offerd within the iView creation wizard is determined by SystemAdmin -- Permissions -- Portal Permissions -- Applications.
    Normally, you will have to have SuperAdminRole to see/change these settings.
    Hope it helps
    Detlev
    PS: Please consider to reward points for helpful answers. Thanks in advance!

  • ITS service name is not visible

    Hi All,
         I have created a Internet service as said in the[documentation|http://help.sap.com/saphelp_nw04/helpdata/en/70/579509a7c611d3961700a0c94260a5/content.htm] and even I have published it , but when I execute SICF txn and check the path am not able to see the name of the service that I have created, is there any thing I missed
    Thanks & Regards
    Pavan

    Not related to BSP , please post in ITS forum.
    Regards,
    Anubhav

  • Send form as attachment

    Hi SDN Community,
    This question is not directly related to BSP but definitely to web programming.
    Problem: My requirement is to do an survey through E- Mail. I will send an HTML form to a potential candidate to fill provide some feedback and submit that form. when candidate submits that form I need to create xml, attach that xml to email and send back to me. I have mentioned my email in mailto element. After that I will read that mail and by parsing xml get the candidate feedback.
    Please suggest me some solution to this problem.
    Thanks,
    Jashan

    Hi,
    with a little search on net I found some code which sends fom data as attachment, but the attachment extention is .ATT how could I make it .xml or how could I retrieve the xml embedded in the attachment. Give a try to following code and suggest some solution.
    <html>
       <head>
          <title>Enter the title of your HTML document here</title>
       </head>
       <body>
    <form name="input_form"><pre>
       Name: <input name="username" type="text">
    Comment: <input name="comment"  type="text">
    </pre></form>
    <script>
    function update_message_body ()
         var username = document . input_form . username . value;
         var comment  = document . input_form . comment  . value;
         var txt="<?xml version="1.0" encoding="ISO-8859-1"?>n"
         txt=txt+"<candidate_details>n"
         txt=txt+"<name>" + username + "</name>n"
         txt=txt+"<comment>" + comment + "</comment>n"
         txt=txt+"</candidate_details>n";
         document . proxy_form . message_body . value = txt;
         return true;
    </script>
    <form name    ="proxy_form"
          method  ="post"
          enctype ="multipart/form-data"
          action  ="mailto:[email protected]?subject=Form Data"
          onSubmit="return update_message_body ();">
    <input type=hidden name="message_body">
    <input type=submit value="send mail">
    </form>
       </body>
    </html>
    Regards,
    Jashan

  • Starting transaction in SAPGUI via JCo

    Hello,
    I'm trying to start SAPGUI for Windows using parameter
    setSapGui(1), but the GUI Window does not show. When I'm using setAbapDebug(true)than the GUI window starts in debug mode.
    What can be wrong? Does anyone have any ideas?
    I'm trying to start transaction se11 using BAPI RFC_CALL_TRANSACTION.
    Code looks like this:
    // Obtain parameter list for function
          JCO.ParameterList input = function.getImportParameterList();
           // Obtain table for function
           JCO.Table BDCtable = function.getTableParameterList().getTable("BDCTABLE");     
          //BDCtable.setRow(0);
          BDCtable.appendRows(4);
          BDCtable.setValue("SAPMSRD0", "PROGRAM");
          BDCtable.setValue("0102", "DYNPRO");
          BDCtable.setValue("X", "DYNBEGIN");
          BDCtable.nextRow();
          BDCtable.setValue("BDC_CURSOR", "FNAM");
          BDCtable.setValue("RSRD1-TBMA_VAL", "FVAL");
          BDCtable.nextRow();
          BDCtable.setValue("BDC_OKCODE", "FNAM");
          BDCtable.setValue("=SHOW", "FVAL");
          BDCtable.nextRow();
          BDCtable.setValue("RSRD1-TBMA", "FNAM");
          BDCtable.setValue("X", "FVAL");
          BDCtable.nextRow();
          BDCtable.setValue("RSRD1-TBMA_VAL", "FNAM");
          BDCtable.setValue("BUKRS", "FVAL");
          BDCtable.nextRow();
          BDCtable.setValue("SAPMSRD0", "PROGRAM");
          BDCtable.setValue("0102", "DYNPRO");
          BDCtable.setValue("X", "DYNBEGIN");
          // Pass function parameters
          input.setValue(transactionName, "TRANCODE");
          //input.setValue(daneKlienta, "DANE_KLIENTA");
          conn.execute(function, conn.createTID());
    Regards Artur
    Message was edited by: Artur Welke

    Hi Artur,
    This answer is in relation to BSP but i think concept is same, it will give you an idea. This answer is taken from
    Brain's <a href="/people/brian.mckellar/blog/2003/10/23/bsp-trouble-shooting-frequently-asked-short-questions weblog.
    <i>Typical question: "We have developed a BSP application and we're trying to call some function. It doesn't work. However, if we execute the BSP application in debug mode, everything works fine. Why?"
    When you log onto a WebAS system the Dynpro engine is started that contains all the logic to handle interaction with the SAPGUI. For example, things such as rendering controls and doing file upload/download are all available.
    When you run an HTTP request into Web AS, a very special "dark" (or background) Dynpro is started. A minimal Dynpro is required to get ABAP up and running. But now there is no SAPGUI available, so no SAPGUI-based service will work. Also little things such as popup windows do not work.
    So why does the code work in the debugger? Because, once the debugger is triggered,it realizes that a normal Dynpro is required for the debugger and not the "dark" one. So the full-blown Dynpro engine is started, making all SAPGUI services available.
    You can consider finding the code that causes the error and bracket it with IF-statements in this function, so that no SAPGUI interaction is required in the context of a HTTP call.</i>
    Also visit this <a href="https://www.sdn.sap.com/sdn/collaboration.sdn?contenttype=url&content=https%3A//forums.sdn.sap.com/thread.jspa%3FthreadID%3D35880%26tstart%3D60">thread</a>, this will certainly help you.
    Regards,
    Narinder Hartala

  • Upgrade from 4.7 to ECC 5.0

    Hello,
    I upgraded my system from R/3 4.7 to ECC 5.0 .
    Can anybody tell me how to develop application related to BSP , ITS, Dynpros in abap.
    also please provide the difference between 4.7 and ecc 5.0 versions.
    Helpfull answers will be rewarded .
    Regards,

    Hi,
    Please find below enhancement:-
    Ehanced Human Capital Management Functionality
    • End-to-end talent management tools to improve recruiting,
    training, performance evaluation, and retention of employees
    • Improved employee self-service functionality to reduce administrative
    overhead of HR departments
    • Improved employee expense and travel reporting to reduce
    the time and improve control over employee expense
    reimbursements
    Enhanced Support for New Business Models andOperations
    • Improved architecture to support outsourcing for payroll and
    cash management
    • New ability to support electronic procurement, invoicing, sales
    order management, and documentation of internal controls
    for the U.S. Sarbanes-Oxley Act
    • Enhanced enterprise services repository for system and instance
    consolidation and shared-service management
    Enhanced Financial Management, Analysis, andReporting Functionality
    • A newly architected general ledger solution that lessens manual
    reconciliations and improves the ability to balance ledgers by
    multiple dimensions
    • Improved management dashboards that provide a complete
    picture of business operations and improve decision making
    among managers and line-of-business users
    • New collections and credit management functionality to accelerate
    cash collections and improve day-sales-outstanding me
    Also visit service.sap.com/upgrade-erp.
    Thanks&Regards,
    Iqbal

  • HTMLB Interface using XHTMLB: Urgent

    Hi All,
    Please visit the following link (<a href="http://help.sap.com/saphelp_nw04/helpdata/en/04/2ade41afba9c39e10000000a155106/frameset.htm">XHTMLB</a>).
    This link also have two examples. Please look to these as well.
    <b>1) Example using a GridLayout component.
    2) Example using a TableView component.</b>
    I could not make out how to use these xml files mentioned which are using the htmlb tags in the XML file for generating the UI.
    I have searched on Google as well but could not get any other example for using XHTMLB. <b>The links I get from search are all related to BSP applications. But I want to use this using Java.</b>
    Please can anybody help me in solving this problem!! Its a urgent requirement. Helpful answers will be definately rewarded.
    Regards
    Pravesh

    It doesn't look like you are using any of your error clusters... this is a big no-no. You need to propogate the errors through your code and wiring them also makes sure your code is running in the right order.
    In your first case structure you have the VISA Open and VISA Read right next to each other without their error clusters wired. This means that the Open is not necessarily happening before the Read.
    (You are also only reading 1 byte there, I don't know if that was intended, but you might need to read more than 1 byte.)
    Your timeout on your VISA is set to "4294967295". You might want to lower that so that your code doesn't just sit. Timeouts are helpful as long as they're set reasonably.
    Handle your error clusters and give it a try again to see if that fixes anything.
    Edit: looking back at your code, that first 1 byte read mixed with your Open/Read situation is probably your issue if everything else is set up correctly. You're reading 1 byte and then parsing it in to a bunch of other information, which means 1 byte is not enough. Set your timeout higher and read more bytes. If not enough bytes come in, it will timeout and give you whatever did come in. Ideally you would know how many bytes you're looking for.

  • Sticky forum post

    hey,
    how about a persistently-first-on-the-forum post that would contain common questions, etc.?
    i was actually thinking of this as i deliberated on a possible topic to start off weblogging, but maybe this solution may be better than creating a weblog that contains an FAQ or something.
    ryan.

    You can of course right the blog, we all enjoy new blogs.
    The sticky topic is a hot topic, for example in the BSP forum we have 2 threads one for "General Rules" and one for "BSP Weblogs" both would of course benefit everyone if they were at the top.
    As for the FAQ's the forums have a general one (menu left hand side bottom) and there are for examples ones related to BSP available.
    There is also a new "Sapedia" coming for just this very purpose we heard about it at the Walldorf SDN Meets Labs.

  • Search Helps - View Query

    hi,
    I need to create a matchcode for the field kunnr whose search help is DEBI.
    1.     In the transaction FBL5N (Customer Line Item Display) include a new match code ‘ Active Account with Balance’.
    2.     The search parameters will be similar to match code ‘’ Customers(By Company Code) / Customers per sales group.
    3.     When the search is made by entering the name in the name field , the program logic would be as:
                 a.   The table KNB1 will be used to search the customer based on company code.
    a.     The list of customers obtained will be queried in the table KNA1(General Data in Customer Master) to get the list of customers with name 1, postal code , city etc.
    b.     This list of corresponding customers is queried in the Table BSID  (Accounting: Secondary Index for Customers) to check if the customers have an open item.
    c.     If there is an open item for any customers then they are considered as Active customers.
    d.     Display only the list of active customers for the name search with the details ‘Name1, city, Postal code, Customer No. , company Code etc.
    My query is in the view which i am gonna create, what would be the join condition for the above logic.

    Is this related to BSP?  Are you needing help creating the SQL statement for the logic you described?  I guess I'm not sure what you are asking for and how it is related to BSP.

  • New SAPlink Plug-in

    Hi,
    I have created a new plug-in for a SAPLink to handle binary data. Any feedback is appreciated.
    http://saplink.googlegroups.com/web/CLAS_ZSAPLINK_BINARY_DATA.slnk?gda=IuTyQ08AAABJgqXgaZW6giN2thC7q4sQOB-kzClwjo6RzsAK5DLcv2G1qiJ7UbTIup-M2XPURDT9cNkom_h08GQ3IuVk9NHl6pHU8BiWXgSirlsVH4utAw

    Thanks for the plug-in Marian,
    it seems to work fine for W3MI objects.
    I'm looking for a plug-in that is able to upload mimes related to BSP and Web Dynpro for ABAP.
    The TADIR object is SMIM.
    Trying ZSAPLINK -> Slinkee -> Export object to Slinkee -> Object Type: W3MIF4 and F4 on the Object name I'm getting runtime error DYNPRO_MSG_IN_HELP  in module INFOSYSTEM_PREPARE:
    983 * Aktuelles Objektprogramm setzen
    984   IF NOT INFOSYSTEM_INSTANCE IS INITIAL and  infosystem_instance_active = true.
    985     GLOBAL_DATA->CONTROL-OBJECT-PROGRAM = $ROLL_DATA$-OBJECT-PROGRAM.
    986     GLOBAL_DATA->CONTROL-OBJECT-OBJ_TYPE =  $ROLL_DATA$-OBJECT-OBJ_TYPE.
    987   ENDIF.
    988
    Sergio

  • Need CRM Technical Cookbook

    Hai,
    Anyone can send me the CRM Technical cookbook to mail id.
    I will give points, if it is worth, Please send me any thing related CRM BSP and Workflow also.
    My mail Id is : [email protected]
    Thanks,
    Tamil.

    Hi Tamil,
    I have sent you the required docs at [email protected]
    For Workflows refer the following thread:
    http://www.sap-img.com/workflow/sap-workflow.htm
    http://www.sapgenie.com/workflow/index.htm
    http://help.sap.com/saphelp_47x200/helpdata/en/a5/172437130e0d09e10000009b38f839/frameset.htm
    For examples on WorkFlow...check the below link..
    http://help.sap.com/saphelp_47x200/helpdata/en/3d/6a9b3c874da309e10000000a114027/frameset.htm
    http://help.sap.com/saphelp_47x200/helpdata/en/4a/dac507002f11d295340000e82dec10/frameset.htm
    http://www.workflowing.com/id18.htm
    http://www.e-workflow.org/
    http://web.mit.edu/sapr3/dev/newdevstand.html
    http://www.sap-press.com/product.cfm?account=&product=H950
    /people/ginger.gatling/blog/2005/12/01/link-workflow-business-objects-to-your-collaboration-tasks
    http://help.sap.com/saphelp_erp2005/helpdata/en/fb/135962457311d189440000e829fbbd/frameset.htm
    http://help.sap.com/saphelp_erp2005/helpdata/en/c5/e4a930453d11d189430000e829fbbd/frameset.htm
    http://help.sap.com/saphelp_erp2004/helpdata/en/a5/172437130e0d09e10000009b38f839/frameset.htm
    http://help.sap.com/saphelp_bw33/helpdata/en/92/bc26a6ec2b11d2b4b5006094b9ea0d/content.htm
    http://help.sap.com/saphelp_bw31/helpdata/en/8d/25f94b454311d189430000e829fbbd/content.htm
    Check the below PDF file on Workflow:
    http://help.sap.com/printdocu/core/Print46c/en/data/pdf/PSWFL/PSWFL.pdf
    There is a good book from SAP Press that I would
    recommend as a starting point.It's called Practical Workflow for SAP and it is by Alan Rickayzen.
    <b>Reward points if it helps.</b>
    Message was edited by: Amit Mishra

  • How to set up use of relative URLs for a BSP application

    Dear all,
    I need to access a BSP application through our external portal.
    This is failing because generated URLs are absolute URLs (they mention physical server name, not known of course on the internet) where they should be relative URLs (they use external portal URL as prefix).
    How to set this up?
    I'm logged on http://myportal.com/irj/portal and want to call a BSP application. To build this page, my internet client (Internet Explorer) tries to get elements from the server. Looking at HTTP trace, I can see that my IE is trying to reach the physical server, not known on internet of course, then page loading fails.
    Ex absolute URL : http://myservername.domain.com/sap/bw/[...]/image1.gif
    This is the behavior I can see at the moment.
    Relative URL : http://myportal.com/sap/bw/[...]/image1.gif
    This is what I'd like to see.
    Many thanks in advance for your help.
    François

    Any idea ?

Maybe you are looking for