InstaApps, WhiteField metadata auto generation

I am wondering if you can solve some of the puzzles I have about InstaApps or you can redirect the questions to anyone you think is more relevant to the application. Basically our team will use WhiteField Framework for our project and we know that InstaApps can help automate the implementation. So here are the questions we have.
1. Is this application deprecated for UI generation? Is it still in use for Backend API and BOL/Genil Implementation Classes generation?
2. Does InstaApps call any transactions/function modules/classes which are not in its package and not part of CRM core? Understanding the dependency of InstaApps is important for us to request a transport of this application to a CRM system that does not have it installed, which we are meant to do given that this application is still usable.
XiaoLong
Edited by: XiaoLong Chen on May 4, 2011 12:35 AM
Edited by: XiaoLong Chen on May 4, 2011 12:36 AM

I am able to fix this issue. After a series of R & D I was able to find that the root cause is %APPDATA%\jdeveloper. Deleting the relevant directory will solve this issue. In fact, I tried to delete the entire jdeveloper directory under %APPDATA% and the jdev 11.1.1.7 form generation issue got resolved. Those who find "referential integrity" issue may follow this approach.
This solution also applies to this thread
Auto Generate task Form

Similar Messages

  • Item Code Auto Generation Based on User defined Tables

    I need the Item code like
    PRODUCT TYPE-ITEMGROUP-ITEMCODE-SUBITEM-BRAND-COLOR  e.g .FG-01-01-00-001-00.
    I created the following User define Tables and link to Item Master data
    U_PRO             - FOR PRODUCT TYPE
    U_GROUP        - FOR  ITEM GROUP
    U_ITEMCODE    - FOR ITEMCODE
    U_SUBITEM       - FOR SUB ITEM
    U_BRD              - FOR BRAND NAME
    U_COLOR         - FOR COLOR
    i need a formatted search in Item code to fetch the codes from the user defined  table
    i tried with the following
    SELECT T5.[Code]'-'T2.[Code]'-'T3.[Code]'-'T4.[Code]'-'T0.[Code]'-'T1.[Code] FROM [dbo].[@BRD]  T0 , [dbo].[@COLOR]  T1, [dbo].[@GROUP]  T2, [dbo].[@ITEMCODE]  T3, [dbo].[@SUBITEM]  T4, [dbo].[@PRO]  T5 INNER JOIN OITM T6 ON T5.Code = T6.U_PRO WHERE
    T5.[Code] = T6.[$U_PRO] AND 
    T2.[Code] = T6.[$ U_GROUP] AND
    T3.[Code] = T6.[$U_ITEMCODE] AND
    T4.[Code] = T6.[$U_SUBITEM] AND
    T0.[Code]  = T6.[$U_BRD] AND
    T1.[Code]  = T6.[$U_COLOR]
    showing errors. Can any one help me regarding this. I badly need the query for Auto generation of Itemcode

    Hi,
    How can you assign those UDF value without ItemCode in the first place?
    Thanks,
    Gordon

  • Batch number auto generation nedded

    hi all,
                  i have a query that when i make a GRPO of 10 items with different qty, these items are set to batch on every transaction, then it will ask to enter the batch number of all item with the number of their quantity, is there any process to create these batch number automatically, is there any formatted search query for auto generation of batch number.
    even they are making GRPO by taking 100 items, it is very difficult to for them to to enter manually all the batch code.
    is there any provision to do the task by formatted search.
    revert back soon
    its very urgent
    regards
    sandip

    Sandip, 
    I have answered a few posts on this Forum about the different options.  Formatted searches can be considered but you will need to maintain a temp table.
    What is the real usage of the batch numbers in this business case?
    Suda

  • Auto Generation Cross References

    Hi
    I am working on xml to InDesign automation process form last year, I am looking to auto generate Cross References linking by using xml. Whereas my xml contains following tags for linking.
    <figref pid="p200179129960143001">Table 1</figref>
    <ptr pid="p200179129970131001">Chapter 7</ptr>
    Is there any option or namespace to perform auto generation of Cross References?

    Yes, i only have the container in one vi. In the other VIs are only "Automation references".
    But as soon as my activeX-file changes (new registered to windows), the references become invalid and i have to click on each reference an must select in the popup "select activeX-class".
    Message Edited by OnlyOne on 07-28-2009 09:38 AM

  • How do I stop the auto generation of previews to imported files?

    In a recent post it was suggested that I do not let Aperture automatically generate the previews to all imported files. I think that is a great idea, but how do I stop the auto generation of such files?
    Under Preferences/Previews I have unchecked the New projects automatically generate previews, but after I do the import the processing wheel continues to spin for quite some time (depending on how many files I imported).
    Thanks in advance.
    David

    Take a look here:
    Pretty much the same in Ap2 and Ap3
    [http://photo.rwboyer.com/2009/01/03/aperture-2-quick-tip-managing-previews>
    RB

  • How to stop auto generation of ids for h:dataTable

    I am using <h:dataTable> tag to display more than one error messages.
    My code goes like this
    <h:dataTable id="messagetb" value="#{searchZug.searchZugParam.allMessages}" var="message">
    <h:column>
    <h:outputText style="color:red;" value="#{message}" />
    </h:column>
    </h:dataTable>
    When i run my application, console is displaying a message like
    'WARNING: Component _id79 just got an automatic id, because there was no id assigned yet. If this component was created dynamically (i.e. not by a JSP tag) you should assign it an explicit static id or assign it the id you get from the createUniqueId from the current UIViewRoot component right after creation!'
    I checked in the generated html source. It is generating id for tbody as 'messagetb:tbody_element', this is causing the problem.
    How can i stop this auto generation of ids? if not possible, then how can i explicitly specify the id for tbody?
    Thanks,
    Murthy

    Narasimha.Murthy.d wrote:
    I am using JSF version 1.3There exist no "JSF 1.3". When talking about "JSF" without mentioning the implementation name, we assume it as JSF specification. The JSF specification is only been available as 1.0, 1.1, 1.2 and 2.0. As said before, we´re more interested in the JSF implementation name. Is it Apache MyFaces? Is it Sun RI or Sun Mojarra? And then please tell the version from that.

  • Auto generation of Item Code And Business Partner

    Hello All,
    My client want to create Auto generation of Item Code And Business Partner with some prefix value.
    Thanks
    Deepak

    Hi Dipak Patel,
    i created BP code by BP Group use FMS . you can refer code.
    declare @temp as char(20)
    IF $[OCRD.GroupCode] =100
    BEGIN
    set @temp=(select isnull(max(right(CardCode,5)),0) + 1 from OCRD where (GroupCode =100) and (len(CardCode)=8))
    set @temp='C11'+isnull(replicate(0,5-len(@temp)),'')+@temp
    select cast(@temp as char(20))
    END
    ELSE IF $[OCRD.GroupCode] = 102
    BEGIN
    set @temp=(select isnull(max(right(CardCode,5)),0) + 1 from OCRD where (GroupCode =102) and (len(CardCode)=8))
    set @temp='C12'+isnull(replicate(0,5-len(@temp)),'')+@temp
    select cast(@temp as char(20))
    END
    ELSE IF $[OCRD.GroupCode] = 103
    BEGIN
    set @temp=(select isnull(max(right(CardCode,5)),0) + 1 from OCRD where (GroupCode =103) and (len(CardCode)=8))
    set @temp='C13'+isnull(replicate(0,5-len(@temp)),'')+@temp
    select cast(@temp as char(20))
    END
    ELSE IF $[OCRD.GroupCode] = 104
    BEGIN
    set @temp=(select isnull(max(right(CardCode,5)),0) + 1 from OCRD where (GroupCode =104) and (len(CardCode)=8))
    set @temp='C14'+isnull(replicate(0,5-len(@temp)),'')+@temp
    select cast(@temp as char(20))
    END
    ELSE IF $[OCRD.GroupCode] = 101
    BEGIN
    set @temp=(select isnull(max(right(CardCode,5)),0) + 1 from OCRD where (GroupCode =101) and (len(CardCode)=8))
    set @temp='V11'+isnull(replicate(0,5-len(@temp)),'')+@temp
    select cast(@temp as char(20))
    END
    ELSE IF $[OCRD.GroupCode] = 105
    BEGIN
    set @temp=(select isnull(max(right(CardCode,5)),0) + 1 from OCRD where (GroupCode =105) and (len(CardCode)=8))
    set @temp='V12'+isnull(replicate(0,5-len(@temp)),'')+@temp
    select cast(@temp as char(20))
    END
    ELSE IF $[OCRD.GroupCode] = 106
    BEGIN
    set @temp=(select isnull(max(right(CardCode,5)),0) + 1 from OCRD where (GroupCode =106) and (len(CardCode)=8))
    set @temp='V13'+isnull(replicate(0,5-len(@temp)),'')+@temp
    select cast(@temp as char(20))
    END
    ELSE IF $[OCRD.GroupCode] = 107
    BEGIN
    set @temp=(select isnull(max(right(CardCode,5)),0) + 1 from OCRD where (GroupCode =107) and (len(CardCode)=8))
    set @temp='V14'+isnull(replicate(0,5-len(@temp)),'')+@temp
    select cast(@temp as char(20))
    END
    ELSE IF $[OCRD.GroupCode] = 108
    BEGIN
    set @temp=(select isnull(max(right(CardCode,5)),0) + 1 from OCRD where (GroupCode =108) and (len(CardCode)=8))
    set @temp='V15'+isnull(replicate(0,5-len(@temp)),'')+@temp
    select cast(@temp as char(20))
    END
    ELSE IF $[OCRD.GroupCode] = 109
    BEGIN
    set @temp=(select isnull(max(right(CardCode,5)),0) + 1 from OCRD where (GroupCode =109) and (len(CardCode)=8))
    set @temp='V16'+isnull(replicate(0,5-len(@temp)),'')+@temp
    select cast(@temp as char(20))
    END
    ELSE IF $[OCRD.GroupCode] = 110
    BEGIN
    set @temp=(select isnull(max(right(CardCode,5)),0) + 1 from OCRD where (GroupCode =110) and (len(CardCode)=8))
    set @temp='V17'+isnull(replicate(0,5-len(@temp)),'')+@temp
    select cast(@temp as char(20))
    END
    thanks
    H2

  • Auto Generation

    how to generate auto generation number
    its urgent
    advance thanks
    by nathan

    Hi this is the code for autogenerating BP code
    You can make changes according to ur requirement.
    Sub BPAutoGeneration(ByVal CardType As String, ByVal Profit As String)
            Try
                Dim oRs As SAPbobsCOM.Recordset = oCompany.GetBusinessObject(SAPbobsCOM.BoObjectTypes.BoRecordset)
                oRs.DoQuery("Select (CASE WHEN max(CAST(substring(CardCode,5,len(CardCode)) as int)) IS NULL THEN '1' ELSE max(CAST(substring(CardCode,5,len(CardCode)) as int))+1 END) from OCRD Where U_PrftCntr='" & Profit & "' and CardType='" & CardType & "'")
                Dim NextNum As String = Trim(oRs.Fields.Item(0).Value)
                Dim Auto As String = ""
                For i As Integer = 7 To NextNum.Length Step -1
                    Auto = Auto & "0"
                Next
                Auto = CardType & Profit & Auto & NextNum
                BP_Form.Freeze(True)
                BP_Form.Items.Item("5").Specific.Value = Auto
                BP_Form.Freeze(False)
            Catch ex As Exception
                oApplication.StatusBar.SetText(ex.Message)
            End Try
        End Sub
    regards:
    Sandy

  • Auto generation of  Item Code

    Hi Experts,
    Is it possible to create auto generation of Item Codes in SAP B1?
    E.g Customer want specific format say ... I000001---- I9999999
    tks,
    SB1

    Dear,
    You posted the same thread twice.
    Check you previous thread for reply :
    Re: Auto generation of  Item Code
    Hope this will help u.
    Thanks,
    Neetu

  • Auto generation of settlement rule for PM orders that are Investment Measur

    Hi all
    Has anyone successfully automatically generated settlement rules on a PM order that is an Investment measure? The settlement receiver would be an asset. User exit IWO10027 doesn't work. Std settings don't work either because a settlement rule is auto generated for the AUC on the order during settlement (Note 195607) because of IM.
    Any ideas?
    Thanks
    CC

    for a PM order as investm,ent measure the system assumes that you wish to create an AuC hence no other settlement rule generation is allowed
    you can try by removing the asset class in the IM profile

  • Lightroom 4.4 Metadata Auto Sync switch missing from Sync Button.

    I am using Lightroom 4.4 on a 2013 Macbook Air OS 10.8.4.
    I cannot see the Switch enables auto sync on the Metadata sync button. Its currently visible on another machine a MacPro with Lightroom v4.3. I find this useful to be bale quickly enable and disable the syncing of metadata. I'd be grateful if somewhere could tell me if this has been dropped in v4.4 or have I missed a prefs setting somewhere? MAny thanks

    It depends on how the "Metadata Menu>Show Metadata for Target Photo Only" option is set. If it's enabled, the buttons are as you show them, with the little switch to the left of the "Sync" button which would enable "Auto Sync" if clicked (but only possible with multiple photos selected).
    However, if that option is unchecked, the button changes and becomes like this:
    No switch needed in that situation, the button lights up whenever multiple images are selected.

  • Lightroom - metadata auto-save vs. export

    Hello!
    I understand that with auto-save XMP metadata on, most of an image's Lightroom changes will be auto-saved with the original photograph file whereever it may be.
    However, what I don't understand is whether when you export from Lightroom (not export a catalogue/folder, but export an image/some images) whether or not the Lightroom changes (e.g. brightness contrast, saturation, etc.) are considered part of the 'metadata' referred to in the export window.
    Afterall, if you are exporting JPEGs, for instance, you are rendering the final (not the original), so why would you want the Lightroom changes metadata because you can't use the Lightroom changes XMP data to go from a final to go back to an original image, can you?!
    Thank you!
    p.s. This article (http://regex.info/blog/lightroom-goodies/metadata-wrangler) indicates that the XMP CRS block is automatically include with the Lightroom export window, right?

    When you export an image the metadata and develop settings are written to the files XMP header. However, the develop settings are for reference only i.e. they are seen but not acted upon by applications such as Bridge. For example, if you open an exported JPEG with develop adjustments into Camera Raw  it will show all the sliders at zero rather than the values in XMP. The reason being that the JPEG is already fully rendered file, the develop settings in XMP cannot be undone without creating a completely new file.
    Metadata and develop settings saved to XMP differs in that the file has not yet been rendered with the develop settings. So, opening the file in Camera Raw show the sliders at the same values as written into XMP.
    p.s. This article (http://regex.info/blog/lightroom-goodies/metadata-wrangler) indicates that the XMP CRS block is automatically include with the Lightroom export window, right?
    Yes

  • No Metadata Auto Sync in Lightroom 3

    I was recently watching a tutorial on Lightroom 3 and it showed that you could auto sync metadata in the Library module. I cannot get this feature to work on my version of Lightroom. I am using a mac with OS 10.6.7. I have "Enable Auto Sync" checked under the "Metadata" menu, but still no little toggle box to toggle Sync Metadata and Auto Sync is available.
    Tracy Elliott

    I've tried but no "metadata sync" on the button.
    (picture in earlier answer is in grid view.)
    Mystery ?
    edit: On my desktop I see no switch and "Sync Metadata" .
    on my laptop I  don't see it., only Auto Sync  and Sync  on the left button, right button says Sync Settings in grid and loupe view with the switch.
    Both LR3.4.1 64bit version windows 7.
    How come ?
    Frans

  • Metadata auto completion in PS CC 2014

    When entering metadata (File -> File Info) in PS CC, auto complete would fill in words that I commonly used across the metadata. As far as I can tell this no longer is in PS CC 2014.
    The Preferences dialog for File Info looked like this:
    The same dialog in PS CC 2014:
    Auto complete when entering metadata appears to have been removed or moved somewhere else. It's a feature that I have come to rely on. Any help would be appreciated.

    What about using File>Info in Bridge CC?
    Photoshop CC 2014 doesn't support flash, so the file info no longer uses flash, which may be the reason why a feature like that isn't working in photoshop cc 2014 or
    adobe just didn't have time to add that or it's in future plans.

  • Metadata Auto fill edit

    I have created some "custom" metadata sets using some user created fields. However I have previously made a spelling error (in a long entry!) and although I seem to have deleted all incorrectly spelt metadata from my images I really would like to delete the incorrect spelling from the autofill library, wherever that is.
    I have searched the edit IPTC autofill from the meta data drop down menu and cannot find it - only the "non custom" fields are listed.
    Any help greatly appretiated!
    Steven

    Ok, half way there. I downloaded an app called Pref Setter to edit the preferences by deleting the array strings that I no longer needed.
    Also you can adjust the hierarchy of the auto completion data. I found that helpful with the copyright field since they all start off the same.
    Need to still find a way to have the data automatically entered from a default setting, with out having to start typing.

Maybe you are looking for

  • Multiple ipads on one account

    I need to manage several iPads. Can I use one account for all in terms of downloading apps?

  • CascadeType.REFRESH does not work? (EJB3, Jdeveloper 10.1.3.0.4)

    Hi, We have requirement to at least for some entity bans be able to pick external changes to the database records from the appserver. This is why in 1:M relationships we need to be able to see deleted/added/changed children records for arbitrary pare

  • Kerning/Letterspacing Problems with TLF - and more

    Hello, I have some troubles with TLF (RichEditableText - editable) and Letterspacing/Kerning. Problem is, that I my application uses a different rendering-engine on the server-side. Textediting happens with a Flash/Flex Client displaying serverside s

  • InContext Editing Too Slow

    Hi Folks, Love the concept of InContext editing but I don't think it actually works! I am only working on a simply HTML page with one other user. It takes forever to do anything. clicking the edit page button: 23 seconds clicking the done button: 56

  • How to find a url embedded in a photo

    Hi - sometimes I need to find a url that is embedded into a photograph - can anyone tell me what software I need to find the url?