Any ways to link bsis to ekpo or bsas to ekpo

Hi all,
                 i would like to know if there is any way i can link bsis to ekpo or bsas to ekpo with the aim to retrieve the PO document number(ekpo-ebeln) and display it in fagll03 report.From my research, i know that in bsis or bsas, it does not have a field similiar to ebeln.Could i do a inner join and then put it in a temp wa and then update to my bsis and bsas table?
Edited by: weelilin on Jul 21, 2009 10:11 AM

Hi !!!!
1. Use SQVI transaction,
2. Create a View
3. Enter title,
4. Choose the Data source as Table Join
5. Now use Insert table option.
6. And insert the tables which you want. It will propose the relation between them.
BSAS-BUKRS = EKPO-BUKRS
BSAS_BUGDT = EKPO-AEDAT
Thank

Similar Messages

  • In Pages 5.0.1. is there any way to link one pages document to another pages document.  If so, How?

    Is Pages 5.0.1 is there any way to link one Pages document to another Pages document?  If so, Please, How?

    Well, you could trade it in for a white one! 
    First, try a system reset.  It cures many ills and it's quick, easy and harmless...
    Hold down the on/off switch and the Home button simultaneously until the screen blacks out or you see the Apple logo.  Ignore the "Slide to power off" text if it appears.  You will not lose any apps, data, music, movies, settings, etc.
    If the Reset doesn't work, try a Restore.  Note that it's nowhere near as quick as a Reset.  From iTunes, select the iPad/iPod and then select the Summary tab.  Follow directions for Restore and be sure to say "yes" to the backup.  You will be warned that all data (apps, music, movies, etc.) will be erased but, as the Restore finishes, you will be asked if you wish the contents of the backup to be copied to the iPad/iPod.  Again, say "yes."

  • Is there any way to link page number with the reference page number within text in InDesign CC and CS6?

    Is there any way to link page number with the reference page number within text in InDesign CC and CS6?

    You should ask in InDesign
    The Cloud forum is not about using individual programs
    The Cloud forum is about the Cloud as a delivery & install process
    If you will start at the Forums Index https://forums.adobe.com/welcome
    You will be able to select a forum for the specific Adobe product(s) you use
    Click the "down arrow" symbol on the right (where it says All communities) to open the drop down list and scroll

  • Is there any way to link the individual rows of data to the corresponding bars in a bar chart so that each legend title appears simultaneously with its corresponding bar when creating a build? I can do it in a pie chart but can't in a bar chart.

    Is there any way to link the individual rows of data to the corresponding bars in a bar chart so that each legend title appears simultaneously with its corresponding bar when creating a build? I can do it in a pie chart but can't in a bar chart.

    You used the data.  Verizon can not see what it was sued for.  However your phone can see whats apps used the data.  go to settings-data usage- there will be a place that says data usage cycle.  line the dates up with your cycle.  then there will be a bar graph below that   extend bother white bars one all the way to the left and one all the way to the right.  after those are extended below that will be a list of apps,  there should be one that used over 2 gb and that will show you what app used that data in her purse

  • Any way to link two iPhones (numbers) with iMessage and iOS6?

    iOS6 unifies iMessage with your devices . . . but . . . what do you do to unify two iPhones for iMessage?? I have a work iPhone, and a personal iPhone, in the settings for iOS6 you can add multiple emails, but only ONE phone number. Any way to link more than one phone? Would using the same Apple ID work?

    To those having the problem of un-linking your phone from your wife's phone, etc . . .
    I am NOT linked with my wife's phone because she has a separate iCloud account, even though we use the same Apple ID for apps, music, etc. with iTunes. You can have a distinct and separate Apple ID for iTunes vs. the one you use for iCloud. Same setup on my daughter's phone.
    My problem with my other personal phone may be that I have downgraded my phone to upgrade the rest of the family when I got my work 4s. My personal phone is now a 3G, and there is no iCloud or iOS6 for the 3G. I may have to wait until I upgrade to see if I can link them with the same iCloud account . . . and have iMessage relate to both.
    On the same topic, I assume that this linking only works for iMessage, and NOT other text messages received from non-iOS phones/devices? Curious if I am correct on this.
    When I had a work Blackberry, I had an app called txtforward on the Blackberry, that would send me an email to my iPhone (personal) when I got a text on my work phone. It made it much easier to not have to carry two phones. Have not found such an app in the app store to date.

  • Any way to link to a specific message from outside Mail?

    Hi,
    I am putting together a fairly basic customer enquiry database using Mac OS X Mail and an external database. The system will keep in the database a list of specific email messages associated with a particular customer, and should allow these messages to be brought up within Mail by clicking on a link in the database client.
    However, Mail doesn't seem to offer any way of linking to a specific message within its database from outside Mail.
    I imagined I would be able to do this instead by using the Message-Id: headers from incoming emails, and then getting Mail to do a search on these headers. However, putting a Message-Id into Mail's search field also fails.. it appears Mail doesn't index this header.
    Can anyone help or offer a different solution to linking to a message inside Mail from an external app?

    I'm not entirely sure I understand what you want to do, but if you are trying to link received emails to an external database, you can do so with Applescript, assuming your database app supports it.
    AppleScript support in Mail offers the following message properties (copied from the "Message" suite in Mail's Applescript dictionary):
    id (integer, r/o) : The unique identifier of the message.
    all headers (string, r/o) : All the headers of the message
    background color (blue/gray/green/none/orange/other/purple/red/yellow) : The background color of the message
    mailbox (mailbox) : The mailbox in which this message is filed
    content (string) : Contents of an email message
    date received (date, r/o) : The date a message was received
    date sent (date, r/o) : The date a message was sent
    deleted status (boolean) : Indicates whether the message is deleted or not
    flagged status (boolean) : Indicates whether the message is flagged or not
    junk mail status (boolean) : Indicates whether the message has been marked junk or evaluated to be junk by the junk mail filter.
    read status (boolean) : Indicates whether the message is read or not
    message id (string, r/o) : The unique message ID string
    source (string, r/o) : Raw source of the message
    reply to (string) : The address that replies should be sent to
    message size (integer) : The size (in bytes) of a message
    sender (string) : The sender of the message
    subject (string) : The subject of the message
    was forwarded (boolean) : Indicates whether the message was forwarded or not
    was redirected (boolean) : Indicates whether the message was redirected or not
    was replied to (boolean) : Indicates whether the message was replied to or not
    As you can see, this gives you access to just about any message property you could need for the database. You wouldn't need to tell Mail to search for the message; you could refer to it directly by its ID (or message id string) in its mailbox.
    I have done something similar using an older version of Filemaker Pro (v6). I store 'calculated' scripts in the database along the lines of this pseudo-code:
    Tell app "Mail" to open message {ID field} of mailbox {mailbox field} of account {related:account field}
    ... and have Filemaker execute them via a button when I need to open the record's message in Mail. This works very well for my purposes, which may be different from yours. (Note that the pseudo-code won't work as written; it is meant only to convey the idea involved.)

  • Any way to link a controls' custom shortcut menu to a new .rtm file?

    My project programmatically generates controls from a template. The template has a custom shortcut menu that is saved in the project directory, and the generated controls all work fine with this. However, now I need to be able to export the project to other directories/machines, and so now the generated controls can no longer 'find' the .rtm shortcut file, despite it being in the same folder as the control. This means if I want to be able to use the menu I have to open every generated control (which there can be hundreds of) and right-click -> advanced -> run-time shortcut menu -> and then reopen the file. 
    Is there any way to programmatically link a controls' shortcut menu to a new .rtm file, or is there any way to set a controls' custom shortcut file as a relative path instead of an absolute one?
    Cheers

    Many people can solve their problems with the 20 page limit using custom components. You should check out this thread
    http://forums.adobe.com/message/2500263#2500263
    It is possible to use the onClick -> go to State and set states on a custom component or any of its subcomponents.
    Catalyst does not currently support linking to a local files.
    -Bear

  • Any way to link to a file in Catalyst, rather than a URL or state?

    Given the 20 page limitation, I'm having to build my prototype in chunks, but so far have been unable to find a way to link up the various prototypes.  Does anyone know of a way to add a link to a local file rather than a live URL or simply another state within the same prototype?  Even in code view it seems I'm unable to delete the "http://" that it adds automatically to links...

    Many people can solve their problems with the 20 page limit using custom components. You should check out this thread
    http://forums.adobe.com/message/2500263#2500263
    It is possible to use the onClick -> go to State and set states on a custom component or any of its subcomponents.
    Catalyst does not currently support linking to a local files.
    -Bear

  • Any way to link calendar with email on ipone 4?

    ....You know the drill - you buy tickets to a movie or concert, they email you the barcode etc. Is there any way that I can place a link in my calendar on the day of the event, to the email - so I don't have to search my whole inbox for the email?

    No I don't believe there is a way to do this - never seen it done. Depending on what email service you are using (Exchange/Imap etc) you can create a folder and put the important email in it so it is easy to find, as long as that folder syncs to the phone.
    Message was edited by: jeffkinn_uk

  • Is their any way of linking my 7th gen iPod nano to my new IPad (3rd release)

    Is there any way of getting my 7th gen iPod nano to my iPad 3 (3rd release anyway). They both have Bluetooth but don't seem to recognise one another.

    I decided to fiddle around with the USB ports. I did it before but I only used the first two ports. I connected my iPod to the other two ports and it detected it. I noticed this issue just now when I was charging my 5S and the battery percentage wasn't showing up on iTunes so iTunes wasn't detecting it. So now I resolved that issue but now I have to see why those two USB ports aren't working properly.

  • Is there any way to link a style with an outline level?

    Suppose I want to create a harvard outline and I want the level 1 to be 24 pt. Papyrus and level 2 to be 18 point papyrus and level 3 to be 14 pt. comic sans. Is there any way to do this automatically in Pages?

    no but you can apply another style with the same harvard list style and indent as if it were the same style

  • Any way to link a song into the album?

    I purchased a single song a few weeks ago. When the full album came out I purchased the album. The album is missing track #8, which is the single I purchased a few weeks ago. Is there any way to sync it into the album on all my devices????

    Hi Arolon,
    Go into "get info" for the individual track (two fingered click on the thumbnail) and make sure that the details in "info" match those for the album (you can copy and paste them over) make sure that you identify the track as track 8 of however many there are on the album, and it should slide into place.
    Cheers,
    David.

  • Any way to link email to a reminder?

    One used to be able to right-click a message to create an iCal reminder to get back to the message.  Is this still possible to create such a link in Mountain Lion?
    Ah, now I remember. I forgot to select some text first. 
    https://discussions.apple.com/message/16024516#16024516

    Hi Arolon,
    Go into "get info" for the individual track (two fingered click on the thumbnail) and make sure that the details in "info" match those for the album (you can copy and paste them over) make sure that you identify the track as track 8 of however many there are on the album, and it should slide into place.
    Cheers,
    David.

  • Is there any way to link playlists?

    I would like to have the ability to create multiple playlists that can shuffle songs within a single playlist and then move to the next specified playlist when all of the songs in he first playlist have been played once.
    For example, I might be having a birthday party for my kid which will continue for the adults after the kid portion has ended.  For the party I would like to create a playlist that has some kid friendly songs I want to shuffle and put enough music in it to last the duration of the kid portion of the party.   Then I would like to create a second playlist which has more popular radio type songs that don't contain explicit language which the adults can enjoy but wouldn't be objectionable if the kids were still hanging around listening.  I would like that playlist to automatically start playing when the first playlist finishes playing all of its songs once (or it would be cool if I could set a time limit for each playlist so once that limit is reached it would go to the next playlist, even if all of the songs in the previous list were not played).  From here I would like to create a third playlist that will start after the second one is exhausted and can contain any type of music to play for the remainder of the evening after the kids have left or gone to bed.
    I realize I could create these playlists and simply start the next one manually at any time I wanted during the day/evening but I would just like to set it and forget it.
    I'm pretty sure this functionality doesn't exist but I thought I'd ask anyway in case anyone had some creative solutions or Apple could use it as a feature request enhancement for a future release of iTunes.
    Thanks!

    Thanks, that is what I did do. The shuffle put the first song in the playlist first so I didn't think it had shuffled it 55 song playlist, wish I had that kind of luck with the lottery.

  • Is there any way to link lightroom and bechance directly?!

    or can i only do it through cloud

    did you find an answer to this? I just called adobe support and was told there is not a way to do this. But not sure if that is true.

Maybe you are looking for

  • Keeps disconnect and reconnect

    I have a retina Macbook Pro 13"(latest), iPad(3rd genernation), iPhone 5 and iPod shuffle(latest) and I am sure all their systems as well as iTunes on my Macbook Pro are latest version. The thing is that whenever I connect my iPad and iPod shuffle an

  • Third party problem

    Hi  , I am doing third party billing where there in no despatch ( outboubnd delivery) direct billing. Now when i see teh report in vao5 in teh status tab it shows as not delivered where in  i already have done the invoicing. What i did is in teh item

  • License problem when trying to install Crystal reports XI on Win 7

    I'm trying to install Crystal Reports XI on a machine with Win 7, the installation in successful on older machines with Win XP. I'm trying to upgrade the programs we use at work, but this install fails. The installer doesn't accept my old license/reg

  • 2 Node ( Active + Activer Cluster )

    i want to setup 2 node cluster in active + active topology .so that one node fails all services will be running on single node . can anyone guide me in this regard Regards

  • Free disk space in the ORACLE_AGENT home

    Hi can anyone tell me whether it is safe to delete the log and trace files in AGENT_HOME/sysman/log/ ? I've installed agents on different hosts to connect to central repository. Initially everything went fine but now sometimes the agents stop communi