Is there any heirarchy for retreiving theorg unit or sales office data for

Hello,
If there is only one crm user which is assigned to different sales offices,then while monitering any activity from which sales office or org unit does the data is displayed.
Is there any heirarchy for retreiving theorg unit or sales office data for an employee?
regards,
divya

IF NOT it_vbrk[] IS INITIAL.
  Fetching Material no, sub-family, tint and coating codes
    SELECT vbeln posnr fkimg vrkme prsdt netwr matnr arktx mwsbp subfam
           codcol codcoat epaiscom codtyp length width
           INTO CORRESPONDING FIELDS OF TABLE it_vbrp
                       FROM vbrp
                           FOR ALL ENTRIES IN it_vbrk
                           WHERE vbeln   = it_vbrk-vbeln AND
                                 subfam  IN s_subfam AND
                                 codcol  IN s_codcol AND
                                 codcoat IN s_coat AND
                                 epaiscom IN s_thick.
endif.

Similar Messages

  • Is there any object in labview that contains a list of data for the user to select (selection one at a time) or add a new data?

    Is there any object in labview that contains a list of data for the user to select (selection one at a time) or add a new data?

    List and table controls -> listbox..is that what you are thinking of?
    The listbox presents the user with a list of options, and you can set it to only accept one selection at a time...Adding new data to the list can not be done directly by the user but if you make e.g. a text control and a button you can programatically insert new objects described in the text box when the button is pressed...(see example).
    If you need more than one column you have the multicolumn listbox. If you want the users to write new entries directly yu can use a table and read selected cells using it's selection start property to read what cell has been selected.
    MTO
    Attachments:
    Listbox_example.vi ‏34 KB

  • I have an iphone and my daughter has an ipod.  She has all my contacts showing up on her ipod.  I deleted them and now they are gone from both.  is there any way of retreiving this deleted information.

    I have an iphone and my daughter has an ipod.  She has all my contacts showing up on her ipod.  I deleted them and now they are gone from both.  is there any way of retreiving this deleted information.

    When you share an iCloud account, any data you sync with the account is merged, and any actions you take on one device (such as deleteing contacts) is synced to all other devices sharing the account.  To avoid this, each person's device(s) should have a separate iCloud account with a separate ID.  (You can continue to share your iTunes account; it does not need to have the same ID as the one used for iCloud.)
    To create separate icloud accounts, decide which iPhone will be keeping the current iCloud account.  On the one that will be changing accounts, go to Settings>iCloud, scroll to the bottom and tap Delete Account.  (This will only delete the account from this phone, not from iCloud.  The phone that will be keeping the account will not be effected by this.)  When prompted about what to do with the iCloud data, be sure to select Keep On My iPhone.  Next, set up a new iCloud account using a different Apple ID (if you don't have one, tap Get a Free Apple ID at the bottom).  Then turn iCloud data syncing for contacts, etc. back to On, and when prompted about merging with iCloud, choose Merge.  This will upload the data to the new account.
    Finally, to un-merge the data you will then have to go to icloud.com on your computer and sign into each iCloud account separately and manually delete the data you don't want (such as deleting the other person's contacts from your account, and vice versa).
    As for recovering the deleted contacts, you can try restoring her phone from her most recent backup.  This may recover the contacts, however it often doesn't.  Restoring to an iCloud backup has to be done in the initial setup process.  If she have any data on your phone now that is not in the backup that she wants to save she will need to do that first.  Then go to Settings>General>Reset and tap Erase All Content and Settings.  You will then go through the setup screens as you did when the phone was new. When given the option, choose Restore from iCloud Backup.  Be sure you are connected to wifi and your charger as this will take some time to finish.

  • Is there any way to retreive the FileName in the mapping

    Is there any way to retreive the FileName and so that I can use that in my mapping. This is FILE2RFC scenario with NO BPM.
       I am using the adapter specific message attributes in the file sender CC.
    Thanks,
    Ravi
    null

    Yes you can retreive it.  Create an simple user defined function in the mapping and use the following code.
    Imports: com.sap.aii.mapping.api.*;
    Parameter: String filename
    Paramter: String filename;
    filename = fileName + ".DAT";
    DynamicConfiguration conf = (DynamicConfiguration) container
    .getTransformationParameters()
    .get(StreamTransformationConstants.DYNAMIC_CONFIGURATION);
    DynamicConfigurationKey key = DynamicConfigurationKey.create( "http://sap.com/xi/XI/System/File", "FileName");
    conf.put(key, filename);
    return filename;
    Or
    Just do whatever mentioned in this weblog:
    /people/michal.krawczyk2/blog/2005/11/10/xi-the-same-filename-from-a-sender-to-a-receiver-file-adapter--sp14
    ---Satish

  • Is there any way to force iPhoto to present faces by folder for identification rather than randomly?  Would provide better context for identification especially if a huge number of images is involved.

    Before I commit the time and energy required to load and tag faces in 25,000 images within iPhoto, I need some questions answered;
    Is there any way to force iPhoto to present faces by folder for tagging rather than randomly?  When so many images need tagging, over many years, the context of a folder helps with the identification. The work around is to load the images into iPhoto one folder at a time and do the tagging then.
    How do I get iPhoto to present the tagged faces by last name rather than first name? When so many faces will be identified, it is much easier to find people by surname, particularly when I share the library within the family. The work around is to enter names as last name and first name.  Being able to toggle the sort is much more desireable.
    Is there a way to export a portion of the library including faces?  I want to pass on portions of this huge 125 GB library to my family members.
    Since my family members will need an Apple computer to view the images and faces, they will likely have their own photo library.  So is there any way to combine two libraries and merge the faces?
    About 2/3 of my images have been scanned, so the date of creation is the scanned date rather than the date the photo was taken.  Will this mess up any sequencing or the retrieval of faces?

    If I want to carve off part of a library, I presume the way to do this is to make a copy of the library using PLM then go into iPhoto and delete what I don't want.  The result is the carved off portion.
    You don't need Library Manager to delete the portion you don't want.
    As a general rule: when deleting photos do them in batches of about 100 at a time. iPhoto can baulk at trashing large numbers at one go.
    If I want to merge two libraries, PLM implies that it will do this but will the Faces be merged too?
    I believe so.

  • Are there any ways to get sequence number other than getting it for each re

    are there any ways to get sequence number other than getting it for each record

    CACHE is the number of values Oracle stores in memory. So the first call to NEXTVAL Oracle grabs x numbers; subsequent calls to NEXTVAL are served from memory until they're all gone and them another bunch is grabbed. The attached sql*plus output demonstrates this behaviour.
    Note that normally unused numbers in the cache are returned to the data dictionary but in exceptional circumstances (DB crash) they may be lost.
    Cheers, APC
    SQL> create sequence seq cache 3
      2  /
    Sequence created.
    SQL> select last_number from user_sequences
      2  where sequence_name = 'SEQ'
      3  /
    LAST_NUMBER
              1
    SQL> select seq.nextval from dual
      2  /
       NEXTVAL
             1
    SQL> select last_number from user_sequences
      2  where sequence_name = 'SEQ'
      3  /
    LAST_NUMBER
              4
    SQL> select seq.nextval from dual
      2  /
       NEXTVAL
             2
    SQL> select last_number from user_sequences
      2  where sequence_name = 'SEQ'
      3  /
    LAST_NUMBER
              4
    SQL> select seq.nextval from dual
      2  /
       NEXTVAL
             3
    SQL> select last_number from user_sequences
      2  where sequence_name = 'SEQ'
      3  /
    LAST_NUMBER
              4
    SQL> select seq.nextval from dual
      2  /
       NEXTVAL
             4
    SQL> select last_number from user_sequences
      2  where sequence_name = 'SEQ'
      3  /
    LAST_NUMBER
              7
    SQL>

  • Are there any good third party or otherwise apps and/or plugins for imovie'11?

    Are there any good third party or otherwise apps and/or plugins for imovie'11?

    Re: Plugins for iMovie 11
    Someone just asked this question yesterday. So I am cutting and pasting the answer From Bengt Warleby
    Hi
    You can not.
    Nor to iMovie'08 or 09 or 11 - They do not accept any Plug-ins.
    How about FinalCut Pro X - I don't know but i regard to Apple way of progress - I doubt
    For iMovie up to HD6 and FinalCut Express and FinalCut Pro up to 7.0 - there are plenty.
    Yours Bengt W

  • Is there any way to disable right click and drag and drop for photos on iweb?

    Re: protecting photos when using iweb as your web designer...
    Is there any way to disable right click and drag and drop for photos using iweb?  I have seen tutorials about creating a text box around each image - but is there a better way? 

    However, there is no way you can prevent someone from making a screenshot of the image as it is displayed on the screen no matter what application you use to create the web page.
    You can add a watermark to dissuade the casual "thief" but those who are serious about stealing the photo for their own use can remove the watermark with some effort.
    OT

  • Is there any way to remove profile names on the itunes wifisync for iphone4?

    is there any way to remove profile names on the itunes wifisync for iphone4?

    selenafrommelbourne wrote:
    a little dumb at times so please forgive me
    do u mean the better halfs phone ... restore his phone on itunes and then set up a new account for him 
    since that (plus one other minor incident) has happened he will not let me touch his phone, so if i can be detailed from experienced people, then he may feel confident and let me do this 
    sounds like a nice guy! if he won't let you touch his phone this may work out better for you...tell him to handle the problem himself.

  • Is there any t code in SAP to display archived shipping data

    Hi All
    we have a issue with unarchiving shipping doc , our basis team has unzipped the file from the path it was archived and provided display access , when i cross checks in Tcode SARI  theya are un zipped and in sap this document is still in status archived i am not able to view vith vt03n
    for archived billing documents once thay are unzipped , document will not  open in vf03 but we can display in vf07
    Please let us know how to view this shipping data in sap ?
    Is there any t code in SAP to display archived shipping data (like for archived billing dicuments  vf07)
    Your kind help would be highly appreciated.
    Thank you
    Rajendra Prasad

    Hello,
    Once shipment document is archived then you can't display by VT03N transaction. As you have pointed out SARI or SARE transaction will help in displaying the archived shipment documents from archive server. (you have to select Archiving object = SD_VTTK and Archive Infosturcture = Select from display option).
    VF07 - Display archived billing document. We call this transaction VF07 as archived enable transaction.
    I have gone through the OSS note 590656 mentioned by Eduardo Hinojosa, with this enanchment of VT03N (respective program) you should be able to display archived shipment document. This Oss note should help you.
    let me know if required further clarification on this.
    -Thanks,
    Ajay
    Edited by: Ajay Kumar on Aug 25, 2009 6:16 AM

  • Is there any settings in CO to stop the Sale Order or Invoice Document

    The Invoice would not post to accounting when created as the material did not have a standard cost.
    I created a cost, re-dated the invoiced and released it from VFX3.
    When I looked at the PA entries I saw that the group cost entries to PA were okay but only the cost component (raw materials) of the legal cost had posted. The legal cost of goods sold was blank. Looking at the billing document I see that the VPRS condition is showing as an error with zero value. This explains why no PA entry for it was made.
    Can anyone tell me why the condition wasn't corrected when the cost was created and why the invoice was released from VFX3 with an Condition error uncorrected.
    Is there any settings in CO to stop the Sale Order ot Invoice when there is an error in sale order or invoice.
    Thanks in advance

    Hi
    To stop the sale order in the absence of Std Cost - use exit MV45AFZB
    To Stop the invoice - CReate a Costing key in KE40 and check "Issue error msg if no cost estimate found"...
    Also, you can redetrmine your pricing during billing to update VPRS
    Ajay M

  • Is there any FM or BAPI to delete the sales orders

    Hi,
    Is there any FM or BAPI to delete the sales orders
    Thanks,
    srinivas.

    BAPI_SALESORDER_CHANGE
    [Link|http://sap.ittoolbox.com/groups/technical-functional/sap-dev/bapi_salesorder_change-delete-sales-order-ver-470-1081398]

  • Hi. My mavericks is crashed and when i on my mac always showstha disk utility window. I do everything like repair and all but not fix this problem. I have no back up of my files. Is there any way to reinstall mavericks without erase my old data ?

    Hi. My mavericks is crashed and when i on my mac always showstha disk utility window. I do everything like repair and all but not fix this problem. I have no back up of my files. Is there any way to reinstall mavericks without erase my old data ?

    To back up your data, either use Target Disk Mode and a cable from another Mac (which mounts your problem Mac as an external disk of the other Mac) and Disk Utility on that other Mac, or — and this is all assuming you either have a slow Internet connection and don't want to use Internet Recovery, or if you have an older Mac that doesn't support Internet Recovery — you can create a bootable USB key disk on another Mac and then boot your problematic Mac from that keydisk, then use Disk Utility from the installer to make a backup to another (external) (scratch) disk.  You can also use that keydisk to reinstall OS X, to repair or to reinstall OS X.

  • Function module to extract sales org data for sales transaction

    Hi! I would like to find out the sales org assigned to a particular sales transaction. When I run function module CRM_ORDER_READ, it passes some information into LT_ORGMAN but I get 2 entries rather than the 2 entry I see in my sales transaction. Is this the right table to look for sales org data for a particular transaction?
    Appreciate any help on that.
    Cheers!
    SF

    Please check with following function module:
    CRM_MAP_ORGMAN_DATA
    CRM_ORGMAN_GET_DB
    CRM_ORGMAN_READ_DB
    CRM_ORGMAN_READ_OW
    hope it will useful.

  • Importance of Sales Area Data for BP

    Please give me the various reasons for having or maintaining Sales Area for a Business Partner:
    _Explanation:_  What is the importance of maintaining Sales Area Data for BP.Please list out several points.
    As we know Sales Area is composed of : Sales Organisation, Distribution channel, & Division.
    Thanks & Regards,

    These are off the top of my head. I can reply a bit later to add some more.
    1) The pricing procedure (entered in the Billing Tab) which affects the LEAD, OPPT, AG, QCTR, and TA documents. Without the pricing of the product, the transactions cannot be executed and the total product value cannot be determined. Without a total dollar value, a TA doesn't make sense.                                    
    2) The S.O defines the legal terms for the product and if the BP wants to return the product they ordered, they have that information.                                   
    BB

Maybe you are looking for

  • Getting ip of client

    I have made a server socket so how do i get the ip address of the client connecting to my server ??

  • Keywords cannot be assigned to multiple images

    A keyword can NOT be assigned to multiple images at the same time when following the procedures outlined in the Aperture help. I can't find this problem addressed in a FAQ or knowledge base. We're told to select multiple images in the Browser window

  • How to enlarge google search box

    When I open up the firefox page, the google search box is much smaller than what I prefer it to be. How can I enlarge the google search box?

  • Powerbook G3 (Pismo) & OSX Tiger

    Hi I have a 500mhz G3 Pismo. I've upgraded the HardDrive to 60Gig 7200rpm and the RAM is 640mb. I'm running OSX 3.9 but I stopped updating there because I was worried that Tiger might be a paw (sorry-step) too far for this computer? Can anyone inform

  • Failed to install AIR 3.5 SDK (beta)

    Hi guys, I wanted to use the AIR 3.5 SDK (beta) in Flash Builder 4.7 (beta) but when I attempted to manually replace the bundled AIR SDK in Flash Builder a few of the files could not be copied due to excessive file name/path lengths. This is on Windo