How to add Material ID in IBASE BSP APP (comm_ibase)

I am dealing with standard BSP application in CRM Service management.
Application name is: COMM_IBASE
Steps that I did:
1.     When I click new>installed base> new page
2.     I removed all tabs (such as interaction histories, activities, opportunities, etc) except general information.
3.     In general information, I have add R/3 Material ID (just description is enough), which I have already replicated from R3 to CRM  system.
Where can I find the Material ID, like which structure? Or should I have to extend the class (using class builder!). Can somebody help me on this issue? Thanks in Advance.
Thanks
KK

Dear Nilesh,
Have you maintained the <b>OTR</b> for 'CFX_UI/SIGN' ?
To create an OTR (Online Text Repository) simply follow these steps:
Step 1. Open BSP Application cfx_rfc_ui  and navigate to the desired page. In your case it will be: doc_de_ver_create_htm.htm
Step 2: Click on Goto -> Online Text Repository Browser.
Step 3. Create OTR, In Alias name specify CFX_UI/SIGN
and in the text editor below mention Sign (the text that you want to display on the button)
Hope this solves your problem. Pl. award points for useful answers.
Regards,
Reema.

Similar Messages

  • How to add Material photo in SAP

    Hi folks,
        Does anybody know how to add material photo to material No?
         As now, when our old spare parts are bad, maintanance user have to find a new one to replace, so they need to provide the material No to warehouse user or purchase dept.
        But now as there are a lot of spare parts in SAP, iIt's difficult for them to appoint SAP material No from layout, so we want to add photo to material No.
    Great thanks!
    Li Jing
    Edited by: Li Jing on Apr 2, 2010 12:14 PM

    When viewing material, from main menu select System > Services for Object.
    You may get a choose object type option, if you do, choose a std way to work e.g. always use Object = Material.
    You'll then get a mini free floating toolbar. Select the far left Icon and Create an attachment. Navigate to your picture and upload.
    To view the picture, select the Icon second left (this is greyed out if there are no attachments).
    You can attach any number of pictures or Word documents etc.
    Regards,
    Nick

  • How to add material group in rvinvoice standard script?

    how to add material group in rvinvoice standard script?
    regards

    Hi
    You have to copy the standard script first .
    you need to write External subroutine in layout.
    This is just for basic info..you can search in sdn external subroutines in script..you get so many inputs.
    Thanks

  • How to add Material type(MTART) field on Selection screen of MB5B transaction code.

    Hi All,
        Please let me know how to add material type field on selection screen of MB5B transaction
    For that i made copy ZMB5B_COPY of original report RM07MLBD.
    Thanks in adv .
    Samadhan

    Hi,
    Once you copied the standard report to Z report, you can MTART in selection screen like below.
    and in order to inlcude the same in programming logic, we have three option.
    1) Check all related select queries, and include MTART in SELECT query using inner join with MARA.
    2) In START-OF-SELECTION event fill MATNR as shown below.
    3) If user entered any value in MTART, then before displaying the report just check material type of each material in the final internal table(which is used to display report) delete enteries from internal table accordingly.
    START-OF-SELECTION.
    IF MTART[] IS NOT INITIAL AND MATNR[] IS INITIAL.
        SELECT MATNR FROM MARA INTO MATNR-LOW WHERE MTART IN MTART.
          MATNR-OPTION = 'EQ'.
          MATNR-SIGN = 'I'.
          APPEND MATNR.
          CLEAR MATNR.
        ENDSELECT.
    ENDIF.
    The above option has one limitation: The selection screen variables has some restriction, please read the below thread.
    Facing problem in select statement dump DBIF_RSQL_INVALID_RSQL CX_SY_OPEN_S
    Getting Dump in the select query has more than 2000 entries
    Hope this will work for you .
    regards,
    Rajesh Sadula.

  • How to ADD Materialized Views to Refresh Group

    Hi,
    My requirement is, i want to refresh MVs(fast refresh only) by using DBMS_SCHEDULER. For this i have created one DBMS_SCHEDULER job like below.
    BEGIN
    DBMS_SCHEDULER.CREATE_JOB (
    JOB_NAME      => 'REFRESH_MV_UPLOAD',
    JOB_TYPE           => 'PLSQL_BLOCK',
    JOB_ACTION      => 'DBMS_REFRESH.REFRESH('MV_UPLOAD_GRP');',
    REPEAT_INTERVAL      => 'FREQ=MINUTELY; INTERVAL=30',
    ENABLED      => TRUE
    END;
    In the above script, i created one refresh group 'MV_UPLOAD_GRP'. So what my requirement is i want to ADD my MVs refresh scripts to this group. Scripts as below...
    Refresh MV Scripts:
    1) Exec dbms_mview.refresh('emp.entity', 'f');
    2) Exec dbms_mview.refresh('emp.identifier', 'f');
    3) Exec dbms_mview.refresh('emp.rating_hist', 'f');
    . so on.
    Can anyboy help me how to add these scripts to refresh group 'MV_UPLOAD_GRP'.
    Regards
    Raj

    ALL_REFRESH and ALL_REFRESH_CHILDREN
    http://download.oracle.com/docs/cd/B19306_01/server.102/b14227/rarsnapviews.htm#REPMA027
    Nicolas.

  • How to add photo to "Find My Friends" app?

    Hi,
    I installed "Find My Friends" app but it doesn't show my picture, there is no picture... I see my friend's dot in the map no picture of my friend too. I am a dot in the map too.
    How i add my photo to find my friends app? I wanna see people's photos in the map. Please help thanks.

    Hey robertofromnc,
    Dont know if you solved your issue since ur question was posted in february and i am replying in july...but i had same issue and couldnt get pics to upload magically from contact list to find friend....but i figured it out....
    Go to me tab.
    Click on each follower.
    Click add to existing contact.
    Your contact list should pull up.
    Click on contact with pic already on that person.
    That should do the trick.
    Hope it works for you too.

  • How to add material characteristics in sales order via BAPI?

    Hi all!
    I'm trying to use BAPI_SALESORDER_CREATEFROMDAT1 to create a sales order with one item that has some characteristics, but i can't seem to get it work. It creates the salesorder with the item but without characteristics data. Can somebody tell me what could be wrong?
    Here's the code:
    header-doc_type   = 'TA'.
    header-sales_org  = '3000'.
    header-distr_chan = '10'.
    header-division   = '00'.
    items-itm_number = '000010'.
    items-material   = 'CP-12'.
    items-req_qty    = '1000'.
    APPEND items.
    partners-partn_role = 'AG'.
    partners-partn_numb = '0000050000'.
    APPEND partners.
    c_ref-posex     = '000010'.
    c_ref-config_id = '000001'.
    c_ref-root_id   = '00000001'.
    APPEND c_ref.
    c_ins-config_id = '000001'.
    c_ins-inst_id   = '00000001'.
    c_ins-obj_type  = 'MARA'.
    c_ins-obj_key   = 'CP-12'.
    c_ins-complete  = 'T'.
    c_ins-consistent = 'T'.
    c_ins-quantity  = '0'.
    c_ins-quantity_unit  = 'ST'.
    c_ins-class_type = '300'.
    APPEND c_ins.
    c_val-config_id = '000001'.
    c_val-inst_id   = '00000001'.
    c_val-charc     = 'CP_12_ADD_ON'.
    c_val-value     = 'F'.
    c_val-valcode   = '1'.
    APPEND c_val.
    c_val-charc     = 'CP_12_COLOUR'.
    c_val-value     = 'M'.
    APPEND c_val.
    c_val-charc     = 'CP_12_MODEL'.
    c_val-value     = 'M'.
    APPEND c_val.
    CALL FUNCTION 'BAPI_SALESORDER_CREATEFROMDAT1'
      EXPORTING
        order_header_in           = header
        convert_parvw_auart       = 'X'
      IMPORTING
       salesdocument             = salesdoc
       return                    = return
      TABLES
        order_items_in            = items
        order_partners            = partners
       order_cfgs_ref            = c_ref
       order_cfgs_inst           = c_ins
       order_cfgs_part_of        = c_prt
       order_cfgs_value          = c_val

    BAPI_SALESORDER_CREATEFROMDAT1
    "(obsolete from 4.6 version)
    BAPI_SALESORDER_CREATEFROMDAT2
    please see the version  and change the BAPI
    reward  points if it is usefull ....
    Girish

  • How to add List view to SharePoint 2013 app

    Hi
    I'm developing intranet metro style app as SharePoint 2013 auto hosted . i need to get promoted list to display in my app page as it is display in SharePoint host site. i have seen some blog post but no clue of detail way of doing it (http://www.greggalipeau.com/2013/12/25/adding-list-views-to-sharepoint-2013-apps)
    Can any one let me know how to do this in a way steps to follow or any information on this highly appreciated.
    Kind regards
    Radika 

    http://newscarrouselapp.codeplex.com/ Download sample
    http://nettitude.wordpress.com/2013/01/27/creating-a-carousel-in-a-sharepoint-app-using-client-side-rendering/
    http://webcache.googleusercontent.com/search?q=cache:t4nEmPtXxtQJ:sp2013.blogspot.com/2012/08/use-list-view-in-sharepoint-2013-apps.html+&cd=4&hl=en&ct=clnk&gl=in&client=firefox-a
    <WebPartPages:WebPartZone runat="server"
    FrameType="TitleBarOnly" ID="full" Title="loc:full" >
    <WebPartPages:XsltListViewWebPart ID="XsltListViewWebPart2"
    runat="server" ListUrl="Lists/SlideShow" IsIncluded="True"
    NoDefaultStyle="TRUE" Title="Slideshow Images"
    PageType="PAGE_NORMALVIEW" Default="False"
    ViewContentTypeId="0x">
    </WebPartPages:XsltListViewWebPart>
    </WebPartPages:WebPartZone>

  • How to add a custom shortcut in Oracle apps Tool bar

    Hie all,
    I have a requirement from our end users that all of them requires a shortcut button in toolbar for submitting a request instead of going the normal way in order to submit a single request.
    please can any one help me out in solving this query.
    APPS version : 12.1.3
    OS: OEL 5.5 64 BIT
    DB: 11G
    Regards,
    Hassan

    I have a requirement from our end users that all of them requires a shortcut button in toolbar for submitting a request instead of going the normal way in order to submit a single request.
    please can any one help me out in solving this query.Any reason you want to use a shortcut rather than using (Requests > Submit) window?
    You can use "FND_REQUEST.SUBMIT_REQUEST" API -- https://forums.oracle.com/forums/search.jspa?threadID=&q=FND_REQUEST.SUBMIT_REQUEST&objID=c3&dateRange=all&userID=&numResults=15&rankBy=10001
    How To Submit A Concurrent Request Set Using Fnd_Request.Submit_Request [ID 382791.1]
    How To Set ORG_ID When Submitting A Concurrent Request Using FND_REQUEST.SUBMIT_REQUEST in Release 12 [ID 1383266.1]
    Thanks,
    Hussein

  • How to add a watermark in new Photos app

    Is there an easy way to add a watermark in the new Photos app?

    In iPhoto you could install the plug-in Border-FX.  That will let you batch export watermarked photos from iPhoto with several styles of watermarks, annotations, and borders.
    If you still have iPhoto, consider to install his plug-in and use iPhoto for water marking.  BorderFX - iBorderFX iPhoto
    For example, a text watermark:

  • How to add Activity from ANE to AIR app

    I have developed some native Android code that will (in theory) allow me to play video using the Android MediaPlayer. There are some issues with streaming h264 MP4 videos with AIR on Android that is making this necessary. How do I go about displaying the MediaPlayer within the application? I know it is possible as it is done using this native maps ANE, but I can't seem to figure out how it is done or find source code for it.
    Could anyone shed any light on how you display content from native code in the actual app? I am perfectly okay with it behaving like a StageWebView in terms of sizing and positioning (as is said is necessary by countless people I have read/listened to over the last day or so).
    Thanks for any help

    This isn't available in the default .air install (other than a shortcut to the application.)  However, I would suggest taking a look at the captive runtime options and rolling your own installer.  This way you can do whatever you want on installation without restriction.
    http://www.adobe.com/devnet/air/articles/air3-install-and-deployment-options.html
    Thanks,
    Chris

  • How to add assembly reference in Window Universal App project?

    Hello All,
    Thanks for reading my question. I'm migrating a Windows Phone project into the new universal environment, but I'm missing a place to add the assembly reference for the code. One instance that is, I'm using System.Net.Sockets, but it says "Sockets does
    not exists in the namespace 'System.Net' (Are you missing an assembly reference?)". So do the case of Background.
    In the old version, I can add the reference from right click on the "References" from the Solution Explorer, but it is not working in the Universal one.
    Appreciated all your comment and support.
    Vincent

    Hi,
    Visual Studio Unit Testingforum is to resolve visual studio unit tests issues. Your issue is about you can’t
    an assembly reference in universal app after you migrated a windows phone project to an universal environment, it is not in our scope, I suggest you to consult on Windows and Windows Phone apps forum:
    http://social.msdn.microsoft.com/Forums/en-US/home?category=windowsapps for better support.
    Thanks,
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • How to add more than 11 pages of apps in iOS 5.1

    Hello Support,
    I have installed more than 250 applications from iTunes Store but unable to see the application or cannot go to the applications which are beyond 11 apps pages. This is frustrating if it is found to be the limitations from Apple Side. I am using iPhoe 4 with iOS 5.1.
    Your urgent response and SOLUTION will be highly appreciated.
    regards,
    Rashid Inam,
    Karachi, Pakistan

    Put your apps in folders, because there is nothing you can do about the page limit.

  • How to add data encryption to an ios app

    We would like to make sure that the data entered in our app is encrypted. Should we use a 3rd party library or does Apple have a way of enabling encryption? Any details would be much appreciated.

    Use CCCrypt.
    Google it with 'iPhone' and you'll get lots of info.

  • How to Add meta tag in bsp

    hi experts,
    we have a bsp page,in which i need to declare meta tags,like in html.
    but though i delare it,while i debug the code,I can see its not  passing through the meta code.
    please advise me how to add a meta tag in bsp.
    <%@page language="abap" %>
    <%@extension name="htmlb" prefix="htmlb" %>
    <%@extension name="xhtmlb" prefix="xhtmlb" %>
    <%@extension name="crm_bsp_ic" prefix="crmic" %>
    <%@extension name="bsp" prefix="bsp" %>
    <%@extension name="chtmlb" prefix="chtmlb" %>
    <%@extension name="thtmlb" prefix="thtmlb" %>
    <%
      DATA: lv_xml         TYPE string.
      lv_xml = controller->configuration_descr->get_config_data( ).
    %>
    <%meta http-equiv name=  "WorkspaceId"  content= "a2ac9b45-65bb-4d25-9fb6-d9478280fa19"  /% >
    <%meta  http-equiv name="SmartTags" content="SAPCRMCREATEACCOUNT" /%>
    <chtmlb:config xml  = "<%= lv_xml %>"
                   displayMode = "<%= controller->view_group_context->is_view_in_display_mode( controller ). %>"
                   mode = "RUNTIME" />
    Edited by: Anu_87 on Jun 29, 2010 6:50 PM

    Hi,
    there are no meta tags in HTMLB !!   If you really need to include these in your development, you have to do it with the old HTML tags like this:
    <html>
    <head>
    meta name="author" content="Anna Lyse"
    meta http-equiv="expires" content="Sat, 01 Dec 2001 00:00:00 GMT"
    meta name="keywords" lang="en-us" content="vacation, Greece, sunshine"
    </head>
    </html>
    I cannot enter the correct code for META because the @§$%&/ configuration in this forum is triggering an error page !!

Maybe you are looking for

  • Visio 2007 saved as WEB page don't scale correctly in Internet Explorer 11

    For many years I've been working With Visio 2007 files and saving them as web pages. My customers have then been using the HTML Versions in their versions of Internet Explorer. This has worked fine until IE 11. Now the scaling don't work as it used t

  • Condition type for Insurance

    Hi all, Can anybody tell me what is the condition type used for Insurance in SD pricing procedure. thanx & regards, Praveen.

  • Cannot select timeline at times

    I am using Premiere Pro 5.0.2 and am having trouble selecting the timeline. Sometimes it works perfrctly and other times I click the timeline and it does not get highlighted, and I cannot do anything in it. Other times I can select the timeline but i

  • How update iPhoto

    How do I most easily update to iPhoto 4.0 or 5.0; while keeping OS X10.2.8. Have ample Memory. What do I need ...what are steps?? All suggestions much appreciated.

  • Please help--iphone restore and getting pictures off the phone

    Thanks in advance for any help you can give me. My friend's iphone 3GS (OS 3.1.2) has a message on the screen that says "Restore needed" and she can't get beyond this message to get to what is on her phone. A restore would wipe her phone of all data