Making a single field editable with certain conditions

Hi,
We have an requirement wherein only a single field in an read only BC should be editable(with a certain condition).
Kindly help me on this.
Thanks and Regards,
Priya

Hi,
The only way is put the "condition" in a calculated field. Create one more applet (clone of the read only applet). Make all the other fields read only at "applet level" and leave the one field as editable. Use the calculated field to toggle the cloned applet. Thats it. Any query revert back.
Regards,
Joseph

Similar Messages

  • Making the Asset field editable in MIGO

    Hi,
    I need a help in MIGO transaction. If you do a GR against a PO with type ACCOUNT ASSIGNMENT = A (asset), that is , if in EKPO table the record of that PO contains a value EKPO-KNTTP = A, in the MIGO screen you find a field "Asset", in the Genral TAB of line Item Data. Can please tell me how to make that field editable?
    Points Guranteed.

    Hello Anid,
    You need to make setting for the account assignment category "A" in the SPRO mode
    SPRO -> Mat mangt -> Purchsing -> Account assignment - > Maintain account assignment categor
    Select the line item with "A", click on Detail and flag mark "Acct assignment changable"
    Hope this will resolve your problem
    Regards
    Arif Mansuri

  • Making GL Account field editable during Approval Process

    Hi Experts,
    We are in SRM 7.0 and using process controlled workflow.
    As a business requirent,we want the  GL account  field to be editable during the approval process i.e during approval process,approve wants to change the GL account in the shopping cart as the GL account may not be correctly entered.
    Is it possible to make the GL account field editable during approval process?if Yes,please share how it can be done.
    Any pointers will be highly appreciated.
    Thanks & Regards,
    Rupesh

    Hi,
    You can find info in help.sap.com.
    http://help.sap.com/saphelp_srm70/helpdata/EN/5c/b5a6783fc34466834fbc48def23d2d/frameset.htm
    http://help.sap.com/saphelp_srm70/helpdata/EN/01/ad7bc4d66f4bc1a52a0cd21cdfa2ff/frameset.htm
    Level Type: There are 3 possible entries. Approval with completion, Approval and Automatic. Within
    a completion step the document can be changed by the approver if the u2018Changeableu2019 flag is set.
    Within the approval phase, the document can only be approved or rejected but not changed. It is not
    possible to mix the two phases of completion and approval. The completion phase is always before
    the approval phase. The automatic step is a final means of validating the approval process, and to
    verify that at least one step was returned without any error (example: event 0EV999). Depending on
    the task ID assigned to the automatic step, the document will then be either approved or rejected.
    Regards,
    Masa

  • Making standard SAP field editable

    I have two standard fields VBRP-KOSTL (Cost Center) and VBRP-PRCTR (Profit Center) in transaction VF01(Create billing document) that I want to make editable. Can anyone give me detailed step on how to achieve this?
    Thanks for your help. This would be greatly appreciated.

    Dear Abbey,
    You can do this by maintaining trasaction variant in SHD0. You would have options to make a field display only, required entry, optional entry, supress.
    http://help.sap.com/saphelp_webas620/helpdata/en/eb/5fab41d79b11d296190000e82de14a/content.htm
    In the SAP Reference IMG, you can create transaction variants. Choose Basis Components -> Application Personalization -> Tailoring of Application Transactions -> Configure Transaction-Related Display Values for Fields (Transaction SHD0). Transaction variants allow you to preset values for fields in a transaction, set field attributes, or hide entire screens.
    To execute a transaction variant, you define a variant transaction using the Transaction Maintenance transaction (SE93).
    Once you have entered a transaction code and short description, choose transaction type Transaction with variant (Variant transaction).
    To define a variant, enter the name of the transaction and the name of the variant. You can then use the new transaction code to start the special variant of the transaction.
    Hope this will resolve your issue.
    Regards,
    Naveen.

  • Table to display change logs for transaction VK13 with certain condition.

    Hi ,
    Please let me know if there is any table from which we can get the change log details of condition records with transaction VK13
    This is required to get information on old value and new updated value for the condition.
    Thanks
    Ravi Naik

    Hi,
    Use the program RV16ACHD (You can run this in SE38)
    View the code from there for more understanding.
    Tables are
    KONH, KONP and CDHDR
    In the CDHDR table you can view condition record changes under, Change doc. object = COND_A
    Anotehr option is to use the function module SD_CONDITION_CHANGE_DOCS_LOAD which is called in the program RV16ACHD and pass the correct parameters.
    Best regards,
    Anupa

  • Making Employment status field editable in Actions infotype

    Hi All,
    Can we make the Employment status or Customer specific status editable in Actions Infotype 0000?
    I tried doing that in 'Change Screen modification' in IMG, but it isn't working.
    Please provide your inputs.
    Thanks!

    Hi,<br>
    It is not possile to do it.
    Each action is assigned the three status indicators STAT1 (customer defined), STAT2 (employment), STAT3 (special payment) in the customizing system.
    When a personnel action record is created, the system automatically fills the Customer defined, Employment and Special payment fields if the action affects the employee's status.
    The first record of the Actions infotype is assigned the status specified in the customizing system. All other records
    have the same status indicator as the new personnel action if this is not BLANK in the customizing system.
    have the same status indicator as the previous record if this is BLANK in the customizing system.
    This applies to all three indicators.
    Can you let  us know the business need or requirement to do it??
    Good luck<br><br>
    Thanks,
    Amosha
    <br><br>"Known is a drop & unknown is an OCEAN!"

  • Use Applescript to find files with certain conditions

    I am using a tool to batch convert audio files in APE format to MP3. I have thousands of files located in hundreds of folders and subfolders in my hard drive so I searched for all APE/FLAC files and then dragged and dropped them in the tool for conversion. The problem is I was not able to convert all the files successfully for a variety of reasons (original APE files are corrupt, etc.), as a result I was left with a situation where some of the folders have files convernted (both APE and MP3 in that folder) whereas others don't (APE only). Instead of manually go to each folder and subfolder to find which ones need me to convert is there an Applescript I can use to quickly list the APE files that have not been converted?

    Hello
    You may try the following shell script. Please specify DIR as the root directory to start searching. It will create output list named no_mp3_list.txt on desktop.
    #!/bin/bash
    #     list every *.ape file which has no corresponding *.mp3 file in the same directory
    #     * name matching is done in case-insensitive fashion
    DIR=~/Desktop/test                # root directory to start scanning
    OUT=~/Desktop/no_mp3_list.txt    # output file
    shopt -s nocasematch
    while read -d $'\0' f
    do
        [[ -e "${f:0:${#f}-3}mp3" ]] || echo "$f" >> "$OUT"
    done < <(find "$DIR" -iname '*.ape' -print0)
    And in case, here's a simple AppleScript wrapper for the above, which lets you choose the root directory.
    set f to (choose folder with prompt "choose root folder to start searching")'s POSIX path
    if f ends with "/" then set f to f's text 1 thru -2
    do shell script "/bin/bash -s <<'EOF' -- " & f's quoted form & "
    #     list every *.ape file which has no corresponding *.mp3 file in the same directory
    #     * name matching is done in case-insensitive fashion
    DIR=\"$1\"                        # root directory to start searching
    OUT=~/Desktop/no_mp3_list.txt    # output file
    shopt -s nocasematch
    while read -d $'\\0' f
    do
        [[ -e \"${f:0:${#f}-3}mp3\" ]] || echo \"$f\" >> \"$OUT\"
    done < <(find \"$DIR\" -iname '*.ape' -print0)
    EOF"
    Hope this may help,
    H

  • Firefox 4 crashes every time on typing in textarea with certain conditions

    i'm typing into any textarea. to get crash, i
    # 1) type any strings into
    # 2)i need some line, not first, not last and empty
    # 3)typing into it, i will always crash
    i noticed it from somewhere about b10, and it's still on latest PPA builds.
    *in particular ways the line's criterias are less strict, and it can crash even on typing a letter in

    OK. So here's my problem. I have a Java Plug-In 2 for NPAPI Browsers 13.4.0. I noticed that when I would copy and try to paste into a text area in another tab (or even the same tab for that matter), my texts would lock up. I saw the above answer, and figured I would see if disabling this plug-in would do the trick. It did ... for only that particular copy and paste. I'd try it again, and in order for the copy and paste to work without locking up my typing ability completely, I find I have to enable and disable the Java plug-in. This is extremely frustrating, because I cut and paste A LOT. It was even more frustrating, however, when I had to completely shut down Firefox in order to have my typing privileges returned. Now at least I can copy and paste, but this extra step is ridiculous. I have Mac OSX 10.6.6, btw.
    It'd be great if Firefox could update this. Oh, and one other thing -- I used to be able to click a down arrow in my back button to see where I've been to easily navigate to a previous page, but it appears that's been removed as well. That's a story for another thread, however. The big issue is the copy and paste. Please fix this, Firefox!!!

  • Set Schedule Manager to run OB52 on certain condition

    Dear Friends,
    Can i use Schedule Manager to automatically run OB52 with certain condition? For Example, on the last day of the period, i want to set to extend all the account type to the next period. And then, after a certain day of the new period, I want to set schedule manager to close previous period for certain account type.
    Can Schedule Manager do that?
    Thanks a lot,
    CW

    Hi Akhilesh,
    Thanks for replying. So, does it mean that Schedule Manager can not support for automation? I mean, even though that we can put OB52 in the tasklist, but we still have to execute it manually?
    Thanks,
    CW

  • Making selective fields editable in adobe form [using web dynpro]

    Hi,
    I have displayed an adobe form using web dynpro application. But I have to make certain fields (not all fields) on this adobe form editable. I dont want to make this adobe form interactive because I dont have to save any data in database. The data entered in the editable fields will be saved as a pdf.
    What I did so far:
    1) The fields which I want as editable,  I have given there type as "User entered/ optional" & for rest of the fields I have given type as "Read only".
    2) In web dynpro, I have enabled the adobe
    3) This is not making the fields editable.
    4) If I write the following code in my webdynpro method WDDOMODIFYVIEW, then my data coming from adobe is not getting displayed even though the fields get selectively editable.
    *data: LR_INTERACTIVE_FORM type ref to CL_WD_INTERACTIVE_FORM,
    *LR_METHOD_HANDLER type ref to IF_WD_IACTIVE_FORM_METHOD_HNDL.
    *check first_time = abap_true.
    *LR_INTERACTIVE_FORM ?= VIEW->GET_ELEMENT('adobe').
    *LR_METHOD_HANDLER ?= LR_INTERACTIVE_FORM->_METHOD_HANDLER.
    *LR_METHOD_HANDLER->SET_LEGACY_EDITING_ENABLED( abap_true ).
    Any inputs regarding this??
    Thanks & Regards.

    Hi,
    Like I had mentioned using the following code in my webdynpro method WDDOMODIFYVIEW, my data coming from adobe form was not getting displayed even though the fields get selectively editable.
    *data: LR_INTERACTIVE_FORM type ref to CL_WD_INTERACTIVE_FORM,
    *LR_METHOD_HANDLER type ref to IF_WD_IACTIVE_FORM_METHOD_HNDL.
    *check first_time = abap_true.
    *LR_INTERACTIVE_FORM ?= VIEW->GET_ELEMENT('adobe').
    *LR_METHOD_HANDLER ?= LR_INTERACTIVE_FORM->_METHOD_HANDLER.
    *LR_METHOD_HANDLER->SET_LEGACY_EDITING_ENABLED( abap_true ).
    So I kept this code & I also kept the Interface type "ABAP Dictionary based".
    Additionally in Webdynpro, I used adobe form generated FM to get the adobe content & passed it to the "content" parameter of my adobe component in webdynpro.
    Thanks & Regards.

  • Single field text glitches with Motion templates in FCP6

    I've set up some templates in Motion for use with FCP6. The templates are straps and end boards with text over a moving graphics background.
    Occasionally when these templates are used one piece of text glitches, a single field flick to the right of about 20 pixels, whilst the rest of the text is ok. it's always at the same point in the animation, about 2sec in. The graphic is stationary text over a moving vt background, so no "comedy keyframes" going on.
    This also happens on strap templates, which are similar. This time the glitch occurs if you cut between two straps (an edit, not a blade cut) in which case the incoming glitches.
    Any ideas??
    Steve

    The situation you describe does not seem normal. It should not take nearly that long to render and export your 3:30 movie. Considering that your mac is not one of the most recent vintage, and your are editing in full HD, one could expect it to take a bit of time, but nothing like this.
    In the way of troubleshooting, you could try and export just one of these 10 second segments.
    I have no way of knowing for sure, but I guess that it might export in a much more reasonable amount of time.
    I suspect that memory may be running scarce, which, as has been repeatedly mentioned in these fora, is a problem affecting many of us using FCP X under Lion. You mentioned you used "purge" in the Terminal, but in such a long render you might have had to do it repeatedly...

  • How Many Multi Folios with single Professional Edition?

    Hello
    how many multifolios can I create with single Professional Edition Subscription?
    for example, is it possible to create Magazine's English Edition (with weekly updates), Russian Edition (weekly updates) and etc....both of them shoud have different folio viewers
    thanks in advance

    http://www.adobe.com/products/digital-publishing-suite-family/buying-guide.html

  • Displaying data from a list into a single field with comma separated values

    Hi,
    I have a requirement to change a report with an XML structure (simplified version) as below
    <Protocol>
    <ProtocolNumber>100</ProtocolNumber>
    <SiteName>Baxter Building</SiteName>
    <ListOfActivity>
    <Activity>
    <Description>Communication Memo Description.</Description>
    <Name>James</Name>
    </Activity>
    <Activity>
    <Description>Visit 4</Description>
    <Name>James</Name>
    </Activity>
    <ListOfActivity/>
    </Protocol>
    On the report I need to display all the 'Names' for each of the Child (Activities) in a single field at the Parent (Protocol) level, with each Name separated by a comma.
    How do I go about getting this to work?
    Thanks

    Take a look at this: http://blogs.oracle.com/xmlpublisher/entry/inline_grouping
    You could do this (ofcourse, you will need to add extra logic to ensure that there is no comma added after the last name..)
    <?for-each@inlines:Name?><?.?><?', '?><?end for-each?>
    Thanks,
    Bipuser

  • How to fill a new single field in a Infocube with historical data

    Hello Everybody,
    We have an SD infocube with historical data since 1997.
    Some of the infoobjects (fields) of the infocube were empty during all this time.
    Now we require to fill a single field of the infocube with historical data from R/3.
    We were thinking that an option could be to upload data from the PSA in order to fill only the required field (infoobject).
    Is it possible? is there any problem doing an upload from the PSA requests directly to the infocube.
    Some people of our team are thinking that the data may be duplicated... are they right?
    Which other solutions can we adopt to solve this issue?
    We will appreciate all your valuable help.
    Thanks in advance.
    Regards.
    Julio Cordero.

    Remodeling in BI 7:
    /people/mallikarjuna.reddy7/blog/2007/02/06/remodeling-in-nw-bi-2004s
    http://www.bridgeport.edu/sed/projects/cs597/Fall_2003/vijaykse/step_by_step.htm
    Hope it helps..

  • Designing a Field Editable Header for Merging with Exsisting PDF doc

    I'm trying to accomplish designing a Field Editable Header so I may merge (import) into an exsisting PDF file to create 1 file.
    I have already designed my header in Live Cyle with editable fields. The only issue is when I save it as a PDF file I can't merge this with an existing PDF file to make just 1 PDF document.
    I also tried importing the header as a stamp but the issue here is the fields no longer stay editable in my header.
    My Business:
    What im trying to accomplish is sending out Submittal Sheets (Information Documents) with a professional looking header. I want to make this a simple process were I can open up a PDF document and place in the header (has to be with editable fields) for several PDF documents.
    Attached is the header I designed and would like to merge with PDF documents to creat 1 file. Please Note; the header has to still stay editable.
    Thanks,
    Anyone that can help would be greatley appreciated, James Alto

    And That would require a PC, because LiveCycle Designer does not exist on a Mac and most likely never, ever will.
    Or would require The cost of Parallels about $80, Windows 7 upwards of $300 depending upon the version, and what ever Live Cycle designer Cost around $100.00
    Or buy a decent PC (not one of the 2-300 dollar jobs that all is good for is using IE) with windows 7 on it. Then get a Copy of Acrobat and Live cycle Designer.

Maybe you are looking for

  • HT1535 Songs won't transfer from iTunes to iPod touch

    I'm having trouble transferring music from iTunes onto my iPod touch (5th gen). When I plug my iPod into my computer and try to drag songs onto it from my iTunes library, it says 'updating files' but gets then gets stuck. I keep trying and have waite

  • Update from 10.6.8 to Lion - Wiki not working

    Hey everybody, updated a server from 10.6.8 to 10.7.3 Lion server. Most of the data is working on the new server. iCal is working as expected, but the wiki didn't work. Reimported the data with wikiadmin migrate -r Backup/Collaboration -g wiki or wik

  • Need original box & shipping box for 24" Cinema display

    I am selling a 24" Cinema display and need to get (buy, presumably) an original box and the outer shipping carton for same. Anyone got an idea how this can be done?

  • Drag and Drop and image

    Hallo, Is there an example how i can drag and drop an image into an other panel as image. Not into a list or grid but onto a panel. Ive tried it for a couple of days now and am getting stuck... thanks

  • Flash content unavailable after flash upgrade

    Flash 9 redistributable is installed on our users' machines, and the last couple of days users have gotten a message to update Flash when they logged in (not from me). When they do so, they can no longer access Flash content on our company website (a