Fb60 business place field value assign to branch field

Hi Experts,
for vendor invoice creation in fi by using fb60 t.code i am giving business place & all required fields. My requriment is that business place value assign into branch name by using j_1i7_get_bussiness_place function module.suggest how to assign & how to develop logic in this function module(in ecc6.0).
Regards,
babu

Thanks a lot,
I am not referring to "Business area" here, but i am looking for the "Business Place / Section Code" fields.
While doing Down Payment Request to Vendor in F-47, I want to fill  "Business Place / Section Code" fields but they are suppressed.
And this field cannot be controlled through FSG / Posting Keys.
Thanks,
Pavan.

Similar Messages

  • Set the default field value to transaction code field, when calling from WD

    Hi all,
    Can we pass the value in a input field of a standard transaction calling from WD application. Suppose we are calling a transaction VA03 in an external window, then how will be pass the value in the VBAK_VBELN screen field.
    Is there any way to pass the value to this transaction field. I have also tried out to set the parameter ID 'AUN' for VA03 transaction VBELN field. But it did not work for me.
    Is there any way to set the default field value to transaction code field, when calling from WD?
    Please suggest, if anyone have any idea.
    Thanks
    Sanket

    Hi,
    I am using the below code to open a standard transaction. It will help you to explain my point more easily.
    DATA: url TYPE string,
              host TYPE string,
              port TYPE string.
    *Call below method to get host and port
      cl_http_server=>if_http_server~get_location(
         IMPORTING host = host
                port = port ).
    *create URL
      CONCATENATE 'http'
      '://' host ':' port
      '/sap/bc/gui/sap/its/webgui/?sap-client=&~transaction=' 'VA03'
       INTO url.
    *get the window manager as we are opening t code in external window.
      DATA lo_window_manager TYPE REF TO if_wd_window_manager.
      DATA lo_api_component TYPE REF TO if_wd_component.
      DATA lo_window TYPE REF TO if_wd_window.
      lo_api_component = wd_comp_controller->wd_get_api( ).
      lo_window_manager = lo_api_component->get_window_manager( ).
    call the url which we created above
      lo_window_manager->create_external_window(
      EXPORTING
      url = url
      RECEIVING
      window = lo_window ).
      lo_window->open( ).
    Note*
    One more query I want to add to this thread, that is there any possibility to call a custom transaction as well?

  • How to Remove Business place from Plant assignment

    Hi All,
    I have created a new plant by copying the existing plant. Business place assignment also got copied from existing plant. I don't want business place for my new plant.
    I tried searching the Business place/Plant assingment in SPRO, eventhough there are many places (under Enterprise structure, Financial Accounting and Cross application components) we have this assignment, i couldn't see my new plant in any of those places and i am not sure how to remove this assignment. Can you please help me here?
    Regards,
    Prabu

    Hi Prabu,
    First let me know what is the issue that you are facing.
    Have you checked in the above mentioned nodes for business place & plant assignment.
    If your assigned this business place for taxes postings(J_1IT030K_V settings). The check in the billing document from the new plant what is the tax code is being used in the tax condition records.
    If the same tax code is being used in both the plants then try to create one new tax code & assing the same to the condition records of the new plant. Check the same.
    Or Mention clearly that what issue that u are facing because of this assignments.
    Regards,
    S.Himavanth.

  • Adding field values together using Advanced Field Management

    Hi All
    I have 5 currency fields on the Revenue page, that I need to add together into one field, Total Amount (currency field also). I have made Total Amount field read only, and using adv field mgt set the following default and ticked post default:
    [<Revenue>]=[<cCorporate_Income_ITAG>]+[<cDonation_Income_ITAG>]+[<cFlower_Income_ITAG>]+[<cHost_ITAG>]+[<cMerchandise_Income_ITAG>]
    It does not seem to work, is this possible at all or am I not doing something right.
    Help....

    I'm having a very similar issue. I'm trying to do the calculation as a default field value and receive the following error:
    [1] An error occurred calculating the default value for field 'ZCur_5' in business component 'Revenue'.(SBL-DAT-00412) [2] Could not evaluate expression 'Expr: '=[<cMetal_Rate_ITAG>]*[<nQuoted_Weight_ITAG>]*[<nDross_Factor_ITAG>]'' for field 'ZCur_5' in business component 'Revenue'.(SBL-DAT-00394) [3] Generic SSA NOTOK error message.(SBL-DAT-00472)
    I can make the update work via workflow, but this does not help during the initial creation of the record.
    Any ideas?

  • FB60 - Business Place Filed

    Dear Friends,
    Can anyone tell me how to avoid the default Basiness Place value whneever i go to the transaction FB60?
    Regards,
    Perumal

    2 Ways :
    1. Go to GGB1 and check for any substitution if they are maintained and change them accordingly.
    2. Check if any screen varients are used for FB60 , if yes go to SHD0 and change the default value during processing the varient and save it .
    Cheers ,
    Dewang

  • Check box value assigned by Numeric Field rawValue

    This was asked and answered back in 2009 (http://forums.adobe.com/message/5944725#5944725), but I have a twist to the question:
    I'm able to get the action to work, but not right away. I had to click around on the form to make the check box tic. I assigned the following code to the JhammerPassed-named check box:
    if (JhammerSatTotal.rawValue <=80){
      JhammerPassed.rawValue =1;
    } else {
      JhammerPassed.rawValue =0;
    Essentially I have two boxes: one if they passed and one if they failed. So, if the value of the points awarded is greater than or equal to 80, then the 'passed' box tics. I added the less than version to the 'failed' box. They only seem to tic if I click on the JhammerSatTotal cell, then away, then back again. Is this just a quirk of the program or is there a way for it to be more responsive?
    Thanks!
    ~Laura

    I'm adding up 4 rows into JhammerSatTotal. The script I have in JhammerSatTotal is:
    Sum(form1.Page4.JhammerTest.Row1.JhammerSat1
    ,form1.Page4.JhammerTest.Row2.JhammerSat2,form1.Page4.JhammerTest.Row3.JhammerSat3,
    form1.Page4.JhammerTest.Row4.JhammerSat4)
    (I tried simpler code, but this was the only one that worked.) So, the 4 fields that the total field is adding up are: JhammerSat1, JhammerSat2, JhammerSat3, JhammerSat4. These 4 fields are user entered.
    Basically, my table looks as follows:
    Steps
    Points
    Sat
    Unsat
    Step 1
    10
    Step 2
    40
    Step 3
    10
    Step 4
    40
    Total:
    100
    Then, there are two check boxes under the table: Passed and Failed. The user enters points into the Sat and Unsat rows while the total row is added up. If the total in the Sat column is <= 80, the Passed box should be checked. And the Failed box if it's >80.
    Would this make a difference with your suggestion above?

  • Not able to get the taxonomy field value of meta data field type

    Hi Everyone,
    Not able to get the taxonomy filed value from the metadata filed type.
    Any one can help me on this.
    Label, TermGuid, ValidatedString are showing empty when i debug the code.
    Below is the code which i used to get the taxonomy filed value

    Hi,
    Can you please try getting this way?
    var taxonomyField = listItem.Fields.GetFieldByInternalName(fieldName) as TaxonomyField;
    if (taxonomyField.AllowMultipleValues)
    var fieldValuesCollection = listItem[taxonomyField.Title] as TaxonomyFieldValueCollection;
    return fieldValuesCollection.Select(x => new Guid(x.TermGuid)).ToList();
    else
    var fieldValue = listItem[taxonomyField.Title] as TaxonomyFieldValue;
    return new List<Guid>() { new Guid(fieldValue.TermGuid) };
    Hope it helps!
    Thanks,
    Avni Bhatt
    If this helped you resolve your issue, please mark it Answered

  • Send Multiple field values to Single Target field in Message Mapping

    Hi,
    My  Requirement is to Map Multiple fields to Single field in Target side.I have to send all the values concatenated and pass the same to target Field in Message Mapping.
    We can use Concat function,but more that 15 fields are there.If using concat,the mapping will be complex.
    Is there any way to simplify this requirement or we can use any UDF for this,kindly suggest.
    Regards,
    Madhu

    >>>We can use Concat function,but more that 15 fields are there.If using concat,the mapping will be complex.
    I don't think it's complex but  just that it occupies more mapping area
    Just write a simple UDF - a one line code and pass all your input variables.
    return var1+var2+var3+var4+...+var15;

  • Asign Numeric Field Value to Another Numeric Field

    I have 3 numeric fields on 3 different pages and I want to populate all 3 with the same value. If the value changes in 1 the other 2 should change. I've tried many variations, but I can't get it to work. Here is what I have right now. This is in the change event of "TopmostSubForm.Page1.SurveyNumber"
    TopmostSubForm.Page2.SurveyNumber2.rawValue = TopmostSubForm.Page1.SurveyNumber.rawValue;
    Any help is appriciated.
    Greg

    That is an interesting solution that I will use for next time - or I may use this idea now.
    In this case, the survey form is being emailed back and the XML data is already being stored in a database and then reported on. I would need to change all of the queries that produce the reports and change existing data. Not the end of the world.
    Even if I do go that route, it seems I should still be able to use the change event to populate the other field. What am I doing wrong?
    Greg

  • Retain all form field values after input text field validation failure

    Hi,
    I have a form with 1 input text field, one Command button and one h:selectManyListbox. when User enteres some values in input field and clicks on command button named Add, the value is validated. If input is invalid, then an error message appears next to the field. If input is valid, then the value is added into h:selectManyListbox. Adding to list box is done using Ajax4Jsf.
    Probelm:
    Let's assume user entered 3 valid values one after another and all are added into the list box. When he enters a wrong value, and error message appears. however, the entered values in list box goes away. Is there a way to retain the values even after validation failure.
    Code is given below;
    <%@ taglib uri="http://java.sun.com/jsf/html" prefix="h"%>
    <%@ taglib uri="http://java.sun.com/jsf/core" prefix="f"%>
    <%@ taglib uri="http://myfaces.apache.org/tomahawk" prefix="t"%>
    <%@ taglib uri="http://richfaces.org/rich" prefix="rich"%>
    <%@ taglib uri="http://richfaces.org/a4j" prefix="a4j"%>
    <h:panelGroup>
         <h:outputLabel for="inputEmailId1" value="Email Id: " />
         <t:inputText value="#{bean.newEmailId}" id="inputEmailId1" maxlength="100" size="40" immediate="true">
              <t:validateEmail message="Enter a valid Email Id." />
         </t:inputText>
         <t:message for="inputEmailId1" styleClass="errorStyleClass" />
    </h:panelGroup>
    <t:panelGroup style="text-align: left;" >
         <a4j:commandButton value="Add" styleClass="buttonsSub" action="#{bean.addSharedEmails}"
              reRender="inputEmailId1, selectedSharedEmails" />
    </t:panelGroup>
    <t:panelGroup style="text-align: left;">
         <h:selectManyListbox id="selectedSharedEmails" size="8" style="width:100%;" immediate="true">
              <f:selectItems value="#{bean.sharedEmails}" />
         </h:selectManyListbox>
    </t:panelGroup>
    Thanks in advance,

    Use the attribute "binding" instead of a "value". This will remember the value. You can also make sure that you dont have anything in your constructor or class level that initialises that value to "" or null. Because if JSF is remembering your value but your initialization that gets triggered before the page loading resets it to default values then you need to change that part of the code.

  • Can I bind multiple field values to a single field?

    Here's the scenario:  I have a form with 2 pages.  On the first page, there are three fields for a person's first, middle, and last name.  On the second page, there's a field that just says "Name".  I want the user to fill out the first, middle and last name fields, and then have the "name" field on the second page reflect all three fields from the first page.  How can I accomplish this?

    Add client-side script to the calculate event on the name field on page 2 to concatenate the name fields on page 1. For JavaScript, something like this:
    this.rawValue = form1.page1.subform1.firstName.rawValue + " " + form1.page1.subform1.lastName.rawValue;
    Steve

  • Sum Fields Values Identified by Another Field

    Working in LiveCycle ES2. Very basic experience in developing scripting. Have created an expandable Expense Reimbursement form with a replicating table for each expense item (e.g., row). Have a subform at the end of the form to capture the totals.  Have been able to script to capture the AmountSpent for all of the expense items:
    form1.MainForm.TotalsSF.Table4.Row2.EmployeeExpenses::calculate - (FormCalc, client)
    Sum(ExpenseDetailsTable[*].ExpenseTypeRow.AmountSpent)
    Need to script to capture the AmountSpent for only items that are identified as NonReimbursable:
    form1.MainForm.TotalsSF.Table4.Row3.NonReimbExpenses
    Have a checkbox in the table to identify an expense item as NonReimb.  This box replicates with the table.
    form1.MainForm.ExpenseDetailsTable.DetailsLocationRow.NonReimb
    How do I script a calculation to sum all of the AmountSpent for each item that is checked as NonReimb?

    You should post this in the forum for LiveCycle Designer. This forum is for documents created in Acrobat.

  • Auto Assignment of Business Place in Sales Orders

    Dear Experts,
    So far my knowledge a business place can be assigned to sales office and if the sales document is with some VAT Tax code it takes business place automatically.
    But I have sales which is free of tax. Please advise how to assign business place automatically for these tax free sales.
    Thanks,
    Deb

    Hi,
    Is there any requirement for which you need business place for non taxable sales. You can try substitution using tax code and deriving the business place.
    Regards
    Milind Sonalkar

  • Business place is required in some transactions

    Hi,
    Can any body explain guide me how to put the business place as required field, my claient asking business place is required in Transaction code FB60,FB70,FB65,FB75,MIRO, business place. I have traid through field status group, posting keys but its not working.
    please guide me how to do the above requirement.
    this very urgent
    points will be assured.

    Hi,
    you can write the following validation for your requirement
    Open GGB0, press financial accounting, press line ite, press validation button, give your validation name, press step button give the step name then press to prerequisites. give the inputs in prerequisites as follows.
    PREREQUISITES:
    SYST-TCODE = 'FB60' AND BSEG-KOART = 'K' OR
    SYST-TCODE = 'FB65' AND BSEG-KOART = 'K' OR
    SYST-TCODE = 'MIRO' AND BSEG-KOART = 'K' OR
    BSEG-BSCHL = '29' AND BSEG-UMSKZ = 'A' AND
    BSEG-KOART = 'K'
    SYST-TCODE = 'FB75' AND BKPF-BLART = 'DG' AND
    BSEG-KOART = 'D' OR
    SYST-TCODE = 'FB70' AND BKPF-BLART = 'DG' AND
    BSEG-KOART = 'D'
    CHECK:
    BSEG-BUPLA = 'YOUR BUSINESS PLACE'
    In message
    you can create the message class with the help of your ABAPer and assign the message or you can use the available message and put it as Warning or Error message.
    after complete the above go to OB28 and put the active.
    If want to feel dificulty take the aboper help.
    don't forgat to assign the points
    sai krishna

  • Ex. Witholding Tax (TDS) : Business Place / Section Code : query

    Dear Experts,
    while posting any transaction which has With. Tax postings : in order to have correct returns & reporting, we mention business place / section code without fails.
    these fields are frequently missed by End User, could you please provide some solution for making it mandatory while posting transactions. i do not find them in Fields status groups too.
    please help.

    Hi
    you can make the user to enter them with out fail by using substitution or Validation rule depending on your business requirement.
    Validation Rule
    If T code =MIRO or T code = FB60
    Check if Business Place ="xyz" and Section Code ="yyyy"
    If check fails, system throws up the error message.
    You write Validation rule in GGB0 and assign to your company code in OB28. Similarly write a substitution rule in GGB1 and assign in OBBH
    Regards
    Sanil Bhandari

Maybe you are looking for

  • Yosemite is draining my battery. Please help.

    Hi! Look like parallels is draining my battery each time it gets connected. The battery drain only started 1 month after I upgraded to Yosemite. Can anyone help please? Would using Boot Camp resolve this problem? Do I need to reload win 8 after setti

  • Does Oracle BPEL process manager ships jdeveloper bpel designer

    I had downloaded Oracle bpel process manager and installed on my desktop but I am unable to find jdeveloper bpel designer shiped with process manager. Could any one update me regarding the same

  • Category names are not coming in Gantt chart

    Hi all I have a Gantt chart where I am displaying customer name in category axis. But instead of coming those names I am getting category1,category2.. in category axis.Please help. Regards Sunit

  • IOS keyboard in landscape mode for all apps

    Can apple make the iOS 6 keyboard have the option to use landscape mode for all apps? -Thanks!

  • How do I uninstall Photoshop CS4?

    When uninstalling the trial version of CS4 years ago I think I probably did not use the uninstaller but just dragged it to the trash on my Mac.  I just found something labelled ADBEPHSPCS4_LS1.dmg that is taking up over 1GB of space on my hard drive.