WF in BSP

Hello
In the event OnInputProcessing of the page Main.htm of the BSP application ROS_SELF_REG we sent questionnaires to the supplier by the FM ROS_QSTN_DETECT_AND_SEND after the execution of this function we need to trigger a workflow and i'm thinking around the best way to do it.
I haven't worked with BSP and workflow before and the only way to do this i know is to create a ZROS_SELF_REG and put a call to a FM that trigger my workflow after the FM ROS_QSTN_DETECT_AND_SEND
Is there any other way to do this?
Can i use a standard event to trigger my workflow?
Can i create a dummy business object that trigger and event and then link my workflow to this event?
i have many doubts hope you can help my
Thanks and regards

Hi Alberto,
one way of calling a workflow when the questionare is send is  using
SAP_WAPI_START_WORKFLOW ,use this after the execution of
ROS_QSTN_DETECT_AND_SEND
or you can try the second method you have specified also
Thanks & Regards
Hari Sankar M

Similar Messages

  • How can I open a PDF stored in IXOS and then display it in a BSP

    Hello gurus,
    I have created a PDF icon and an onclick action to open a pdf, that displays on every row of an assignment block in the actions column, but I do not know the technical process to determine how to get a PDF from the IXOS system from the line selected. (even if I know it depends on an ID attribute of that assignment block) I want to to call a transaction launcher with the url for the pdf in the IXOS that has an ID that identifies which line in the assignment block the user has clicked the pdf icon for (does that make sense?)
    Therefore, I am assuming the PDF should correspond to the relance ID of the row in the assignment block, but I would like more information as per the business logic involved in able to achieve the desired results for this particular specification. I already confirmed that the XURL or any other attribute in the BOL object does not contain the URL to use for this. I have looked at the class I was told that it may contain the required business logic for determining which PDF in IXOS to fetch for a particular row, and I am currently trying to reverse engineer the logic through looking at other code and using the debugger, but so far I haven'T had much luck.
    Here are some questions I have now for the functional side in the meantime:
    1) Can we fetch the PDF in IXOS for each line of an assignment block?
    2) Which URL should I call with the transaction launcher? a URL link to the PDF on the IXOS system??
    3) Do we have to configure a transaction in the IMG to be launched?
    4) Do we have to create a logical link there that I will make dynamic to call the right PDF for each table line? 
    5) Are there any existing examples of this or a similar functionality/ logic that I could refer to, preferably in CRM 7 WebUI?
    6) Do you have any code to just display a PDF in a new window? Or prompt a download?
    One possible way I thought of would be for me to have a logical link defined in the IMG, that I could call passing it different attributes (eg. some object id, etc) and then return the PDF and display it in the UI in a new browser window by itself. Alternatively, we can just prompt a download. What do you think would be the optimal behaviour here?
    Please do not hesitate to propose any potential solution. Any partial answers/ links to wikis/ other threads, anything would be much appreciated.
    Thank you in advance.
    Best regards,
    Jonathan Laplante

    Hi,
    I partially answered your question in another posting but I feel that you´re in the wrong forum for your problem. This is for BSP development and you talk about CRM.

  • Any ideas on a nice BSP view pretty printer?

    Hi there,
    I am wondering whether somebody already tried to extend the SAP standard pretty printer by an own functionality which fits better for pages with mixed content, containing not only BSP-elements but also HTML-tags.
    The standard pretty printer considers everything as plain text which is not a BSP-element and leaves it unaltered. Only BSP-elements are arranged according to their tree structure.
    This produces ugly results for pages with mixed content.
    1.) Requirement
    A Pretty Printer for HTML-based BSP views should cover the following:
    (a) HTML-Tags and BSP-elements together form the chain. As in following example:
    <z:table table_id="testTab" binding="//test/gt_test" rows="5">
      <z:tableBody position="top">
        <colgroup>
          <col width="4%">
          <col width="96%">
        </colgroup>
      </z:tableBody>
      <z:column name="type" header="<%=zcl_bsp_util=>dtel_text_s('EDI_TTYP')%>"
                listPos="10"/>
      <z:column name="text" listPos="20"></z:column>
    </z:table>
    (b) Certain HTML formatting tags like I, B, etc. should not be added to the stack but be treated inline.
    (c) HTML-attribute names should be converted to lower case, the attribute values should be quoted.
    (d) Like for BSP-elements, there should be a threshold after which the attributes should appear in separate lines. Instead of a certain maximum "number of attributes", this could also be a maximum number of characters per line.
    (e) Scripting Tags (<% ... %>) should start at a new line, if the content contains new-lines.
    (f) Evaluation Scripting (<%= ... %>) should be inline, if they are contained within text nodes (and not within HTML oder BSP element nodes).
    (g) The Pretty Printer should be parametrizable (with parameters like indent-depth,... ).
    2.) Exits?
    Of course, one could always use an external HTML editor and write an add-on for that editor which produces the desired result. Or one could take the view content into the clipboard, paste it into a plain text editor like UltraEdit or TextPad which allows external commands, apply an external, self-written pretty printer to it and then paste the result back into the View. But it would be easier to use the "Pretty Printer" button directly to get the result. Therefore the question arises at which point the standard Pretty Printer Functionality could be modified or extended.
    I didn't find an exit. But the pretty-print itself is doubly-decoupled in the standard which minimizes the number of points where an extension has to be made:
    2.a) First decoupling point: The Fcode handler method pretty_printer_ext( ) in cl_o2_page is calling
    dynamically a method in cl_o2_co2_processor:
    * call pretty printer
      create object pp type ('CL_O2_CO2_PROCESSOR').
      appl_str = me->pagekey-applname.
      page_str = me->pagekey-pagekey.
      try.
          CALL METHOD pp->('PRETTY_PRINT')
            EXPORTING
              indent              = 2
              ATTRIBUTE_NORMALIZE = 'X'
              ATTRIBUTE_THRESHOLD = 2
              BSP_UNFORMATTED     = source
              appl                = appl_str
              page                = page_str
            IMPORTING
              test_ok             = test_ok
              BSP_FORMATTED       = pp_source.
        catch cx_o2_co2_exception into o2ex.
    2.b) Second decoupling point:
    The method pretty_print() of class cl_o2_co2_processor (fancy names, by the way. It seems that many former chemistry students had joined the BSP team ),
    there is a second delegation, to a local class, as follows:
      data pretty type ref to LCL_BSP_PRETTY_PRINT.
      pretty = LCL_BSP_PRETTY_PRINT=>getInstance( processor = me ).
    The real logic for doing the Pretty Print, finally, is performed in this local class.
    3.) Implementation.
    Since, up to my knowledge, there is no HTML parser in the ABAP world,
    the implementation could be based on existing HTML Parsers, like the Perl module Parser::HTML, or the Java package http://htmlparser.sourceforge.net/ . The pretty printer could then be called as external OS command.
    Are there any ideas out there? Or is there somebody who already worked in this direction?
    Regards,
    Rüdiger

    For those who are interested. I found out that the Dave Ragget's classic "HTML Tidy" (see <a href="http://tidy.sourceforge.net/">http://tidy.sourceforge.net/</a> )  is available in ABAP! There is a class CL_HTMLTIDY (at least here in my SAP_BASIS 700 system) which wraps calls of HTML Tidy by kernel modules.
    The class is undocumented, but there are 2 OSS notes of this year for it, so it might well be that it is alive.
    HTML Tidy can surely not directly be used for Pretty Printing BSP views, but for designing test cases or for doing things like HTML parsing, it might be a helpful tool.

  • Error in using PERFORM in eventhandler in a BSP Application.

    Hi All,
    Can we use Subroutines in BSP applications?
    If yes then please help me with syntax .
    Best Regards,
    Anubhav.
    Edited by: Anubhav Jain on Dec 20, 2007 10:52 PM

    You can call subroutine with below Synatx:
    DATA: progname(20) TYPE C VALUE 'YTESTINCLUDE' .
    PERFORM your_perform_name IN PROGRAM (progname) IF FOUND.
    "where your_perform_name is the form within the include program YTESTINCLUDE[/code]
    Raja T
    Edited by: Raja Thangamani on Dec 20, 2007 4:58 PM

  • Problem with index of numbers in BSP Front end

    Hello All,
    I am facing the below problem. Request your help.
    Scenario: When I am trying to add the projects in the Front end , I am facing the problem with the index of numbering of the projects.
    Example: If I am adding 6 projects ( at the max only 4 on each page i-e there are 2 pages ), then the index is wrongly numbered and the arrow (for direction of the pages) are wrongly displayed. The direction of the arrow is pointed to the next page rather pointing to the previous page and the index of numbering of the pages is wrong.
    Request you to please suggest if this is any code fault in the table maintainance activity in the backend (BSP).

    Hi Irina,
    If you mean the number range is skipping 10 numbers in between runs then its because of the buffering in the number range.
    To avoid the buffer influencing the number range, pass
    'X' to the function module parameter: IGNORE_BUFFER.
    This should resolve the problem.
    Cheers,
    Aditya

  • BSP Error while selecting "campaign elements" in spanish --- crm 2007

    Hi experts,
    I´m trying to look for a solution for a problem with an error that occours while selecting in WEB UI --marketing --- campaign elements , in spanish language.
    Error Business Server Page (BSP)
    <thtmlb:textView>: (design) The Attribute Value is not a Value from: STANDARD/HEADER1/HEADER2/LABEL/VALUE/ITALIC/BOLD
    In english it works perfect.

    Which field is? Has translate value content to spanish for this field?.
    In SAP CRM UI, press F2 and tell me which is the field

  • Badi/exit/Workflow called during  execution of the BSP "SRMSUS_SELFREG"

    Hi all,
    We are running on SRM 5.0.(SP06) Strategic sourcing scenario.We are using enterprise Portal as the front end.My query is that at the end of Supplier  registration process,when the Supplier admin creates the USER ID's for the Suppliers(through BSP SRMSUS_SELFREG),is there any way by which we can create the enterprise Portal users for those suppliers at the same time(Automation) ?My BASIS person told me that the automation is possible when the EP system is connected only to 1 backend but in our landscape we are having several systems connected to EP.
    Other alternative would be to send a mail to the EP administrator stating that the Vendors User ID's have been created in SRM and the EP ID's need to be created.
    For this ,i didnt get any BADi/exit which gets triggered during this USER ID creation process wherein i can write my logic for sending the mail to the EP admin.
    There are some Std workflows (e.g. WS10000209)for USER creation but these dont seem to be useful in this scenario.
    So the only method left is to modify the Std BSP which  we dont want.Has anybody worked on this kind of scenario?
    Any suggestions are welcome and will be rewarded as well.
    BR,
    Disha.

    Hi
    I am still searching.. but no BADI/Exit is called in this case..
    <u>Meanwhile, i found few SAP OSS notes, which you can go through -></u>
    Note 1031896 Delimiting of Supplier Reg URL due to Special characters
    Note  1031070 Supplier cannot be registered
    Note  996030 Need to relogin to srmsus_selfreg service when using aliases
    Note 1032573 FormofAddr field mandatory in userselfreg.htm page
    Note 1003820 Supplier cannot be registered
    Note 889451 Not Possible to register in Supplier self-registration
    Note  807511 Error message after self registration of supplier admin user
    Note 784883 Irrelevant warning message stops self registration
    Do let me know.
    Regards
    - Atul

  • Xcelsius Dashboard on SAP R/3 Table using BSP and XML Mapping

    Hi Experts,
    I have developed a simple dashboard on small data set (10 records) that I am fetching from a R/3 Table into BSP and generating XML from there and consuming it in Xcelsius (SAP R/3 + BSP + XML Mapping).
    Now I want to fetch data based on Variables values that should be passed from the dashboard at the runtime and should display the data  accordingly. Any help on how it can be achieved?
    Thanks..!!
    Sharad

    Hi,
    You could try doing this by using XML data connection. You would have to make use of Enable load to get the data from XML and Enable send to send data back to XML from dashboard.
    This would require you to write a script.
    Thanks,
    Amit

  • Unable to capture the Idle time for BSP page

    Hi Experts,
    I want to capture the Idle time of my BSP page. If that is 5 mins then i have to display the pop up displaying the remaining time.
    Please let me know how to capture the IDLE TIME. not the time after the page is loaded.
    Any suggestion will be helpful.
    Aready checked in SDN but unable to get the solution so posting it.
    Thanks in advance.
    Sravanthi.V

    hi,
    After capturing the idle time iam giving the warning popup to user before 5mins of expiry.Now my requirement is if the user clicks on OK button of popup the page should get refresh. i.e.Idle time should of system should break and we have to get one more hour for expiry.
    Thanks in advance,
    Sravanthi.V

  • Field value on BSP Page

    Hi,
          I have a requirement to show previous entered values in an input  field on BSP Page. for example suppose I enter value '0998' in an input field say 'XYZ'  and then I close or refresh the browser. again i open the page in browser and click the input field then system should suggest me the previous entered value i.e. '0998'.   does anyone have idea how we can do it?
    Regards
    Amit kumar
    Edited by: amitku1201 on Jan 8, 2010 12:19 PM

    Hi Amit,
    I saw your code..
    <htmlb:form id="Form1" method="POST" autoComplete = "TRUE">
    <bsp:findAndReplace find = "ON" replace = "ON">
    In the link I provided
    <bsp findAndReplace find = "off" replace = "on">
    I dont see the closing tag
    </bsp:findAndReplace>
    anywhere in your code.
    The tag should be not used immediately after the FORM tag instaed it is used just before the tag for particular element.
    Like in your case if you want to used it for the inputfield i_case , it should be done as
    <bsp findAndReplace find = "off" replace = "on">
    <htmlb:inputField id="i_case" value="<%=i_case%>" type="string" maxlength="12" width="100"/>
    </bsp:findAndReplace>
    The inputfield tag will be used between find and replace tags.
    I hope this will help you solve the issue.
    Regards,
    Anubhav

  • Assign a value from dropdownlist to input field value on BSP page

    Hi,
    I'm new to SAP and ABAP. We have a CRM project in which I have to maintain BSP pages.
    Now, coming to my problem: I have a input field with
    value = "//BTAdminH/HeaderInfo"
    This field is normally maintainable. The required function is now to set this field as not maintainable/readonly. Then, the value should be set automatically to an value, which will be selected from a dropdownListBox. After saving, the value HeaderInfo should have the same value like the selected value from the dropdownListBox.
    How can I now set the field as readonly (this should be the easier part) and
    how can I set the value for the HeaderInfo to the value of the selected value from the dropdownListBox?
    If I set it directly like this
    value = "//BTActivity/Priority"
    it is shown on the BSP page correclty, but it is not saved as HeaderInfo.
    Please help me.
    Enja

    Hello Gokul,
    test was only for test purposes! I am using as a separator the plus sign!
    But this is not the problem!
    In debugging, the local variable has the concatenated value! So, this is working!
    oncatenate ls_ddlb1-value ls_ddlb2-value ls_ddlb3-value into lv_headerinfo SEPARATED BY ' + '.
    But when I assign the value of my set_headerinfo to the local variable, then it is returning only the separator sign!!!
    if BTAdminH->GET_HEADERINFO( 'HEADERINFO' ) is initial.
        BTAdminH->SET_HEADERINFO( attribute_path = 'HEADERINFO' value = lv_headerinfo ).
      endif.
    If I declare the local variable as one of the dropdown values, then it is getting populated also for set_headerinfo
    lv_headerinfo  =ls_ddlb1-value.
    So, the assigning is also working! But it is not working, when the local variable equals more than one value! I hope that I could explained it in the right way for you!!!!
    So. why is the value for set_headerinfo not the same as the one for the local variable! The local variable has the correct value after the concatination.
    Regards
    Enja

  • Capture Browse Event in BSP application

    Hi guys,
    i have a BSP page which contains a browse button and a drop downlist. my requirement is to enable a button only when the value is selected from the dropdown list and the text field of the browse event is filled.
    the problem is that am able to capture the selection from teh dropdown list however am not able to determine whether the browse button was clicked and hence a file name been selected.
    i wanted to know if there is any kind of event which is trigger when the browse button is presse in the page.
    thanking you for your aids.
    fardeen.

    I found a piece of code whereby the author insert an Event name(OnInputProceesing) in one of the onaction event.
    I have not tried it yet, but will do it in the near future
    Since i got no replies here, i'l close the thread.

  • Error message in bsp application

    hi
    Im tamil selvan .....this is my first bsp application i created .. but i cant view the output..the default html code itself not executing... i copied the same code in text and saved in html its executing there... i dont know what is the issue..is any system files are missing...plz guide me im new to bsp....first what should i learn ...  the below is the error i pasted...
    Business Server Page (BSP) error
    What happened?
    Calling the BSP page was terminated due to an error.
    SAP Note
    The following error text was processed in the system:
    Die URL enthält keine vollständige Domainangabe (isys-ecc statt isys-ecc.).
    Exception Class CX_FQDN
    Error Name 
    Program CX_FQDN=======================CP
    Include CX_FQDN=======================CM002
    ABAP Class CX_FQDN
    Method CHECK
    Line 10 
    Long text -
    Error type: Exception
    Your SAP Business Server Pages Team

    Hi Tamil,
    welcome to the SAP Community Network. You will find lots of great resources, tips, and examples here.
    Of course to find them you have to look for them. You will find most people more than happy to help you with problems if you first try and help yourself by searching for the solution yourself.
    So please, search the forums for the solution to your problem before you post.
    Cheers
    Graham Robbo

  • BSP Terminating event not triggering

    Hello Friends,
    We have a scenario, where a BSP application is triggered from a Workflow, for a certain approval, and after the user clicks on Approve button on the BSP Page, the BSP would write to the workflow container using SAP_WAPI_WRITE_CONTAINER and then we call SWF_WSC_CALLBACK_LAUNCH.
    This used to work, but after an almost Fatal incident with our system, we are not able to get this to work.
    We can see in the workflow log that the container is written, but the terminating event is not triggered, and the workflow doesn't move forward
    Is there a setting that we're missing..??
    Thanks,
    Tat.

    Have you tried:
    call function 'SAP_WAPI_DECISION_COMPLETE'

  • Bsp error - synthax error - standard pages

    http://server:8000/sap/bc/bsp/sap/dswpnotifcreate/selfsubmit.html
    This is standard and I get the following message
    500 SAP Internal Server Error
    Error message: Syntax error in program CL_O2C3YJC90QK4A21UYC755ZFS5D7CP . ( type of termination: RABAX_STATE )
    WITH DUMP
    Runtime Errors         SYNTAX_ERROR
           Occurred on     12.10.2005 at 14:24:10
    Syntax error in program "CL_O2C3YJC90QK4A21UYC755ZFS5D7CP ".
    What happened?
    What can you do?
    Error analysis
    How to correct the error
    System environment
    User, transaction...
    Information on where terminated
    Source code extract
    000360     if sy-subrc = 0.    " not yet existing
    000370       context = <reg_instance>-context.
    000380   *   set current page instance
    000390       m_page_instance = context->m_page_instance.
    000400   *   re-init page internal properties
    000410       context->m_page_instance->do_reinit(  ).
    000420       return.
    000430     endif.
    000440
    000450
    000460   * create new page context
    000470     create object l_page_context
    000480       exporting runtime = c_runtime.
    000490
    000500   * instantiate new page instance
    000510     if m_page_type = 'C'.
    000520       try.
    000530         create object l_controller_instance type (m_page_class).
    000540         create object l_controller_adapter.
    000550         l_controller_adapter->m_adaptee = l_controller_instance.
    000560         l_controller_instance->adapter  = l_controller_adapter.
    000570         l_page_context->m_page_instance = l_controller_adapter.
    000580         catch cx_root.
    000590           raise exception type cx_bsp_impl_deprecated
    000600             exporting page_name = m_page_name.
    000610
    000620       endtry.
    000630     else.
    000640   * instantiate new page instance
    000650       try.
    >         create object l_page_context->m_page_instance
    000670           type (m_page_class).
    000680
    000690         catch cx_root.
    000700           raise exception type cx_bsp_impl_deprecated
    000710             exporting page_name = m_page_name.
    000720
    000730       endtry.
    000740     endif.
    000750
    000760   * fill-up context information
    000770     l_page_context->m_page_name         = m_page_name.
    000780     l_page_context->m_page_id           = ''.
    000790     l_page_context->m_page_class        = m_page_class.
    000800     l_page_context->m_page_parameters   = m_page_parameters.
    000810     l_page_context->m_page_html_pool    = m_page_html_pool.
    000820     l_page_context->m_page_script_code  = m_page_script_code.
    000830     l_page_context->m_page_mime_type    = m_page_mime_type.
    000840     l_page_context->m_page_secure       = m_page_secure.
    000850     l_page_context->m_page_lifetime     = m_page_lifetime.
    Contents of system fields
    SY field contents..................... SY field contents.....................
    SY-SUBRC 0                             SY-INDEX 1
    SY-TABIX 0                             SY-DBCNT 1
    SY-FDPOS 11                            SY-LSIND 0
    SY-PAGNO 0                             SY-LINNO 1
    SY-COLNO 1                             SY-PFKEY
    SY-UCOMM                               SY-TITLE HTTP Control
    SY-MSGTY                               SY-MSGID
    SY-MSGNO 000                           SY-MSGV1
    SY-MSGV2                               SY-MSGV3
    SY-MSGV4
    Active calls / events
    No.... Type........ Name..........................
           Program
           Include                                  Line
           Class
         7 METHOD       GET_PAGE_CONTEXT_CURRENT
           CL_BSP_CONTEXT================CP
           CL_BSP_CONTEXT================CM009         66
           CL_BSP_CONTEXT
         6 METHOD       ON_REQUEST_ENTER
           CL_BSP_RUNTIME================CP
           CL_BSP_RUNTIME================CM007         45
           CL_BSP_RUNTIME
         5 METHOD       ON_REQUEST
           CL_BSP_RUNTIME================CP
           CL_BSP_RUNTIME================CM002        100
           CL_BSP_RUNTIME
         4 METHOD       IF_HTTP_EXTENSION~HANDLE_REQUEST
           CL_HTTP_EXT_BSP===============CP
           CL_HTTP_EXT_BSP===============CM001         24
           CL_HTTP_EXT_BSP
         3 METHOD       EXECUTE_REQUEST
           CL_HTTP_SERVER================CP
           CL_HTTP_SERVER================CM00G        326
           CL_HTTP_SERVER
         2 FUNCTION     HTTP_DISPATCH_REQUEST
           SAPLHTTP_RUNTIME
           LHTTP_RUNTIMEU02                           490
         1 MODULE (PBO) %_HTTP_START
           SAPMHTTP
           SAPMHTTP                                    13
    Chosen variables
         7 METHOD       GET_PAGE_CONTEXT_CURRENT
           CL_BSP_CONTEXT================CP
           CL_BSP_CONTEXT================CM009         66
    CONTEXT                       
                                   F0000000
                                   F0000000
    L_PAGE_CONTEXT->M_PAGE_INSTANC
                                   F0000000
                                   F0000000
    L_CONTROLLER_ADAPTER          
                                   F0000000
                                   F0000000
    SPACE
                                   2
                                   0
    SY-XFORM
                                   222222222222222222222222222222
                                   000000000000000000000000000000
    SY                             ########################################
                                   0000000000000000000000000001000000000000
                                   0001000000000000000000000004000000000000
    ... +  40                      #######################################P
                                   0000000000000000000000000000000000000005
                                   0001000B00010000000100000000000000000000
    ... +  80                      ########################################
                                   0000000000000000000000000000000000000000
                                   0000000000000000000100000000000000000000
    ... + 120                      #######################################T
                                   0000000000000000000000000000000000010005
                                   0000000000000000000000000000000000060004
    ... + 160                      ################XC#############   E0   0
                                   0000000000000000540000000000000222432223
                                   0000000100000000830030000C0000C000500000
    ... + 200                      010         ####__S                 100
                                   3332222222220000555222222222222222223332
                                   0100000000000000FF3000000000000000001000
    ... + 240                           00
                                   222223322222222
                                   000000000000000
    %_EXCP                        
                                   F0000000
                                   F0000000
    %_SPACE
                                   2
                                   0
    ME->M_PAGE_NAME                selfsubmit.html
                                   766677666726766
                                   35C6352D94E84DC
    %_DUMMY$$
                                   2222
                                   0000
    SYST                           ########################################
                                   0000000000000000000000000001000000000000
                                   0001000000000000000000000004000000000000
    ... +  40                      #######################################P
                                   0000000000000000000000000000000000000005
                                   0001000B00010000000100000000000000000000
    ... +  80                      ########################################
                                   0000000000000000000000000000000000000000
                                   0000000000000000000100000000000000000000
    ... + 120                      #######################################T
                                   0000000000000000000000000000000000010005
                                   0000000000000000000000000000000000060004
    ... + 160                      ################XC#############   E0   0
                                   0000000000000000540000000000000222432223
                                   0000000100000000830030000C0000C000500000
    ... + 200                      010         ####__S                 100
                                   3332222222220000555222222222222222223332
                                   0100000000000000FF3000000000000000001000
    ... + 240                           00
                                   222223322222222
                                   000000000000000
    ME->M_PAGE_CLASS               CL_O2C3YJC90QK4A21UYC755ZFS5D7
                                   445434354433543433554333545343
                                   3CFF2339A3901B4121593755A63547
         6 METHOD       ON_REQUEST_ENTER
           CL_BSP_RUNTIME================CP
           CL_BSP_RUNTIME================CM007         45
    ME->C_NAVIGATION              
                                   F0000000
                                   4000000B
    %_PRINT                            000
                                   2222333222222222222222222222222222222222
                                   0000000000000000000000000000000000000000
    ... +  40
                                   2222222222222222222222222222222222222222
                                   0000000000000000000000000000000000000000
    ... +  80                                0 ########
                                   2222222222320000000022222222222222222222
                                   0000000000000000000000000000000000000000
    ... + 120
                                   2222222222222222222222222222222222222222
                                   0000000000000000000000000000000000000000
    ... + 160                                    0                 ####
                                   222222222222223222222222222222220000
                                   000000000000000000000000000000000000
    %_DUMMY$$
                                   2222
                                   0000
    %_ARCHIVE
                                   2222222222222222222222222222222222222222
                                   0000000000000000000000000000000000000000
    ... +  40
                                   2222222222222222222222222222222222222222
                                   0000000000000000000000000000000000000000
    ... +  80
                                   2222222222222222222222222222222222222222
                                   0000000000000000000000000000000000000000
    ... + 120
                                   2222222222222222222222222222222222222222
                                   0000000000000000000000000000000000000000
    ... + 160
                                   2222222222222222222222222222222222222222
                                   0000000000000000000000000000000000000000
    ... + 200
                                   2222222222222222222222222222222222222222
                                   0000000000000000000000000000000000000000
    ... + 240
                                   222222222222222
                                   000000000000000
    ME                            
                                   F0000000
                                   90000006
    ME->C_REDIRECT_URL
    ME->C_REDIRECT_PAGE
    ME->C_REDIRECT_TYPE            0
                                   0000
                                   0000
    ME->C_CONTEXT                 
                                   F0000000
                                   80000007
    SPACE
                                   2
                                   0
    ME->IF_BSP_RUNTIME~SESSION_ID  SID:ANON:sapzoo_SMG_00:YWoc_ZnD_Z7HJoimb
                                   5443444437677665544533355665564553446666
                                   394A1EFEA310AFFF3D7F00A97F3FAE4FA78AF9D2
    ... +  40                      2WAz0Vjxh4P8RnL2CMZkGe0-ATT
                                   354735676353564344564632455
                                   271A06A884082EC23DAB750D144
    ME->C_CONTEXT_APP->M_SESSION_I SID:ANON:sapzoo_SMG_00:YWoc_ZnD_Z7HJoimb
                                   5443444437677665544533355665564553446666
                                   394A1EFEA310AFFF3D7F00A97F3FAE4FA78AF9D2
    ... +  40                      2WAz0Vjxh4P8RnL2CMZkGe0-ATT
                                   354735676353564344564632455
                                   271A06A884082EC23DAB750D144
    SYST                           ########################################
                                   0000000000000000000000000001000000000000
                                   0001000000000000000000000004000000000000
    ... +  40                      #######################################P
                                   0000000000000000000000000000000000000005
                                   0001000B00010000000100000000000000000000
    ... +  80                      ########################################
                                   0000000000000000000000000000000000000000
                                   0000000000000000000100000000000000000000
    ... + 120                      #######################################T
                                   0000000000000000000000000000000000010005
                                   0000000000000000000000000000000000060004
    ... + 160                      ################XC#############   E0   0
                                   0000000000000000540000000000000222432223
                                   0000000100000000830030000C0000C000500000
    ... + 200                      010         ####__S                 100
                                   3332222222220000555222222222222222223332
                                   0100000000000000FF3000000000000000001000
    ... + 240                           00
                                   222223322222222
                                   000000000000000
    L_PAGE_INSTANCE               
                                   F0000000
                                   F0000000
    ME->C_CONTEXT->M_PAGE_INSTANCE
                                   F0000000
                                   F0000000
    SYST-REPID                     CL_BSP_RUNTIME================CP
                                   4454555554544433333333333333334522222222
                                   3CF230F25E49D5DDDDDDDDDDDDDDDD3000000000
         5 METHOD       ON_REQUEST
           CL_BSP_RUNTIME================CP
           CL_BSP_RUNTIME================CM002        100
    SERVER                        
                                   F0000000
                                   D0000002
    RC                             0
                                   0000
                                   0000
    ME->C_NAVIGATION              
                                   F0000000
                                   4000000B
    ME                            
                                   F0000000
                                   90000006
    ME->C_REDIRECT_URL
    SY-REPID                       CL_BSP_RUNTIME================CP
                                   4454555554544433333333333333334522222222
                                   3CF230F25E49D5DDDDDDDDDDDDDDDD3000000000
    CL_BSP_RUNTIME=>IF_BSP_RUNTIME min
                                   666
                                   D9E
    ME->C_STATE                    0
                                   0000
                                   0000
    ME->CO_STATE_ON_LEAVE          99
                                   0006
                                   0003
    ME->C_CONTEXT->M_APP_INSTANCE_
                                   F0000000
                                   F0000000
    RSJOBINFO                                                      00000000
                                   2222222222222222222222222222222233333333
                                   0000000000000000000000000000000000000000
    ... +  40                      000000
                                   3333332222222222222222222222222222222222
                                   0000000000000000000000000000000000000000
    ... +  80                      ####
                                   0000
                                   0000
    %_SPACE
                                   2
                                   0
    %_FSREG_001                    ???
    ME->C_REQUEST                 
                                   F0000000
                                   C0000003
         4 METHOD       IF_HTTP_EXTENSION~HANDLE_REQUEST
           CL_HTTP_EXT_BSP===============CP
           CL_HTTP_EXT_BSP===============CM001         24
    SERVER                        
                                   F0000000
                                   D0000002
    %_DUMMY$$
                                   2222
                                   0000
    %_EXCP                        
                                   F0000000
                                   F0000000
    CLIENT_SIDE_EXCEPTION
    SY-REPID                       CL_HTTP_EXT_BSP===============CP
                                   4454555545554553333333333333334522222222
                                   3CF8440F584F230DDDDDDDDDDDDDDD3000000000
    %_ARCHIVE
                                   2222222222222222222222222222222222222222
                                   0000000000000000000000000000000000000000
    ... +  40
                                   2222222222222222222222222222222222222222
                                   0000000000000000000000000000000000000000
    ... +  80
                                   2222222222222222222222222222222222222222
                                   0000000000000000000000000000000000000000
    ... + 120
                                   2222222222222222222222222222222222222222
                                   0000000000000000000000000000000000000000
    ... + 160
                                   2222222222222222222222222222222222222222
                                   0000000000000000000000000000000000000000
    ... + 200
                                   2222222222222222222222222222222222222222
                                   0000000000000000000000000000000000000000
    ... + 240
                                   222222222222222
                                   000000000000000
    SY                             ########################################
                                   0000000000000000000000000001000000000000
                                   0001000000000000000000000004000000000000
    ... +  40                      #######################################P
                                   0000000000000000000000000000000000000005
                                   0001000B00010000000100000000000000000000
    ... +  80                      ########################################
                                   0000000000000000000000000000000000000000
                                   0000000000000000000100000000000000000000
    ... + 120                      #######################################T
                                   0000000000000000000000000000000000010005
                                   0000000000000000000000000000000000060004
    ... + 160                      ################XC#############   E0   0
                                   0000000000000000540000000000000222432223
                                   0000000100000000830030000C0000C000500000
    ... + 200                      010         ####__S                 100
                                   3332222222220000555222222222222222223332
                                   0100000000000000FF3000000000000000001000
    ... + 240                           00
                                   222223322222222
                                   000000000000000
    SYST-REPID                     CL_HTTP_EXT_BSP===============CP
                                   4454555545554553333333333333334522222222
                                   3CF8440F584F230DDDDDDDDDDDDDDD3000000000
    ME->M_BSP_RUNTIME             
                                   F0000000
                                   90000006
    L_RC                           0
                                   0000
                                   0000
    L_EXCEPTION                   
                                   F0000000
                                   F0000000
    SY-ONCOM                       X
                                   5
                                   8
    %_SPACE
                                   2
                                   0
         3 METHOD       EXECUTE_REQUEST
           CL_HTTP_SERVER================CP
           CL_HTTP_SERVER================CM00G        326
    SERVER                        
                                   F0000000
                                   D0000002
    SERVTBL                        Table IT_5[6x1112]
    FIRSTALIAS
                                   2222222222222222222222222222222222222222
                                   0000000000000000000000000000000000000000
    ... +  40
                                   2222222222222222222222222222222222222222
                                   0000000000000000000000000000000000000000
    ... +  80
                                   2222222222222222222222222222222222222222
                                   0000000000000000000000000000000000000000
    ... + 120
                                   2222222222222222222222222222222222222222
                                   0000000000000000000000000000000000000000
    ... + 160
                                   2222222222222222222222222222222222222222
                                   0000000000000000000000000000000000000000
    ... + 200
                                   2222222222222222222222222222222222222222
                                   0000000000000000000000000000000000000000
    ... + 240
                                   222222222222222
                                   000000000000000
    URLSUFFIX                      selfsubmit.html
                                   766677666726766
                                   35C6352D94E84DC
    FLOW_RC                        0
                                   0000
                                   0000
    TIMEOUT                        000000
                                   333333
                                   000000
    PF_OPCODE_CHANGE_PAR           #
                                   0
                                   2
    PF_OPCODE_CLOSE_INTERVAL       #
                                   1
                                   2
    PF_LOCK_ERROR                  10
                                   0000
                                   000A
    SY-SUBRC                       0
                                   0000
                                   0000
    %_DUMMY$$
                                   2222
                                   0000
    SY-REPID                       CL_HTTP_SERVER================CP
                                   4454555554554533333333333333334522222222
                                   3CF8440F352652DDDDDDDDDDDDDDDD3000000000
    %_SPACE
                                   2
                                   0
    STIME                          16248
                                   0037
                                   00F8
    CL_HTTP_SERVER=>C_STATISTIC_ST 0
                                   0000
                                   0000
    SY-XFORM
                                   222222222222222222222222222222
                                   000000000000000000000000000000
    PF_OPCODE_OPEN_INTERVAL        #
                                   1
                                   1
    %_PRINT                            000
                                   2222333222222222222222222222222222222222
                                   0000000000000000000000000000000000000000
    ... +  40
                                   2222222222222222222222222222222222222222
                                   0000000000000000000000000000000000000000
    ... +  80                                0 ########
                                   2222222222320000000022222222222222222222
                                   0000000000000000000000000000000000000000
    ... + 120
                                   2222222222222222222222222222222222222222
                                   0000000000000000000000000000000000000000
    ... + 160                                    0                 ####
                                   222222222222223222222222222222220000
                                   000000000000000000000000000000000000
    ETIME                          0
                                   0000
                                   0000
    CL_HTTP_SERVER=>M_EXE_TIME     0
                                   00000000
                                   00000000
         2 FUNCTION     HTTP_DISPATCH_REQUEST
           SAPLHTTP_RUNTIME
           LHTTP_RUNTIMEU02                           490
    CLIENT_NAME
    DOCUMENT_IN
    VIRTUAL_HOST                   0
                                   0000
                                   0000
    DOCUMENT_OUT
    SY                             ########################################
                                   0000000000000000000000000001000000000000
                                   0001000000000000000000000004000000000000
    ... +  40                      #######################################P
                                   0000000000000000000000000000000000000005
                                   0001000B00010000000100000000000000000000
    ... +  80                      ########################################
                                   0000000000000000000000000000000000000000
                                   0000000000000000000100000000000000000000
    ... + 120                      #######################################T
                                   0000000000000000000000000000000000010005
                                   0000000000000000000000000000000000060004
    ... + 160                      ################XC#############   E0   0
                                   0000000000000000540000000000000222432223
                                   0000000100000000830030000C0000C000500000
    ... + 200                      010         ####__S                 100
                                   3332222222220000555222222222222222223332
                                   0100000000000000FF3000000000000000001000
    ... + 240                           00
                                   222223322222222
                                   000000000000000
    %_DUMMY$$
                                   2222
                                   0000
    C_SERVER                      
                                   F0000000
                                   D0000002
    %_ARCHIVE
                                   2222222222222222222222222222222222222222
                                   0000000000000000000000000000000000000000
    ... +  40
                                   2222222222222222222222222222222222222222
                                   0000000000000000000000000000000000000000
    ... +  80
                                   2222222222222222222222222222222222222222
                                   0000000000000000000000000000000000000000
    ... + 120
                                   2222222222222222222222222222222222222222
                                   0000000000000000000000000000000000000000
    ... + 160
                                   2222222222222222222222222222222222222222
                                   0000000000000000000000000000000000000000
    ... + 200
                                   2222222222222222222222222222222222222222
                                   0000000000000000000000000000000000000000
    ... + 240
                                   222222222222222
                                   000000000000000
    C_SERVER->IF_HTTP_SERVER~CO_CO 2
                                   0000
                                   0002
    SY-REPID                       SAPLHTTP_RUNTIME
                                   5454455555545444222222222222222222222222
                                   310C8440F25E49D5000000000000000000000000
    PF_EYE_END_DESTROYED           4
                                   0000
                                   0004
    CL_ABAP_TRACE=>DEFAULT_VARIANT
                                   F0000000
                                   F0000000
    ERROR_STATE                    0
                                   0000
                                   0000
    PF_TASK_RFC                    #
                                   0
                                   9
    C_STATISTIC_STATE              0
                                   0000
                                   0000
    SY-XFORM
                                   222222222222222222222222222222
                                   000000000000000000000000000000
    SERVER_ACCEPTED               
                                   F0000000
                                   D0000002
    PF_OPCODE_OPEN_INTERVAL        #
                                   1
                                   1
    SERVTBL                        Table IT_5[6x1112]
    FIRSTALIAS
                                   2222222222222222222222222222222222222222
                                   0000000000000000000000000000000000000000
    ... +  40
                                   2222222222222222222222222222222222222222
                                   0000000000000000000000000000000000000000
    ... +  80
                                   2222222222222222222222222222222222222222
                                   0000000000000000000000000000000000000000
    ... + 120
                                   2222222222222222222222222222222222222222
                                   0000000000000000000000000000000000000000
    ... + 160
                                   2222222222222222222222222222222222222222
                                   0000000000000000000000000000000000000000
    ... + 200
                                   2222222222222222222222222222222222222222
                                   0000000000000000000000000000000000000000
    ... + 240
                                   222222222222222
                                   000000000000000
    URLSUFFIX                      selfsubmit.html
                                   766677666726766
                                   35C6352D94E84DC
    FLOW_RC                        0
                                   0000
                                   0000
    TIMEOUT                        000000
                                   333333
                                   000000
    %_PRINT                            000
                                   2222333222222222222222222222222222222222
                                   0000000000000000000000000000000000000000
    ... +  40
                                   2222222222222222222222222222222222222222
                                   0000000000000000000000000000000000000000
    ... +  80                                0 ########
                                   2222222222320000000022222222222222222222
                                   0000000000000000000000000000000000000000
    ... + 120
                                   2222222222222222222222222222222222222222
                                   0000000000000000000000000000000000000000
    ... + 160                                    0                 ####
                                   222222222222223222222222222222220000
                                   000000000000000000000000000000000000
    PF_OPCODE_CLOSE_INTERVAL       #
                                   1
                                   2
    C_SERVER->IF_HTTP_SERVER~STATE 0
                                   0000
                                   0000
    ICF_ACTIVE_INVALID             I
                                   4
                                   9
    C_SERVER->C_DEBUGGING_POSSIBLE N
                                   4
                                   E
    C_SERVER->PUBLIC_SERVICE       0
                                   0000
                                   0000
         1 MODULE (PBO) %_HTTP_START
           SAPMHTTP
           SAPMHTTP                                    13
    SY-REPID                       SAPMHTTP
                                   5454455522222222222222222222222222222222
                                   310D844000000000000000000000000000000000
    SYST-REPID                     SAPMHTTP
                                   5454455522222222222222222222222222222222
                                   310D844000000000000000000000000000000000
    %_ARCHIVE
                                   2222222222222222222222222222222222222222
                                   0000000000000000000000000000000000000000
    ... +  40
                                   2222222222222222222222222222222222222222
                                   0000000000000000000000000000000000000000
    ... +  80
                                   2222222222222222222222222222222222222222
                                   0000000000000000000000000000000000000000
    ... + 120
                                   2222222222222222222222222222222222222222
                                   0000000000000000000000000000000000000000
    ... + 160
                                   2222222222222222222222222222222222222222
                                   0000000000000000000000000000000000000000
    ... + 200
                                   2222222222222222222222222222222222222222
                                   0000000000000000000000000000000000000000
    ... + 240
                                   222222222222222
                                   000000000000000
    %_DUMMY$$
                                   2222
                                   0000
    %_SPACE
                                   2
                                   0
    Application Calls
    No dump information available
    Application Information
    No dump information available
    Internal notes

    Hi,
    These are the possible notes linked to dswpnotifcreate
    830882 DSWPNOTIFCREATE URL initialization parameters 24.03.2005
    820012 Retransport of OTR Texts for BSP DSWPNOTIFCREATE 23.02.2005
    820015 DSWPNOTIFCREATE: Long text incorrectly transmitted 17.02.2005
    819504 DSWPNOTIFCREATE: OS and DB missing in CRM message from BSP 16.02.2005
    855646 Messages created from Web browser lose attachments II 22.06.2005
    855119 Messages created from Web browser lose attachments 22.06.2005
    879905 Text for category missing in BSP DSWPNOTIFCREATE 16.09.2005
    829635 Create Message: Long text incorrectly formatted
    Eddy

  • SSO to BSP using NTLM with application parameters

    Hi all,
    As part of the CRM activity, the customer's system sends out an email to a user with a link pointing to a bsp. Part of the url is the call id which the bsp needs to display.
    The customer does not wish for the users to input user/pass when accessing the bsp.
    According to documentation, NetWeaver supports only SAP logon tickets and X.509 SSO methods(http://help.sap.com/saphelp_nw04/helpdata/en/02/
    d4d53aa8a9324de10000000a114084/content.htm).
    Found this thread that suggest a workaround:
    BSP without logon?
    Seems like it should work, but ITS forwards to a static URL.
    Any ideas on how I can make sure that after the whole sso process is complete, the bsp will still remember which call-id it needs to display?
    Regards,
    Eric

    The goal is to have the changes made inside the bsp recorded to the logged in user. So one user for all is not applicable.
    After fiddlig around with the forwarding settings and the ITS, I managed to get this thing working. Almost.
    When I access the BSP url, it gets forwarded to and from the ITS and I get a SSO2 ticket. However, when it comes back from the ITS I get a http 404 error page. If I refresh that page, the BSP loads fine, with the transferred parameters and the correct user.
    Can't get my head around why it gives me a 404.
    Eric
    Message was edited by: Eric Labiner

Maybe you are looking for

  • Setting up the look of your iTunes U "storefront"

    I realize that this is to be covered in documentation that is not here yet, but I just want to make sure that I'm seeing what everyone else is seeing after connecting to my institution's site: My authentication perl script sends no USER information.

  • Esata port not working

    Any ideas why my Fathom External HDD is not recognized using esata cable. I've just bought the Q700-3015 1IU. The driver is powered. I did however get it working via USB. Anyone know what could be wrong?

  • Can I use the iPhone when is he charging?

    Can I use the iPhone when is he charging?

  • Data Transfer Problem Getting Status 51

    Hi Experts, I have two logical systems namely cln 000 and t90clnt090 assigned to clients 000 and 800 respectively, and i am transferring data from 800 to 000. My message type is matmas and i am tranferring data using tcode bd10,but while i am transfe

  • Online Number Subscription not showing

    Hello, I already bought two subscriptions for an online number (each for three months), both products are delivered according to my purchase history, but I don't have the online number yet. I have checked account (web and skype) and cannot find anyth