Substitution problem

Hi Gurus
I have written a substitution to capture the constant value 1000 in business place and section code if user enters it as 1162.
That means in place of 1162 system will substitute 1000. But it is not working
prerequisite : Company Code = '1000' AND Account Type = 'K' AND
Section Code = '1162'
Substituted value Business place 1000 , section code 1000
Please suggest necessary changes or advice on the matter urgently.
Regards
Ajay

Hello
Give it at level 002. (line item level of the document)
regards,
radhika
Edited by: kolipara radhika on Jul 13, 2009 4:12 PM

Similar Messages

  • Font encryption and substitution problems

    Please let me know whether Adobe content server has the option to verify a pdf for font encryption and substitution problems.
    regards,
    Sashi

    No, for anything other than basic format issues you will want to use Acrobat for verification and modification of the PDF file.

  • Variable substitution problem

    Hy,
    I get following problem with Varibale Substitution in Receiver File Adapter.
    <b>"2006-04-19 14:10:39 CEST: Error: Message processing failed: Exception: Exception in XML Parser (format problem?):'java.lang.Exception: Message processing failed in XML parser: 'java.lang.Exception: Consistency error: more fields found in XML structure than specified in conversion parameters! (Value '001')', probably configuration error in file adapter (XML parser error)'"</b>
    My file has following structure(message typ)
    level1
      recordset
        fieldsa  String     1
        fieldsb  String     1
      level2     Element    1
        fields1  String     1
        fields2  String     1
    and Adapter configuration is
    Folder   : data\%w%\
    filename : file%r%.txt
    w payload:level1,1,level2,1,fields1,1
    r payload:level1,1,level2,1,fields2,1
    Could anyone see my problem
    cheers

    Hi,
    Is this is your structure
    level_1
       -level_x
         -fields_a String 1
         -fields_b String 1
      -level_2 Element 1
         -fields_1 String 1
         -fields_2 String 1
    If so the variable substitution looks ok.
    w payload:level_1,1,level_2,1,fields_1,1
    r payload:level_1,1,level_2,1,fields_2,1
    First Option-
    1) Remove the _ (Underscores) and check it -Refer SAP Note 850694
    2) Remove the Directory Susbtsitution - by giving static path for the File Directory
    3) If it works in 2nd step, there is a error in the Variable Sustitution for the Directory .( check SAP help mentioned in my earlier reply)
    Hope this helps,
    Regards,
    Moorthy

  • FB01 BDC substitution problem

    Hi,
    I wrote a batch program to transfer GL data from text file to SAP. It uses FB01.
    Everything works fine except for some GL accounts that do not need cost center input. When such account inserted my program has an error
    saying that there is no field 'COBL-KOSTL' in the form.
    To fix the problem my program has to access substitution rule and either insert or not incert line: PERFORM bdc_field USING 'COBL-KOSTL' itab-kostl. "Cost center
    Question: how to access substitution rules from ABAP program? Or may be I have to access basic set generated by substitution? Or may be any other way?
    Thank you,
    Vitaly

    Hi,
    These tables might help you.
    GB03                           Validation/Substitution User
    GB03T                          Validation/Substitution Application Area T
    GB31                           Validation/Substitution Callup Points
    GB31T                          Validation/Substitution Callup Point Text
    GB907                          Rule: Usage of Rules in Substitutions
    GB92                           Substitutions
    GB921                          Substitution Conditions
    GB921T                         Substitution: Text Table for Substitution
    GB922                          Substitution Constants
    GB925                          Usage of Substitutions
    GB92T                          Texts for Substitutions
    I have not checked the details of which table to use exactly but I am sure it would help you in some sense.
    Regards
    Nishant

  • Substitution problem in VO with viewlink and not in expert mode

    Hi All
    i have to extend a VO ,standar VO is not in expert mode so i made it and then extended the VO(need to add two new date columns) and substituted the BC4j ,i was involved in this discussion also
    Re: Substitute ViewObject. Urgent!!!!!  Thank you
    ,and i was aware that viewlinks should take care by substituion itself ,but in my case it is creating problem ,first it has thrown the error given below
    oracle.apps.fnd.framework.OAException: oracle.jbo.InvalidParamException: JBO-25006: Invalid parameter value PoRequisitionLinesVO for source passed to method ViewLinkImpl.setSource.  Explanation: view def mismatch
    then i modified the VOExRowImpl and added the viewlink setter getter from seede Rowimpl ,now it it not throwing the InvalidParamException ,but throwin OAAttrValException saying get method for LineNum is not resolved ,now i m puzzeled what is going on ,i m sure i have not made any mistake in substitution, any clue would be very helpful for me ,please throw some light on this issue
    thanx
    Pratap

    thanx kumar, nice to see your reply.
    basic requirement is i have to create two date fileds on the requsition line form ,it shud appear on the basis of selected value in a field of same row ,so i set PPR ,initially i bounded these fields with spared attributes of VO but it was creating problem after page refresh ,i have raised the issue in the forum
    Date value format is changed itself after page refresh
    raised a tar with oracle ,issue was that these attributes are varchar type and used for the date fields, thats y creating the problem after page refresh ,VO extension didnt work bcz these attributes are already there in seeded VO with there data type, so they can not be changed in VO extension,oracle suggested create two columns with date type in the seeded table itself and use them in VO extension , i did it ,now the problem is
    i have extended the VO ,and this problem came ,one thing i m not sure is
    since i have added two new columns ,shud i do EO extension (i did it ) and then VO extension ,if yes then how bcz when i will move all the files from server they are all standard files and ,extended VO is getting the reference of seeded VO which is using the seeded EO not the extended EO .
    so what approch or steps shuld i follow to add this newly added column in VO .
    thanx
    Pratap

  • Sql parameter substitution problems

    Hi,
    I am having problems with the sql parameter substitution. I have a query that
    looks like this:
    select name,value from table where name in ('name1','name2');
    I have tried building a string that equals "'name1','name2'" and passing it as
    a parameter to sql entering the javaDoc comments like:
    select name,value from table where name in ({nameString})
    The problem is that when it is substituted and set to the database it looks like
    this:
    select name,value from table where name in ('\'name1\',\'name2\'');
    This will not work. Does anyone have any suggestions on how to do this using a
    database control. Basically I'm looking for the ability to create dynamic sql
    statements.
    Thanks for your help.
    Regards,
    James

    Anurag,
    Thanks for the reply. I don't think that this solves my problem though. I will
    never know how many strings to pass. It's all based on what the user wants, they
    could ask for 2, 20, or any other number of names. It sounds like using a Database
    control is not really possible for this situation. What do you think? Any chance
    of this making into workshop in the future or in these situations is creating
    an EJB the only way to go?
    Thanks again.
    Regards,
    James Chamberlain
    "Anurag Pareek" <[email protected]> wrote:
    Hi James,
    This result is same as what you will get on executing the following prepared
    statement:
    conn.prepareStatement("select empid from empdemo where name in (?)");
    pstmt.setString(1,"'Person 1','Person 2','Person 3'");
    pstmt3.execute();
    Workshop's DBControl internally uses a PreparedStatement, hence you would
    obtain the same result.
    To get it working, you will need to pass in the 3 strings separately
    as
    below:
    conn.prepareStatement("select empid from empdemo where name in
    pstmt.setString(1,"Person 1");
    pstmt.setString(1,"Person 2");
    pstmt.setString(1,"Person 3");
    Please do let me know if you have further queries regarding the issue.
    Regards,
    Anurag
    Workshop Support
    "James Chamberlain" <[email protected]> wrote in message
    news:[email protected]...
    Hi,
    I am having problems with the sql parameter substitution. I have aquery
    that
    looks like this:
    select name,value from table where name in ('name1','name2');
    I have tried building a string that equals "'name1','name2'" and passingit as
    a parameter to sql entering the javaDoc comments like:
    select name,value from table where name in ({nameString})
    The problem is that when it is substituted and set to the databaseit
    looks like
    this:
    select name,value from table where name in ('\'name1\',\'name2\'');
    This will not work. Does anyone have any suggestions on how to do thisusing a
    database control. Basically I'm looking for the ability to create dynamicsql
    statements.
    Thanks for your help.
    Regards,
    James

  • Substitution - Problems reported (repairable) - Message

    I can substitution rule without any error message. But when I revisit the substitution area, I can see the message "Problems reported (repairable)" under 'rule activation' tab.
    The message changes to 'Successful' when I click 'Retry'

    Hi all,
    I got a similar error:
    - Whenever I create a substitution rule, activate it and press then "Refresh", I get two substition rules (for two different users).
    This is highly strange. Does anyone have any hints how to avoid to get these two rules?
    Best Regards
    Philipp Kölsch

  • URGENT: Substitution Problem when deployed in Server

    Hello:
    I am facing a strange problem in student system self-service application customization in oxford university.
    I have create a new XxigsPersProgAttemptVO extending PersProgAttemptVO and done the substitution. When run the the page though JDev it was showing the substituted values.
    I have deployed the JPX and VO xml, classes into the server.
    and bounced the apache.
    When i run the application it's throwing following error
    oracle.apps.fnd.framework.OAException: oracle.jbo.NoDefException: JBO-25002: Definition AttendanceTypeDesc of type Attribute not found
    When i view the About this page Business components list, i couldn't find XxigsPersProgAttemptVO VO object.
    But when i run the same page through JDEV, it's shows me my custom VO and substituded VO and extended EO.
    which was right and page was working fine.
    and when i run
    jdr_utils.PRINTDOCUMENT('/oracle/apps/igs/person/components/server/customizations/site/0/PersProgAttemptVO',1000);
    it's showed me
    .........RESULT:
    <?xml version='1.0' encoding='UTF-8'?>
    <customization xmlns="http://xmlns.oracle.com/jrad" xmlns:ui="http://xmlns.oracle.com/uix/ui" xmlns:oa="http://xmlns.oracle.com/oa" xmlns:user="http://xmlns.oracle.com/user" version="9.0.3.8.13_1550" xml:lang="en-US" customizes="/oracle/apps/igs/person/components/server/PersProgAttemptVO">
    <replace with="/oracle/apps/xxigs/person/components/server/XxigsPersProgAttemptVO"/>
    </customization>
    which was also right
    then why i am getting the error in server and why the substitution is not taking in server.
    Can any one help me in this regard pls?
    Many Thanks in advance
    Thanks and Regards,
    Gupta

    just want to add few things
    I am substituting the VO which was used in subtab
    I just found an article in Metalink for the similar issue and found as a bug in OAPageBean.java.
    Metalink Doc ID: 418682.1
    Symptoms
    In Oracle Applications 11i, after extending any framework page by doing VO (View Object) substitution for any VO that is found in subtab in any region in the page either by adding a new attribute to the VO or changing any clause in the VO query such as adding condition for the WHERE clause.
    Then deploying the extension to the server successfully, and after that going to the extended page to check the substitution by pressing on (About this page) , and the result will be that you will be not able to see the new substituted VOs.
    Or in case of adding a new attribute to the VO, you will get a framework exception saying that the "new attribute" is not found.
    Cause
    This is caused by the following INTERNAL bug that is not published through Metalink to customers, and it is reported on R12 and backported to R11i :
    Bug 4970554 - VO SUBSTITUTION NOT WORKING
    Which say that: any substituted View Object used inside a SubTab Layout is not working because of a defect in the code of file (OAPageBean.java) for any version prior to (115.545.115104.3) in Oracle Applications 11i
    Please let me know if you have any ideas
    Thanks and Regards,
    Gupta

  • TAB_CELLS substitution problem

    Hi,
    We've created our own page template with one level tab. Everything on our own site works fine, except the substitution of #TAB_CELLS#.
    I've created an example only for the #TAB_CELLS# issue: http://apex.oracle.com/pls/otn/f?p=47952:1
    I want to create a corporate layout like: www.dji.nl.
    Regards,
    Eugene

    Although I'm unable to view your example as it's password protected, I'd hazard a guess that any problems may have something to do with the Vertical right-hand tabs, which is part of the Re: Page titles missing...
    (However, note that I've not taken the opportunity to investigate what changes in this area may have taken place in 3.0 and 3.1)

  • [solved]Mono font substitution problem in gnome terminal

    I have to edit mono font substitution in 65-nonlatin* in /etc/fonts/conf.d
    Still don't understand why font rendering in terminal is different from the rest of the system though...
    Don't know where else to post this, so it ends up here...
    I just upgraded fontconfig today and substituted the ubuntu packages (cairo, freetype2 and libxft) with the cleartype ones (as the later are up-to-date and turn out looking cool too).
    The only problem I have now is that mono font substitutiton got messed up in gnome-terminal.
    Both gedit and terminal use the system mono font (which is set to Monospace), with Liberation Mono as the preferred font. But somehow the terminal decides to use a different font (looki like my Chinese font: wenquanyi-zenhei).
    If I tell the terminal to use Liberation Mono, I get a serifed Chinese font, so this is not a solution for me.
    I've read somewhere that gnome-terminal does not follow the system fontconfig? It gave me a lot of trouble the last time I upgrade the relevant files. So unfortunate that it decides to be naughty again this time...
    Last edited by allbluedream (2008-07-30 11:25:08)

    http://wiki.archlinux.org/index.php/Configuring_locales instructed me to 'export LANG=en_EN.utf8' to set the system language to english, yet that locale doesn't exist in locale.gen. Of course, I had neglected to look in locale.gen for such an entry to uncomment it, or I would have noticed the error sooner. All is working now.

  • IBooks author font substitution problem

    Hi
    Ive now been using IBA for a month or so and have to say its a frustrating piece of software.
    This is my latest issue that i cannot resolve.
    Ive been building a book for 2 weeks which is at the publishing stage and then all of a sudden when i opened it this morning it tells me that a font is missing and substitues it.
    But the font is there and i can change everything back by appending the style sheets. Then if i save and close then reopen it tells me the font is missing again.
    I do use Suitcase Fusion but have taken the step to put the fonts i use in IBA only in Font Book as .ttf's.
    Also if i open the file on my Macbook, there is no font substitution and the book displays correctly even though the fonts in  Fontbook are the same ones as on my iMac.
    (Pulls hair out)!!!!
    Anyone have any ideas??

    Yes its been working fine in all preview tests on my iPad and others in the company.
    Plus my Macbook is a carbon copy of my iMac (i use CCC to clone the iMac HD)
    Someone suggested that the two ways to change fonts in IBA causes some differences, apparently the top left dropdown menu when selecting fonts only show whats available for embeding and the drawer you get by clicking the 'A' in the top right shows all the fonts on your system.
    Still cant figure it out!!

  • Substitution Problem in Workflow settings

    Hi,
        We are trying for automatic forwarding of work item from one sap user Inbox to other sap user Inbox using substitution in workflow settings. I am getting work items in both users Inboxes. My requirement is work item should appear in substituted users Inbox. Please suggest.
    Thanks in advance,
    Ganga Bhavani.
    Edited by: Ganga Bhavani Bhimavarapu on Aug 14, 2008 1:23 PM

    Hi Bhavani,
    Refer below links
    http://themisto.jupiter.txstate.edu/fastrain/content/pt-30b_sbwp_workflow%20inbox%20substitution_sapgui/cc/html/index.htm
    http://help.sap.com/saphelp_nw2004s/helpdata/en/d5/581ee8d56f1247bf34cfcd66d16d81/frameset.htm
    http://www.sap-press.com/downloads/h950_preview.pdf
    https://www.sdn.sap.com/irj/sdn/nw-bpm?rid=/webcontent/uuid/10ff0453-ae33-2a10-7984-9d8df609d8f9
    Regards,
    Syf
    Edited by: syfulla shaik on Aug 14, 2008 5:19 PM
    Edited by: syfulla shaik on Aug 14, 2008 5:21 PM
    Edited by: syfulla shaik on Aug 14, 2008 5:28 PM

  • Muse font substitution problem.

    Hi - My colleague has sent me a Muse file that uses Trajan Pro 3 fonts - I have installed and synced these through the creative cloud app, and rebooted computer etc. however when I ftp the site up to the hosting I get an error that says Muse has changed the fonts - how do I ensure Muse "see's" the Typekit Trajan Pro font?

    similar problem. have you resolved?

  • Variable Substitution settings for Receiver File Adapter

    Hi All,
    I wanna use variables for File Name Sheme in the File Access Parameters.I had used by enclosing the variable names within %. When i wanna substitute values for those variables, it is given in the documentation(help.sap.com) that v need to set the Enable indicator. only after setting the indiactor, v can use the variables and can then enter the values for those variables in a table. but i can't see either the indicator or the table in my editor. how can i provide the values for the variables used in file name scheme/Target Directory. and for ur information,i'm using sp12.
    any help wud b appreciated.
    thnx
    Anil

    Hi Anil,
    Please check out the following link ...
    Re: Variable substitution - Pseudo Path Variable - file adapter
    Re: Variable substitution problem
    Regards,
    Raj

  • Font substitution for Times New Roman? Why is Adobe doing this?

    I'm using Adobe Acrobat Pro version 9.2 to read pdfs created by a number of different authors. I'm running Windows 7 64 bit OS. These are NOT pdfs I have created. Some of these pdfs display an incorrect font substitution for Times New Roman and I can't figure out why. In the File/Properties dialog the font property comes up as Times New Roman, True Type, ANSI encoding (Times New Roman has spaces between the words). This font is not embedded. Adobe Sans MM is the font that my Adobe 9.2 substitutes for it, even though I have a true type Times New Roman already installed in Windows.I have installed all updates for both Acrobat and for Windows. If I select the text touch up tool to look at the text, a box comes up saying that the original font is not available and a substitute font will be used. When I look at the drop down box for fonts in Adobe, I see among all of the various fonts available, TimesNewRoman without spaces, but no Times New Roman with spaces. Does this matter?
    When I go to my Windows Control Panel Fonts screen, I see a Times New Roman truetype font available (with spaces, the same as the font the document is requesting). It says OpenType Layout, Digitally Signed, TrueTyepe Outliers. I use it all the time.
    What is required to get Adobe 9 to display this font? It looks like the document is asking for the font I have available on the system and Adobe 9 Pro just isn't identifying it. These same pdfs display just fine on Adobe Acrobat Standard 7.0 on another Windows 7 64 bit OS machine. Is there a separate font library that Adobe has independent of the Windows font library and I simply don't have a complete set of fonts for my version? I don't have the option to have the authors recreate their documents. And they display just fine on an older version of Adobe on a different machine.
    UPDATE: Adobe 9 required more than one update. I did the 300 mb update and the problem described above was still there. I checked again just now for updates, and there was another one. This one, whatever it was, fixed the font substitution problem. So the moral of the story is... update, then update again, and keep doing it until there are no more. Adobe doesn't say "there are xx updates available." You just have to keep on asking for them until it says 'no'.

    The font Radioactive is the problem. It has an incorrect internal name that conflicts with Times New Roman. Delete Radioactive and ban it from any Mac you use.

Maybe you are looking for