ITS templates

Hi, There.
Can anyone tell me what templates nad services are used/executed in ITS when using the JAVA function generateIACUrl() with the hrwpc_fc_exec parameter.
We are having a problem with our 2 environments that it displays the tow screen differently. One with SAP Gui screen other one with HTML. We compared the two instances and couldn't find any differences between them.
Any ideas?? We are runnning SAP EP6 SP2 and ITS 6.20
Kind regards
Richard

Hi
Good
Herewith i am giving some links and hope this will help you to solve your problem.
http://help.sap.com/saphelp_47x200/helpdata/en/60/d150387cd0c303e10000009b38f8cf/content.htm
http://help.sap.com/saphelp_nw04/helpdata/en/53/97583c2439e66fe10000000a114084/content.htm
Thanks
Mrutyunjaya Tripathy

Similar Messages

  • List Box in ITS template and use of 'FIELD_SET'

    Hello EveryOne,
    I am working in SRM5.0. Can some one guide me, If we can create a List box in custom ITS template. I am trying to use SELECT statement on HTML to create LIst Box. Is this right way to do that?
    Does any one know better way to create a List BOx connected to custom field, that is filled in PAI. We do not have a search help added to this field. So I can not use F4 modules.
    Also does any one know If use of macros 'FIELD_SET' is still allowed in the PBO/PAI  ?
    Really appreciate any help in this regard.

    Dear srivallika,
    first you have do build up an steploop on your dynpro for the it_ccode-bukrs
    AT PBO
    loop at it_ccode cursor g_ccode_cur into wa_cccode.
    my set loopc
    module ccode_loopc.
    endloop.
    Include PBO
    module ccode_loopc.
      g_ccode_loopc = sy-loopc.
    endmodule.
    You only see via DIAG Dialog the displayed rows on the Dynpro.
    So if you only have a steploop of 4 rows -- you only get 4 rows to the wgate.
    Better use the field-set makro.
    AT PBO
    module rfc_fieldset_ccode.
    INCLUDE PBO
    module rfc_fieldset_ccode.
    data: ls_ccode like line of it_ccode.
    data: i type i.
    I'll use deeper structure
      perform rfc_fieldset_ccode.
    but you also can define the code here
    loop at it_ccode into ls_ccode.
         add 1 to i.
         field-set 'INDX'       i i .
         field-set 'BUKRS'   i   ls_ccode-bukrs .
    endloop.
    endmodule.
    Why to do this? The field-set makro (don't forget to include AVWRTCXM at your topinclude) will send the data from internal table via AGATE to the WGATE.
    Here now you can define the dropdown list:
    srivallika, i'll hope i could help you a little. If you have any questions, you won't bother me. ASK!
    With best regards
    Thorsten

  • Concatanation of values in ITS Template

    Hi,
    I have an requirement where I want to capture all the data of internal table in
    single field.I am getting all the fields of table in ITS template but unable to concate them in single field .I am using SRM 5.0 and using following code .
    <input type="hidden"   name="RANG_TD" VALUE="">
    `if (text_mul-TXTTDNAM.max > 1 )`  
       `repeat with i from 1 to text_mul-TXTTDNAM.max`  
       `RANG_TD.value =  text_mul-TXTTDNAM<i>.value`
        `end`  
    `end`  
    Where <b>text_mul-TXTTDNAM</b> is internal table,here the last value is overwriting in varible <b>RANG_TD</b> .I need the concate all values of internal table in variable <b>RANG_TD</b> .
    Thanks,
    SS

    Hi
    I have not tried this yet. But You can try this ->
    You can use local variable and try to store the data inside it.
    You can specify array offset in this case.
    say first 5 characters are having any value use 0(5)
    then for next 3 characters use +6(3) [Add one balnk space in between].
    Do let me know.
    Regards
    - Atul

  • Call function module from ITS template

    Hi all,
    Does anybody know if it is possible to call an ABAP function module (or embed any ABAP command) in an ITS template (HTML B)? If so, can someone post some sample codes?
    Thanks!
    Jay

    hi,
    it is not possible to run ABAP code from a ITS template.
    Best regards,
    Klaus

  • Passing/retrieving hidden fields from Its template(IAC)  to BSP page

    Hi i m passing hidden fields from its template to custom BSP page...but not able to retrieve the hidden field in bsp page...is there any way we can retrieve the data....is there any equivalent of request.getattribute() method which we use in jsp to fetch the hidden fields....

    <i>i m passing hidden fields from its template to custom BSP page...but not able to retrieve the hidden field in bsp page...</i>
    from ITS template how are you calling/passing parameter to BSP
    thru a form submit? or are you just openning the BSP thru a url link, in either case
    you could pass the data as a form field (post) or in the url of the BSP (GET)
    for example if the form field name in ITS template is myformfiled and you are submitting that to the BSP page then in the corresponding bsp page declare a page attribute withe same name (myformfiled) and mark the auto check box.
    now the value passed from ITS template will be available within BSP in the ABAP variable myformfiled which you can use the way you want.
    Hope this is clear
    Raja

  • ITS Template for SC

    Hi
    I understand to add new fields we need to work on append strucutre and BADI but to place the screen field on desired place we may need to have the ITS template modified....i searched SDN but unlucky to find the  following details:
    1. programing guide for ITS
    2. how to determine which ITS template to change for a correpsonding SC screen
    pls help

    posted in SC

  • ITS templates are not correctly loaded.

    Dear everyone,
    I am have a problem in installing ITS IAC template to ITS 4.6(it's old..)
    We are using EBP 2.0C and I newly installed ITS 4.6 and published all the necessary HTML templates.
    However, when I access to BBPSTART, it does not load expected templates but it displays standard webgui.
    I am sure I am missing something.
    Any input is welcome.
    Regards,
    Kazuya

    Hi
    I am not sure where the settings are missing as there are lots of settings to be maintained but check that you have maintained the table TWPURLSVR
    And the Url you are hitting is like this
    http://<hostname>:<port>/scripts/wgate/bbpstart/!
    Here is some reference http://help.sap.com/bp_bblibrary/600/documentation/S60_BB_ConfigGuide_EN_DE.doc
    But check that this is the scenario you are using.

  • ITS templates - checkbox value not updated

    Hi,
    I am experiencing a problem with checkboxes in my Internet Service (similar to problem described in forum: checkboxes in ITS (again) ).
    The checkboxes are inside a table (step-loop) and is blank by default. If the user selects the checkbox, the value is cleared after user input.
    I executed the dialog program and it is fine.
    The generated service template was modified to accommodate the step-loop. I'm using the SAP_TEMPLATE tags for the WEBGUI look & feel.
    To set the checkbox parameter according to the user's input, should an if-statement be inserted in the code or should I use the parameter "onclick" with a javascript function?
    I inserted an if-statement but it doesn't work.
    Here's my code:
    `SAP_TemplateTableBegin(title="Some title:", type="SAP_WEBGUI")`
    `if ( IT_BEHAV-DESCR.dim > 0 )`
    `repeat with j from 1 to IT_BEHAV-DESCR.dim`
      `SAP_TemplateTableRowBegin(isSelectable="X")`
       `SAP_TemplateTableCellBegin(subtype="NONEDIT1")`   `IT_BEHAV-DESCR[j]` `SAP_TemplateTableCellEnd()`
    <b>   `if (IT_BEHAV-SELECT[j].selected)` checked `end`
       `SAP_TemplateTableCellBegin(subtype="NONEDIT1")` `SAP_TemplateSimpleCheckBox("IT_BEHAVE-SELECT", VALUE="`j`")` </b>           
        `SAP_TemplateTableCellEnd()`
              `SAP_TemplateTableRowEnd()`
             `end`
           `end`
         `SAP_TemplateTableEnd()`
    If the check on the value of the checkbox is performed within SAP_TemplateSimpleCheckbox tag (e.g. <b>`SAP_TemplateTableCellBegin(subtype="NONEDIT1")` `SAP_TemplateSimpleCheckBox("IT_BEHAVE-SELECT", VALUE="`j`", "`if (IT_BEHAV-SELECT[j].selected)` checked `end`"
    )`</b>  ),
    the checkbox values are still not updated.
    My Business HTML and Javascript is not very good, please help.
    Your assistance will be much appreciated.
    Regards
    Liza-Marie

    Hi,
    I tried
    `if (IT_BEHAV-SELECT[j]=='X')`checked`end`
    but it is still not working. I am not sure <i>where</i> it should be inserted...? I added it inside the checkbox tag as follows:
    <b>`SAP_TemplateTableCellBegin(subtype="NONEDIT1")` `SAP_TemplateSimpleCheckBox("IT_BEHAVE-SELECT", VALUE="`j`", "`if(IT_BEHAV-SELECT[j].selected)` checked `end`")`</b>
    as well as before and after this tag, without results.
    The tag SAP_TemplateSimpleCheckbox has the parameter <i>onclick</i>. I suppose this can be used to call a javascript function to control the checkbox values. I'm currently investigating this option, not that my javascript is any good!
    If the input fields of length 1 is used inside the loop, would it still work like a checkbox? I mean, can the user input any character? Do you perhaps have example code for this?
    Unfortunately I cannot debug on the ITS at this stage since I dont have access to the ITS server and it would take too long to get access or arrange for debugging to be set up.
    Thanks for the help so far!
    Regards
    Liza-Marie

  • Generating ITS templates for RF screens

    Hi,
    I'm trying to access the standard RF transactions via ITS.  Do I have to generate the templates for all the RF screens or should they already available on the system?
    If yes, what screens do I need to generate to get this working?
    Regards,
    Carlos

    Dear Martin,
    I have some strange issue like
    we have yesterday migrated our production server to a new server, since then the RF portal is not working , Only the  first page is coming
    Once we click this link we login and  we get the RF menu  like below screen shot.
    and when click any of the push buttons like example "PURCH PROC" it's not going further
    and getting below message with webpage not found.
    could please help us what will be the issue here in this.

  • Wait popup while loading its template

    Hello people,
    we are upgrading our SAP system and will use internal ITS from now on.
    SAP Gui for HTML services run. But while loading, a popup with a SAP-Standard-picture appears until the service template is loaded. Does anybody know if it is possible to disable this popup?
    Thanks in advance
    Norbert

    Hello Norbert,
    Please see the following message:
    Re: WEBGui-Transaction - how to disable Startup-Screen with branding
    Thanks,
    Edgar

  • Not possible to publish its templates

    Hi,
    I'm not been able to publish all ITS services because when I ran the txn SIAC_PUBLISH_ALL_INT an error appers.
    The message is :
    "Template cache may not be up to date"
    Could anybody help to me?
    thanks in advance
    best regards

    Hi,
    Run the transcn SITSPMON; under template and MIME cache,
    click on button system wide under invalidate MIME Cache.
    This will clear the MIME cache and then run the  transaction SIAC_PUBLISH_ALL_INT and publish all services to the site internal. Be sure that you are on SP11. Note 790727 describes the details
    Also have a look at this note:
    889360 W3_PUBLISH_SERVICES, caches
    BR,
    Disha.
    Do reward points for useful answers.

  • Problem with ITS Template Change

    All;
    I am trying to change a HTML Template SAPLBBP_PDH_CUF 100 of Internet Service BBPCUF.
    When i do that i get an error like " Carry out modification comparison for IATU BBPCUF 99100 SAPLBBP_PDH_CUF first. No changes possible ".
    I am not able to understand the reason for this error. Any help 
    on this would be greatly appreciated.
    Thanks!

    Dear Srivathsan,
    You sould check repaired objects form SE03 transaction. Then you can release the "repair flag" or you can found the request that locks the object. After all you can do what changes you want.
    Best regards,

  • Modification in dialog screen Not reflecting in ITS Template

    Hi,
    I have changed in the dialog screen after creation of template ,the template modified automatically .I made changes in lenth of table control fields only .
    But the same thing is not working on another server which is unicode .
    I am using SRM 5.0 .
    Thanks,
    SS

    Hi,
    I think it would be easier to help you if you describe your problem more detailed.
    Has the other server individual templates? Have you changed the templates on the other server too or are they transported in some way?
    Best regards,
    Henning

  • Changes in SRM EBP SC standard ITS template.

    Hi All,
    We are implementing OCI using custom BSP applications.In EBP SC screen ,in step1 (Select Goods/Services), the links for these BSP applications are displayed.
    The user can create a shopping cart using these applications , after the items are transfered from BSP to SC on standard EBP screen , in step2
    there are four buttons ,
    1)Refresh
    2)Check
    3)Back
    4)Continue.
    We need to call one of our custom BSP applications on click of  this BACK button
    How can i acchieve the same?
    Where sholud we make changes ?
    Thanks,
    Anubhav.

    No Replies.

  • SC - Determine HTML Template and ITS guide

    Hi
    I understand to add new fields we need to work on append strucutre and BADI but to place the screen field on desired place we may need to have the ITS template modified....i searched SDN but unlucky to find the following details:
    1. how to determine which ITS template to change for a correpsonding SC screen
    2. programing guide for ITS
    pls help

    i can tell you how to determine the template but wont be help you how to edit..
    right click on the portal screen(the one for which you want to know the template) , goto view source, there you will find the template name
    like bbpcf03, bbpsc01 etc..

Maybe you are looking for