BDT custom SFCs not shown on screen

We have to set up some custom SFC categories, and I have to create new screens for them so that they are included in claims. According to OSS Note 704333, the following needs to be done (this is copied directly from the note):
Enter a new category in the IMG under Claims Management -> Structuring Business Processes -> Structured Facts Capture -> Enhance Facts Capture Categories. Also refer to the documentation for this IMGnode.
Create a BDT view. You have to enter different subscreens and function modules in the view, depending on whether it is a quick question sequence or standard question sequence (dialog box). As examples, you can use view ICLQ08 for the quick question sequence and ICLQ03 for the standard question sequence.
With the standard question sequence you must also assign field groups 50 and 51 to the view.
For a standard question sequence, use screen 300 in SAPLICL_SFC_BDT, for a quick question sequence, on the other hand, use 112 (depending on the desired size).
For the PBO and PAI modules, you have to enter the function modules mentioned for the above views (depending on the category). The PBC module has to be created specifically for your view; the modules entered with the above views can also serve as a template.
In the PBC you have to fill the following fields of structure ICL_SFC:
FACTSCAT: Your new SFC category
DSTSUBCLAIM: Subclaim to which the SFC refers
SUBOBJECT: The key by which the object is clearing identified in the claim, e.g. the number of the damaged object
XREADONLY: To be set in the display mode of the claim
You can fill PBTEXT and VIEW using function module ICL_TBSFC004_GET.
You use function module ICL_SFC_ACTINST_SET to set the values in function group ICL_SFC_BDT. Add the newly created BDT view to the provided screen sequence.
Create a question sequence for your SFC category and assign this to the corresponding internal claim type.
I followed the instructions and created new views for the new SFC's (this is so that I could use my own Function modules in the PBC events. This is the only thing I changed - the PAI and PBO both call standard SAP modules, and all the other stuff, i.e. application etc. I left the same as the standard). I assigned the views to sections --> screens etc. The screen where the SFC should appear, is there but it is blank, i.e. it doesn't show any buttons or anything.
I also hard-coded break points into my PBC modules but these never seem to be called either, because the processing never gets there, evidently. So this leads me to believe that I've missed something out in setting up the funtionality. Any ideas? Also, do I need to do anything in the BDT events to populate the new SFC's or does the system do this automatically? 
Thanks for your help.

