How to avoid the House Bank when creating a vendor from the HR master data?

Hi all,
I am using T-code PRAA in order to generate the vendors from the HR master data.
It works fine, but the programs tries to record a House Bank in the company code view of the vendor.
Which I don't want.
Does anyone know how to get rid of the house bank ?
I already tried, by deleting the entry in the characteristic TRVHB, through PE03, but then, the file is not generated successfully.

Hi Madhuri,
Best way to avoid such problem is to use TAB delimited file instead of comma separated data. Generally TAB does not appear in data.
If you are generating the file, use tab instead of comma.
If you cannot modify the format of file and data length in file is fixed character, you will need to define the structure and then move data in fixed length structure.
Regards,
Mohaiyuddin

Similar Messages

  • When creating a PDF from the scanner, it only scans one side despite the settings.

    When creating a PDF from the scanner, it only scans one side. I am using a fi-7160 that supports scanning both sides at once. The Scanner software is configured to scan both sides, and so are the presets in Adobe Acrobat Pro. I've only gotten the setting to work with the Custom Scan setting. Has anyone else had this problem, and what is the solution?
    Additionally, the software bundled with the scanner with automatically omit the back sides of a page if it is blank. I am scanning large files with occasional double sided pages. Is there a way to avoid having to manually delete blank pages when creating a new PDF from the scanner? It takes twice as long because I'm using the OCR stabilization.

    Hi anne,
    Could you please let me know what Acrobat and OS version are you using.
    Does this happen in case of any particular PDF or all PDF files?
    Try repairing Acrobat and then again check.
    Hope to get your response.
    Regards,
    Anubha

  • TS1367 So, i used my laptop this morning and it was dead so I charged it up and went to the bank, when I came back from the bank it wasn't working... WHAT TO DO??

    So, i used my laptop this morning and it was dead so I charged it up and went to the bank, when I came back from the bank it wasn't working... WHAT TO DO??

    go to iCloud: Find My iPhone,in a computer browserand sign in and go to FIndMyiPhone.
    The iCloud: Find My iPhone, is a link. Click on it to go to the site.

  • I cannot log onto the App Store, the page appears when I call it from the dock or the Apple menu. I can call the log-in box from the menu bar, but on signing in the spinning icon just keeps spinning,(not the beachball). Any suggestions? Using 10.6.7 and u

    I cannot log onto the App Store, the page appears when I call it from the dock or the Apple menu and I can call the log-in box from the menu bar, but on signing in the spinning icon just keeps spinning,(not the beachball).  Using 10.6.7 and up-to-date on all software. Any suggestions?

    Could be a third party app preventing you from being able to login.
    Mac App Store: Sign in sheet does not appear, or does not accept typed text
    If it's not a third party issue, follow the instructions here.
    Quit the MAS if it's open.
    Open a Finder window. Select your Home folder in the Sidebar on the left then open the Library folder then the Caches folder.
    Move the com.apple.appstore and the com.apple.storeagent files from the Caches folder to the Trash
    From the same Library folder open the Preferences folder.
    Move these files Preferences folder to the Trash: com.apple.appstore.plist and com.apple.storeagent.plist
    Same Library folder open the Cookies folder. Move the com.apple.appstore.plist file from the Cookies folder to the Trash.
    Relaunch the MAS.

  • Changing the catalog profile when creating a QN FROM ACTION BOX in transaction QM02

    Hi All,
    When I create a quality notification from the action box in transaction QM02, the catalog profile is fetched from the material master. I want this changed so that the catalog profile is
    always copied from the QN being preocessed in QM02. (current QN)
    I am not able to locate the code where the catalog profile for the new QN(QN being created) is fetched from the material master.
    If I change the catalog profile in the material master, it works, but that is not a solution for me.
    Need the exact point where I can pass in a different catalog code.
    Also, I do not see the new QN number anywhere while debugging.
    PS: The QN is being created from the action box in transaction QM02 and not from transaction QM01.
    Thanks.

    Hi All,
    When I create a quality notification from the action box in transaction QM02, the catalog profile is fetched from the material master. I want this changed so that the catalog profile is
    always copied from the QN being preocessed in QM02. (current QN)
    I am not able to locate the code where the catalog profile for the new QN(QN being created) is fetched from the material master.
    If I change the catalog profile in the material master, it works, but that is not a solution for me.
    Need the exact point where I can pass in a different catalog code.
    Also, I do not see the new QN number anywhere while debugging.
    PS: The QN is being created from the action box in transaction QM02 and not from transaction QM01.
    Thanks.

  • Can the Itouch 4th Gen create a playlist from the device?

    Trtying to find out if the Itouch 4th gen can create  a playlist from the actual device rather than having to connect to itunes all the time.

    Yes. See chaper 5 of the Users Guide
    iPod touch User Guide iOS 6

  • How to avoid duplicate DN exception when creating Active Directory Account

    I am using OIM 9.1.0.2 to provision Active Directory accounts.
    I run into issues when the DN of the user to be created already exists and I would like to know if anyone has some logic I can use to generate a different DN for new user by adding a number or something like that to the DN
    Here is an example.
    User 1 exists already and their DN: cn=john smith, cn=users, dc=company,dc=org
    New user joins the company and his name is also john smith and he has no middle name: so system attempts to create his account as cn=john smith, cn=users, dc=company,dc=org
    how can I accomplish this by making the account say cn=john smith_1, cn=users, dc=company,dc=org

    855640 wrote:
    I run into issues when the DN of the user to be created already exists and I would like to know if anyone has some logic I can use to generate a different DN for new user by adding a number or something like that to the DN
    There are two different questions:
    1. How to generate a sequence of candidates for the name attribute
    2. How to check if a record with the given name candidate already exists in the Active Directory, and hence try the next candidate from the sequence.
    The answer for the first part is usually defined by the policy existing in your organization, in the simplest case you can append sequential integer numbers to the end of the original name.
    The answer for the second question is not so simple if you use are provisioning with MSAD connector.
    There are two places you can put the check:
    -- in the pre-populate adapter for the UD_ADUSER_COMMONNAME field
    -- in the adpADCSCREATEUSER event handler, which is responsible for new AD user record creation.
    Both cases need some coding, since you have to obtain the AD connection and search AD for matching records.
    Pros & cons
    Placing check code in the pre-populate adapter:
    Pros:
    the result is visible in the form, administrator can change the pre-calculated value if he wishes
    Cons:
    you need to have all access to connection parameters, and establish one extra connection
    this is not the way OIM is supposed to work :-(
    Placing check code in the AD user creation task:
    Pros:
    you have all access to connection parameters, and open a connection here anyway
    Cons:
    the result is not present in the form, so no way for manual interaction by administrator here
    BTW: this problem is not only related to DN generation, some other AD attributes (e.g. sAMAccountName, mailNickName, userPrincipalName, mail) should be unique in the AD domain scope.
    Edited by: madhatter on Sep 7, 2012 12:02 AM

  • Getting the following error when creating a table in the webdynpro project

    hello colleagues,
    I am able to navigate to a view from the initial view because in the second view I am having a table.
    It throws the following error while navigating
    500 Internal Server Error
    The initial exception that caused the request to fail, was:
    java.lang.NoClassDefFoundError: com/sap/tc/webdynpro/clientserver/uielib/standard/api/IWDAbstractTableColumn
    The address is http://inld50044442a:50000/webdynpro/dispatcher/local/JA310_Ex_01/ExApp1
    Please help me. I am new to WebDynpro.
    Thanks in advance
    Regards,
    Sheelsagar

    Perhaps you have build your application with a NW04s IDE and try to run it on a NW04 server?
    the mentioned class (actually, interface) is part of WD NW04s functionality

  • Losing the audio track when moving a clip from the browser to the timeline

    Today we were trying to add two clips from the browser in Final Cut Express HD to the timeline that was created yesterday. The problem is, the clips we were adding today are not moving with the audio tracks. All other clips from when we created the movie are fine but the two we added today have no sound. The audio works when viewing the clip in "viewer" but not once it is moved to the timeline. Any thoughts?

    Hi(Bonjour)!
    Look at the left side of the time line, there is a device (the patch panel) to set the current video and audio target tracks. (little V1 and a1 a2 icons). Swith them to desired tracks to select the target audio tracks (that's where the video and audio-or just one of them-will be inserted in timeline upon editing). There is also a contextual menu (control click) with reset panel command.
    Michel Boissonneault

  • Changing the font size when sending email out from the iPad with MobileMe

    Is there a way from the iPad, or from my MacBook to the iPad, that I can increase the size of the font when typing outgoing mail? I use MobileMe on both my iPad and MacBook. My sister has cataracts and she needs the type size larger than what is already set on the iPad outgoing mail. I can make the type size larger for my incoming mail - I guess I did it through iPad settings -but I can't seem to figure out how to make it larger for my outgoing mail. I would prefer to be able to answer her on my iPad than having to switch back to my Mac each time she writes. Thank you.

    I guess what I am looking for is a toolbar when I am sending email so that I can change the font size, change the typeface, make words bold, underline them
    I don't think you will find any app that does that, it's the kind of feature only Apple can add. You can tell them here:
    http://www.apple.com/feedback/ipad.html

  • Anyone experienced an issue with 'insufficient privileges' notification in the current iTunes when trying to download from the store or import a CD?

    Since changing iTunes to the current version, I've experienced an issue when trying to either download from the store or import a CD.
    I keep getting a pop-up message that says I have insufficient privileges to perform the action.
    A bit weird as I'm the admin for the iMac.
    Anyone else seen this and know a fix?
    Thanks.

    I've also come to the conclusion that this is a router problem, as I don't have this issue at all when I'm at work.
    It's a old router, and we've had problems with other devices not wanting to connect to it in the past.
    I'm sure theres some way to solve this issue, but I think, rather then sittin gon hold, to figure this issue out, and my router having issues prior to this, I'm just going to pick up a new router at this point.
      I hope any of this has helped someone get their issue, at least temporarily solved.

  • Want to populate the House Bank field in the MIRO

    Hi All,
      I want to populate the House Bank field in the MIRO.
    I have tried with the user exit EXIT_SAPLMRMP_010. I am not populate the House Bank Id as it is not the exporting parameter.
      Please help me regarding this.
    Regards
    Kumar

    Kumar,
    It looks like there is a BADI that may give you what you need.  The BADI definition (transaction SE18) is INVOICE_UPDATE.  There are three methods available (in 4.6C):
    CHANGE_AT_SAVE     Invoice Document at Save
    CHANGE_BEFORE_UPDATE     Invoice Document Before Update
    CHANGE_IN_UPDATE     Invoice Document During Update
    Each of these methods allow you to pass "old" and "new" RBKP values.  In the SE18 screen there is a function (toolbar button) "Documentation" that has some additional information.
    The BADI is used in several function modules: MRM_INVOICE_DOCUMENT_POST, MRM_INVOICE_PREPARE_AND_POST, and MRM_BADI_INVOICE_CHECK.
    You should be able to move the House Bank value by creating an implementation of this BADI.
    I hope this works for you.
    Regards,
    James G.

  • The question about the house bank

    Use t-code FI12 to define the house bank,could anyone please tell me the function of the bank key?And why different house bank can have the same bank key?

    Hi,
    a Bank key identifies the House Bank within the SAP system as well as within the banking system.
    Bank key contains - Bank Master data contains Bank name, Region (State), Address, This bank key is assigned to a house bank. GL a/c code is assigned to the house bank along with Account id.
    Regards,
    Satish Muvva.

  • Problem creating a PDF from the "print view" of a web page

    When creating a PDF from the "print view" of a web page, the features in the print dialog box overlap. When the PDF is created, the words are garbled. e.g. words apppear as jzhhhxxf or zxihcj.

    Use a job settings that embeds the fonts. If you look at the PDF, the font properties probably do not look correct and don't include embedded fonts. Also, set the printer to Adobe PDF before you try to do a print, so that the web page can try to properly adjust to the printer.
    Why not just try opening the web site directly in Acrobat?

  • How to obtain the house bank in the customer invoice posted by FB70?

    Hi All,
    Could anyone tell me how to obtain a certain house bank in the customer invoice posted by FB70?
    I've made a test. I've filled an house bank in master data of the customer (company data). When I've posted the invoice by FB70, i've expected finding it in the item.... instead it wasn't there...
    Cuold anyone help me?
    Thanks
    gandalf

    Dear,
    The House bank will not reflect in customer invoice, it is used in outgoing or incoming payments.

Maybe you are looking for