No I don't think you want ECSFO001 for ISUSDPART either.  I recall implementing that last year to disable the create/change functions in the "Search and Display" component as they bypassed BDT field-group security.
I'm not sure where in CIC you want your custom field to display.  Do you want to show it in the navigation area?
As for search results (ISUFINDER), I seem to recall that it was possible to configure the finder to show additional attributes of the BOR object type, such as ISUPARTNER.  But I might be having myself on there as it's only a vague memory.
As standard, the finder displays columns for the the key and default attribute of the search object, in this case BOR object type ISUPARTNER.  The default attribute in this case is name shorttext (can't recall what the attribute is called right now).  You could implement a sub-type and override the implementation of this default attribute so that you also display an icon of some sort in the name text if your custom field is set.
Cheers,
Scott

Similar Messages

  • Logical database sdf in custom program not triggering selection screen?

    I added logical Database SDF (screen 905) to a custom program - but the selection screen is not getting triggered.
    Do I have to associate these somewhere?
    Thanks,
    Ven

    HI,
    Declare this statement after the Report Statement in the program.
    TABLES : SKA1, SKB1.
    You will get the selection screen now.

  • OSA Appraisal: custom substatus not shown in phap_catalog_pa

    Hi, gurus,
    why there is only one substatus shown on the status flow tab of a category and template? i defined sever custom substatus of main status 'in process', but they are not shown at all.
    thanks and best regards
    Jun

    Hi,
    I  recently worked the appraisal forms. Most of the appraisal templates are created and configured in the SPRO. Or OOAM or PHAP_BASIC transaction code.
    as per my understanding , the solution for your question is : you can restrict Lines Reserved for Note is input field (F4 field) there you can select numbers within 1 - 9.
    please let me know if you have any issues / concerns.
    Thanks,
    Ramana

  • Certain symbols are not shown ( see screen shot) How to resolve?

    From this website the logo and arrows are not shown whereas when I am using internet explorer they do show up. What is wrong in my settings and how to adjust these?

    Hello,
    As I can see it is a narrow box with two rows of two characters? Firefox displays that code when it cannot find the corresponding character in any available font. The most common reason to see this is that some sites are now replacing image icons with font characters that Firefox has to download. If you have set Firefox to:
    * use only your preferred fonts instead of the page's preferred fonts
    * not download fonts (either in about:config or using the NoScript extension)
    then you would need to change that in order to see the icons.
    First check your font settings here:
    "3-bar" menu button (or Tools menu) > Options > Content
    Click the Advanced button and make sure there is a check in the box for "Allow pages to choose their own fonts".
    If you change that, try reloading the page. Does Firefox load the missing icons?
    If that doesn't fix the issue then do the following:
    You can check the '''gfx.downloadable_fonts.enabled''' pref on the '''about:config''' page (you can go to it by typing about:config in your address bar) and make sure that it is set to true (if necessary double-click the line to toggle its value).
    Sometimes it also happens because of the slow connection. Due to slow connection the text which takes less space are somehow downloaded but the image couldn't get downloaded within the connection time frame.
    Hope it helps.

  • Customer field Not shown in ME21n and ME22N

    Hi,
    While creation ME21N and change ME22N we are unable to get Customer field in Delivery address tab of the PO, We are getting Address and Vendor (Sc Vendor) fields in Delivery address tab , but customer not able to see.
    The Customer field we can seen through ME23N.
    We have cross check screen layout for ME21N and ME22 and NBF here in all cases Customer field is Optional.

    Hi,
    Please check screen layout for AKTH & AKTV.
    Regards
    Subbu.

  • Custom field not updating in screen of Purchase Order

    Hi,
    We have customer field in header and item of purchase order. If we enter value in Header, this should automatically update in item also. We have made the changes, but issue is "If i enter the value in Header and save the purcahse Order with out enter any enter button, it is not showing the value in item. the value updated the table EKPO, but in the screen it is not showing. If come back to Purcahse Order, the value is updated in screens.  "
    Is that any way to solve this issue?

    HI
    you could try BADI ME_PROCESS_PO_CUST Method Process_Header.
    you can get_data and set_data
    read header data
      gs_header   = im_header->get_data( ).
          CALL METHOD im_header->get_items
            RECEIVING
              re_items = l_items.
          LOOP AT l_items INTO l_single.
            CALL METHOD l_single-item->get_data
              RECEIVING
                re_data = gs_lines.
    After that you should use Method set_data.
    regards
    Alex

  • PSE 8 catalog in custom location not shown in catalog list

    I am trying to help a client recover from a computer problem. She was having several types of problems with her PC a couple of months ago. PSE 8 seemed to be working ok at the time, and my memory tells me I Reconnected all missing files (if there were any), Repaired and Optimized, as is my usual practice. I then did a full backup to an external drive. She then had her son fix her computer in some way shape or form. He lives out of state. I got a call and she said she was ready for me to get her PSE 8 back up and running.
    When I got there, we discovered she did not have the PSE 8 CDs. She he bought it online from Adobe but never copied it to a CD etc. We decided she would buy PSE 10 and download it. I had never downloaded any from the Adobe Store and was totally shocked to discover it was a three hour download. Other equally large files I have downloaded from Adobe would have taken 20-30 min. While it was downloading I even went hoe and started the download on my internet connection. It would have taken an equal amount of time. Sorry, I strayed.
    After we installed PSE 10, I did a Restore from the PSE 8 backup I made a couple of months ago. I have done this many times over the years with very good results. We got a message saying the catalog was successfully restored. But when I went to convert it to PSE 10, an error appeared saying the conversion failed and we shoulf try restoring it on to PSE 8 and try abother Backup.
    That's the background. I do still have PSE 8 on a PC at home. I restored the Catalog to a custonm location (a second internal drive). All of the 5300 pictures or visible, tags appear to be in order etc.
    But before trying a Back-up I wanted to Repair and Opimize the Catalog (named my Catalog). But with the catalog visible, the area where I expected to see [Current] is blank, and the Repair etc buttons are grayed out. I'm stumped. The only think I can think to do is to back another backup and try to restore that one on her PSE 10 after I dry run it at home.
    I'f attached a screen shot showing the dialog box in quesation. I now see where it is quite small, you should be able to see the areas of the screen I'm referring to.
    I'm stumped. Any suggestions will be very much appreciated.
    TIA

    Brett,
    Thanks for the quick reply. It seemed like a simple solution, but it did not work. Going up one level did not change anything. The area is still blank and the choices are still grayed out.
    Can you think of anything else?

  • Custom Fields not shown in BSEG using OXK3 transaction

    Hi,
    I have added new custom fields in Expert Mode using OXK3 transaction to add new fields in BSEG table.
    The Include CI_COBL is created with custom fields in OXK3  .
    I then tried to add fields by selecting "Add Field to BSEG" but an access key is required which I do not have.
    Now is there any other way or what is the next step to reflect the custom fields in BSEG table after creating the CI_COBL in OXK3 transaction.
    I do not have access to SAP Marketplace from where I can refer to SAP Notes.
    Thanks
    Amit

    Hello Amit,
    Are you sure this is a question related to SAP ByDesign and not SAP ECC?
    You will certainly have more luck finding answers in the right forum thread.
    Best regards.
    Jacques-Antoine Ollier

  • I AM STUCK WITH MOZILLA FIREFOX / NOT SHOWN ON MY LAPTOP SCREEN / USING HUGE AMOUNT OF RAM IN GENERAL - CAN YOU HELP????

    Hi,
    I have copied these problem on you site, as I could explain better then what they did, wich my problem remain the same as they have. And part me explaining what is really happen to my Laptop.
    ''Mozilla/Firefox 4 will not SHOW on my computer SCREEN.
    Firefox won't load onto my computer. I have Windows 7, and each time I try to run the program to install it, it tells me I have another version still waiting to be installed that requires my computer to reboot. When I check "yes" to reboot, my computer reboots but still no Firefox. When I try to uninstall the the old Mozilla program from my Control Panels, there is no Mozilla files or programs listed not in my list of programs but when I go directly to the Windows File on the C: Drive, there's a Mozilla program file there. WHen I go into that file check, I attempt to open the uninstall program. I get an error message that says something to the effect of: "the version Mozilla on this computer is not compatable with my OS." Something about it being and 86bit program. My Firefox 3.6 worked fine 2 days ago. What's wrong??? ''
    '''Firefox 4 using huge amounts of RAM on sites with Java scripts
    I have been observing Firefox using huge amount of RAM when I am on sites that use Java Scripts to rotate images. I have tried a couple of different sites and have monitored the RAM usage. With Java script enabled Firefox 4 continues to grow its RAM usage by about 10MB a minute. I have had the usage hit as high as 1.5GB. As a comparison I have monitored the same sites in Internet explorer and have not seen the same issue. - Just to eliminate a site issue.
    Turning off Java Script solves the issue and eventually frees the RAM.
    I am using XP Pro, 3 GB RAM. '''''
    My experince with Mozilla Firefox:
    Here what really happen when I install the Mozilla Firebox on my La[top you can see the file is there but when I click the program to open its does not shown on the screen but when I check with WTM (Windows Task Manager) its shows that is ON and you can only witness the laptop going very slow and I have to reboot it, and I can not install any other Mozilla :( because of the same problem and all the above.
    I really need Mozilla to work as soon as possible due to important deadlines I have pendent, and i can only use Chrome but is not my ideal program. Can you help me , please ?????
    Thank you
    Vitor Mendes

    If it opens in safe mode, you may have a problematic add-on. Try the procedure in the [[Troubleshooting extensions and themes]] article.

  • Xperia ZL - when I turn the screen image is not shown

    I speak Spanish but try to leave the message in English too. SPANISH: Mi celular ZL presenta un problema, cuando enciendo la pantalla esta no muestra imagen. En otras palabras, la pantalla se ve negra. Esto sucede de forma aleatoria. Si tengo el celular en reposo (pero encendido) (por ejemplo en mi bolsillo o sobre mi escritorio) y quiero utilizarlo, presiono el botón de encendido, pero la pantalla no muestra imagen, el brillo de la pantalla enciende, el tactil funciona pero la imagen no se muestra. Cuando esto sucede, si presiono el botón de encendido 2 veces vuelve a presentar la imagen (la primera vez es como bloquear-apagar la pantalla, la segunda es como volverla a encender). Esto sucede de forma aleatoria entre días. También sucede al querer finalizar una llamada telefónica y separarlo de mi rostro la pantalla no muestra ninguna imagen lo que no me permite finalizar la llamada. También sucede de forma aleatoria cada tanto tiempo. Aunque suceda de forma aleatoria, es molesto y deseo encontrar solución al problema. He restablecido a datos de fabrica muchas veces y no se ha solucionado el problema. Soy de Colombia(país de latinoamerica) y la versión del sistema que tengo es Android 4.2.2 compilación 10.3.A.0.423. Via OTA y por PC Companion no aparece alguna nueva actualización. Si alguien tiene información al respecto, le sucede el mismo problema o tiene algún comentario al respecto, yo agradezco responda este mensaje. Si hay una forma de reportar este problema a los desarrolladores de Sony para que lo tengan en cuenta por favor informarme como hacerlo.gracias. ENGLISH: My cell ZL has a problem, when I turn the screen image is not shown. In other words, the screen is black. This happens at random. If I have the cell at rest (but on) (for example in my pocket or on my desk) and I use it, I press the power button, but the screen shows no picture, the screen brightness on, the touch works but the image is not displayed. When this happens, if I press the power button 2 times again presents the image (the first time is like block-off the screen, the second is like it back on). This happens randomly between days. It also happens to want to end a phone call and separate from my face the screen does not display an image which does not allow me to end the call. It also happens randomly every so often. Although happen randomly, it's annoying and I want to find solution to the problem. I reset to factory data many times and has not fixed the problem. I'm from Colombia (Latin American country) and the system version that I have is Android 4.2.2 10.3.A.0.423 compilation. Via OTA and PC Companion does not show any new updates. If anyone has information about it, it happens the same problem or have any comments about it, I appreciate reply to this message. If there is a way to report this problem to the developers of Sony to take this into account please tell me how. Thank you....

    This problem seems to be related to what happens to the model Xperia Z ultra http://forum.xda-developers.com/showthread.php?t=2392252 http://www.xperiablog.net/2013/08/21/some-xperia-z-ultra-owners-complaining-of-defective-screens/ http://www.ubergizmo.com/2013/08/some-sony-xperia-z-ultra-owners-complain-of-wonky-displays/ http://www.xperiablog.net/2013/08/21/some-xperia-z-ultra-owners-complaining-of-defective-screens/ in spanish: El problema parece relacionado a lo que le sucede a los sony xperia z ultra. http://www.movilzona.es/2013/08/21/algunos-sony-xperia-z-ultra-presentan-problemas-con-la-pantalla-de-desbloqueo/

  • I'm on a windows laptop using iTunes sharing through the family to connect with Apple TV. After choosing the folder of photos to be shared and displayed on the appletv and when I choose to show on screen, they are not shown in the order they are in the or

    I'm on a windows laptop using iTunes sharing through the family to connect with Apple TV.
    After choosing the folder of photos to be shared and displayed on the appletv and when I choose to show on screen, they are not shown in the order they are in the original folder.
    How to pair show in a certain order, for example, sorted by name.
    grateful
    Julio Cesar

    Not that I'm aware of. You just export JPEG copies to a folder that you can point iTunes to. For instance, I have created a folder in my Pictures folder called Apple TV. And within that folder I have other folders of pictures that I can choose from in iTunes to share with Apple TV. But there doesn't seem to be any way to share a Lightroom slideshow. If you have laid to create a video file that would probably work. Apple TV is a little clunky in my opinion. Some things are a little more difficult to do now than they were a while back. I probably haven't provided you with much help, but just keep experimenting and I think you will figure it out.

  • Module pool screen element not shown

    Hi,
    I have a module pool with table control.
    I have added a new field to the internal table and included it in layout-checked properties and it is active/shown in output and input enabled
    Also, when I checked in PBO debugging, loop at screen, when the screen element is this field, active/input/output = 1
    I have activated the program/generated it/logged off from system and logged in again (to take care of refreshing the screen)
    The internal table has values for this field.
    When I execute the screen directly instead of module pool program, field is shown in table control
    But when I execute the module pool program, this field and heading are not shown in table control but empty space allocated for this field is shown.
    May I know how can I resolve this.
    Thanks!

    Hi Vasu,
    Go through this [Sample|http://help.sap.com/saphelp_nw04/helpdata/EN/9f/dbac5e35c111d1829f0000e829fbfe/content.htm].
    Regards,
    Maruthi

  • IQ03 - one time customer account group not shown in ship-to party field

    Hi,
    Anyone can help out this?
    In IQ03, for one time customer account, ship-to party field not updated. For others account group is updated.
    Is this SAP standard setting that not shown the ship-to/sold-to details in IQ03 for one time customer account?
    Thanks in advance.

    Update some details:
    1. Our one-time customer account group setting is customized from standard one time customer account.
    2. Partner determination done same as sold-to party.
    I came accross this "One time customer do not have partner functions tab (no SP, BP, PY, SH) active.... " in Thread: One time customer Posted by Bageerath Chery.
    Can anyone explain further on this?
    As if this is standard, meaning can explain why one-time customer not shown in ship-to field although the setting at equipment > Assign Partner Determination Procedure to Equipment Category done.
    Or any else setting to check? Pls advise..

  • When printing slides with notes, only notepart shown on screen is included

    Hi
    I make presentations with really long presenters notes. During presentation I can scroll the presenters notes on screen with U and D, but my problem is when printing the slides with notes, only the part of the notes that is shown on screen is printing, so I sometimes half of the note section on a slide.
    Is there a work around, or is it just the way life is?
    Thanks in advance.

    I too am having the same issue. I am trying to print out a monthly calendar like I see on the screen. At the most on any given day I have 4 lines of text. It shows on the screen but when I print it puts 3 little dots above that particular day to let me know there is more to it and refuses to print more than 3 items. I have tried with different page set ups and all I am doing is wasting ink. What's worse, is that there is PLENTY of room left on the paper. There is so much room between the month label and where the calendar starts there certainly has to be a way to adjust this. (I would hope!) Anyone please help! Thanks in advance.

  • Screen Variant BBPCF02 Vendor name notly shown

    Hi Guys,
    I am new to SAP SRM...
    I  got a issue that "We need to have the Vendor name on the search result for transaction BBPCF02 & Screen Variant BBPCF02 Vendor name notly shown.
    can you guide how to solve this issue.  I have posted the issue in SRM.. But i am not getting any response.. Since it was very urgent for me, I am posting this issue in this forum
    Thanks in Advance

    close

Maybe you are looking for

  • Printer hp laserjet m1212nf mfp is not shared with the homegroup

    Dear friends of HP I'm using the excellent HP Printer, but everytime Iturn it on, it asks me to make a "SMART INSTALLATION" if not my PC doesn't beguin to print and the default printer stays in grey color in the Control Panel. I'm using windows 7 Ult

  • Where are Optimizer settings stored?

    I need to deploy PDF Optimizer settings throughout my organization, like I did with joboptions. So far I have been unsuccessful in searching for a file with the name into which I saved my optimizer settings. Where are the optimizer settings stored? 

  • ORA-04091: table ...is mutating, trigger/function may

    when I run a delete on this table I have the error ORA-04091: table MICRODEV.T086_LIEN_INSC is mutating, trigger/function may not see it ORA-06512: at "MICRODEV.TG_DEL_T086_LIEN_INSC", line 5 ORA-04088: error during execution of trigger 'MICRODEV.TG_

  • SRM general questions

    Hi, I am new to SRM and have some basic questions. 1. What are the restrictions of classic scenario ? 2. What are the restrictions of extended classic scenario? 3. I want to know how organizational structure is impacted in classic scenario and extend

  • Do I need to clean up MBP

    I'm a new MBP user, on my windows PC I had to constantly run Disc defragment, disc clean-up, spyware doctor, you name it just to keep it from getting sluggish. Are there any programs I should be running on regular basis to keep my MBP running smooth.